From 783d99d6b346c8554f603d4409b93e89f38f769d Mon Sep 17 00:00:00 2001 From: Alexander Kiel Date: Thu, 12 Dec 2024 21:41:58 +0100 Subject: [PATCH] Implement CodeSystem/ValueSet $validate-code Closes: #2251 and #2283 --- ...apability-statement-terminology-service.sh | 21 + .github/scripts/check-capability-statement.sh | 2 - .../scripts/check-terminology-capabilities.sh | 15 + .github/validation/.gitignore | 3 + .github/validation/Makefile | 18 + .github/validation/validate-medication.sh | 13 + .../AbrechnungsDiagnoseProzedur.csv | 6 +- .github/value-set-expand/Abrechnungsart.csv | 50 +- .../BodySite-Observation-Beatmung.csv | 3 + .../Category-Procedure-Beatmung-SNOMED.csv | 2 + .../Code-Monitoring-und-Vitaldaten-SNOMED.csv | 37 + ...vation-extrakorporale-Verfahren-SNOMED.csv | 11 + .github/value-set-expand/Diagnosesubtyp.csv | 12 +- .github/value-set-expand/Makefile | 2 + .github/value-set-expand/expand-all.sh | 121 + .github/value-set-expand/expand-sct.sh | 24 + .github/value-set-expand/expand.sh | 55 +- .../identifier-type-codes.csv | 38 +- .../location-physical-type.csv | 6 +- .../medicine-route-of-administration.csv | 85 + .../mii-vs-consent-answer.csv | 6 +- .../mii-vs-consent-policy.csv | 26 +- .../mii-vs-consent-signaturetypes.csv | 4 +- .github/value-set-expand/upload.sh | 9 +- .github/workflows/build.yml | 84 +- README.md | 1 + deps.edn | 6 + docs/README.md | 1 + docs/api.md | 2 + .../operation-code-system-validate-code.md | 24 + docs/api/operation-value-set-expand.md | 20 +- docs/api/operation-value-set-validate-code.md | 25 + docs/deployment/environment-variables.md | 3 + docs/terminology-service.md | 14 + job-ig/Makefile | 5 +- job-ig/package-lock.json | 725 +- job-ig/package.json | 2 +- .../src/blaze/fhir/spec/spec.clj | 6 + .../src/blaze/fhir/test_util.clj | 6 + .../test/blaze/job_scheduler_test.clj | 11 +- modules/module-base/src/blaze/path.clj | 14 + modules/module-base/src/blaze/path/spec.clj | 10 + modules/module-base/src/blaze/path_spec.clj | 17 + modules/module-base/test/blaze/path_test.clj | 28 + .../.clj-kondo/config.edn | 9 + .../Makefile | 25 + .../README.md | 3 + .../deps.edn | 31 + .../operation/code_system/validate_code.clj | 104 + .../code_system/validate_code_test.clj | 368 + .../tests.edn | 10 + modules/operation-value-set-expand/README.md | 14 +- .../blaze/fhir/operation/value_set/expand.clj | 123 +- .../fhir/operation/value_set/expand_test.clj | 362 +- .../.clj-kondo/config.edn | 9 + .../Makefile | 25 + .../README.md | 3 + .../deps.edn | 31 + .../operation/value_set/validate_code.clj | 109 + .../value_set/validate_code_test.clj | 391 + .../tests.edn | 10 + modules/rest-api/deps.edn | 3 + .../blaze/rest_api/capabilities_handler.clj | 88 +- .../rest_api/capabilities_handler_test.clj | 102 +- modules/rest-api/test/blaze/rest_api_test.clj | 9 +- modules/terminology-service/deps.edn | 9 +- ...DependencyFull_GermanyEdition_20241115.txt | 196 + ...2_Concept_Full_GermanyEdition_20241115.txt | 2764 ++ ...scription_Full_GermanyEdition_20241115.txt | 9416 +++++++ ...ationship_Full_GermanyEdition_20241115.txt | 22496 ++++++++++++++++ .../src/blaze/terminology_service.clj | 15 + .../src/blaze/terminology_service/local.clj | 260 +- .../local/capabilities.clj | 24 + .../terminology_service/local/code_system.clj | 63 + .../local/code_system/core.clj | 47 + .../local/code_system/default.clj | 143 + .../local/code_system/filter/core.clj | 16 + .../code_system/filter/descendent_of.clj | 11 + .../local/code_system/filter/equals.clj | 25 + .../local/{ => code_system}/filter/exists.clj | 8 +- .../local/{ => code_system}/filter/is_a.clj | 8 +- .../local/code_system/sct.clj | 181 + .../local/code_system/sct/context.clj | 262 + .../local/code_system/sct/type.clj | 8 + .../local/code_system/sct/util.clj | 12 + .../local/code_system/ucum.clj | 82 + .../local/code_system/util.clj | 16 + .../terminology_service/local/concept.clj | 23 - .../terminology_service/local/filter.clj | 36 - .../terminology_service/local/filter/core.clj | 12 - .../blaze/terminology_service/local/graph.clj | 6 + .../terminology_service/local/priority.clj | 22 + .../blaze/terminology_service/local/spec.clj | 11 + .../terminology_service/local/value_set.clj | 20 + .../local/value_set/expand.clj | 143 + .../local/value_set/validate_code.clj | 76 + .../terminology_service/local/version.clj | 35 + .../blaze/terminology_service/protocols.clj | 5 +- .../src/blaze/terminology_service/spec.clj | 54 +- .../src/blaze/terminology_service_spec.clj | 16 + .../local/code_system/sct/context_spec.clj | 33 + .../local/code_system/sct/context_test.clj | 214 + .../local/code_system/sct/spec.clj | 41 + .../local/code_system/sct/type_test.clj | 13 + .../local/code_system/sct/util_test.clj | 22 + .../local/code_system/sct_spec.clj | 10 + .../local/code_system/sct_test.clj | 36 + .../local/code_system/spec.clj | 13 + .../local/code_system/ucum_test.clj | 32 + .../local/code_system_spec.clj | 44 + .../local/code_system_test.clj | 183 + .../local/concept_spec.clj | 10 - .../local/filter/is_a_test.clj | 46 - .../terminology_service/local/filter_spec.clj | 10 - .../local/priority_spec.clj | 9 + .../local/value_set/expand/spec.clj | 9 + .../local/value_set/expand_spec.clj | 11 + .../local/value_set/validate_code/spec.clj | 9 + .../local/value_set/validate_code_spec.clj | 11 + .../local/value_set_spec.clj | 13 + .../local/version_test.clj | 23 + .../blaze/terminology_service/local_test.clj | 1730 +- resources/blaze.edn | 77 +- src/blaze/system.clj | 14 + test/blaze/system_test.clj | 7 + 125 files changed, 41694 insertions(+), 849 deletions(-) create mode 100755 .github/scripts/check-capability-statement-terminology-service.sh create mode 100755 .github/scripts/check-terminology-capabilities.sh create mode 100644 .github/validation/.gitignore create mode 100644 .github/validation/Makefile create mode 100755 .github/validation/validate-medication.sh create mode 100644 .github/value-set-expand/BodySite-Observation-Beatmung.csv create mode 100644 .github/value-set-expand/Category-Procedure-Beatmung-SNOMED.csv create mode 100644 .github/value-set-expand/Code-Monitoring-und-Vitaldaten-SNOMED.csv create mode 100644 .github/value-set-expand/Code-Observation-extrakorporale-Verfahren-SNOMED.csv create mode 100644 .github/value-set-expand/Makefile create mode 100755 .github/value-set-expand/expand-all.sh create mode 100755 .github/value-set-expand/expand-sct.sh create mode 100644 .github/value-set-expand/medicine-route-of-administration.csv create mode 100644 docs/api/operation-code-system-validate-code.md create mode 100644 docs/api/operation-value-set-validate-code.md create mode 100644 docs/terminology-service.md create mode 100644 modules/module-base/src/blaze/path.clj create mode 100644 modules/module-base/src/blaze/path/spec.clj create mode 100644 modules/module-base/src/blaze/path_spec.clj create mode 100644 modules/module-base/test/blaze/path_test.clj create mode 100644 modules/operation-code-system-validate-code/.clj-kondo/config.edn create mode 100644 modules/operation-code-system-validate-code/Makefile create mode 100644 modules/operation-code-system-validate-code/README.md create mode 100644 modules/operation-code-system-validate-code/deps.edn create mode 100644 modules/operation-code-system-validate-code/src/blaze/fhir/operation/code_system/validate_code.clj create mode 100644 modules/operation-code-system-validate-code/test/blaze/fhir/operation/code_system/validate_code_test.clj create mode 100644 modules/operation-code-system-validate-code/tests.edn create mode 100644 modules/operation-value-set-validate-code/.clj-kondo/config.edn create mode 100644 modules/operation-value-set-validate-code/Makefile create mode 100644 modules/operation-value-set-validate-code/README.md create mode 100644 modules/operation-value-set-validate-code/deps.edn create mode 100644 modules/operation-value-set-validate-code/src/blaze/fhir/operation/value_set/validate_code.clj create mode 100644 modules/operation-value-set-validate-code/test/blaze/fhir/operation/value_set/validate_code_test.clj create mode 100644 modules/operation-value-set-validate-code/tests.edn create mode 100644 modules/terminology-service/sct-release/Full/Refset/Metadata/der2_ssRefset_ModuleDependencyFull_GermanyEdition_20241115.txt create mode 100644 modules/terminology-service/sct-release/Full/Terminology/sct2_Concept_Full_GermanyEdition_20241115.txt create mode 100644 modules/terminology-service/sct-release/Full/Terminology/sct2_Description_Full_GermanyEdition_20241115.txt create mode 100644 modules/terminology-service/sct-release/Full/Terminology/sct2_Relationship_Full_GermanyEdition_20241115.txt create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/capabilities.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/code_system.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/code_system/core.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/code_system/default.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/core.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/descendent_of.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/equals.clj rename modules/terminology-service/src/blaze/terminology_service/local/{ => code_system}/filter/exists.clj (79%) rename modules/terminology-service/src/blaze/terminology_service/local/{ => code_system}/filter/is_a.clj (60%) create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/code_system/sct.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/code_system/sct/context.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/code_system/sct/type.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/code_system/sct/util.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/code_system/ucum.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/code_system/util.clj delete mode 100644 modules/terminology-service/src/blaze/terminology_service/local/concept.clj delete mode 100644 modules/terminology-service/src/blaze/terminology_service/local/filter.clj delete mode 100644 modules/terminology-service/src/blaze/terminology_service/local/filter/core.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/priority.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/spec.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/value_set.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/value_set/expand.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/value_set/validate_code.clj create mode 100644 modules/terminology-service/src/blaze/terminology_service/local/version.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/context_spec.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/context_test.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/spec.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/type_test.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/util_test.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/code_system/sct_spec.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/code_system/sct_test.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/code_system/spec.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/code_system/ucum_test.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/code_system_spec.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/code_system_test.clj delete mode 100644 modules/terminology-service/test/blaze/terminology_service/local/concept_spec.clj delete mode 100644 modules/terminology-service/test/blaze/terminology_service/local/filter/is_a_test.clj delete mode 100644 modules/terminology-service/test/blaze/terminology_service/local/filter_spec.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/priority_spec.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/value_set/expand/spec.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/value_set/expand_spec.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/value_set/validate_code/spec.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/value_set/validate_code_spec.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/value_set_spec.clj create mode 100644 modules/terminology-service/test/blaze/terminology_service/local/version_test.clj diff --git a/.github/scripts/check-capability-statement-terminology-service.sh b/.github/scripts/check-capability-statement-terminology-service.sh new file mode 100755 index 000000000..09b248bd0 --- /dev/null +++ b/.github/scripts/check-capability-statement-terminology-service.sh @@ -0,0 +1,21 @@ +#!/bin/bash -e + +SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" +. "$SCRIPT_DIR/util.sh" + +BASE="http://localhost:8080/fhir" +CAPABILITY_STATEMENT=$(curl -sH 'Accept: application/fhir+json' "$BASE/metadata") + +test "status" "$(echo "$CAPABILITY_STATEMENT" | jq -r .status)" "active" +test "kind" "$(echo "$CAPABILITY_STATEMENT" | jq -r .kind)" "instance" +test "software name" "$(echo "$CAPABILITY_STATEMENT" | jq -r .software.name)" "Blaze" +test "URL" "$(echo "$CAPABILITY_STATEMENT" | jq -r .implementation.url)" "http://localhost:8080/fhir" +test "FHIR version" "$(echo "$CAPABILITY_STATEMENT" | jq -r .fhirVersion)" "4.0.1" +test "format" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.format | join(",")')" "application/fhir+json,application/fhir+xml" + +test "Operation CodeSystem \$validate-code Definition" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.rest[0].resource[] | select(.type == "CodeSystem") .operation[] | select(.name == "validate-code") | .definition')" "http://hl7.org/fhir/OperationDefinition/CodeSystem-validate-code" +test "Operation CodeSystem \$validate-code Documentation" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.rest[0].resource[] | select(.type == "CodeSystem") .operation[] | select(.name == "validate-code") | .documentation')" "Validate that a coded value is in the code system." +test "Operation ValueSet \$expand Definition" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.rest[0].resource[] | select(.type == "ValueSet") .operation[] | select(.name == "expand") | .definition')" "http://hl7.org/fhir/OperationDefinition/ValueSet-expand" +test "Operation ValueSet \$expand Documentation" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.rest[0].resource[] | select(.type == "ValueSet") .operation[] | select(.name == "expand") | .documentation')" "The \$expand operation can be used to expand all codes of a ValueSet." +test "Operation ValueSet \$validate-code Definition" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.rest[0].resource[] | select(.type == "ValueSet") .operation[] | select(.name == "validate-code") | .definition')" "http://hl7.org/fhir/OperationDefinition/ValueSet-validate-code" +test "Operation ValueSet \$validate-code Documentation" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.rest[0].resource[] | select(.type == "ValueSet") .operation[] | select(.name == "validate-code") | .documentation')" "Validate that a coded value is in the set of codes allowed by a value set." diff --git a/.github/scripts/check-capability-statement.sh b/.github/scripts/check-capability-statement.sh index 779ea912d..8d59fe1e3 100755 --- a/.github/scripts/check-capability-statement.sh +++ b/.github/scripts/check-capability-statement.sh @@ -16,5 +16,3 @@ test "format" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.format | join(",")')" "a test "Operation Measure \$evaluate-measure Definition" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.rest[0].resource[] | select(.type == "Measure") .operation[] | select(.name == "evaluate-measure") | .definition')" "http://hl7.org/fhir/OperationDefinition/Measure-evaluate-measure" test "Operation Patient \$everything Definition" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.rest[0].resource[] | select(.type == "Patient") .operation[] | select(.name == "everything") | .definition')" "http://hl7.org/fhir/OperationDefinition/Patient-everything" test "Operation Patient \$everything Documentation" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.rest[0].resource[] | select(.type == "Patient") .operation[] | select(.name == "everything") | .documentation')" "Returns all resources from the patient compartment of one concrete patient including the patient. Has a fix limit of 10,000 resources if paging isn't used. Paging is supported when the _count parameter is used. No other params are supported." -test "Operation ValueSet \$expand Definition" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.rest[0].resource[] | select(.type == "ValueSet") .operation[] | select(.name == "expand") | .definition')" "http://hl7.org/fhir/OperationDefinition/ValueSet-expand" -test "Operation ValueSet \$expand Documentation" "$(echo "$CAPABILITY_STATEMENT" | jq -r '.rest[0].resource[] | select(.type == "ValueSet") .operation[] | select(.name == "expand") | .documentation')" "The \$expand operation can be used to expand all codes of a ValueSet." diff --git a/.github/scripts/check-terminology-capabilities.sh b/.github/scripts/check-terminology-capabilities.sh new file mode 100755 index 000000000..46e35a195 --- /dev/null +++ b/.github/scripts/check-terminology-capabilities.sh @@ -0,0 +1,15 @@ +#!/bin/bash -e + +SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" +. "$SCRIPT_DIR/util.sh" + +BASE="http://localhost:8080/fhir" +TERMINOLOGY_CAPABILITIES=$(curl -sH 'Accept: application/fhir+json' "$BASE/metadata?mode=terminology") + +test "resourceType" "$(echo "$TERMINOLOGY_CAPABILITIES" | jq -r .resourceType)" "TerminologyCapabilities" +test "status" "$(echo "$TERMINOLOGY_CAPABILITIES" | jq -r .status)" "active" +test "kind" "$(echo "$TERMINOLOGY_CAPABILITIES" | jq -r .kind)" "instance" +test "software name" "$(echo "$TERMINOLOGY_CAPABILITIES" | jq -r .software.name)" "Blaze" +test "URL" "$(echo "$TERMINOLOGY_CAPABILITIES" | jq -r .implementation.url)" "http://localhost:8080/fhir" + +test "UCUM version" "$(echo "$TERMINOLOGY_CAPABILITIES" | jq -r '.codeSystem[] | select(.uri == "http://unitsofmeasure.org").version[0].code' )" "2013.10.21" diff --git a/.github/validation/.gitignore b/.github/validation/.gitignore new file mode 100644 index 000000000..b21f8c695 --- /dev/null +++ b/.github/validation/.gitignore @@ -0,0 +1,3 @@ +/kds-testdata-2024.0.1 +kds-testdata-2024.0.1.zip +validator_cli.jar diff --git a/.github/validation/Makefile b/.github/validation/Makefile new file mode 100644 index 000000000..6e1272208 --- /dev/null +++ b/.github/validation/Makefile @@ -0,0 +1,18 @@ +kds-testdata-2024.0.1.zip: + wget -q https://github.com/medizininformatik-initiative/mii-testdata/releases/download/v1.0.1/kds-testdata-2024.0.1.zip + +kds-test-data: kds-testdata-2024.0.1.zip + unzip kds-testdata-2024.0.1.zip + rm kds-testdata-2024.0.1.zip + +validator_cli.jar: + wget -q https://github.com/hapifhir/org.hl7.fhir.validator-wrapper/releases/latest/download/validator_cli.jar + +validate-medication: validator_cli.jar + ./validate-medication.sh + +clean: + rm -rf kds-testdata-2024.0.1 + rm -f validator_cli.jar + +.PHONY: kds-test-data validate clean diff --git a/.github/validation/validate-medication.sh b/.github/validation/validate-medication.sh new file mode 100755 index 000000000..022c917b8 --- /dev/null +++ b/.github/validation/validate-medication.sh @@ -0,0 +1,13 @@ +#!/bin/bash -e + +SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" + +# Doesn't need Snomed CT +java -jar "$SCRIPT_DIR/validator_cli.jar" -version 4.0.1 -level error \ + -tx http://localhost:8080/fhir \ + -clear-tx-cache \ + -ig de.medizininformatikinitiative.kerndatensatz.medikation#2025.0.0 \ + "$SCRIPT_DIR/kds-testdata-2024.0.1/resources/MedicationRequest-mii-exa-test-data-patient-3-medrequest-1.json" \ + "$SCRIPT_DIR/kds-testdata-2024.0.1/resources/MedicationRequest-mii-exa-test-data-patient-1-medrequest-2.json" \ + "$SCRIPT_DIR/kds-testdata-2024.0.1/resources/MedicationRequest-mii-exa-test-data-patient-1-medrequest-1.json" \ + "$SCRIPT_DIR/kds-testdata-2024.0.1/resources/MedicationStatement-mii-exa-test-data-patient-3-medstatement-1.json" diff --git a/.github/value-set-expand/AbrechnungsDiagnoseProzedur.csv b/.github/value-set-expand/AbrechnungsDiagnoseProzedur.csv index dabdff922..0e74e81ef 100644 --- a/.github/value-set-expand/AbrechnungsDiagnoseProzedur.csv +++ b/.github/value-set-expand/AbrechnungsDiagnoseProzedur.csv @@ -1,3 +1,3 @@ -"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","hospital-main-diagnosis" -"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","principle-DRG" -"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","secondary-DRG" +"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","hospital-main-diagnosis","Krankenhaus Hauptdiagnose" +"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","principle-DRG","Principle-DRG" +"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","secondary-DRG","Secondary-DRG" diff --git a/.github/value-set-expand/Abrechnungsart.csv b/.github/value-set-expand/Abrechnungsart.csv index 137ad6ba4..8cba00ec1 100644 --- a/.github/value-set-expand/Abrechnungsart.csv +++ b/.github/value-set-expand/Abrechnungsart.csv @@ -1,25 +1,25 @@ -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","AOP" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","AP" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","ASV" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","BG" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","DMP" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","DRG" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","HSA" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","IA" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","IV" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","KEK" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","KIA" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","KV" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","MVZ" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","PEPP" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","PIA" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","PS" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","PSY" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","REHA" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","SL" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","SPB" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","SPZ" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","SZ" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","VNSB" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","WLA" -"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","WLU" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","AOP","Ambulantes Operieren" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","AP","Ausländische Patienten (nicht EU)" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","ASV","Ambulante Spezialfachärztliche Versorgung" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","BG","Berufsgenossenschaft" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","DMP","Disease Management Program" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","DRG","Diagnosebezogene Fallgruppen" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","HSA","Hochschulambulanz" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","IA","Gutachten, Institutsabrechnung" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","IV","integrierte Versorgung" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","KEK","Konsile für externe Krankenhäuser" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","KIA","Spezialambulanz in Kinderkliniken" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","KV","KV-Ermächtigung / Notfallabrechnung" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","MVZ","Medizinische Versorgungszentren" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","PEPP","Pauschalierendes Entgeltsystem Psychiatrie und Psychosomatik" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","PIA","Psychiatrische Institutsambulanz" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","PS","Privatsprechstunde" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","PSY","Psychiatrie und Psychosomatik leistungsorientierte, pauschalierte Entgelte" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","REHA","Rehabilitations-Einrichtungen" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","SL","sonstige Leistungserbringer" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","SPB","Stationsäquivalente psychiatrische Behandlung" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","SPZ","Sozialpädiatrische Zentren" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","SZ","Selbstzahlerrechnung" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","VNSB","Vor-/Nachstationäre Behandlung" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","WLA","Wahlleistung Arzt" +"http://fhir.de/CodeSystem/dkgev/Abrechnungsart","WLU","Wahlleistung Unterkunft" diff --git a/.github/value-set-expand/BodySite-Observation-Beatmung.csv b/.github/value-set-expand/BodySite-Observation-Beatmung.csv new file mode 100644 index 000000000..ff849dea1 --- /dev/null +++ b/.github/value-set-expand/BodySite-Observation-Beatmung.csv @@ -0,0 +1,3 @@ +"http://snomed.info/sct","11527006","Arterial system structure (body structure)" +"http://snomed.info/sct","181216001","Entire lung (body structure)" +"http://snomed.info/sct","89187006","Airway structure (body structure)" diff --git a/.github/value-set-expand/Category-Procedure-Beatmung-SNOMED.csv b/.github/value-set-expand/Category-Procedure-Beatmung-SNOMED.csv new file mode 100644 index 000000000..23b660582 --- /dev/null +++ b/.github/value-set-expand/Category-Procedure-Beatmung-SNOMED.csv @@ -0,0 +1,2 @@ +"http://snomed.info/sct","40617009","Artificial ventilation (regime/therapy)" +"http://snomed.info/sct","57485005","Oxygen therapy (procedure)" diff --git a/.github/value-set-expand/Code-Monitoring-und-Vitaldaten-SNOMED.csv b/.github/value-set-expand/Code-Monitoring-und-Vitaldaten-SNOMED.csv new file mode 100644 index 000000000..3327b9098 --- /dev/null +++ b/.github/value-set-expand/Code-Monitoring-und-Vitaldaten-SNOMED.csv @@ -0,0 +1,37 @@ +"http://snomed.info/sct","1153592008","Weight for age percentile (observable entity)" +"http://snomed.info/sct","1153605006","Body height for age percentile (observable entity)" +"http://snomed.info/sct","1153637007","Body height (observable entity)" +"http://snomed.info/sct","118433006","Pulmonary artery wedge pressure (observable entity)" +"http://snomed.info/sct","170804003","Ideal body weight (observable entity)" +"http://snomed.info/sct","248835004","Temperature of breast (observable entity)" +"http://snomed.info/sct","250124002","Temperature of joint (observable entity)" +"http://snomed.info/sct","250844005","Intracranial pressure (observable entity)" +"http://snomed.info/sct","27113001","Body weight (observable entity)" +"http://snomed.info/sct","271649006","Systolic blood pressure (observable entity)" +"http://snomed.info/sct","271650006","Diastolic blood pressure (observable entity)" +"http://snomed.info/sct","276885007","Core body temperature (observable entity)" +"http://snomed.info/sct","276900001","Systemic vascular resistance index (observable entity)" +"http://snomed.info/sct","276902009","Pulmonary vascular resistance index (observable entity)" +"http://snomed.info/sct","277381004","Stroke index (observable entity)" +"http://snomed.info/sct","307047009","Core body temperature measured in rectum (observable entity)" +"http://snomed.info/sct","364075005","Heart rate (observable entity)" +"http://snomed.info/sct","364246006","Core body temperature measured vaginally (observable entity)" +"http://snomed.info/sct","364419004","Temperature of cervical spine (observable entity)" +"http://snomed.info/sct","364424001","Temperature of thoracic spine (observable entity)" +"http://snomed.info/sct","364429006","Temperature of lumbar spine (observable entity)" +"http://snomed.info/sct","415882003","Estimated core body temperature measured in axillary region (observable entity)" +"http://snomed.info/sct","415922000","Temperature of forehead (observable entity)" +"http://snomed.info/sct","415929009","Estimated core body temperature measured in inguinal region (observable entity)" +"http://snomed.info/sct","415945006","Estimated core body temperature measured in sublingual space (observable entity)" +"http://snomed.info/sct","415974002","Core body temperature measured at tympanic membrane (observable entity)" +"http://snomed.info/sct","431598003","Core body temperature measured in esophagus (observable entity)" +"http://snomed.info/sct","54993008","Cardiac index (observable entity)" +"http://snomed.info/sct","6797001","Mean blood pressure (observable entity)" +"http://snomed.info/sct","698831002","Core body temperature measured in nasopharynx (observable entity)" +"http://snomed.info/sct","698832009","Core body temperature measured at urinary bladder (observable entity)" +"http://snomed.info/sct","71420008","Central venous pressure (observable entity)" +"http://snomed.info/sct","75367002","Blood pressure (observable entity)" +"http://snomed.info/sct","82799009","Cardiac output (observable entity)" +"http://snomed.info/sct","8499008","Pulse, function (observable entity)" +"http://snomed.info/sct","860958002","Temperature of blood (observable entity)" +"http://snomed.info/sct","90096001","Stroke volume (observable entity)" diff --git a/.github/value-set-expand/Code-Observation-extrakorporale-Verfahren-SNOMED.csv b/.github/value-set-expand/Code-Observation-extrakorporale-Verfahren-SNOMED.csv new file mode 100644 index 000000000..525278065 --- /dev/null +++ b/.github/value-set-expand/Code-Observation-extrakorporale-Verfahren-SNOMED.csv @@ -0,0 +1,11 @@ +"http://snomed.info/sct","251286000","Extracorporeal gas exchange duration (observable entity)" +"http://snomed.info/sct","251288004","Extracorporeal gas exchange flow rate (observable entity)" +"http://snomed.info/sct","251289007","Extracorporeal gas exchange flow index (observable entity)" +"http://snomed.info/sct","252076005","Venous pressure (observable entity)" +"http://snomed.info/sct","386534000","Arterial blood pressure (observable entity)" +"http://snomed.info/sct","401000124105","Hemodialysis blood flow (observable entity)" +"http://snomed.info/sct","444479000","Rate of blood flow through cardiovascular device (observable entity)" +"http://snomed.info/sct","445940005","Duration of hemodialysis session (observable entity)" +"http://snomed.info/sct","708513005","Substitution flow rate (observable entity)" +"http://snomed.info/sct","708514004","Substitution volume (observable entity)" +"http://snomed.info/sct","79063001","Gas flow rate (v) (observable entity)" diff --git a/.github/value-set-expand/Diagnosesubtyp.csv b/.github/value-set-expand/Diagnosesubtyp.csv index 151db1ed0..4f0eef5ba 100644 --- a/.github/value-set-expand/Diagnosesubtyp.csv +++ b/.github/value-set-expand/Diagnosesubtyp.csv @@ -1,6 +1,6 @@ -"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","cause-of-death" -"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","department-main-diagnosis" -"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","infection-control-diagnosis" -"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","surgery-diagnosis" -"http://terminology.hl7.org/CodeSystem/diagnosis-role","AD" -"http://terminology.hl7.org/CodeSystem/diagnosis-role","DD" +"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","cause-of-death","Todesursache" +"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","department-main-diagnosis","Abteilung Hauptdiagnose" +"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","infection-control-diagnosis","Infektionsschutzdiagnose" +"http://fhir.de/CodeSystem/KontaktDiagnoseProzedur","surgery-diagnosis","Operationsdiagnose" +"http://terminology.hl7.org/CodeSystem/diagnosis-role","AD","Admission diagnosis" +"http://terminology.hl7.org/CodeSystem/diagnosis-role","DD","Discharge diagnosis" diff --git a/.github/value-set-expand/Makefile b/.github/value-set-expand/Makefile new file mode 100644 index 000000000..062a6e20c --- /dev/null +++ b/.github/value-set-expand/Makefile @@ -0,0 +1,2 @@ +install: + npm install diff --git a/.github/value-set-expand/expand-all.sh b/.github/value-set-expand/expand-all.sh new file mode 100755 index 000000000..adfa54864 --- /dev/null +++ b/.github/value-set-expand/expand-all.sh @@ -0,0 +1,121 @@ +#!/bin/bash -e + +BASE="http://localhost:8080/fhir" + +for url in $(blazectl --server "$BASE" download ValueSet -q "_elements=url&_count=500" 2>/dev/null | jq -r '.url'); do + if [[ "$url" == "http://dicom.nema.org/"* ]]; then + continue + elif echo "$url" | grep -q -E "^http://terminology\.hl7\.org/ValueSet/(v2-0567|v2-0568|v3-UnitsOfMeasureCaseSensitive)$"; then + # UCUM + continue + elif echo "$url" | grep -q -E "^http://terminology\.hl7\.org/ValueSet/(v3-LogicalObservationIdentifierNamesAndCodes|v3-ObservationType|v3-DocumentSectionType|v3-xActBillableCode)$"; then + # LOINC + continue + #elif echo "$url" | grep -q -E "^http://terminology\.hl7\.org/ValueSet/(v3-HL7FormatCodes)$"; then + # unsupported = filter operation + # continue + elif echo "$url" | grep -q -E "^http://terminology\.hl7\.org/ValueSet/(v3-EPSG-GeodeticParameterDataset|v3-SCDHEC-GISSpatialAccuracyTiers|v2-notAllCodes-0347|v3-PharmacistHIPAA|v3-ObservationCoordinateAxisType|v3-LaboratoryObservationSubtype|v3-KnowledgeSubjectObservationValue|v3-EmergencyMedicalServiceProviderHIPAA|v3-ObservationCoordinateSystemType|v3-DentistHIPAA|v3-AmbulanceHIPAA|v3-HumanLanguage|v3-KnowledgeSubtopicObservationValue|v3-ActProcedureCodeCCI|v3-OrganizationIndustryClassNAICS|v3-USEncounterReferralSource|cpt-all|cpt-modifiers|cpt-base|cpt-usable|v2-2.3.1-0360|v2-2.4-0391|v2-0351|v2-0962|v2-0963|v2-0227|v2-0456|v2-0895|v2-0292|v2-0396|v3-HealthcareServiceLocation|v3-NUCCProviderCodes|v3-ActInjuryCodeCSA|v3-IndustryClassificationSystem|v3-HealthCareCommonProcedureCodingSystem|v3-USEncounterDischargeDisposition|v2-0203|v2-0350|v3-EmploymentStatusUB92|v3-DiagnosisICD9CM|v3-AgeGroupObservationValue|v2-2.6-0391|v2-2.1-0006|v2-2.4-0006|v2-2.7-0360)$"; then + # unknown code system + continue + elif echo "$url" | grep -q -E "^http://terminology\.hl7\.org/ValueSet/(v3-VideoMediaType|v3-TextMediaType|v3-TriggerEventID|v3-MultipartMediaType|v3-AudioMediaType|v3-ApplicationMediaType|v3-ImageMediaType|v3-ModelMediaType|v3-MediaType|insuranceplan-type)$"; then + # content: fragment + continue + elif echo "$url" | grep -q -E "^http://terminology\.hl7\.org/ValueSet/(v2-notAllCodes-0399|v3-EntityCode|v3-Country|v3-PlaceEntityType|v3-Country2|v3-CountryEntityType)$"; then + # content: not-present + continue + elif echo "$url" | grep -q -E "^http://terminology\.hl7\.org/ValueSet/(service-category|service-type|appointment-cancellation-reason)$"; then + # content: example + continue + elif echo "$url" | grep -q -E "^http://hl7\.org/fhir/ValueSet/(appointment-cancellation-reason|service-type|service-category)$"; then + # content: example + continue + elif echo "$url" | grep -q -E "^http://hl7\.org/fhir/ValueSet/(iso3166-1-N|iso3166-1-3|mimetypes|jurisdiction|all-languages)$"; then + # content: not-present + continue + elif [ "$url" == "http://hl7.org/fhir/ValueSet/insuranceplan-type" ]; then + # content: fragment + continue + elif [ "$url" == "http://hl7.org/fhir/ValueSet/observation-codes" ]; then + continue + elif echo "$url" | grep -q -E "^http://hl7\.org/fhir/ValueSet/(questionnaire-answers|condition-predecessor|sequence-species|condition-cause|dataelement-sdcobjectclass)$"; then + # Expanding all Snomed CT concepts is too costly + continue + elif echo "$url" | grep -q -E "^http://hl7\.org/fhir/ValueSet/(texture-code|supplement-type|consistency-type|entformula-type)$"; then + # unsupported SCT US Edition + continue + #elif echo "$url" | grep -q -E "^http://hl7\.org/fhir/ValueSet/(example-filter)$"; then + # unsupported = filter operation + # continue + elif [ "$url" == "http://hl7.org/fhir/ValueSet/patient-contactrelationship" ]; then + # unsupported is-not-a filter operation + continue + elif [ "$url" == "http://hl7.org/fhir/ValueSet/timezones" ]; then + continue + elif echo "$url" | grep -q -E "^http://hl7\.org/fhir/ValueSet/(cpt-all|device-safety|provider-taxonomy|currencies|clinvar|consent-content-class|variants|cosmic|specimen-collection-priority|dbsnp|sequence-quality-method|sequence-referenceSeq|ensembl|sequence-quality-standardSequence|vaccine-code|allelename|dataelement-sdcobjectclassproperty|sequenceontology|ref-sequences)$"; then + # unknown code system + continue + elif echo "$url" | grep -q -E "^http://hl7\.org/fhir/ValueSet/(use-context)$"; then + # unknown value set + continue + elif echo "$url" | grep -q -E "^http://hl7\.org/fhir/ValueSet/(all-distance-units|all-time-units|ucum-units)$"; then + # UCUM + continue + elif echo "$url" | grep -q -E "^http://hl7\.org/fhir/ValueSet/(report-codes|doc-typecodes|example-extensional|questionnaire-questions|care-team-category|consent-content-code|example-intensional)$"; then + # LOINC + continue + elif echo "$url" | grep -q -E "^https://www\.medizininformatik-initiative\.de/fhir/ext/modul-patho/ValueSet/mii-vs-patho-all-loinc$"; then + # LOINC + continue + elif echo "$url" | grep -q -E "^https://www\.medizininformatik-initiative\.de/fhir/core/modul-labor/ValueSet/ValueSetOrderCodes$"; then + # LOINC + continue + elif echo "$url" | grep -q -E "^https://www\.medizininformatik-initiative\.de/fhir/modul-mikrobio/ValueSet/(mii-vs-mikrobio-empfindlichkeit-phenotyp-loinc|mii-vs-mikrobio-empfindlichkeit-genotyp-loinc)$"; then + # LOINC + continue + elif [[ "$url" == "http://loinc.org/"* ]]; then + continue + elif [[ "$url" == "http://ihe.net/fhir/"* ]]; then + continue + elif [[ "$url" == "http://ihe-d.de/ValueSets/"* ]]; then + continue + elif echo "$url" | grep -q -E "^http://hl7\.org/fhir/uv/ips/ValueSet/(whoatc-uv-ips|vaccines-whoatc-uv-ips)$"; then + # content: not-present + continue + elif [ "$url" == "http://hl7.org/fhir/uv/ips/ValueSet/results-radiology-observations-uv-ips" ]; then + continue + elif [ "$url" == "http://hl7.org/fhir/uv/ips/ValueSet/results-laboratory-observations-uv-ips" ]; then + continue + elif [ "$url" == "http://hl7.org/fhir/uv/ips/ValueSet/results-pathology-observations-uv-ips" ]; then + continue + elif [ "$url" == "http://hl7.org/fhir/uv/ips/ValueSet/medicine-route-of-administration" ]; then + continue + elif [ "$url" == "http://hl7.org/fhir/uv/ips/ValueSet/healthcare-professional-roles-uv-ips" ]; then + continue + elif [ "$url" == "http://hl7.org/fhir/uv/ips/ValueSet/medicine-doseform" ]; then + continue + elif [ "$url" == "http://hl7.org/fhir/uv/genomics-reporting/ValueSet/hgvs-vs" ]; then + continue + elif [[ "$url" == "urn:oid:"* ]]; then + continue + elif [ "$url" == "https://fhir.kbv.de/ValueSet/KBV_VS_Base_Deuev_Anlage_8" ]; then + # unknown code system (http://fhir.de/CodeSystem/deuev/anlage-8-laenderkennzeichen) + continue + elif [[ "$url" == "http://fhir.de/ValueSet/abdata/"* ]]; then + continue + elif [ "$url" == "http://fhir.de/ValueSet/bfarm/ops" ]; then + # all versions is unsupported + continue + elif [ "$url" == "http://fhir.de/ValueSet/bfarm/icd-10-gm" ]; then + # all versions is unsupported + continue + elif [ "$url" == "http://fhir.de/ValueSet/ifa/pzn" ]; then + # content: not-present (http://fhir.de/CodeSystem/ifa/pzn) + continue + elif [[ "$url" == "http://fhir.de/ValueSet/dkgev/Fachabteilungsschluessel"* ]]; then + # content: fragment (http://fhir.de/CodeSystem/dkgev/Fachabteilungsschluessel) + continue + else + echo "Expand ValueSet with URL: $url" + curl -sfH "Accept: application/fhir+json" -o /dev/null "$BASE/ValueSet/\$expand?url=$url" + fi +done diff --git a/.github/value-set-expand/expand-sct.sh b/.github/value-set-expand/expand-sct.sh new file mode 100755 index 000000000..264783e9b --- /dev/null +++ b/.github/value-set-expand/expand-sct.sh @@ -0,0 +1,24 @@ +#!/bin/bash -e + +SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" +. "$SCRIPT_DIR/../scripts/util.sh" + +BASE="http://localhost:8080/fhir" + +expand() { + curl -sfH "Accept: application/fhir+json" "$BASE/ValueSet/\$expand?url=$1" | jq -r '.expansion.contains[] | [.system, .code, .display] | @csv' | sort +} + +test() { + if [ "$2" = "$(cat "$SCRIPT_DIR/$1.csv")" ]; then + echo "✅ the $1 matches" + else + echo "🆘 the $1 is $2, expected $(cat "$SCRIPT_DIR/$1.csv")" + exit 1 + fi +} + +test "BodySite-Observation-Beatmung" "$(expand "https://www.medizininformatik-initiative.de/fhir/ext/modul-icu/ValueSet/BodySite-Observation-Beatmung")" +test "Category-Procedure-Beatmung-SNOMED" "$(expand "https://www.medizininformatik-initiative.de/fhir/ext/modul-icu/ValueSet/Category-Procedure-Beatmung-SNOMED")" +test "Code-Observation-extrakorporale-Verfahren-SNOMED" "$(expand "https://www.medizininformatik-initiative.de/fhir/ext/modul-icu/ValueSet/Code-Observation-extrakorporale-Verfahren-SNOMED")" +test "Code-Monitoring-und-Vitaldaten-SNOMED" "$(expand "https://www.medizininformatik-initiative.de/fhir/ext/modul-icu/ValueSet/Code-Monitoring-und-Vitaldaten-SNOMED")" diff --git a/.github/value-set-expand/expand.sh b/.github/value-set-expand/expand.sh index a24690940..e84b387e9 100755 --- a/.github/value-set-expand/expand.sh +++ b/.github/value-set-expand/expand.sh @@ -6,7 +6,7 @@ SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" BASE="http://localhost:8080/fhir" expand() { - curl -sfH "Accept: application/fhir+json" "$BASE/ValueSet/\$expand?url=$1" | jq -r '.expansion.contains[] | [.system, .code] | @csv' | sort + curl -sfH "Accept: application/fhir+json" "$BASE/ValueSet/\$expand?url=$1" | jq -r '.expansion.contains[] | [.system, .code, .display] | @csv' | sort } test() { @@ -18,6 +18,8 @@ test() { fi } +test "medicine-route-of-administration" "$(expand "http://hl7.org/fhir/uv/ips/ValueSet/medicine-route-of-administration")" + test "Abrechnungsart" "$(expand "http://fhir.de/ValueSet/dkgev/Abrechnungsart")" test "AbrechnungsDiagnoseProzedur" "$(expand "http://fhir.de/ValueSet/AbrechnungsDiagnoseProzedur")" test "Diagnosesubtyp" "$(expand "http://fhir.de/ValueSet/Diagnosesubtyp")" @@ -27,54 +29,3 @@ test "location-physical-type" "$(expand "https://www.medizininformatik-initiativ test "mii-vs-consent-answer" "$(expand "https://www.medizininformatik-initiative.de/fhir/modul-consent/ValueSet/mii-vs-consent-answer")" test "mii-vs-consent-policy" "$(expand "https://www.medizininformatik-initiative.de/fhir/modul-consent/ValueSet/mii-vs-consent-policy")" test "mii-vs-consent-signaturetypes" "$(expand "https://www.medizininformatik-initiative.de/fhir/modul-consent/ValueSet/mii-vs-consent-signaturetypes")" - -for url in $(blazectl --server "$BASE" download ValueSet -q "_elements=url&_count=500" 2>/dev/null | jq -r '.url'); do - if [[ "$url" == "http://dicom.nema.org/"* ]]; then - continue - elif [[ "$url" == "http://terminology.hl7.org/ValueSet/"* ]]; then - continue - elif [[ "$url" == "http://hl7.org/fhir/ValueSet/"* ]]; then - continue - elif [[ "$url" == "http://loinc.org/"* ]]; then - continue - elif [[ "$url" == "http://ihe.net/fhir/"* ]]; then - continue - elif [[ "$url" == "http://ihe-d.de/ValueSets/"* ]]; then - continue - elif [[ "$url" == "http://hl7.org/fhir/uv/ips/ValueSet/"* ]]; then - continue - elif [[ "$url" == "http://hl7.org/fhir/uv/genomics-reporting/ValueSet/"* ]]; then - continue - elif [[ "$url" == "http://cts.nlm.nih.gov/fhir/ValueSet/"* ]]; then - continue - elif [[ "$url" == "urn:oid:"* ]]; then - continue - elif [[ "$url" == "https://fhir.kbv.de/ValueSet/"* ]]; then - continue - elif [[ "$url" == "http://fhir.de/ValueSet/"* ]]; then - continue - elif [[ "$url" == "http://fhir.de/ConsentManagement/ValueSet/TemplateType" ]]; then - continue - elif [[ "$url" == "https://www.medizininformatik-initiative.de/fhir/core/modul-diagnose/ValueSet/"* ]]; then - continue - elif [[ "$url" == "https://www.medizininformatik-initiative.de/fhir/core/modul-labor/ValueSet/"* ]]; then - continue - elif [[ "$url" == "https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/ValueSet/"* ]]; then - continue - elif [[ "$url" == "https://www.medizininformatik-initiative.de/fhir/ext/modul-biobank/ValueSet/"* ]]; then - continue - elif [[ "$url" == "https://www.medizininformatik-initiative.de/fhir/modul-mikrobio/ValueSet/"* ]]; then - continue - elif [[ "$url" == "https://www.medizininformatik-initiative.de/fhir/modul-mikrobiologie/ValueSet/"* ]]; then - continue - elif [[ "$url" == "https://www.medizininformatik-initiative.de/fhir/ext/modul-patho/ValueSet/"* ]]; then - continue - elif [[ "$url" == "https://www.medizininformatik-initiative.de/fhir/ext/modul-molgen/ValueSet/"* ]]; then - continue - elif [[ "$url" == "https://www.medizininformatik-initiative.de/fhir/ext/modul-icu/ValueSet/"* ]]; then - continue - else - echo "Expand ValueSet with URL: $url" - curl -sfH "Accept: application/fhir+json" -o /dev/null "$BASE/ValueSet/\$expand?url=$url" - fi -done diff --git a/.github/value-set-expand/identifier-type-codes.csv b/.github/value-set-expand/identifier-type-codes.csv index d3efdfef6..cdd9621e0 100644 --- a/.github/value-set-expand/identifier-type-codes.csv +++ b/.github/value-set-expand/identifier-type-codes.csv @@ -1,19 +1,19 @@ -"http://terminology.hl7.org/CodeSystem/v2-0203","ACSN" -"http://terminology.hl7.org/CodeSystem/v2-0203","BRN" -"http://terminology.hl7.org/CodeSystem/v2-0203","DL" -"http://terminology.hl7.org/CodeSystem/v2-0203","DR" -"http://terminology.hl7.org/CodeSystem/v2-0203","EN" -"http://terminology.hl7.org/CodeSystem/v2-0203","FILL" -"http://terminology.hl7.org/CodeSystem/v2-0203","JHN" -"http://terminology.hl7.org/CodeSystem/v2-0203","MCN" -"http://terminology.hl7.org/CodeSystem/v2-0203","MD" -"http://terminology.hl7.org/CodeSystem/v2-0203","MR" -"http://terminology.hl7.org/CodeSystem/v2-0203","NIIP" -"http://terminology.hl7.org/CodeSystem/v2-0203","PLAC" -"http://terminology.hl7.org/CodeSystem/v2-0203","PPN" -"http://terminology.hl7.org/CodeSystem/v2-0203","PRN" -"http://terminology.hl7.org/CodeSystem/v2-0203","SB" -"http://terminology.hl7.org/CodeSystem/v2-0203","SNO" -"http://terminology.hl7.org/CodeSystem/v2-0203","TAX" -"http://terminology.hl7.org/CodeSystem/v2-0203","UDI" -"http://terminology.hl7.org/CodeSystem/v2-0203","VN" +"http://terminology.hl7.org/CodeSystem/v2-0203","ACSN","Accession ID" +"http://terminology.hl7.org/CodeSystem/v2-0203","BRN","Breed Registry Number" +"http://terminology.hl7.org/CodeSystem/v2-0203","DL","Driver's license number" +"http://terminology.hl7.org/CodeSystem/v2-0203","DR","Donor Registration Number" +"http://terminology.hl7.org/CodeSystem/v2-0203","EN","Employer number" +"http://terminology.hl7.org/CodeSystem/v2-0203","FILL","Filler Identifier" +"http://terminology.hl7.org/CodeSystem/v2-0203","JHN","Jurisdictional health number" +"http://terminology.hl7.org/CodeSystem/v2-0203","MCN","Microchip Number" +"http://terminology.hl7.org/CodeSystem/v2-0203","MD","Medical License number" +"http://terminology.hl7.org/CodeSystem/v2-0203","MR","Medical record number" +"http://terminology.hl7.org/CodeSystem/v2-0203","NIIP","National Insurance Payor Identifier (Payor)" +"http://terminology.hl7.org/CodeSystem/v2-0203","PLAC","Placer Identifier" +"http://terminology.hl7.org/CodeSystem/v2-0203","PPN","Passport number" +"http://terminology.hl7.org/CodeSystem/v2-0203","PRN","Provider number" +"http://terminology.hl7.org/CodeSystem/v2-0203","SB","Social Beneficiary Identifier" +"http://terminology.hl7.org/CodeSystem/v2-0203","SNO","Serial Number" +"http://terminology.hl7.org/CodeSystem/v2-0203","TAX","Tax ID number" +"http://terminology.hl7.org/CodeSystem/v2-0203","UDI","Universal Device Identifier" +"http://terminology.hl7.org/CodeSystem/v2-0203","VN","Visit number" diff --git a/.github/value-set-expand/location-physical-type.csv b/.github/value-set-expand/location-physical-type.csv index d366d8f0c..0dfa93ce5 100644 --- a/.github/value-set-expand/location-physical-type.csv +++ b/.github/value-set-expand/location-physical-type.csv @@ -1,3 +1,3 @@ -"http://terminology.hl7.org/CodeSystem/location-physical-type","bd" -"http://terminology.hl7.org/CodeSystem/location-physical-type","ro" -"http://terminology.hl7.org/CodeSystem/location-physical-type","wa" +"http://terminology.hl7.org/CodeSystem/location-physical-type","bd","Bed" +"http://terminology.hl7.org/CodeSystem/location-physical-type","ro","Room" +"http://terminology.hl7.org/CodeSystem/location-physical-type","wa","Ward" diff --git a/.github/value-set-expand/medicine-route-of-administration.csv b/.github/value-set-expand/medicine-route-of-administration.csv new file mode 100644 index 000000000..7cb658ce8 --- /dev/null +++ b/.github/value-set-expand/medicine-route-of-administration.csv @@ -0,0 +1,85 @@ +"http://standardterms.edqm.eu","20001000","Auricular use" +"http://standardterms.edqm.eu","20002500","Buccal use" +"http://standardterms.edqm.eu","20003000","Cutaneous use" +"http://standardterms.edqm.eu","20004000","Dental use" +"http://standardterms.edqm.eu","20006000","Endocervical use" +"http://standardterms.edqm.eu","20007000","Endosinusial use" +"http://standardterms.edqm.eu","20008000","Endotracheopulmonary use" +"http://standardterms.edqm.eu","20009000","Epidural use" +"http://standardterms.edqm.eu","20010000","Epilesional use" +"http://standardterms.edqm.eu","20011000","Extraamniotic use" +"http://standardterms.edqm.eu","20011500","Extracorporeal use" +"http://standardterms.edqm.eu","20013000","Gastroenteral use" +"http://standardterms.edqm.eu","20013500","Gastric use" +"http://standardterms.edqm.eu","20014000","Gingival use" +"http://standardterms.edqm.eu","20015000","Haemodialysis" +"http://standardterms.edqm.eu","20015500","Implantation" +"http://standardterms.edqm.eu","20019500","Infiltration" +"http://standardterms.edqm.eu","20020000","Inhalation use" +"http://standardterms.edqm.eu","20021000","Intestinal use" +"http://standardterms.edqm.eu","20022000","Intraamniotic use" +"http://standardterms.edqm.eu","20023000","Intraarterial use" +"http://standardterms.edqm.eu","20024000","Intraarticular use" +"http://standardterms.edqm.eu","20025000","Intrabursal use" +"http://standardterms.edqm.eu","20025500","Intracameral use" +"http://standardterms.edqm.eu","20026000","Intracardiac use" +"http://standardterms.edqm.eu","20026500","Intracartilaginous use" +"http://standardterms.edqm.eu","20027000","Intracavernous use" +"http://standardterms.edqm.eu","20027010","Intracerebral use" +"http://standardterms.edqm.eu","20028000","Intracervical use" +"http://standardterms.edqm.eu","20028300","Intracholangiopancreatic use" +"http://standardterms.edqm.eu","20028500","Intracisternal use" +"http://standardterms.edqm.eu","20029000","Intracoronary use" +"http://standardterms.edqm.eu","20030000","Intradermal use" +"http://standardterms.edqm.eu","20031000","Intradiscal use" +"http://standardterms.edqm.eu","20031500","Intraepidermal use" +"http://standardterms.edqm.eu","20031700","Intraglandular use" +"http://standardterms.edqm.eu","20032000","Intralesional use" +"http://standardterms.edqm.eu","20033000","Intralymphatic use" +"http://standardterms.edqm.eu","20035000","Intramuscular use" +"http://standardterms.edqm.eu","20036000","Intraocular use" +"http://standardterms.edqm.eu","20036500","Intraosseous use" +"http://standardterms.edqm.eu","20037000","Intrapericardial use" +"http://standardterms.edqm.eu","20038000","Intraperitoneal use" +"http://standardterms.edqm.eu","20039000","Intrapleural use" +"http://standardterms.edqm.eu","20039200","Intraportal use" +"http://standardterms.edqm.eu","20039500","Intraprostatic use" +"http://standardterms.edqm.eu","20041000","Intrasternal use" +"http://standardterms.edqm.eu","20042000","Intrathecal use" +"http://standardterms.edqm.eu","20043000","Intratumoral use" +"http://standardterms.edqm.eu","20044000","Intrauterine use" +"http://standardterms.edqm.eu","20045000","Intravenous use" +"http://standardterms.edqm.eu","20046000","Intravesical use" +"http://standardterms.edqm.eu","20047000","Intravitreal use" +"http://standardterms.edqm.eu","20047500","Iontophoresis" +"http://standardterms.edqm.eu","20048000","Laryngopharyngeal use" +"http://standardterms.edqm.eu","20049000","Nasal use" +"http://standardterms.edqm.eu","20051000","Ocular use" +"http://standardterms.edqm.eu","20053000","Oral use" +"http://standardterms.edqm.eu","20054000","Oromucosal use" +"http://standardterms.edqm.eu","20055000","Oropharyngeal use" +"http://standardterms.edqm.eu","20057000","Periarticular use" +"http://standardterms.edqm.eu","20058000","Perineural use" +"http://standardterms.edqm.eu","20059000","Periodontal use" +"http://standardterms.edqm.eu","20059300","Periosseous use" +"http://standardterms.edqm.eu","20059400","Peritumoral use" +"http://standardterms.edqm.eu","20059500","Posterior juxtascleral use" +"http://standardterms.edqm.eu","20061000","Rectal use" +"http://standardterms.edqm.eu","20061500","Retrobulbar use" +"http://standardterms.edqm.eu","20062000","Route of administration not applicable" +"http://standardterms.edqm.eu","20063000","Skin scarification" +"http://standardterms.edqm.eu","20065000","Subconjunctival use" +"http://standardterms.edqm.eu","20066000","Subcutaneous use" +"http://standardterms.edqm.eu","20067000","Sublingual use" +"http://standardterms.edqm.eu","20067500","Submucosal use" +"http://standardterms.edqm.eu","20070000","Transdermal use" +"http://standardterms.edqm.eu","20071000","Urethral use" +"http://standardterms.edqm.eu","20072000","Vaginal use" +"http://standardterms.edqm.eu","20080000","Intracerebroventricular use" +"http://standardterms.edqm.eu","20081000","Subretinal use" +"http://standardterms.edqm.eu","20084000","Intracorneal use" +"http://standardterms.edqm.eu","20086000","Intraputaminal use" +"http://standardterms.edqm.eu","20087000","Extrapleural use" +"http://standardterms.edqm.eu","20088000","Perilesional use" +"http://standardterms.edqm.eu","20089000","Cardioplegic use" +"http://standardterms.edqm.eu","20090000","Intradetrusorial use" diff --git a/.github/value-set-expand/mii-vs-consent-answer.csv b/.github/value-set-expand/mii-vs-consent-answer.csv index 7966adc83..00b9d0490 100644 --- a/.github/value-set-expand/mii-vs-consent-answer.csv +++ b/.github/value-set-expand/mii-vs-consent-answer.csv @@ -1,3 +1,3 @@ -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.2","2.16.840.1.113883.3.1937.777.24.5.2.1" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.2","2.16.840.1.113883.3.1937.777.24.5.2.2" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.2","2.16.840.1.113883.3.1937.777.24.5.2.3" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.2","2.16.840.1.113883.3.1937.777.24.5.2.1","gültig" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.2","2.16.840.1.113883.3.1937.777.24.5.2.2","nicht gültig" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.2","2.16.840.1.113883.3.1937.777.24.5.2.3","unbekannt" diff --git a/.github/value-set-expand/mii-vs-consent-policy.csv b/.github/value-set-expand/mii-vs-consent-policy.csv index 2d9d89c57..7d7d8860f 100644 --- a/.github/value-set-expand/mii-vs-consent-policy.csv +++ b/.github/value-set-expand/mii-vs-consent-policy.csv @@ -1,13 +1,13 @@ -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.1" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.10" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.14" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.18" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.24" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.26" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.30" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.32" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.35" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.44" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.48" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.50" -"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.54" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.1","Patientendaten erheben, speichern, nutzen" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.10","Krankenkassendaten retrospektiv uebertragen, speichern, nutzen" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.14","KKDAT prospektiv uebertragen speichern nutzen" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.18","Biomaterial erheben, lagern, nutzen" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.24","Biomaterial Zusatzentnahme" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.26","Rekontaktierung Ergänzungen" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.30","Rekontaktierung Zusatzbefund" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.32","Z1 GECCO83 Nutzung NUM/CODEX" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.35","Z1 GECCO83 Weitergabe NUM/CODEX non EU DSGVO NIVEAU" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.44","Patientendaten retrospektiv verarbeiten, nutzen" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.48","Patientendaten Weitergabe non DSGVO NIVEAU" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.50","Biomaterial retrospektiv speichern, nutzen" +"urn:oid:2.16.840.1.113883.3.1937.777.24.5.3","2.16.840.1.113883.3.1937.777.24.5.3.54","Biomaterial Weitergabe non EU DSGVO NIVEAU" diff --git a/.github/value-set-expand/mii-vs-consent-signaturetypes.csv b/.github/value-set-expand/mii-vs-consent-signaturetypes.csv index 6afbbf45c..e13f1cafb 100644 --- a/.github/value-set-expand/mii-vs-consent-signaturetypes.csv +++ b/.github/value-set-expand/mii-vs-consent-signaturetypes.csv @@ -1,2 +1,2 @@ -"urn:iso-astm:E1762-95:2013","1.2.840.10065.1.12.1.11" -"urn:iso-astm:E1762-95:2013","1.2.840.10065.1.12.1.7" +"urn:iso-astm:E1762-95:2013","1.2.840.10065.1.12.1.11","Consent Witness Signature" +"urn:iso-astm:E1762-95:2013","1.2.840.10065.1.12.1.7","Consent Signature" diff --git a/.github/value-set-expand/upload.sh b/.github/value-set-expand/upload.sh index 9db4ae802..8ad273b10 100755 --- a/.github/value-set-expand/upload.sh +++ b/.github/value-set-expand/upload.sh @@ -5,7 +5,12 @@ BASE="http://localhost:8080/fhir" echo "Upload $FILENAME" -RESOURCE_TYPE=$(jq -r .resourceType "$FILENAME") +RESOURCE_TYPE="$(jq -r .resourceType "$FILENAME")" if [[ "$RESOURCE_TYPE" =~ ValueSet|CodeSystem ]]; then - curl -sf -H "Content-Type: application/fhir+json" -H "Prefer: return=minimal" -d @"$FILENAME" "$BASE/$RESOURCE_TYPE" + URL="$(jq -r .url "$FILENAME")" + if [[ "$URL" =~ http://unitsofmeasure.org|http://snomed.info/sct ]]; then + echo "Skip creating the code system $URL which is internal in Blaze" + else + curl -sf -H "Content-Type: application/fhir+json" -H "Prefer: return=minimal" -d @"$FILENAME" "$BASE/$RESOURCE_TYPE" + fi fi diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 051c7e8be..20496c6a7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,13 +48,13 @@ jobs: runs-on: ubuntu-24.04 steps: + - name: Check out Git repository + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + - name: Setup Node uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: - node-version: 21 - - - name: Check out Git repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + node-version-file: .nvmrc - name: Build working-directory: job-ig @@ -106,6 +106,7 @@ jobs: - metrics - module-base - openid-auth + - operation-code-system-validate-code - operation-compact - operation-graphql - operation-measure-evaluate-measure @@ -113,6 +114,7 @@ jobs: - operation-patient-purge - operation-totals - operation-value-set-expand + - operation-value-set-validate-code - page-id-cipher - page-store - page-store-cassandra @@ -340,7 +342,7 @@ jobs: - name: Setup Node uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: - node-version: 21 + node-version-file: .nvmrc - name: Build Frontend run: make build-frontend @@ -1264,21 +1266,78 @@ jobs: run: docker load --input /tmp/blaze.tar - name: Run Blaze - run: docker run --name blaze -d -e JAVA_TOOL_OPTIONS=-Xmx2g -p 8080:8080 --read-only --tmpfs /tmp:exec -v blaze-data:/app/data blaze:latest + run: docker run --name blaze -d -e JAVA_TOOL_OPTIONS=-Xmx4g -e ENABLE_TERMINOLOGY_SERVICE=true -p 8080:8080 --read-only --tmpfs /tmp:exec -v blaze-data:/app/data blaze:latest - - name: All KDS Terminology Resources - working-directory: .github/value-set-expand - run: npm install + - name: Install All KDS Terminology Resources + run: make -C .github/value-set-expand install - name: Wait for Blaze run: .github/scripts/wait-for-url.sh http://localhost:8080/health + - name: Check Capability Statement + run: .github/scripts/check-capability-statement-terminology-service.sh + - name: Upload KDS Terminology Resources run: .github/value-set-expand/upload-all.sh + - name: Check Terminology Capabilities + run: .github/scripts/check-terminology-capabilities.sh + - name: Expand KDS Terminology Resources run: .github/value-set-expand/expand.sh + integration-test-validation: + needs: build + runs-on: ubuntu-24.04 + + steps: + - name: Check out Git repository + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + + - name: Setup Node + uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 + with: + node-version-file: .nvmrc + + - name: Install Blazectl + run: .github/scripts/install-blazectl.sh + + - name: Download Blaze Image + uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4 + with: + name: blaze-image + path: /tmp + + - name: Load Blaze Image + run: docker load --input /tmp/blaze.tar + + - name: Run Blaze + run: docker run --name blaze -d -e JAVA_TOOL_OPTIONS=-Xmx4g -e ENABLE_TERMINOLOGY_SERVICE=true -p 8080:8080 --read-only --tmpfs /tmp:exec -v blaze-data:/app/data blaze:latest + + - name: Install All KDS Terminology Resources + run: make -C .github/value-set-expand install + + - name: Download and Unzip MII Test Data + run: make -C .github/validation kds-test-data + + - name: Install Validator + run: make -C .github/validation validator_cli.jar + + - name: Wait for Blaze + run: .github/scripts/wait-for-url.sh http://localhost:8080/health + + - name: Check Capability Statement + run: .github/scripts/check-capability-statement-terminology-service.sh + + - name: Upload KDS Terminology Resources + run: .github/value-set-expand/upload-all.sh + + - name: Check Terminology Capabilities + run: .github/scripts/check-terminology-capabilities.sh + + - name: Validate Medication Resources + run: .github/validation/validate-medication.sh + not-enforcing-referential-integrity-test: needs: build runs-on: ubuntu-24.04 @@ -1798,7 +1857,7 @@ jobs: - name: Setup Node uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: - node-version: 21 + node-version-file: .nvmrc - name: Install Blazectl run: .github/scripts/install-blazectl.sh @@ -2059,6 +2118,7 @@ jobs: - integration-test-synthea-1000 - integration-test-patient-purge - integration-test-value-set-expand + - integration-test-validation - not-enforcing-referential-integrity-test - admin-api-test - small-transactions-test @@ -2114,7 +2174,7 @@ jobs: if: ${{ matrix.image.context == 'modules/frontend' }} uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: - node-version: 21 + node-version-file: .nvmrc - name: Build Frontend if: ${{ matrix.image.context == 'modules/frontend' }} @@ -2218,7 +2278,7 @@ jobs: - name: Setup Node uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: - node-version: 21 + node-version-file: .nvmrc cache: npm cache-dependency-path: 'docs/package-lock.json' diff --git a/README.md b/README.md index b5418d3ce..77f1593dc 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ Please refer to [Deployment](docs/deployment/README.md) for the full documentati * [Tuning Guide](docs/tuning-guide.md) * [Tooling](docs/tooling.md) * [CQL Queries](docs/cql-queries.md) +* [Terminology Service](docs/terminology-service.md) * [Authentication](docs/authentication.md) * [Architecture](docs/architecture.md) * [Implementation](docs/implementation/README.md) diff --git a/deps.edn b/deps.edn index 7c1773167..5d20f10ac 100644 --- a/deps.edn +++ b/deps.edn @@ -16,6 +16,9 @@ blaze/openid-auth {:local/root "modules/openid-auth"} + blaze.operation/code-system-validate-code + {:local/root "modules/operation-code-system-validate-code"} + blaze.operation/compact {:local/root "modules/operation-compact"} @@ -37,6 +40,9 @@ blaze.operation/value-set-expand {:local/root "modules/operation-value-set-expand"} + blaze.operation/value-set-validate-code + {:local/root "modules/operation-value-set-validate-code"} + blaze/page-store-cassandra {:local/root "modules/page-store-cassandra"} diff --git a/docs/README.md b/docs/README.md index 5d989f2bb..fe1ea133c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -11,6 +11,7 @@ * [Tuning Guide](tuning-guide.md) * [Tooling](tooling.md) * [CQL Queries](cql-queries.md) +* [Terminology Service](terminology-service.md) * [Authentication](authentication.md) * [Architecture](architecture.md) * [Implementation](implementation/README.md) diff --git a/docs/api.md b/docs/api.md index 5ea815d50..d290a15f0 100644 --- a/docs/api.md +++ b/docs/api.md @@ -207,7 +207,9 @@ The following Operations are implemented: * [Measure $evaluate-measure](api/operation-measure-evaluate-measure.md) * [Patient $everything](api/operation-patient-everything.md) * [Patient $purge](api/operation-patient-purge.md) +* [CodeSystem $validate-code](api/operation-code-system-validate-code.md) * [ValueSet $expand](api/operation-value-set-expand.md) +* [ValueSet $validate-code](api/operation-value-set-validate-code.md) ## Asynchronous Requests diff --git a/docs/api/operation-code-system-validate-code.md b/docs/api/operation-code-system-validate-code.md new file mode 100644 index 000000000..aab6a9e58 --- /dev/null +++ b/docs/api/operation-code-system-validate-code.md @@ -0,0 +1,24 @@ +# Operation \$validate-code on CodeSystem + +> [!CAUTION] +> The operation \$validate-code on CodeSystem is currently **beta**. Only the basic functionality, described here, is implemented. + +The \$validate-code operation can be used to validate-code all codes of a CodeSystem. + +``` +GET [base]/CodeSystem/$validate-code +GET [base]/CodeSystem/[id]/$validate-code +``` + +## In Parameters + +| Name | Cardinality | Type | Documentation | +|------------|-------------|------------|-------------------------------------------------------------------------------------------------| +| url | 0..1 | uri | A canonical reference to a code system. The code system has to be already stored on the server. | +| codeSystem | 0..1 | CodeSystem | The code system is provided directly as part of the request. | +| code | 0..1 | code | The code that is to be validated. | +| coding | 0..1 | Coding | A coding to validate. The system must match the specified code system. | + +The official documentation can be found [here][1]. + +[1]: diff --git a/docs/api/operation-value-set-expand.md b/docs/api/operation-value-set-expand.md index 137bbf844..78a9c50d5 100644 --- a/docs/api/operation-value-set-expand.md +++ b/docs/api/operation-value-set-expand.md @@ -1,7 +1,8 @@ # Operation \$expand on ValueSet > [!CAUTION] -> The operation \$expand on ValueSet is currently **beta**. Only the basic functionality, described here, is implemented. +> The operation \$expand on ValueSet is currently **beta**. Only the basic functionality, described here, is +> implemented. The \$expand operation can be used to expand all codes of a ValueSet. @@ -12,12 +13,17 @@ GET [base]/ValueSet/[id]/$expand ## In Parameters -| Name | Cardinality | Type | Documentation | -|-------------------|-------------|---------|-------------------------------------------------------------------------------------------------------------------------------------------| -| url | 0..1 | uri | A canonical reference to a value set. The value set has to be already stored on the server. | -| valueSetVersion | 0..1 | string | The business version of the value set. If not given and multiple versions exist, an arbitrary version will be chosen. | -| count | 0..1 | integer | Paging support - how many codes should be provided in a partial page view. If count = 0, the client is asking how large the expansion is. | -| includeDefinition | 0..1 | boolean | Controls whether the value set definition is included or excluded in value set expansions. Defaults to false. | +| Name | Cardinality | Type | Documentation | +|-------------------|-------------|-----------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| url | 0..1 | uri | A canonical reference to a value set. The value set has to be already stored on the server. | +| valueSet | 0..1 | ValueSet | The value set is provided directly as part of the request. | +| valueSetVersion | 0..1 | string | The business version of the value set. If not given and multiple versions exist, an arbitrary version will be chosen. | +| offset | 0..1 | integer | Paging support - where to start if a subset is desired. Currently only 0 is supported. | +| count | 0..1 | integer | Paging support - how many codes should be provided in a partial page view. If count = 0, the client is asking how large the expansion is. | +| includeDefinition | 0..1 | boolean | Controls whether the value set definition is included or excluded in value set expansions. Defaults to false. | +| activeOnly | 0..1 | boolean | Controls whether inactive concepts are included or excluded in value set expansions. Defaults to true. | +| excludeNested | 0..1 | boolean | Controls whether or not the value set expansion may nest codes or not (i.e. ValueSet.expansion.contains.contains). | +| system-version | 0..* | canonical | Specifies a version to use for a system, if the value set does not specify which one to use. The format is the same as a canonical URL: \[system\]\|\[version\] - e.g. http://loinc.org\|2.56 | The official documentation can be found [here][1]. diff --git a/docs/api/operation-value-set-validate-code.md b/docs/api/operation-value-set-validate-code.md new file mode 100644 index 000000000..2037eda14 --- /dev/null +++ b/docs/api/operation-value-set-validate-code.md @@ -0,0 +1,25 @@ +# Operation \$validate-code on ValueSet + +> [!CAUTION] +> The operation \$validate-code on ValueSet is currently **beta**. Only the basic functionality, described here, is implemented. + +The \$validate-code operation can be used to validate-code all codes of a ValueSet. + +``` +GET [base]/ValueSet/$validate-code +GET [base]/ValueSet/[id]/$validate-code +``` + +## In Parameters + +| Name | Cardinality | Type | Documentation | +|-------------|-------------|----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| url | 0..1 | uri | A canonical reference to a value set. The value set has to be already stored on the server. | +| valueSet | 0..1 | ValueSet | The value set is provided directly as part of the request. | +| code | 0..1 | code | The code that is to be validated. If a code is provided, a system must be provided. | +| system | 0..1 | uri | The system for the code that is to be validated. | +| inferSystem | 0..1 | boolean | If true, the terminology server is required to infer the system from evaluation of the value set definition. The inferSystem parameter is only to be used with the code parameter, and not with the coding nor codeableConcept parameters. | + +The official documentation can be found [here][1]. + +[1]: diff --git a/docs/deployment/environment-variables.md b/docs/deployment/environment-variables.md index 4bf3e6ba9..ca3457ec2 100644 --- a/docs/deployment/environment-variables.md +++ b/docs/deployment/environment-variables.md @@ -116,6 +116,9 @@ More information about distributed deployment are available [here](distributed-b | ALLOW_MULTIPLE_DELETE | false | v0.30 | — | Allow deleting multiple resources using [Conditional Delete](../api.md#conditional-delete). | | ENABLE_INTERACTION_DELETE_HISTORY | - | v0.30.1 | — | Enable the [Delete History](../api.md#delete-history) interaction. | | ENABLE_OPERATION_PATIENT_PURGE | - | v0.30.1 | — | Enable the [Operation \$purge on Patient](../api/operation-patient-purge.md). | +| ENABLE_TERMINOLOGY_SERVICE | - | v0.31 | — | Enable the [Terminology Service](../terminology-service.md). | +| ENABLE_TERMINOLOGY_SNOMED_CT | - | v0.31 | — | Enable Snomed CT for the Terminology Service. | +| SNOMED_CT_RELEASE_PATH | - | v0.31 | — | Path of an official Snomed CT release. | ¹ Deprecated diff --git a/docs/terminology-service.md b/docs/terminology-service.md new file mode 100644 index 000000000..b0994077d --- /dev/null +++ b/docs/terminology-service.md @@ -0,0 +1,14 @@ +# Terminology Service + +> [!CAUTION] +> The terminology service is currently **beta**. Only the basic functionality, described here, is implemented. + +## Operations + +* [CodeSystem $validate-code](api/operation-code-system-validate-code.md) +* [ValueSet $expand](api/operation-value-set-expand.md) +* [ValueSet $validate-code](api/operation-value-set-validate-code.md) + +## Enable Snomed CT + +Because Snomed CT has to be licensed, Blaze doesn't contain the Snomed CT code system by default. However, by setting the environment variable `ENABLE_TERMINOLOGY_SNOMED_CT` to `true` and `SNOMED_CT_RELEASE_PATH` to a path of an official Snomed CT release, Blaze will be able to offer terminology services on Snomed CT. The release files are read into memory on each start of Blaze. So the release path has to be always available. diff --git a/job-ig/Makefile b/job-ig/Makefile index ae0f42ec3..2aa4642ba 100644 --- a/job-ig/Makefile +++ b/job-ig/Makefile @@ -8,9 +8,10 @@ validator_cli.jar: wget -q https://github.com/hapifhir/org.hl7.fhir.validator-wrapper/releases/latest/download/validator_cli.jar validate: validator_cli.jar - java -jar validator_cli.jar -version 4.0.1 -level error -debug -tx n/a -ig fsh-generated/resources fsh-generated/resources/Task-*.json fsh-generated/resources/Bundle-*.json + java -jar validator_cli.jar -version 4.0.1 -level error -tx n/a -ig fsh-generated/resources fsh-generated/resources/Task-*.json fsh-generated/resources/Bundle-*.json clean: - rm -r fsh-generated + rm -rf fsh-generated + rm validator_cli.jar .PHONY: install build validate clean diff --git a/job-ig/package-lock.json b/job-ig/package-lock.json index 48619b7be..647cb5864 100644 --- a/job-ig/package-lock.json +++ b/job-ig/package-lock.json @@ -5,7 +5,7 @@ "packages": { "": { "dependencies": { - "fsh-sushi": "^3.12.0" + "fsh-sushi": "^3.13.1" } }, "node_modules/@colors/colors": { @@ -28,6 +28,45 @@ "kuler": "^2.0.0" } }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/fs-minipass": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", + "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.4" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@types/triple-beam": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz", @@ -35,13 +74,10 @@ "license": "MIT" }, "node_modules/agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", + "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", "license": "MIT", - "dependencies": { - "debug": "^4.3.4" - }, "engines": { "node": ">= 14" } @@ -62,6 +98,18 @@ "url": "https://github.com/sponsors/epoberezkin" } }, + "node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -99,9 +147,9 @@ "license": "MIT" }, "node_modules/axios": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", - "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", + "version": "1.7.9", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz", + "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==", "license": "MIT", "dependencies": { "follow-redirects": "^1.15.6", @@ -116,13 +164,12 @@ "license": "MIT" }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "balanced-match": "^1.0.0" } }, "node_modules/buffer-from": { @@ -158,12 +205,12 @@ } }, "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "license": "ISC", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", + "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", + "license": "BlueOak-1.0.0", "engines": { - "node": ">=10" + "node": ">=18" } }, "node_modules/clean-css": { @@ -268,13 +315,27 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "license": "MIT" }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/debug": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", - "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", "license": "MIT", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -304,6 +365,18 @@ "tslib": "^2.0.3" } }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, "node_modules/enabled": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", @@ -348,35 +421,29 @@ } }, "node_modules/fhir-package-loader": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fhir-package-loader/-/fhir-package-loader-1.0.0.tgz", - "integrity": "sha512-x3VY3RY1wkJv8Fd7dA7fY3aw+6Vg7qeCU0pci7wUaEhnJ84k7Lnca6dfH00l36uzH1N5EwVX51iKuuwsS6RdlA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fhir-package-loader/-/fhir-package-loader-2.0.1.tgz", + "integrity": "sha512-6TuYbOpaUySPa3dgpTrtWS51/KKWtzxHgvcZ5PAuRJS4Y0rhbWM8rZ5zhi87uqPqKIP9Sv5AvpxtyRpsTp0WwQ==", "license": "Apache-2.0", "dependencies": { - "axios": "^1.6.7", + "axios": "^1.7.8", "chalk": "^4.1.2", - "commander": "^11.1.0", + "commander": "^12.1.0", + "fhir": "^4.12.0", "fs-extra": "^11.2.0", - "https-proxy-agent": "^7.0.2", + "https-proxy-agent": "^7.0.5", "lodash": "^4.17.21", - "semver": "^7.5.4", - "tar": "^6.2.0", + "mnemonist": "^0.39.8", + "semver": "^7.6.3", + "sql.js": "^1.12.0", + "tar": "^7.4.3", "temp": "^0.9.1", - "winston": "^3.11.0" + "winston": "^3.17.0" }, "bin": { "fpl": "dist/app.js" } }, - "node_modules/fhir-package-loader/node_modules/commander": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", - "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", - "license": "MIT", - "engines": { - "node": ">=16" - } - }, "node_modules/fhir/node_modules/inherits": { "version": "2.0.3", "inBundle": true, @@ -444,9 +511,9 @@ "license": "MIT" }, "node_modules/follow-redirects": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", "funding": [ { "type": "individual", @@ -463,10 +530,26 @@ } } }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", + "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", "license": "MIT", "dependencies": { "asynckit": "^0.4.0", @@ -491,30 +574,6 @@ "node": ">=14.14" } }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -522,9 +581,9 @@ "license": "ISC" }, "node_modules/fsh-sushi": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/fsh-sushi/-/fsh-sushi-3.12.1.tgz", - "integrity": "sha512-cvditqxO/FIimwZ0zmmodi2jPawy8mFkaEwLJn+cqohv/RnPEU9RpdGez5qefUrDAgU4qvY8zub29Or/TfQBrA==", + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/fsh-sushi/-/fsh-sushi-3.13.1.tgz", + "integrity": "sha512-mYpi2wyB6iHVbT4H/DU3G0EA8wq3jod0D5tN2GMZrj+F0Pg37lkqtUpsBxwrFqkec2TvyhgZMfVaYGlvjrbx/Q==", "license": "Apache-2.0", "dependencies": { "ajv": "^8.17.1", @@ -533,7 +592,7 @@ "chalk": "^4.1.2", "commander": "^12.1.0", "fhir": "^4.12.0", - "fhir-package-loader": "^1.0.0", + "fhir-package-loader": "^2.0.1", "fs-extra": "^11.2.0", "html-minifier-terser": "5.1.1", "https-proxy-agent": "^7.0.5", @@ -555,21 +614,20 @@ } }, "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", "license": "ISC", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" }, - "engines": { - "node": "*" + "bin": { + "glob": "dist/esm/bin.mjs" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -630,12 +688,12 @@ } }, "node_modules/https-proxy-agent": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", - "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", "license": "MIT", "dependencies": { - "agent-base": "^7.0.2", + "agent-base": "^7.1.2", "debug": "4" }, "engines": { @@ -674,6 +732,15 @@ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", "license": "MIT" }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/is-number": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", @@ -695,6 +762,27 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", @@ -769,6 +857,12 @@ "tslib": "^2.0.3" } }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, "node_modules/math-random": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", @@ -797,15 +891,18 @@ } }, "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "*" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/minimist": { @@ -818,55 +915,55 @@ } }, "node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "license": "ISC", "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" } }, "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz", + "integrity": "sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==", "license": "MIT", "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" + "minipass": "^7.0.4", + "rimraf": "^5.0.5" }, "engines": { - "node": ">=8" + "node": ">= 18" } }, "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", "license": "MIT", "bin": { - "mkdirp": "bin/cmd.js" + "mkdirp": "dist/cjs/src/bin.js" }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/mnemonist": { + "version": "0.39.8", + "resolved": "https://registry.npmjs.org/mnemonist/-/mnemonist-0.39.8.tgz", + "integrity": "sha512-vyWo2K3fjrUw8YeeZ1zF0fy6Mu59RHokURlld8ymdUPjMlD9EC9ov1/YPqTgqRvUN9nTr3Gqfz29LYAmu0PHPQ==", + "license": "MIT", + "dependencies": { + "obliterator": "^2.0.1" } }, "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "license": "MIT" }, "node_modules/no-case": { @@ -879,6 +976,12 @@ "tslib": "^2.0.3" } }, + "node_modules/obliterator": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/obliterator/-/obliterator-2.0.4.tgz", + "integrity": "sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==", + "license": "MIT" + }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -897,6 +1000,12 @@ "fn.name": "1.x.x" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, "node_modules/param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -926,6 +1035,31 @@ "node": ">=0.10.0" } }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", @@ -988,16 +1122,18 @@ } }, "node_modules/rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", "license": "ISC", "dependencies": { - "glob": "^7.1.3" + "glob": "^10.3.7" }, "bin": { - "rimraf": "bin.js" + "rimraf": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/safe-buffer": { @@ -1056,6 +1192,39 @@ "node": ">=10" } }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/simple-swizzle": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", @@ -1084,6 +1253,12 @@ "source-map": "^0.6.0" } }, + "node_modules/sql.js": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/sql.js/-/sql.js-1.12.0.tgz", + "integrity": "sha512-Bi+43yMx/tUFZVYD4AUscmdL6NHn3gYQ+CM+YheFWLftOmrEC/Mz6Yh7E96Y2WDHYz3COSqT+LP6Z79zgrwJlA==", + "license": "MIT" + }, "node_modules/stack-trace": { "version": "0.0.10", "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", @@ -1102,6 +1277,102 @@ "safe-buffer": "~5.2.0" } }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -1115,20 +1386,20 @@ } }, "node_modules/tar": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", - "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "version": "7.4.3", + "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz", + "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==", "license": "ISC", "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" + "@isaacs/fs-minipass": "^4.0.0", + "chownr": "^3.0.0", + "minipass": "^7.1.2", + "minizlib": "^3.0.1", + "mkdirp": "^3.0.1", + "yallist": "^5.0.0" }, "engines": { - "node": ">=10" + "node": ">=18" } }, "node_modules/temp": { @@ -1144,6 +1415,49 @@ "node": ">=6.0.0" } }, + "node_modules/temp/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/temp/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/temp/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/temp/node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", @@ -1156,6 +1470,19 @@ "mkdirp": "bin/cmd.js" } }, + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, "node_modules/terser": { "version": "4.8.1", "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", @@ -1250,6 +1577,21 @@ "resolved": "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz", "integrity": "sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==" }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/winston": { "version": "3.17.0", "resolved": "https://registry.npmjs.org/winston/-/winston-3.17.0.tgz", @@ -1286,6 +1628,94 @@ "node": ">= 12.0.0" } }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -1293,10 +1723,13 @@ "license": "ISC" }, "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "license": "ISC" + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", + "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } }, "node_modules/yaml": { "version": "1.10.2", diff --git a/job-ig/package.json b/job-ig/package.json index 16d3c77ae..da11843a3 100644 --- a/job-ig/package.json +++ b/job-ig/package.json @@ -1,5 +1,5 @@ { "dependencies": { - "fsh-sushi": "^3.12.0" + "fsh-sushi": "^3.13.1" } } diff --git a/modules/fhir-structure/src/blaze/fhir/spec/spec.clj b/modules/fhir-structure/src/blaze/fhir/spec/spec.clj index 435e85520..49976a611 100644 --- a/modules/fhir-structure/src/blaze/fhir/spec/spec.clj +++ b/modules/fhir-structure/src/blaze/fhir/spec/spec.clj @@ -31,6 +31,9 @@ (s/def :fhir/CodeableConcept #(s2/valid? :fhir/CodeableConcept %)) +(s/def :fhir/Coding + #(s2/valid? :fhir/Coding %)) + (s/def :fhir/Expression #(s2/valid? :fhir/Expression %)) @@ -72,3 +75,6 @@ (s/def :fhir.ValueSet.expansion/contains #(s2/valid? :fhir.ValueSet.expansion/contains %)) + +(s/def :fhir/Parameters + #(s2/valid? :fhir/Parameters %)) diff --git a/modules/fhir-test-util/src/blaze/fhir/test_util.clj b/modules/fhir-test-util/src/blaze/fhir/test_util.clj index 89fdadf95..3b9f2537b 100644 --- a/modules/fhir-test-util/src/blaze/fhir/test_util.clj +++ b/modules/fhir-test-util/src/blaze/fhir/test_util.clj @@ -33,6 +33,12 @@ #(proxy [Random] [] (nextLong [] n))) +(defmethod ig/init-key :blaze.test/incrementing-rng-fn + [_ _] + (let [n (atom -1)] + #(proxy [Random] [] + (nextLong [] (swap! n inc))))) + (defmethod ig/init-key :blaze.test/fixed-rng [_ _] (let [state (atom 0)] diff --git a/modules/job-scheduler/test/blaze/job_scheduler_test.clj b/modules/job-scheduler/test/blaze/job_scheduler_test.clj index 358f8068a..101516fa0 100644 --- a/modules/job-scheduler/test/blaze/job_scheduler_test.clj +++ b/modules/job-scheduler/test/blaze/job_scheduler_test.clj @@ -31,7 +31,6 @@ [juxt.iota :refer [given]] [taoensso.timbre :as log]) (:import - [java.util Random] [java.util.concurrent TimeUnit])) (set! *warn-on-reflection* true) @@ -108,7 +107,7 @@ :blaze.job/error (ig/ref :blaze.job/error) :blaze.job/throws-error (ig/ref :blaze.job/throws-error)} :clock (ig/ref :blaze.test/fixed-clock) - :rng-fn (ig/ref ::incrementing-rng-fn)} + :rng-fn (ig/ref :blaze.test/incrementing-rng-fn)} :blaze.job/test {:admin-node (ig/ref :blaze.db.admin/node)} @@ -230,13 +229,7 @@ :blaze.test/fixed-clock {} - ::incrementing-rng-fn {}}) - -(defmethod ig/init-key ::incrementing-rng-fn - [_ _] - (let [n (atom -1)] - #(proxy [Random] [] - (nextLong [] (swap! n inc))))) + :blaze.test/incrementing-rng-fn {}}) (deftest init-test (testing "nil config" diff --git a/modules/module-base/src/blaze/path.clj b/modules/module-base/src/blaze/path.clj new file mode 100644 index 000000000..b11b6351c --- /dev/null +++ b/modules/module-base/src/blaze/path.clj @@ -0,0 +1,14 @@ +(ns blaze.path + (:import + [java.nio.file Files LinkOption Path])) + +(set! *warn-on-reflection* true) + +(defn path? [x] + (instance? Path x)) + +(defn path [first & more] + (Path/of first (into-array String more))) + +(defn dir? [path] + (Files/isDirectory ^Path path (into-array LinkOption []))) diff --git a/modules/module-base/src/blaze/path/spec.clj b/modules/module-base/src/blaze/path/spec.clj new file mode 100644 index 000000000..27b1e54cc --- /dev/null +++ b/modules/module-base/src/blaze/path/spec.clj @@ -0,0 +1,10 @@ +(ns blaze.path.spec + (:require + [blaze.path :refer [path? dir?]] + [clojure.spec.alpha :as s])) + +(s/def :blaze/path + path?) + +(s/def :blaze/dir + (s/and path? dir?)) diff --git a/modules/module-base/src/blaze/path_spec.clj b/modules/module-base/src/blaze/path_spec.clj new file mode 100644 index 000000000..01b69a9ab --- /dev/null +++ b/modules/module-base/src/blaze/path_spec.clj @@ -0,0 +1,17 @@ +(ns blaze.path-spec + (:require + [blaze.path :refer [path? path dir?]] + [blaze.path.spec] + [clojure.spec.alpha :as s])) + +(s/fdef path? + :args (s/cat :x any?) + :ret boolean?) + +(s/fdef path + :args (s/cat :first string? :more (s/* string?)) + :ret :blaze/path) + +(s/fdef dir? + :args (s/cat :path path?) + :ret boolean?) diff --git a/modules/module-base/test/blaze/path_test.clj b/modules/module-base/test/blaze/path_test.clj new file mode 100644 index 000000000..9f255247e --- /dev/null +++ b/modules/module-base/test/blaze/path_test.clj @@ -0,0 +1,28 @@ +(ns blaze.path-test + (:require + [blaze.path :refer [dir? path path?]] + [blaze.path-spec] + [blaze.test-util :as tu] + [clojure.spec.alpha :as s] + [clojure.spec.test.alpha :as st] + [clojure.test :as test :refer [are deftest is testing]])) + +(st/instrument) + +(test/use-fixtures :each tu/fixture) + +(deftest path-test + (testing "existing directory" + (is (path? (path "src"))) + (is (dir? (path "src")))) + + (testing "non-existing path" + (is (not (dir? (path "foo")))))) + +(deftest dir-spec-test + (is (s/valid? :blaze/dir (path "src"))) + + (are [x] (not (s/valid? :blaze/dir x)) + (path "foo") + "foo" + nil)) diff --git a/modules/operation-code-system-validate-code/.clj-kondo/config.edn b/modules/operation-code-system-validate-code/.clj-kondo/config.edn new file mode 100644 index 000000000..f3819e7fc --- /dev/null +++ b/modules/operation-code-system-validate-code/.clj-kondo/config.edn @@ -0,0 +1,9 @@ +{:config-paths + ["../../../.clj-kondo/root" + "../../anomaly/resources/clj-kondo.exports/blaze/anomaly" + "../../async/resources/clj-kondo.exports/blaze/async" + "../../db-stub/resources/clj-kondo.exports/blaze/db-stub" + "../../module-test-util/resources/clj-kondo.exports/blaze/module-test-util"] + + :lint-as + {blaze.fhir.operation.code-system.validate-code-test/with-handler clojure.core/fn}} diff --git a/modules/operation-code-system-validate-code/Makefile b/modules/operation-code-system-validate-code/Makefile new file mode 100644 index 000000000..6ddac5bcb --- /dev/null +++ b/modules/operation-code-system-validate-code/Makefile @@ -0,0 +1,25 @@ +fmt: + cljfmt check src test deps.edn tests.edn + +lint: + clj-kondo --lint src test deps.edn + +prep: + clojure -X:deps prep + +test: prep + clojure -M:test:kaocha --profile :ci + +test-coverage: prep + clojure -M:test:coverage + +cloc-prod: + cloc src + +cloc-test: + cloc test + +clean: + rm -rf .clj-kondo/.cache .cpcache target + +.PHONY: fmt lint prep test test-coverage cloc-prod cloc-test clean diff --git a/modules/operation-code-system-validate-code/README.md b/modules/operation-code-system-validate-code/README.md new file mode 100644 index 000000000..7924f0fb0 --- /dev/null +++ b/modules/operation-code-system-validate-code/README.md @@ -0,0 +1,3 @@ +# Module - Operation \$validate-code on CodeSystem + +The API documentation can be found [here](../../docs/api/operation-code-system-validate-code.md). diff --git a/modules/operation-code-system-validate-code/deps.edn b/modules/operation-code-system-validate-code/deps.edn new file mode 100644 index 000000000..8c22ed6d6 --- /dev/null +++ b/modules/operation-code-system-validate-code/deps.edn @@ -0,0 +1,31 @@ +{:deps + {blaze/module-base + {:local/root "../module-base"} + + blaze/rest-util + {:local/root "../rest-util"} + + blaze/terminology-service + {:local/root "../terminology-service"}} + + :aliases + {:test + {:extra-paths ["test"] + + :extra-deps + {blaze/db-stub + {:local/root "../db-stub"}}} + + :kaocha + {:extra-deps + {lambdaisland/kaocha + {:mvn/version "1.91.1392"}} + + :main-opts ["-m" "kaocha.runner"]} + + :coverage + {:extra-deps + {lambdaisland/kaocha-cloverage + {:mvn/version "1.1.89"}} + + :main-opts ["-m" "kaocha.runner" "--profile" "coverage"]}}} diff --git a/modules/operation-code-system-validate-code/src/blaze/fhir/operation/code_system/validate_code.clj b/modules/operation-code-system-validate-code/src/blaze/fhir/operation/code_system/validate_code.clj new file mode 100644 index 000000000..ee1109728 --- /dev/null +++ b/modules/operation-code-system-validate-code/src/blaze/fhir/operation/code_system/validate_code.clj @@ -0,0 +1,104 @@ +(ns blaze.fhir.operation.code-system.validate-code + "Main entry point into the CodeSystem $validate-code operation." + (:require + [blaze.anomaly :as ba :refer [if-ok when-ok]] + [blaze.async.comp :as ac :refer [do-sync]] + [blaze.fhir.spec.type :as type] + [blaze.module :as m] + [blaze.terminology-service :as ts] + [blaze.terminology-service.spec] + [clojure.spec.alpha :as s] + [integrant.core :as ig] + [ring.util.response :as ring] + [taoensso.timbre :as log]) + (:import + [com.google.common.base CaseFormat])) + +(set! *warn-on-reflection* true) + +(def ^:private parameter-specs + [{:name "url" :action :copy} + {:name "codeSystem" :action :copy-resource} + {:name "code" :action :copy} + {:name "coding" :action :copy-complex-type} + {:name "codeableConcept"} + {:name "date"} + {:name "abstract"} + {:name "displayLanguage" :action :copy}]) + +(defn camel->kebab [s] + (.to CaseFormat/LOWER_CAMEL CaseFormat/LOWER_HYPHEN s)) + +(defn- validate-query-params [params] + (reduce + (fn [new-params {:keys [name action]}] + (if-let [value (get params name)] + (case action + :copy + (assoc new-params (keyword (camel->kebab name)) value) + + (:copy-complex-type :copy-resource) + (reduced (ba/unsupported (format "Unsupported parameter `%s` in GET request. Please use POST." name) + :http/status 400)) + + (reduced (ba/unsupported (format "Unsupported parameter `%s`." name) + :http/status 400))) + new-params)) + {} + parameter-specs)) + +(defn- validate-body-params [{params :parameter}] + (reduce + (fn [new-params {:keys [name action]}] + (if-let [param (some #(when (= name (type/value (:name %))) %) params)] + (case action + :copy + (assoc new-params (keyword (camel->kebab name)) (type/value (:value param))) + + :copy-complex-type + (assoc new-params (keyword (camel->kebab name)) (:value param)) + + :copy-resource + (assoc new-params (keyword (camel->kebab name)) (:resource param)) + + (reduced (ba/unsupported (format "Unsupported parameter `%s`." name) + :http/status 400))) + new-params)) + {} + parameter-specs)) + +(defn- fix-url [{:keys [url code-system coding] :as params}] + (if (and (nil? url) (nil? code-system)) + (if-let [system (type/value (:system coding))] + (assoc params :url system) + (ba/incorrect "Missing required parameter `url`.")) + params)) + +(defn- validate-params [{:keys [request-method body query-params]}] + (if (= :post request-method) + (when-ok [params (validate-body-params body)] + (fix-url params)) + (validate-query-params query-params))) + +(defn- validate-code + [terminology-service {{:keys [id]} :path-params :as request}] + (if-ok [{:keys [url code-system] :as params} (validate-params request)] + (cond + id (ts/code-system-validate-code terminology-service (assoc params :id id)) + url (ts/code-system-validate-code terminology-service params) + code-system (ts/code-system-validate-code terminology-service params) + :else (ac/completed-future (ba/incorrect "Missing required parameter `url`."))) + ac/completed-future)) + +(defn- handler [terminology-service] + (fn [request] + (do-sync [response (validate-code terminology-service request)] + (ring/response response)))) + +(defmethod m/pre-init-spec :blaze.fhir.operation.code-system/validate-code [_] + (s/keys :req-un [:blaze/terminology-service])) + +(defmethod ig/init-key :blaze.fhir.operation.code-system/validate-code + [_ {:keys [terminology-service]}] + (log/info "Init FHIR CodeSystem $validate-code operation handler") + (handler terminology-service)) diff --git a/modules/operation-code-system-validate-code/test/blaze/fhir/operation/code_system/validate_code_test.clj b/modules/operation-code-system-validate-code/test/blaze/fhir/operation/code_system/validate_code_test.clj new file mode 100644 index 000000000..7bd67fdb2 --- /dev/null +++ b/modules/operation-code-system-validate-code/test/blaze/fhir/operation/code_system/validate_code_test.clj @@ -0,0 +1,368 @@ +(ns blaze.fhir.operation.code-system.validate-code-test + (:require + [blaze.async.comp :as ac] + [blaze.db.api-stub :as api-stub :refer [with-system-data]] + [blaze.fhir.operation.code-system.validate-code] + [blaze.fhir.spec.type :as type] + [blaze.handler.util :as handler-util] + [blaze.terminology-service :as ts] + [blaze.terminology-service.local] + [blaze.test-util :as tu :refer [given-thrown]] + [clojure.spec.alpha :as s] + [clojure.spec.test.alpha :as st] + [clojure.test :as test :refer [deftest is testing]] + [integrant.core :as ig] + [juxt.iota :refer [given]] + [taoensso.timbre :as log])) + +(st/instrument) +(log/set-min-level! :trace) + +(test/use-fixtures :each tu/fixture) + +(deftest init-test + (testing "nil config" + (given-thrown (ig/init {:blaze.fhir.operation.code-system/validate-code nil}) + :key := :blaze.fhir.operation.code-system/validate-code + :reason := ::ig/build-failed-spec + [:cause-data ::s/problems 0 :pred] := `map?)) + + (testing "missing config" + (given-thrown (ig/init {:blaze.fhir.operation.code-system/validate-code {}}) + :key := :blaze.fhir.operation.code-system/validate-code + :reason := ::ig/build-failed-spec + [:cause-data ::s/problems 0 :pred] := `(fn ~'[%] (contains? ~'% :terminology-service)))) + + (testing "invalid structure definition repo" + (given-thrown (ig/init {:blaze.fhir.operation.code-system/validate-code {:terminology-service ::invalid}}) + :key := :blaze.fhir.operation.code-system/validate-code + :reason := ::ig/build-failed-spec + [:cause-data ::s/problems 0 :via] := [:blaze/terminology-service] + [:cause-data ::s/problems 0 :val] := ::invalid))) + +(def config + (assoc + api-stub/mem-node-config + :blaze.fhir.operation.code-system/validate-code + {:terminology-service (ig/ref ::ts/local)} + ::ts/local + {:node (ig/ref :blaze.db/node) + :clock (ig/ref :blaze.test/fixed-clock) + :rng-fn (ig/ref :blaze.test/fixed-rng-fn)} + :blaze.test/fixed-rng-fn {})) + +(defn wrap-error [handler] + (fn [request] + (-> (handler request) + (ac/exceptionally handler-util/error-response)))) + +(defmacro with-handler [[handler-binding] & more] + (let [[txs body] (api-stub/extract-txs-body more)] + `(with-system-data [{handler# :blaze.fhir.operation.code-system/validate-code} config] + ~txs + (let [~handler-binding (-> handler# wrap-error)] + ~@body)))) + +(deftest handler-test + (testing "code system not found" + (testing "by id" + (with-handler [handler] + (let [{:keys [status body]} + @(handler {:path-params {:id "170852"}})] + + (is (= 404 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"not-found" + [:issue 0 :diagnostics] := "The code system with id `170852` was not found.")))) + + (testing "by url" + (with-handler [handler] + (let [{:keys [status body]} + @(handler {:query-params {"url" "153404"}})] + + (is (= 404 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"not-found" + [:issue 0 :diagnostics] := "The code system with URL `153404` was not found.")))) + + (testing "without url or id" + (with-handler [handler] + (let [{:keys [status body]} + @(handler {})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"invalid" + [:issue 0 :diagnostics] := "Missing required parameter `url`.")))) + + (testing "unsupported parameters" + (with-handler [handler] + (doseq [param ["codeableConcept" "date" "abstract"]] + (testing "GET" + (let [{:keys [status body]} + @(handler {:query-params {param "foo"}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"not-supported" + [:issue 0 :diagnostics] := (format "Unsupported parameter `%s`." param)))) + + (testing "POST" + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name (type/string param) + :value (type/string "foo")}]}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"not-supported" + [:issue 0 :diagnostics] := (format "Unsupported parameter `%s`." param))))))) + + (testing "unsupported GET parameters" + (with-handler [handler] + (doseq [param ["codeSystem" "coding"]] + (let [{:keys [status body]} + @(handler {:query-params {param "foo"}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"not-supported" + [:issue 0 :diagnostics] := (format "Unsupported parameter `%s` in GET request. Please use POST." param))))))) + + (testing "successful validation by id" + (with-handler [handler] + [[[:put {:fhir/type :fhir/CodeSystem :id "id-162245" + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}]]] + + (testing "and code" + (doseq [[code result] [["code-115927" true] ["code-210428" false]]] + (let [{:keys [status body]} + @(handler {:path-params {:id "id-162245"} + :query-params {"code" code}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value type/value] := result)))) + + (testing "and coding" + (let [{:keys [status body]} + @(handler {:request-method :post + :path-params {:id "id-162245"} + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"coding" + :value #fhir/Coding{:system #fhir/uri"system-115910" + :code #fhir/code"code-115927"}}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910"))))) + + (testing "successful validation by url" + (with-handler [handler] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}]]] + + (testing "and code" + (doseq [[code result] [["code-115927" true] ["code-210428" false]]] + (let [{:keys [status body]} + @(handler {:query-params {"url" "system-115910" + "code" code}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value type/value] := result))) + + (testing "with displayLanguage" + (doseq [lang ["en" "de"]] + (let [{:keys [status body]} + @(handler {:query-params {"url" "system-115910" + "code" "code-115927" + "displayLanguage" lang}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true))))) + + (testing "and coding" + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"url" + :value #fhir/uri"system-115910"} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"coding" + :value #fhir/Coding{:system #fhir/uri"system-115910" + :code #fhir/code"code-115927"}}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910")) + + (testing "with displayLanguage" + (doseq [lang ["en" "de"]] + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"url" + :value #fhir/uri"system-115910"} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"coding" + :value #fhir/Coding{:system #fhir/uri"system-115910" + :code #fhir/code"code-115927"}} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"displayLanguage" + :value (type/code lang)}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910"))))))) + + (testing "successful validation by coding only" + (with-handler [handler] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}]]] + + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"coding" + :value #fhir/Coding{:system #fhir/uri"system-115910" + :code #fhir/code"code-115927"}}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910")))) + + (testing "fails with coding only without system" + (with-handler [handler] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}]]] + + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"coding" + :value #fhir/Coding{:code #fhir/code"code-115927"}}]}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"invalid" + [:issue 0 :diagnostics] := "Missing required parameter `url`.")))) + + (testing "successful validation by codeSystem" + (testing "and code" + (with-handler [handler] + (doseq [[code result] [["code-115927" true] ["code-210428" false]]] + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"codeSystem" + :resource + {:fhir/type :fhir/CodeSystem + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"code" + :value (type/code code)}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value type/value] := result))))))) diff --git a/modules/operation-code-system-validate-code/tests.edn b/modules/operation-code-system-validate-code/tests.edn new file mode 100644 index 000000000..12727a10d --- /dev/null +++ b/modules/operation-code-system-validate-code/tests.edn @@ -0,0 +1,10 @@ +#kaocha/v1 + #merge + [{} + #profile {:ci {:reporter kaocha.report/documentation + :color? false} + :coverage {:plugins [:kaocha.plugin/cloverage] + :cloverage/opts + {:codecov? true} + :reporter kaocha.report/documentation + :color? false}}] diff --git a/modules/operation-value-set-expand/README.md b/modules/operation-value-set-expand/README.md index 0b5876929..e6aded18b 100644 --- a/modules/operation-value-set-expand/README.md +++ b/modules/operation-value-set-expand/README.md @@ -1,15 +1,3 @@ # Module - Operation \$expand on ValueSet -> [!CAUTION] -> The operation \$expand on ValueSet is currently **beta**. Only a basic functionality is implemented. - -The \$expand operation can be used to expand all codes of a ValueSet. - -``` -GET [base]/ValueSet/$expand -GET [base]/ValueSet/[id]/$expand -``` - -The official documentation can be found [here][1]. - -[1]: +The API documentation can be found [here](../../docs/api/operation-value-set-expand.md). diff --git a/modules/operation-value-set-expand/src/blaze/fhir/operation/value_set/expand.clj b/modules/operation-value-set-expand/src/blaze/fhir/operation/value_set/expand.clj index 8ca3356a1..e65f3cfde 100644 --- a/modules/operation-value-set-expand/src/blaze/fhir/operation/value_set/expand.clj +++ b/modules/operation-value-set-expand/src/blaze/fhir/operation/value_set/expand.clj @@ -1,8 +1,9 @@ (ns blaze.fhir.operation.value-set.expand "Main entry point into the ValueSet $expand operation." (:require - [blaze.anomaly :as ba :refer [if-ok]] + [blaze.anomaly :as ba :refer [if-ok when-ok]] [blaze.async.comp :as ac :refer [do-sync]] + [blaze.fhir.spec.type :as type] [blaze.module :as m] [blaze.terminology-service :as ts] [blaze.terminology-service.spec] @@ -15,6 +16,31 @@ (set! *warn-on-reflection* true) +(def ^:private parameter-specs + [{:name "url" :action :copy} + {:name "valueSet" :action :copy-resource} + {:name "valueSetVersion" :action :copy} + {:name "context"} + {:name "contextDirection"} + {:name "filter"} + {:name "date"} + {:name "offset" :action :parse-nat-long} + {:name "count" :action :parse-nat-long} + {:name "includeDesignations"} + {:name "designation"} + {:name "includeDefinition" :action :parse-boolean} + {:name "activeOnly" :action :parse-boolean} + {:name "useSupplement"} + {:name "excludeNested" :action :parse-boolean} + {:name "excludeNotForUI"} + {:name "excludePostCoordinated"} + {:name "displayLanguage" :action :copy} + {:name "property"} + {:name "exclude-system"} + {:name "system-version" :action :parse-canonical :cardinality :many} + {:name "check-system-version"} + {:name "force-system-version"}]) + (defn camel->kebab [s] (.to CaseFormat/LOWER_CAMEL CaseFormat/LOWER_HYPHEN s)) @@ -23,61 +49,86 @@ (when-not (neg? value) value))) -(defn- validate-params [params] +(defn- assoc-via [params {:keys [name cardinality]} value] + (if (identical? :many cardinality) + (update params (keyword (camel->kebab name)) (fnil conj []) value) + (assoc params (keyword (camel->kebab name)) value))) + +(defn- validate-query-params [params] (reduce - (fn [params {:keys [name action]}] + (fn [new-params {:keys [name action] :as spec}] (if-let [value (get params name)] (case action :copy - (-> (dissoc params name) - (assoc (keyword (camel->kebab name)) value)) + (assoc-via new-params spec value) :parse-nat-long (if-let [value (parse-nat-long value)] - (-> (dissoc params name) - (assoc (keyword (camel->kebab name)) value)) + (assoc-via new-params spec value) (reduced (ba/incorrect (format "Invalid value for parameter `%s`. Has to be a non-negative integer." name)))) :parse-boolean (if-let [value (parse-boolean value)] - (-> (dissoc params name) - (assoc (keyword (camel->kebab name)) value)) + (assoc-via new-params spec value) (reduced (ba/incorrect (format "Invalid value for parameter `%s`. Has to be a boolean." name)))) + :parse-canonical + (assoc-via new-params spec (type/canonical value)) + + :copy-resource + (reduced (ba/unsupported (format "Unsupported parameter `%s` in GET request. Please use POST." name) + :http/status 400)) + + (reduced (ba/unsupported (format "Unsupported parameter `%s`." name) + :http/status 400))) + new-params)) + {} + parameter-specs)) + +(defn- validate-body-params [{params :parameter}] + (reduce + (fn [new-params {:keys [name action] :as spec}] + (if-let [param (some #(when (= name (type/value (:name %))) %) params)] + (case action + (:copy :parse-boolean) + (assoc-via new-params spec (type/value (:value param))) + + :parse-nat-long + (let [value (type/value (:value param))] + (if-not (neg? value) + (assoc-via new-params spec value) + (reduced (ba/incorrect (format "Invalid value for parameter `%s`. Has to be a non-negative integer." name))))) + + :parse-canonical + (assoc-via new-params spec (:value param)) + + :copy-resource + (assoc-via new-params spec (:resource param)) + (reduced (ba/unsupported (format "Unsupported parameter `%s`." name) :http/status 400))) - params)) - params - [{:name "url" :action :copy} - {:name "valueSetVersion" :action :copy} - {:name "context"} - {:name "contextDirection"} - {:name "filter"} - {:name "date"} - {:name "offset"} - {:name "count" :action :parse-nat-long} - {:name "includeDesignations"} - {:name "designation"} - {:name "includeDefinition" :action :parse-boolean} - {:name "activeOnly"} - {:name "useSupplement"} - {:name "excludeNested"} - {:name "excludeNotForUI"} - {:name "excludePostCoordinated"} - {:name "displayLanguage"} - {:name "property"} - {:name "exclude-system"} - {:name "system-version"} - {:name "check-system-version"} - {:name "force-system-version"}])) + new-params)) + {} + parameter-specs)) + +(defn- validate-more [{:keys [offset] :as params}] + (if (and (some? offset) (not (zero? offset))) + (ba/incorrect "Invalid non-zero value for parameter `offset`.") + params)) + +(defn- validate-params [{:keys [request-method body query-params]}] + (when-ok [params (if (= :post request-method) + (validate-body-params body) + (validate-query-params query-params))] + (validate-more params))) (defn- expand-value-set - [terminology-service - {{:keys [id]} :path-params {:strs [url] :as params} :query-params}] - (if-ok [params (validate-params params)] + [terminology-service {{:keys [id]} :path-params :as request}] + (if-ok [{:keys [url value-set] :as params} (validate-params request)] (cond id (ts/expand-value-set terminology-service (assoc params :id id)) url (ts/expand-value-set terminology-service params) + value-set (ts/expand-value-set terminology-service params) :else (ac/completed-future (ba/incorrect "Missing required parameter `url`."))) ac/completed-future)) diff --git a/modules/operation-value-set-expand/test/blaze/fhir/operation/value_set/expand_test.clj b/modules/operation-value-set-expand/test/blaze/fhir/operation/value_set/expand_test.clj index fc290feeb..45b892668 100644 --- a/modules/operation-value-set-expand/test/blaze/fhir/operation/value_set/expand_test.clj +++ b/modules/operation-value-set-expand/test/blaze/fhir/operation/value_set/expand_test.clj @@ -3,10 +3,10 @@ [blaze.async.comp :as ac] [blaze.db.api-stub :as api-stub :refer [with-system-data]] [blaze.fhir.operation.value-set.expand] + [blaze.fhir.spec.type :as type] [blaze.handler.util :as handler-util] [blaze.terminology-service :as ts] [blaze.terminology-service.local] - [blaze.terminology-service.spec :refer [terminology-service?]] [blaze.test-util :as tu :refer [given-thrown]] [clojure.spec.alpha :as s] [clojure.spec.test.alpha :as st] @@ -37,7 +37,7 @@ (given-thrown (ig/init {:blaze.fhir.operation.value-set/expand {:terminology-service ::invalid}}) :key := :blaze.fhir.operation.value-set/expand :reason := ::ig/build-failed-spec - [:cause-data ::s/problems 0 :pred] := `terminology-service? + [:cause-data ::s/problems 0 :via] := [:blaze/terminology-service] [:cause-data ::s/problems 0 :val] := ::invalid))) (def config @@ -47,7 +47,9 @@ {:terminology-service (ig/ref ::ts/local)} ::ts/local {:node (ig/ref :blaze.db/node) - :clock (ig/ref :blaze.test/fixed-clock)})) + :clock (ig/ref :blaze.test/fixed-clock) + :rng-fn (ig/ref :blaze.test/fixed-rng-fn)} + :blaze.test/fixed-rng-fn {})) (defn wrap-error [handler] (fn [request] @@ -87,7 +89,7 @@ :fhir/type := :fhir/OperationOutcome [:issue 0 :severity] := #fhir/code"error" [:issue 0 :code] := #fhir/code"not-found" - [:issue 0 :diagnostics] := "The value set with URL `153404` was not found.")))) + [:issue 0 :diagnostics] := "The value set `153404` was not found.")))) (testing "without url or id" (with-handler [handler] @@ -104,12 +106,44 @@ (testing "unsupported parameters" (with-handler [handler] - (doseq [param ["context" "contextDirection" "filter" "date" "offset" - "includeDesignations" "designation" "activeOnly" - "useSupplement" "excludeNested" "excludeNotForUI" - "excludePostCoordinated" "displayLanguage" "property" - "exclude-system" "system-version" "check-system-version" + (doseq [param ["context" "contextDirection" "filter" "date" + "includeDesignations" "designation" + "useSupplement" "excludeNotForUI" + "excludePostCoordinated" "property" + "exclude-system" "check-system-version" "force-system-version"]] + (testing "GET" + (let [{:keys [status body]} + @(handler {:query-params {param "foo"}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"not-supported" + [:issue 0 :diagnostics] := (format "Unsupported parameter `%s`." param)))) + + (testing "POST" + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name (type/string param) + :value (type/string "foo")}]}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"not-supported" + [:issue 0 :diagnostics] := (format "Unsupported parameter `%s`." param))))))) + + (testing "unsupported GET parameters" + (with-handler [handler] + (doseq [param ["valueSet"]] (let [{:keys [status body]} @(handler {:query-params {param "foo"}})] @@ -119,13 +153,32 @@ :fhir/type := :fhir/OperationOutcome [:issue 0 :severity] := #fhir/code"error" [:issue 0 :code] := #fhir/code"not-supported" - [:issue 0 :diagnostics] := (format "Unsupported parameter `%s`." param)))))) + [:issue 0 :diagnostics] := (format "Unsupported parameter `%s` in GET request. Please use POST." param)))))) (testing "invalid non-integer parameter count" - (with-handler [handler] - (doseq [value ["", "a" "-1"]] + (testing "GET" + (with-handler [handler] + (doseq [value ["", "a" "-1"]] + (let [{:keys [status body]} + @(handler {:query-params {"count" value}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"invalid" + [:issue 0 :diagnostics] := "Invalid value for parameter `count`. Has to be a non-negative integer."))))) + + (testing "POST" + (with-handler [handler] (let [{:keys [status body]} - @(handler {:query-params {"count" value}})] + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"count" + :value #fhir/integer -1}]}})] (is (= 400 status)) @@ -135,6 +188,38 @@ [:issue 0 :code] := #fhir/code"invalid" [:issue 0 :diagnostics] := "Invalid value for parameter `count`. Has to be a non-negative integer."))))) + (testing "invalid non-zero parameter offset" + (testing "GET" + (with-handler [handler] + (let [{:keys [status body]} + @(handler {:query-params {"offset" "1"}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"invalid" + [:issue 0 :diagnostics] := "Invalid non-zero value for parameter `offset`.")))) + + (testing "POST" + (with-handler [handler] + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"offset" + :value #fhir/integer 1}]}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"invalid" + [:issue 0 :diagnostics] := "Invalid non-zero value for parameter `offset`."))))) + (testing "invalid boolean parameter includeDefinition" (with-handler [handler] (doseq [value ["", "a" "0" "1"]] @@ -179,6 +264,7 @@ (with-handler [handler] [[[:put {:fhir/type :fhir/CodeSystem :id "0" :url #fhir/uri"system-115910" + :version #fhir/string"version-170327" :content #fhir/code"complete" :concept [{:fhir/type :fhir.CodeSystem/concept @@ -191,17 +277,203 @@ [{:fhir/type :fhir.ValueSet.compose/include :system #fhir/uri"system-115910"}]}}]]] - (let [{:keys [status body]} - @(handler {:query-params {"url" "value-set-154043"}})] + (doseq [lang [nil "en" "de"]] + (let [{:keys [status body]} + @(handler {:query-params (cond-> {"url" "value-set-154043"} + lang (assoc "displayLanguage" lang))})] - (is (= 200 status)) + (is (= 200 status)) - (given body - :fhir/type := :fhir/ValueSet - :compose := nil - [:expansion :contains count] := 1 - [:expansion :contains 0 :system] := #fhir/uri"system-115910" - [:expansion :contains 0 :code] := #fhir/code"code-115927"))) + (given body + :fhir/type := :fhir/ValueSet + :compose := nil + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-115910" + [:expansion :contains 0 :code] := #fhir/code"code-115927"))) + + (testing "POST" + (doseq [lang [nil "en" "de"]] + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + (cond-> + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"url" + :value #fhir/uri"value-set-154043"}] + lang + (conj + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"displayLanguage" + :value (type/code lang)}))}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/ValueSet + :compose := nil + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-115910" + [:expansion :contains 0 :code] := #fhir/code"code-115927")))) + + (testing "and system-version" + (let [{:keys [status body]} + @(handler {:query-params {"url" "value-set-154043" + "system-version" "system-115910|version-170327"}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/ValueSet + :compose := nil + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-115910" + [:expansion :contains 0 :code] := #fhir/code"code-115927")))) + + (testing "successful expansion by valueSet" + (with-handler [handler] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :version #fhir/string"version-170327" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}]]] + + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"valueSet" + :resource + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/ValueSet + :compose := nil + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-115910" + [:expansion :contains 0 :code] := #fhir/code"code-115927")) + + (testing "and count = 0" + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"valueSet" + :resource + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"count" + :value #fhir/integer 0}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/ValueSet + :compose := nil + [:expansion :parameter 0 :name] := #fhir/string "version" + [:expansion :parameter 0 :value] := #fhir/uri"system-115910|version-170327" + [:expansion :parameter 1 :name] := #fhir/string "count" + [:expansion :parameter 1 :value] := #fhir/integer 0 + [:expansion :total] := #fhir/integer 1 + [:expansion :contains count] := 0))) + + (testing "and offset = 0" + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"valueSet" + :resource + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"offset" + :value #fhir/integer 0}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/ValueSet + :compose := nil + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-115910" + [:expansion :contains 0 :code] := #fhir/code"code-115927"))) + + (testing "including the definition" + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"valueSet" + :resource + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"includeDefinition" + :value #fhir/boolean true}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/ValueSet + [:compose :include count] := 1 + [:compose :include 0 :system] := #fhir/uri"system-115910" + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-115910" + [:expansion :contains 0 :code] := #fhir/code"code-115927"))) + + (testing "and system-version" + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"valueSet" + :resource + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"system-version" + :value #fhir/canonical"system-115910|version-170327"}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/ValueSet + :compose := nil + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-115910" + [:expansion :contains 0 :code] := #fhir/code"code-115927"))))) (testing "including the definition" (with-handler [handler] @@ -227,6 +499,7 @@ (given body :fhir/type := :fhir/ValueSet + [:compose :include count] := 1 [:compose :include 0 :system] := #fhir/uri"system-115910" [:expansion :contains count] := 1 [:expansion :contains 0 :system] := #fhir/uri"system-115910" @@ -332,4 +605,47 @@ :fhir/type := :fhir/ValueSet [:expansion :contains count] := 1 [:expansion :contains 0 :system] := #fhir/uri"system-135810" - [:expansion :contains 0 :code] := #fhir/code"code-135827"))))) + [:expansion :contains 0 :code] := #fhir/code"code-135827")))) + + (testing "with inactive concept" + (with-handler [handler] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-170110" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-170118" + :property + [{:fhir/type :fhir.CodeSystem.concept/property + :code #fhir/code"inactive" + :value #fhir/boolean true}]}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"value-set-170056" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-170110"}]}}]]] + + (let [{:keys [status body]} + @(handler {:query-params {"url" "value-set-170056"}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-170110" + [:expansion :contains 0 :inactive] := #fhir/boolean true + [:expansion :contains 0 :code] := #fhir/code"code-170118")) + + (testing "active only" + (let [{:keys [status body]} + @(handler {:query-params {"url" "value-set-170056" + "activeOnly" "true"}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 0)))))) diff --git a/modules/operation-value-set-validate-code/.clj-kondo/config.edn b/modules/operation-value-set-validate-code/.clj-kondo/config.edn new file mode 100644 index 000000000..7e70823a5 --- /dev/null +++ b/modules/operation-value-set-validate-code/.clj-kondo/config.edn @@ -0,0 +1,9 @@ +{:config-paths + ["../../../.clj-kondo/root" + "../../anomaly/resources/clj-kondo.exports/blaze/anomaly" + "../../async/resources/clj-kondo.exports/blaze/async" + "../../db-stub/resources/clj-kondo.exports/blaze/db-stub" + "../../module-test-util/resources/clj-kondo.exports/blaze/module-test-util"] + + :lint-as + {blaze.fhir.operation.value-set.validate-code-test/with-handler clojure.core/fn}} diff --git a/modules/operation-value-set-validate-code/Makefile b/modules/operation-value-set-validate-code/Makefile new file mode 100644 index 000000000..6ddac5bcb --- /dev/null +++ b/modules/operation-value-set-validate-code/Makefile @@ -0,0 +1,25 @@ +fmt: + cljfmt check src test deps.edn tests.edn + +lint: + clj-kondo --lint src test deps.edn + +prep: + clojure -X:deps prep + +test: prep + clojure -M:test:kaocha --profile :ci + +test-coverage: prep + clojure -M:test:coverage + +cloc-prod: + cloc src + +cloc-test: + cloc test + +clean: + rm -rf .clj-kondo/.cache .cpcache target + +.PHONY: fmt lint prep test test-coverage cloc-prod cloc-test clean diff --git a/modules/operation-value-set-validate-code/README.md b/modules/operation-value-set-validate-code/README.md new file mode 100644 index 000000000..83e06c3dd --- /dev/null +++ b/modules/operation-value-set-validate-code/README.md @@ -0,0 +1,3 @@ +# Module - Operation \$validate-code on ValueSet + +The API documentation can be found [here](../../docs/api/operation-value-set-validate-code.md). diff --git a/modules/operation-value-set-validate-code/deps.edn b/modules/operation-value-set-validate-code/deps.edn new file mode 100644 index 000000000..8c22ed6d6 --- /dev/null +++ b/modules/operation-value-set-validate-code/deps.edn @@ -0,0 +1,31 @@ +{:deps + {blaze/module-base + {:local/root "../module-base"} + + blaze/rest-util + {:local/root "../rest-util"} + + blaze/terminology-service + {:local/root "../terminology-service"}} + + :aliases + {:test + {:extra-paths ["test"] + + :extra-deps + {blaze/db-stub + {:local/root "../db-stub"}}} + + :kaocha + {:extra-deps + {lambdaisland/kaocha + {:mvn/version "1.91.1392"}} + + :main-opts ["-m" "kaocha.runner"]} + + :coverage + {:extra-deps + {lambdaisland/kaocha-cloverage + {:mvn/version "1.1.89"}} + + :main-opts ["-m" "kaocha.runner" "--profile" "coverage"]}}} diff --git a/modules/operation-value-set-validate-code/src/blaze/fhir/operation/value_set/validate_code.clj b/modules/operation-value-set-validate-code/src/blaze/fhir/operation/value_set/validate_code.clj new file mode 100644 index 000000000..90aa69508 --- /dev/null +++ b/modules/operation-value-set-validate-code/src/blaze/fhir/operation/value_set/validate_code.clj @@ -0,0 +1,109 @@ +(ns blaze.fhir.operation.value-set.validate-code + "Main entry point into the ValueSet $validate-code operation." + (:require + [blaze.anomaly :as ba :refer [if-ok when-ok]] + [blaze.async.comp :as ac :refer [do-sync]] + [blaze.fhir.spec.type :as type] + [blaze.module :as m] + [blaze.terminology-service :as ts] + [blaze.terminology-service.spec] + [clojure.spec.alpha :as s] + [integrant.core :as ig] + [ring.util.response :as ring] + [taoensso.timbre :as log]) + (:import + [com.google.common.base CaseFormat])) + +(set! *warn-on-reflection* true) + +(def ^:private parameter-specs + [{:name "url" :action :copy} + {:name "context"} + {:name "valueSet" :action :copy-resource} + {:name "valueSetVersion"} + {:name "code" :action :copy} + {:name "system" :action :copy} + {:name "systemVersion"} + {:name "display"} + {:name "coding" :action :copy-complex-type} + {:name "codeableConcept"} + {:name "date"} + {:name "abstract"} + {:name "displayLanguage" :action :copy} + {:name "useSupplement"} + {:name "inferSystem" :action :copy}]) + +(defn camel->kebab [s] + (.to CaseFormat/LOWER_CAMEL CaseFormat/LOWER_HYPHEN s)) + +(defn- validate-query-params [params] + (reduce + (fn [new-params {:keys [name action]}] + (if-let [value (get params name)] + (case action + :copy + (assoc new-params (keyword (camel->kebab name)) value) + + (:copy-complex-type :copy-resource) + (reduced (ba/unsupported (format "Unsupported parameter `%s` in GET request. Please use POST." name) + :http/status 400)) + + (reduced (ba/unsupported (format "Unsupported parameter `%s`." name) + :http/status 400))) + new-params)) + {} + parameter-specs)) + +(defn- validate-body-params [{params :parameter}] + (reduce + (fn [new-params {:keys [name action]}] + (if-let [param (some #(when (= name (type/value (:name %))) %) params)] + (case action + :copy + (assoc new-params (keyword (camel->kebab name)) (type/value (:value param))) + + :copy-complex-type + (assoc new-params (keyword (camel->kebab name)) (:value param)) + + :copy-resource + (assoc new-params (keyword (camel->kebab name)) (:resource param)) + + (reduced (ba/unsupported (format "Unsupported parameter `%s`." name) + :http/status 400))) + new-params)) + {} + parameter-specs)) + +(defn- validate-more [{:keys [code system infer-system] :as params}] + (if (and code (not infer-system) (nil? system)) + (ba/incorrect "Missing required parameter `system`.") + params)) + +(defn- validate-params [{:keys [request-method body query-params]}] + (when-ok [params (if (= :post request-method) + (validate-body-params body) + (validate-query-params query-params))] + (validate-more params))) + +(defn- validate-code + [terminology-service {{:keys [id]} :path-params :as request}] + (if-ok [{:keys [url value-set] :as params} (validate-params request)] + (cond + id (ts/value-set-validate-code terminology-service (assoc params :id id)) + url (ts/value-set-validate-code terminology-service params) + value-set (ts/value-set-validate-code terminology-service params) + :else (ac/completed-future (ba/incorrect "Missing required parameter `url`."))) + ac/completed-future)) + +(defn- handler [terminology-service] + (fn [request] + (do-sync [response (validate-code terminology-service request)] + (ring/response response)))) + +(defmethod m/pre-init-spec :blaze.fhir.operation.value-set/validate-code [_] + (s/keys :req-un [:blaze/terminology-service])) + +(defmethod ig/init-key :blaze.fhir.operation.value-set/validate-code + [_ {:keys [terminology-service]}] + (log/info "Init FHIR ValueSet $validate-code operation handler") + (handler terminology-service)) diff --git a/modules/operation-value-set-validate-code/test/blaze/fhir/operation/value_set/validate_code_test.clj b/modules/operation-value-set-validate-code/test/blaze/fhir/operation/value_set/validate_code_test.clj new file mode 100644 index 000000000..5acb937ee --- /dev/null +++ b/modules/operation-value-set-validate-code/test/blaze/fhir/operation/value_set/validate_code_test.clj @@ -0,0 +1,391 @@ +(ns blaze.fhir.operation.value-set.validate-code-test + (:require + [blaze.async.comp :as ac] + [blaze.db.api-stub :as api-stub :refer [with-system-data]] + [blaze.fhir.operation.value-set.validate-code] + [blaze.fhir.spec.type :as type] + [blaze.handler.util :as handler-util] + [blaze.terminology-service :as ts] + [blaze.terminology-service.local] + [blaze.test-util :as tu :refer [given-thrown]] + [clojure.spec.alpha :as s] + [clojure.spec.test.alpha :as st] + [clojure.test :as test :refer [deftest is testing]] + [integrant.core :as ig] + [juxt.iota :refer [given]] + [taoensso.timbre :as log])) + +(st/instrument) +(log/set-min-level! :trace) + +(test/use-fixtures :each tu/fixture) + +(deftest init-test + (testing "nil config" + (given-thrown (ig/init {:blaze.fhir.operation.value-set/validate-code nil}) + :key := :blaze.fhir.operation.value-set/validate-code + :reason := ::ig/build-failed-spec + [:cause-data ::s/problems 0 :pred] := `map?)) + + (testing "missing config" + (given-thrown (ig/init {:blaze.fhir.operation.value-set/validate-code {}}) + :key := :blaze.fhir.operation.value-set/validate-code + :reason := ::ig/build-failed-spec + [:cause-data ::s/problems 0 :pred] := `(fn ~'[%] (contains? ~'% :terminology-service)))) + + (testing "invalid structure definition repo" + (given-thrown (ig/init {:blaze.fhir.operation.value-set/validate-code {:terminology-service ::invalid}}) + :key := :blaze.fhir.operation.value-set/validate-code + :reason := ::ig/build-failed-spec + [:cause-data ::s/problems 0 :via] := [:blaze/terminology-service] + [:cause-data ::s/problems 0 :val] := ::invalid))) + +(def config + (assoc + api-stub/mem-node-config + :blaze.fhir.operation.value-set/validate-code + {:terminology-service (ig/ref ::ts/local)} + ::ts/local + {:node (ig/ref :blaze.db/node) + :clock (ig/ref :blaze.test/fixed-clock) + :rng-fn (ig/ref :blaze.test/fixed-rng-fn)} + :blaze.test/fixed-rng-fn {})) + +(defn wrap-error [handler] + (fn [request] + (-> (handler request) + (ac/exceptionally handler-util/error-response)))) + +(defmacro with-handler [[handler-binding] & more] + (let [[txs body] (api-stub/extract-txs-body more)] + `(with-system-data [{handler# :blaze.fhir.operation.value-set/validate-code} config] + ~txs + (let [~handler-binding (-> handler# wrap-error)] + ~@body)))) + +(deftest handler-test + (testing "value set not found" + (testing "by id" + (with-handler [handler] + (let [{:keys [status body]} + @(handler {:path-params {:id "170852"}})] + + (is (= 404 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"not-found" + [:issue 0 :diagnostics] := "The value set with id `170852` was not found.")))) + + (testing "by url" + (with-handler [handler] + (let [{:keys [status body]} + @(handler {:query-params {"url" "153404"}})] + + (is (= 404 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"not-found" + [:issue 0 :diagnostics] := "The value set `153404` was not found.")))) + + (testing "without url or id" + (with-handler [handler] + (let [{:keys [status body]} + @(handler {})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"invalid" + [:issue 0 :diagnostics] := "Missing required parameter `url`.")))) + + (testing "with code but without system" + (with-handler [handler] + (let [{:keys [status body]} + @(handler {:query-params {"code" "foo"}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"invalid" + [:issue 0 :diagnostics] := "Missing required parameter `system`.")))) + + (testing "unsupported parameters" + (with-handler [handler] + (doseq [param ["context" "valueSetVersion" "systemVersion" "display" + "codeableConcept" "date" "abstract" "useSupplement"]] + (testing "GET" + (let [{:keys [status body]} + @(handler {:query-params {param "foo"}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"not-supported" + [:issue 0 :diagnostics] := (format "Unsupported parameter `%s`." param)))) + + (testing "POST" + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name (type/string param) + :value (type/string "foo")}]}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"not-supported" + [:issue 0 :diagnostics] := (format "Unsupported parameter `%s`." param))))))) + + (testing "unsupported GET parameters" + (with-handler [handler] + (doseq [param ["valueSet" "coding"]] + (let [{:keys [status body]} + @(handler {:query-params {param "foo"}})] + + (is (= 400 status)) + + (given body + :fhir/type := :fhir/OperationOutcome + [:issue 0 :severity] := #fhir/code"error" + [:issue 0 :code] := #fhir/code"not-supported" + [:issue 0 :diagnostics] := (format "Unsupported parameter `%s` in GET request. Please use POST." param))))))) + + (testing "successful validation by id" + (with-handler [handler] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}] + [:put {:fhir/type :fhir/ValueSet :id "id-152952" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}]]] + + (testing "and system and code" + (doseq [[code result] [["code-115927" true] ["code-210428" false]]] + (let [{:keys [status body]} + @(handler {:path-params {:id "id-152952"} + :query-params {"system" "system-115910" + "code" code}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value type/value] := result)))) + + (testing "and coding" + (let [{:keys [status body]} + @(handler {:request-method :post + :path-params {:id "id-152952"} + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"coding" + :value #fhir/Coding{:system #fhir/uri"system-115910" + :code #fhir/code"code-115927"}}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910"))))) + + (testing "successful validation by url" + (with-handler [handler] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}] + [:put {:fhir/type :fhir/ValueSet :id "152952" + :url #fhir/uri"value-set-163309" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}]]] + + (testing "and system and code" + (doseq [[code result] [["code-115927" true] ["code-210428" false]]] + (let [{:keys [status body]} + @(handler {:query-params {"url" "value-set-163309" + "system" "system-115910" + "code" code}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value type/value] := result))) + + (testing "with displayLanguage" + (doseq [lang ["en" "de"]] + (let [{:keys [status body]} + @(handler {:query-params {"url" "value-set-163309" + "system" "system-115910" + "code" "code-115927" + "displayLanguage" lang}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true))))) + + (testing "and coding" + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"url" + :value #fhir/uri"value-set-163309"} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"coding" + :value #fhir/Coding{:system #fhir/uri"system-115910" + :code #fhir/code"code-115927"}}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910")) + + (testing "with displayLanguage" + (doseq [lang ["en" "de"]] + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"url" + :value #fhir/uri"value-set-163309"} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"coding" + :value #fhir/Coding{:system #fhir/uri"system-115910" + :code #fhir/code"code-115927"}} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"displayLanguage" + :value (type/code lang)}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910"))))))) + + (testing "successful validation by valueSet" + (testing "code only" + (with-handler [handler] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}]]] + + (doseq [[code result] [["code-115927" true] ["code-210428" false]]] + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"valueSet" + :resource + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"code" + :value (type/code code)} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"inferSystem" + :value #fhir/boolean true}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value type/value] := result))))) + + (testing "code and system" + (with-handler [handler] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}]]] + + (doseq [[code result] [["code-115927" true] ["code-210428" false]]] + (let [{:keys [status body]} + @(handler {:request-method :post + :body {:fhir/type :fhir/Parameters + :parameter + [{:fhir/type :fhir.Parameters/parameter + :name #fhir/string"valueSet" + :resource + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"system" + :value #fhir/uri"system-115910"} + {:fhir/type :fhir.Parameters/parameter + :name #fhir/string"code" + :value (type/code code)}]}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/Parameters + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value type/value] := result))))))) diff --git a/modules/operation-value-set-validate-code/tests.edn b/modules/operation-value-set-validate-code/tests.edn new file mode 100644 index 000000000..12727a10d --- /dev/null +++ b/modules/operation-value-set-validate-code/tests.edn @@ -0,0 +1,10 @@ +#kaocha/v1 + #merge + [{} + #profile {:ci {:reporter kaocha.report/documentation + :color? false} + :coverage {:plugins [:kaocha.plugin/cloverage] + :cloverage/opts + {:codecov? true} + :reporter kaocha.report/documentation + :color? false}}] diff --git a/modules/rest-api/deps.edn b/modules/rest-api/deps.edn index fad71238f..2d088cb14 100644 --- a/modules/rest-api/deps.edn +++ b/modules/rest-api/deps.edn @@ -17,6 +17,9 @@ blaze/spec {:local/root "../spec"} + blaze/terminology-service + {:local/root "../terminology-service"} + buddy/buddy-auth {:mvn/version "3.0.323" :exclusions [buddy/buddy-sign]}} diff --git a/modules/rest-api/src/blaze/rest_api/capabilities_handler.clj b/modules/rest-api/src/blaze/rest_api/capabilities_handler.clj index 210ab676a..7bafa1c2a 100644 --- a/modules/rest-api/src/blaze/rest_api/capabilities_handler.clj +++ b/modules/rest-api/src/blaze/rest_api/capabilities_handler.clj @@ -1,6 +1,6 @@ (ns blaze.rest-api.capabilities-handler (:require - [blaze.async.comp :as ac] + [blaze.async.comp :as ac :refer [do-sync]] [blaze.db.search-param-registry :as sr] [blaze.db.search-param-registry.spec] [blaze.fhir.spec.type :as type] @@ -13,6 +13,8 @@ [blaze.rest-api.spec] [blaze.rest-api.util :as u] [blaze.spec] + [blaze.terminology-service :as ts] + [blaze.terminology-service.spec] [clojure.spec.alpha :as s] [integrant.core :as ig] [reitit.ring] @@ -21,6 +23,9 @@ (set! *warn-on-reflection* true) +(def ^:private copyright + #fhir/markdown"Copyright 2019 - 2024 The Samply Community\n\nLicensed 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\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless 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.") + (def ^:private quantity-documentation #fhir/markdown"Decimal values are truncated at two digits after the decimal point.") @@ -133,13 +138,12 @@ search-system-handler transaction-handler-active? history-system-handler] - :as context}] + :as config}] {:fhir/type :fhir/CapabilityStatement :status #fhir/code"active" :experimental false :publisher "The Samply Community" - :copyright - #fhir/markdown"Copyright 2019 - 2024 The Samply Community\n\nLicensed 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\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless 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." + :copyright copyright :kind #fhir/code"instance" :date (type/dateTime release-date) :software @@ -157,7 +161,7 @@ :resource (into [] - (keep (partial capability-resource context)) + (keep (partial capability-resource config)) (sdr/resources structure-definition-repo)) :interaction (cond-> [] @@ -207,22 +211,64 @@ :documentation "Only `count` is supported at the moment."}] :compartment ["http://hl7.org/fhir/CompartmentDefinition/patient"]}]}) +(defn- build-terminology-capabilities-base + [{:keys [version release-date]}] + {:fhir/type :fhir/TerminologyCapabilities + :meta #fhir/Meta{:profile [#fhir/canonical"http://hl7.org/fhir/StructureDefinition/TerminologyCapabilities"]} + :status #fhir/code"active" + :experimental false + :publisher "The Samply Community" + :copyright copyright + :kind #fhir/code"instance" + :date (type/dateTime release-date) + :software + {:name "Blaze" + :version version + :releaseDate (type/dateTime release-date)} + :implementation + {:description "Blaze"} + :validateCode {:translations #fhir/boolean false}}) + +(defn- context + [{:keys [context-path terminology-service] :or {context-path ""} :as config}] + {:context-path context-path + :capability-statement-base (build-capability-statement-base config) + :terminology-capabilities-base (build-terminology-capabilities-base config) + :terminology-service terminology-service}) + (defn- final-capability-statement - [capability-statement base-url context-path elements] + [{:keys [context-path capability-statement-base]} base-url elements] (cond-> (assoc-in - capability-statement + capability-statement-base [:implementation :url] (type/->Url (str base-url context-path))) (seq elements) (select-keys (conj elements :fhir/type)))) -(defn- tag [capability-statement] - (Integer/toHexString (hash capability-statement))) +(defn- final-terminology-capabilities + [{:keys [context-path terminology-service terminology-capabilities-base]} + base-url] + (do-sync [code-systems (ts/code-systems terminology-service)] + (cond-> + (assoc-in + terminology-capabilities-base + [:implementation :url] + (type/->Url (str base-url context-path))) + code-systems (assoc :codeSystem code-systems)))) + +(defn- final-capabilities [context base-url mode elements] + (if (= "terminology" mode) + (final-terminology-capabilities context base-url) + (ac/completed-future + (final-capability-statement context base-url elements)))) + +(defn- tag [capabilities] + (Integer/toHexString (hash capabilities))) -(defn response [{:strs [if-none-match]} capability-statement] - (let [tag (tag capability-statement)] +(defn response [{:strs [if-none-match]} capabilities] + (let [tag (tag capabilities)] (-> (if ((header/if-none-match->tags if-none-match) tag) (ring/status 304) - (ring/response capability-statement)) + (ring/response capabilities)) (ring/header "ETag" (format "W/\"%s\"" tag))))) (defmethod m/pre-init-spec ::rest-api/capabilities-handler [_] @@ -240,15 +286,17 @@ ::resource-patterns ::operations :blaze.db/enforce-referential-integrity - :blaze.db/allow-multiple-delete])) + :blaze.db/allow-multiple-delete + :blaze/terminology-service])) (defmethod ig/init-key ::rest-api/capabilities-handler - [_ {:keys [context-path] :or {context-path ""} :as config}] - (let [capability-statement-base (build-capability-statement-base config)] + [_ config] + (let [context (context config) + mode (if (:terminology-service context) + #(get % "mode") + (constantly nil))] (fn [{:keys [query-params headers] :blaze/keys [base-url]}] (let [elements (fhir-util/elements query-params) - capability-statement (final-capability-statement - capability-statement-base base-url - context-path elements)] - (-> (response headers capability-statement) - (ac/completed-future)))))) + mode (mode query-params)] + (do-sync [capabilities (final-capabilities context base-url mode elements)] + (response headers capabilities)))))) diff --git a/modules/rest-api/test/blaze/rest_api/capabilities_handler_test.clj b/modules/rest-api/test/blaze/rest_api/capabilities_handler_test.clj index 6a2798bd0..f192a13a7 100644 --- a/modules/rest-api/test/blaze/rest_api/capabilities_handler_test.clj +++ b/modules/rest-api/test/blaze/rest_api/capabilities_handler_test.clj @@ -1,14 +1,15 @@ (ns blaze.rest-api.capabilities-handler-test (:require + [blaze.db.api-stub :as api-stub :refer [mem-node-config with-system-data]] [blaze.db.impl.search-param] - [blaze.db.search-param-registry.spec :refer [search-param-registry?]] - [blaze.fhir.structure-definition-repo.spec :refer [structure-definition-repo?]] [blaze.fhir.test-util :refer [structure-definition-repo]] - [blaze.module.test-util :refer [with-system]] + [blaze.middleware.fhir.db-spec] [blaze.rest-api :as-alias rest-api] [blaze.rest-api.capabilities-handler] [blaze.rest-api.header-spec] [blaze.rest-api.spec] + [blaze.terminology-service :as-alias ts] + [blaze.terminology-service.local] [blaze.test-util :as tu :refer [given-thrown]] [clojure.spec.alpha :as s] [clojure.spec.test.alpha :as st] @@ -69,7 +70,7 @@ [:cause-data ::s/problems 0 :pred] := `(fn ~'[%] (contains? ~'% :version)) [:cause-data ::s/problems 1 :pred] := `(fn ~'[%] (contains? ~'% :release-date)) [:cause-data ::s/problems 2 :pred] := `(fn ~'[%] (contains? ~'% :search-param-registry)) - [:cause-data ::s/problems 3 :pred] := `structure-definition-repo? + [:cause-data ::s/problems 3 :via] := [:blaze.fhir/structure-definition-repo] [:cause-data ::s/problems 3 :val] := ::invalid)) (testing "invalid search-param-registry" @@ -79,25 +80,40 @@ [:cause-data ::s/problems 0 :pred] := `(fn ~'[%] (contains? ~'% :version)) [:cause-data ::s/problems 1 :pred] := `(fn ~'[%] (contains? ~'% :release-date)) [:cause-data ::s/problems 2 :pred] := `(fn ~'[%] (contains? ~'% :structure-definition-repo)) - [:cause-data ::s/problems 3 :pred] := `search-param-registry? - [:cause-data ::s/problems 3 :val] := ::invalid))) + [:cause-data ::s/problems 3 :via] := [:blaze.db/search-param-registry] + [:cause-data ::s/problems 3 :val] := ::invalid)) + + (testing "invalid terminology-service" + (given-thrown (ig/init {::rest-api/capabilities-handler {:terminology-service ::invalid}}) + :key := ::rest-api/capabilities-handler + :reason := ::ig/build-failed-spec + [:cause-data ::s/problems 0 :pred] := `(fn ~'[%] (contains? ~'% :version)) + [:cause-data ::s/problems 1 :pred] := `(fn ~'[%] (contains? ~'% :release-date)) + [:cause-data ::s/problems 2 :pred] := `(fn ~'[%] (contains? ~'% :structure-definition-repo)) + [:cause-data ::s/problems 3 :pred] := `(fn ~'[%] (contains? ~'% :search-param-registry)) + [:cause-data ::s/problems 4 :via] := [:blaze/terminology-service] + [:cause-data ::s/problems 4 :val] := ::invalid))) (def ^:private copyright #fhir/markdown"Copyright 2019 - 2024 The Samply Community\n\nLicensed 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\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless 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.") -(defmacro with-handler [[handler-binding config] & body] - `(with-system [{handler# ::rest-api/capabilities-handler} ~config] - (let [~handler-binding handler#] - ~@body))) +(defmacro with-handler [[handler-binding config] & more] + (let [[txs body] (api-stub/extract-txs-body more)] + `(with-system-data [{handler# ::rest-api/capabilities-handler} ~config] + ~txs + (let [~handler-binding handler#] + ~@body)))) (def ^:private minimal-config - {::rest-api/capabilities-handler + (assoc + mem-node-config + ::rest-api/capabilities-handler {:version "version-131640" :release-date "2024-01-07" :structure-definition-repo structure-definition-repo :search-param-registry (ig/ref :blaze.db/search-param-registry)} :blaze.db/search-param-registry - {:structure-definition-repo structure-definition-repo}}) + {:structure-definition-repo structure-definition-repo})) (deftest minimal-config-test (with-handler [handler minimal-config] @@ -113,6 +129,7 @@ :fhir/type := :fhir/CapabilityStatement :status := #fhir/code"active" :experimental := false + :date := #fhir/dateTime"2024-01-07" :publisher := "The Samply Community" :copyright := copyright :kind := #fhir/code"instance" @@ -181,7 +198,18 @@ (is (= 304 status)) (testing "ETag header" - (is (= "W/\"66d24e11\"" (get headers "ETag"))))))))) + (is (= "W/\"66d24e11\"" (get headers "ETag")))))))) + + (testing "mode=terminology is ignored" + (with-handler [handler minimal-config] + (let [{:keys [status body]} + @(handler {:blaze/base-url "base-url-131713" + :query-params {"mode" "terminology"}})] + + (is (= 200 status)) + + (given body + :fhir/type := :fhir/CapabilityStatement))))) (def ^:private minimal-search-system-config (assoc-in minimal-config [::rest-api/capabilities-handler :search-system-handler] @@ -346,3 +374,51 @@ [:rest 0 :resource 0 :operation 0 :definition] := #fhir/canonical"http://hl7.org/fhir/OperationDefinition/Measure-evaluate-measure" [:rest 0 :resource 0 :operation 0 :documentation] := #fhir/markdown"documentation-161800"))) + +(def ^:private terminology-service-config + (-> minimal-config + (assoc-in + [::rest-api/capabilities-handler :terminology-service] + (ig/ref ::ts/local)) + (assoc + ::ts/local + {:node (ig/ref :blaze.db/node) + :clock (ig/ref :blaze.test/fixed-clock) + :rng-fn (ig/ref :blaze.test/fixed-rng-fn)} + :blaze.test/fixed-rng-fn {}))) + +(deftest terminology-test + (testing "with no code system" + (with-handler [handler terminology-service-config] + (given (:body @(handler {:blaze/base-url "base-url-131713" + :query-params {"mode" "terminology"}})) + :fhir/type := :fhir/TerminologyCapabilities + [:meta :profile] := [#fhir/canonical"http://hl7.org/fhir/StructureDefinition/TerminologyCapabilities"] + :status := #fhir/code"active" + :experimental := false + :date := #fhir/dateTime"2024-01-07" + :publisher := "The Samply Community" + :copyright := copyright + :kind := #fhir/code"instance" + [:software :name] := "Blaze" + [:software :version] := "version-131640" + [:implementation :url] := #fhir/url"base-url-131713" + [:codeSystem count] := 0 + [:validateCode :translations] := #fhir/boolean false))) + + (testing "with one code system" + (with-handler [handler terminology-service-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-192435" + :version #fhir/string"version-121451" + :status #fhir/code"active" + :content #fhir/code"complete"}]]] + + (given (:body @(handler {:blaze/base-url "base-url-131713" + :query-params {"mode" "terminology"}})) + :fhir/type := :fhir/TerminologyCapabilities + [:codeSystem count] := 1 + [:codeSystem 0 :uri] := #fhir/canonical"system-192435" + [:codeSystem 0 :version count] := 1 + [:codeSystem 0 :version 0 :code] := #fhir/string"version-121451" + [:codeSystem 0 :version 0 :isDefault] := #fhir/boolean true)))) diff --git a/modules/rest-api/test/blaze/rest_api_test.clj b/modules/rest-api/test/blaze/rest_api_test.clj index 9fc6cc521..3db64099e 100644 --- a/modules/rest-api/test/blaze/rest_api_test.clj +++ b/modules/rest-api/test/blaze/rest_api_test.clj @@ -13,6 +13,8 @@ [blaze.rest-api :as rest-api] [blaze.rest-api.capabilities-handler] [blaze.rest-api.routes-spec] + [blaze.terminology-service :as-alias ts] + [blaze.terminology-service.local] [blaze.test-util :as tu :refer [given-thrown]] [buddy.auth.protocols :as ap] [clojure.spec.alpha :as s] @@ -139,9 +141,14 @@ {:version "version-131640" :release-date "2024-05-23" :structure-definition-repo structure-definition-repo - :search-param-registry (ig/ref :blaze.db/search-param-registry)} + :search-param-registry (ig/ref :blaze.db/search-param-registry) + :terminology-service (ig/ref ::ts/local)} :blaze.db/search-param-registry {:structure-definition-repo structure-definition-repo} + ::ts/local + {:node (ig/ref :blaze.db/node) + :clock (ig/ref :blaze.test/fixed-clock) + :rng-fn (ig/ref :blaze.test/fixed-rng-fn)} :blaze.test/fixed-rng-fn {} :blaze.test/page-id-cipher {})) diff --git a/modules/terminology-service/deps.edn b/modules/terminology-service/deps.edn index d57beb4e5..61877115a 100644 --- a/modules/terminology-service/deps.edn +++ b/modules/terminology-service/deps.edn @@ -1,6 +1,13 @@ {:deps {blaze/db - {:local/root "../db"}} + {:local/root "../db"} + + blaze/luid + {:local/root "../luid"} + + org.fhir/ucum + {:mvn/version "1.0.9" + :exclusions [xpp3/xpp3 xpp3/xpp3_xpath]}} :aliases {:test diff --git a/modules/terminology-service/sct-release/Full/Refset/Metadata/der2_ssRefset_ModuleDependencyFull_GermanyEdition_20241115.txt b/modules/terminology-service/sct-release/Full/Refset/Metadata/der2_ssRefset_ModuleDependencyFull_GermanyEdition_20241115.txt new file mode 100644 index 000000000..ca75e1597 --- /dev/null +++ b/modules/terminology-service/sct-release/Full/Refset/Metadata/der2_ssRefset_ModuleDependencyFull_GermanyEdition_20241115.txt @@ -0,0 +1,196 @@ +id effectiveTime active moduleId refsetId referencedComponentId sourceEffectiveTime targetEffectiveTime +6d6d2700-658a-b414-33b5-2c1d24f3cf8a 20231115 1 11000274103 900000000000534007 900000000000207008 20231115 20231001 +6d6d2700-658a-b414-33b5-2c1d24f3cf8a 20240115 1 11000274103 900000000000534007 900000000000207008 20240115 20240101 +6d6d2700-658a-b414-33b5-2c1d24f3cf8a 20240415 1 11000274103 900000000000534007 900000000000207008 20240415 20240401 +6d6d2700-658a-b414-33b5-2c1d24f3cf8a 20240711 1 11000274103 900000000000534007 900000000000207008 20240711 20240401 +b3f5eb17-831f-11ee-bd1c-38f3ab70978c 20231115 1 11000274103 900000000000534007 900000000000012004 20231115 20231001 +b3f5eb17-831f-11ee-bd1c-38f3ab70978c 20240115 1 11000274103 900000000000534007 900000000000012004 20240115 20240101 +b3f5eb17-831f-11ee-bd1c-38f3ab70978c 20240415 1 11000274103 900000000000534007 900000000000012004 20240415 20240401 +b3f5eb17-831f-11ee-bd1c-38f3ab70978c 20240711 1 11000274103 900000000000534007 900000000000012004 20240711 20240401 +f6431457-161b-5b46-9217-573c20c00070 20130731 1 449080006 900000000000534007 900000000000012004 20130731 20130731 +f6431457-161b-5b46-9217-573c20c00070 20140131 1 449080006 900000000000534007 900000000000012004 20140131 20140131 +f6431457-161b-5b46-9217-573c20c00070 20140731 1 449080006 900000000000534007 900000000000012004 20140731 20140731 +f6431457-161b-5b46-9217-573c20c00070 20150131 1 449080006 900000000000534007 900000000000012004 20150131 20150131 +f6431457-161b-5b46-9217-573c20c00070 20150731 1 449080006 900000000000534007 900000000000012004 20150731 20150731 +f6431457-161b-5b46-9217-573c20c00070 20160131 1 449080006 900000000000534007 900000000000012004 20160131 20160131 +f6431457-161b-5b46-9217-573c20c00070 20160731 1 449080006 900000000000534007 900000000000012004 20160731 20160731 +f6431457-161b-5b46-9217-573c20c00070 20170131 1 449080006 900000000000534007 900000000000012004 20170131 20170131 +f6431457-161b-5b46-9217-573c20c00070 20170731 1 449080006 900000000000534007 900000000000012004 20170731 20170731 +f6431457-161b-5b46-9217-573c20c00070 20180131 1 449080006 900000000000534007 900000000000012004 20180131 20180131 +f6431457-161b-5b46-9217-573c20c00070 20180731 1 449080006 900000000000534007 900000000000012004 20180731 20180731 +f6431457-161b-5b46-9217-573c20c00070 20190131 1 449080006 900000000000534007 900000000000012004 20190131 20190131 +f6431457-161b-5b46-9217-573c20c00070 20190731 1 449080006 900000000000534007 900000000000012004 20190731 20190731 +f6431457-161b-5b46-9217-573c20c00070 20200131 1 449080006 900000000000534007 900000000000012004 20200131 20200131 +f6431457-161b-5b46-9217-573c20c00070 20200309 1 449080006 900000000000534007 900000000000012004 20200309 20200309 +f6431457-161b-5b46-9217-573c20c00070 20200731 1 449080006 900000000000534007 900000000000012004 20200731 20200731 +f6431457-161b-5b46-9217-573c20c00070 20210131 1 449080006 900000000000534007 900000000000012004 20210131 20210131 +f6431457-161b-5b46-9217-573c20c00070 20210731 1 449080006 900000000000534007 900000000000012004 20210731 20210731 +f6431457-161b-5b46-9217-573c20c00070 20210930 1 449080006 900000000000534007 900000000000012004 20210930 20210930 +f6431457-161b-5b46-9217-573c20c00070 20211031 1 449080006 900000000000534007 900000000000012004 20211031 20211031 +f6431457-161b-5b46-9217-573c20c00070 20211130 1 449080006 900000000000534007 900000000000012004 20211130 20211130 +f6431457-161b-5b46-9217-573c20c00070 20220131 1 449080006 900000000000534007 900000000000012004 20220131 20220131 +f6431457-161b-5b46-9217-573c20c00070 20220228 1 449080006 900000000000534007 900000000000012004 20220228 20220228 +f6431457-161b-5b46-9217-573c20c00070 20220331 1 449080006 900000000000534007 900000000000012004 20220331 20220331 +f6431457-161b-5b46-9217-573c20c00070 20220430 1 449080006 900000000000534007 900000000000012004 20220430 20220430 +f6431457-161b-5b46-9217-573c20c00070 20220531 1 449080006 900000000000534007 900000000000012004 20220531 20220531 +f6431457-161b-5b46-9217-573c20c00070 20220630 1 449080006 900000000000534007 900000000000012004 20220630 20220630 +f6431457-161b-5b46-9217-573c20c00070 20220731 1 449080006 900000000000534007 900000000000012004 20220731 20220731 +f6431457-161b-5b46-9217-573c20c00070 20220831 1 449080006 900000000000534007 900000000000012004 20220831 20220831 +f6431457-161b-5b46-9217-573c20c00070 20220930 1 449080006 900000000000534007 900000000000012004 20220930 20220930 +f6431457-161b-5b46-9217-573c20c00070 20221031 1 449080006 900000000000534007 900000000000012004 20221031 20221031 +f6431457-161b-5b46-9217-573c20c00070 20221130 1 449080006 900000000000534007 900000000000012004 20221130 20221130 +f6431457-161b-5b46-9217-573c20c00070 20221231 1 449080006 900000000000534007 900000000000012004 20221231 20221231 +f6431457-161b-5b46-9217-573c20c00070 20230131 1 449080006 900000000000534007 900000000000012004 20230131 20230131 +f6431457-161b-5b46-9217-573c20c00070 20230228 1 449080006 900000000000534007 900000000000012004 20230228 20230228 +f6431457-161b-5b46-9217-573c20c00070 20230331 1 449080006 900000000000534007 900000000000012004 20230331 20230331 +f6431457-161b-5b46-9217-573c20c00070 20230430 1 449080006 900000000000534007 900000000000012004 20230430 20230430 +f6431457-161b-5b46-9217-573c20c00070 20230531 1 449080006 900000000000534007 900000000000012004 20230531 20230531 +f6431457-161b-5b46-9217-573c20c00070 20230630 1 449080006 900000000000534007 900000000000012004 20230630 20230630 +f6431457-161b-5b46-9217-573c20c00070 20230731 1 449080006 900000000000534007 900000000000012004 20230731 20230731 +f6431457-161b-5b46-9217-573c20c00070 20230901 1 449080006 900000000000534007 900000000000012004 20230901 20230901 +f6431457-161b-5b46-9217-573c20c00070 20231001 1 449080006 900000000000534007 900000000000012004 20231001 20231001 +f6431457-161b-5b46-9217-573c20c00070 20231101 1 449080006 900000000000534007 900000000000012004 20231101 20231101 +f6431457-161b-5b46-9217-573c20c00070 20231201 1 449080006 900000000000534007 900000000000012004 20231201 20231201 +f6431457-161b-5b46-9217-573c20c00070 20240101 1 449080006 900000000000534007 900000000000012004 20240101 20240101 +f6431457-161b-5b46-9217-573c20c00070 20240201 1 449080006 900000000000534007 900000000000012004 20240201 20240201 +f6431457-161b-5b46-9217-573c20c00070 20240301 1 449080006 900000000000534007 900000000000012004 20240301 20240301 +f6431457-161b-5b46-9217-573c20c00070 20240401 1 449080006 900000000000534007 900000000000012004 20240401 20240401 +f6431457-161b-5b46-9217-573c20c00070 20240501 1 449080006 900000000000534007 900000000000012004 20240501 20240501 +f6431457-161b-5b46-9217-573c20c00070 20240601 1 449080006 900000000000534007 900000000000012004 20240601 20240601 +f6431457-161b-5b46-9217-573c20c00070 20240701 1 449080006 900000000000534007 900000000000012004 20240701 20240701 +f6431457-161b-5b46-9217-573c20c00070 20240801 1 449080006 900000000000534007 900000000000012004 20240801 20240801 +f6431457-161b-5b46-9217-573c20c00070 20240901 1 449080006 900000000000534007 900000000000012004 20240901 20240901 +f6431457-161b-5b46-9217-573c20c00070 20241001 1 449080006 900000000000534007 900000000000012004 20241001 20241001 +1244116f-fdb5-5645-afcc-5281288409da 20020131 1 900000000000207008 900000000000534007 900000000000012004 20020131 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20020731 1 900000000000207008 900000000000534007 900000000000012004 20020731 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20030131 1 900000000000207008 900000000000534007 900000000000012004 20030131 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20030731 1 900000000000207008 900000000000534007 900000000000012004 20030731 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20040131 1 900000000000207008 900000000000534007 900000000000012004 20040131 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20040731 1 900000000000207008 900000000000534007 900000000000012004 20040731 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20050131 1 900000000000207008 900000000000534007 900000000000012004 20050131 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20050731 1 900000000000207008 900000000000534007 900000000000012004 20050731 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20060131 1 900000000000207008 900000000000534007 900000000000012004 20060131 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20060731 1 900000000000207008 900000000000534007 900000000000012004 20060731 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20070131 1 900000000000207008 900000000000534007 900000000000012004 20070131 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20070731 1 900000000000207008 900000000000534007 900000000000012004 20070731 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20080131 1 900000000000207008 900000000000534007 900000000000012004 20080131 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20080731 1 900000000000207008 900000000000534007 900000000000012004 20080731 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20090131 1 900000000000207008 900000000000534007 900000000000012004 20090131 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20090731 1 900000000000207008 900000000000534007 900000000000012004 20090731 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20100131 1 900000000000207008 900000000000534007 900000000000012004 20100131 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20100731 1 900000000000207008 900000000000534007 900000000000012004 20100731 20020131 +1244116f-fdb5-5645-afcc-5281288409da 20110131 1 900000000000207008 900000000000534007 900000000000012004 20110131 20110131 +1244116f-fdb5-5645-afcc-5281288409da 20110731 1 900000000000207008 900000000000534007 900000000000012004 20110731 20110731 +1244116f-fdb5-5645-afcc-5281288409da 20120131 1 900000000000207008 900000000000534007 900000000000012004 20120131 20120131 +1244116f-fdb5-5645-afcc-5281288409da 20120731 1 900000000000207008 900000000000534007 900000000000012004 20120731 20120731 +1244116f-fdb5-5645-afcc-5281288409da 20130131 1 900000000000207008 900000000000534007 900000000000012004 20130131 20130131 +1244116f-fdb5-5645-afcc-5281288409da 20130731 1 900000000000207008 900000000000534007 900000000000012004 20130731 20130731 +1244116f-fdb5-5645-afcc-5281288409da 20140131 1 900000000000207008 900000000000534007 900000000000012004 20140131 20140131 +1244116f-fdb5-5645-afcc-5281288409da 20140731 1 900000000000207008 900000000000534007 900000000000012004 20140731 20140731 +1244116f-fdb5-5645-afcc-5281288409da 20150131 1 900000000000207008 900000000000534007 900000000000012004 20150131 20150131 +1244116f-fdb5-5645-afcc-5281288409da 20150731 1 900000000000207008 900000000000534007 900000000000012004 20150731 20150731 +1244116f-fdb5-5645-afcc-5281288409da 20160131 1 900000000000207008 900000000000534007 900000000000012004 20160131 20160131 +1244116f-fdb5-5645-afcc-5281288409da 20160731 1 900000000000207008 900000000000534007 900000000000012004 20160731 20160731 +1244116f-fdb5-5645-afcc-5281288409da 20170131 1 900000000000207008 900000000000534007 900000000000012004 20170131 20170131 +1244116f-fdb5-5645-afcc-5281288409da 20170731 1 900000000000207008 900000000000534007 900000000000012004 20170731 20170731 +1244116f-fdb5-5645-afcc-5281288409da 20180131 1 900000000000207008 900000000000534007 900000000000012004 20180131 20180131 +1244116f-fdb5-5645-afcc-5281288409da 20180731 1 900000000000207008 900000000000534007 900000000000012004 20180731 20180731 +1244116f-fdb5-5645-afcc-5281288409da 20190131 1 900000000000207008 900000000000534007 900000000000012004 20190131 20190131 +1244116f-fdb5-5645-afcc-5281288409da 20190731 1 900000000000207008 900000000000534007 900000000000012004 20190731 20190731 +1244116f-fdb5-5645-afcc-5281288409da 20200131 1 900000000000207008 900000000000534007 900000000000012004 20200131 20200131 +1244116f-fdb5-5645-afcc-5281288409da 20200309 1 900000000000207008 900000000000534007 900000000000012004 20200309 20200309 +1244116f-fdb5-5645-afcc-5281288409da 20200731 1 900000000000207008 900000000000534007 900000000000012004 20200731 20200731 +1244116f-fdb5-5645-afcc-5281288409da 20210131 1 900000000000207008 900000000000534007 900000000000012004 20210131 20210131 +1244116f-fdb5-5645-afcc-5281288409da 20210731 1 900000000000207008 900000000000534007 900000000000012004 20210731 20210731 +1244116f-fdb5-5645-afcc-5281288409da 20210930 1 900000000000207008 900000000000534007 900000000000012004 20210930 20210930 +1244116f-fdb5-5645-afcc-5281288409da 20211031 1 900000000000207008 900000000000534007 900000000000012004 20211031 20211031 +1244116f-fdb5-5645-afcc-5281288409da 20211130 1 900000000000207008 900000000000534007 900000000000012004 20211130 20211130 +1244116f-fdb5-5645-afcc-5281288409da 20220131 1 900000000000207008 900000000000534007 900000000000012004 20220131 20220131 +1244116f-fdb5-5645-afcc-5281288409da 20220228 1 900000000000207008 900000000000534007 900000000000012004 20220228 20220228 +1244116f-fdb5-5645-afcc-5281288409da 20220331 1 900000000000207008 900000000000534007 900000000000012004 20220331 20220331 +1244116f-fdb5-5645-afcc-5281288409da 20220430 1 900000000000207008 900000000000534007 900000000000012004 20220430 20220430 +1244116f-fdb5-5645-afcc-5281288409da 20220531 1 900000000000207008 900000000000534007 900000000000012004 20220531 20220531 +1244116f-fdb5-5645-afcc-5281288409da 20220630 1 900000000000207008 900000000000534007 900000000000012004 20220630 20220630 +1244116f-fdb5-5645-afcc-5281288409da 20220731 1 900000000000207008 900000000000534007 900000000000012004 20220731 20220731 +1244116f-fdb5-5645-afcc-5281288409da 20220831 1 900000000000207008 900000000000534007 900000000000012004 20220831 20220831 +1244116f-fdb5-5645-afcc-5281288409da 20220930 1 900000000000207008 900000000000534007 900000000000012004 20220930 20220930 +1244116f-fdb5-5645-afcc-5281288409da 20221031 1 900000000000207008 900000000000534007 900000000000012004 20221031 20221031 +1244116f-fdb5-5645-afcc-5281288409da 20221130 1 900000000000207008 900000000000534007 900000000000012004 20221130 20221130 +1244116f-fdb5-5645-afcc-5281288409da 20221231 1 900000000000207008 900000000000534007 900000000000012004 20221231 20221231 +1244116f-fdb5-5645-afcc-5281288409da 20230131 1 900000000000207008 900000000000534007 900000000000012004 20230131 20230131 +1244116f-fdb5-5645-afcc-5281288409da 20230228 1 900000000000207008 900000000000534007 900000000000012004 20230228 20230228 +1244116f-fdb5-5645-afcc-5281288409da 20230331 1 900000000000207008 900000000000534007 900000000000012004 20230331 20230331 +1244116f-fdb5-5645-afcc-5281288409da 20230430 1 900000000000207008 900000000000534007 900000000000012004 20230430 20230430 +1244116f-fdb5-5645-afcc-5281288409da 20230531 1 900000000000207008 900000000000534007 900000000000012004 20230531 20230531 +1244116f-fdb5-5645-afcc-5281288409da 20230630 1 900000000000207008 900000000000534007 900000000000012004 20230630 20230630 +1244116f-fdb5-5645-afcc-5281288409da 20230731 1 900000000000207008 900000000000534007 900000000000012004 20230731 20230731 +1244116f-fdb5-5645-afcc-5281288409da 20230901 1 900000000000207008 900000000000534007 900000000000012004 20230901 20230901 +1244116f-fdb5-5645-afcc-5281288409da 20231001 1 900000000000207008 900000000000534007 900000000000012004 20231001 20231001 +1244116f-fdb5-5645-afcc-5281288409da 20231101 1 900000000000207008 900000000000534007 900000000000012004 20231101 20231101 +1244116f-fdb5-5645-afcc-5281288409da 20231201 1 900000000000207008 900000000000534007 900000000000012004 20231201 20231201 +1244116f-fdb5-5645-afcc-5281288409da 20240101 1 900000000000207008 900000000000534007 900000000000012004 20240101 20240101 +1244116f-fdb5-5645-afcc-5281288409da 20240201 1 900000000000207008 900000000000534007 900000000000012004 20240201 20240201 +1244116f-fdb5-5645-afcc-5281288409da 20240301 1 900000000000207008 900000000000534007 900000000000012004 20240301 20240301 +1244116f-fdb5-5645-afcc-5281288409da 20240401 1 900000000000207008 900000000000534007 900000000000012004 20240401 20240401 +1244116f-fdb5-5645-afcc-5281288409da 20240501 1 900000000000207008 900000000000534007 900000000000012004 20240501 20240501 +1244116f-fdb5-5645-afcc-5281288409da 20240601 1 900000000000207008 900000000000534007 900000000000012004 20240601 20240601 +1244116f-fdb5-5645-afcc-5281288409da 20240701 1 900000000000207008 900000000000534007 900000000000012004 20240701 20240701 +1244116f-fdb5-5645-afcc-5281288409da 20240801 1 900000000000207008 900000000000534007 900000000000012004 20240801 20240801 +1244116f-fdb5-5645-afcc-5281288409da 20240901 1 900000000000207008 900000000000534007 900000000000012004 20240901 20240901 +1244116f-fdb5-5645-afcc-5281288409da 20241001 1 900000000000207008 900000000000534007 900000000000012004 20241001 20241001 +686fe392-d2f7-586d-98aa-078aba426832 20130731 1 449080006 900000000000534007 900000000000207008 20130731 20130731 +686fe392-d2f7-586d-98aa-078aba426832 20140131 1 449080006 900000000000534007 900000000000207008 20140131 20140131 +686fe392-d2f7-586d-98aa-078aba426832 20140731 1 449080006 900000000000534007 900000000000207008 20140731 20140731 +686fe392-d2f7-586d-98aa-078aba426832 20150131 1 449080006 900000000000534007 900000000000207008 20150131 20150131 +686fe392-d2f7-586d-98aa-078aba426832 20150731 1 449080006 900000000000534007 900000000000207008 20150731 20150731 +686fe392-d2f7-586d-98aa-078aba426832 20160131 1 449080006 900000000000534007 900000000000207008 20160131 20160131 +686fe392-d2f7-586d-98aa-078aba426832 20160731 1 449080006 900000000000534007 900000000000207008 20160731 20160731 +686fe392-d2f7-586d-98aa-078aba426832 20170131 1 449080006 900000000000534007 900000000000207008 20170131 20170131 +686fe392-d2f7-586d-98aa-078aba426832 20170731 1 449080006 900000000000534007 900000000000207008 20170731 20170731 +686fe392-d2f7-586d-98aa-078aba426832 20180131 1 449080006 900000000000534007 900000000000207008 20180131 20180131 +686fe392-d2f7-586d-98aa-078aba426832 20180731 1 449080006 900000000000534007 900000000000207008 20180731 20180731 +686fe392-d2f7-586d-98aa-078aba426832 20190131 1 449080006 900000000000534007 900000000000207008 20190131 20190131 +686fe392-d2f7-586d-98aa-078aba426832 20190731 1 449080006 900000000000534007 900000000000207008 20190731 20190731 +686fe392-d2f7-586d-98aa-078aba426832 20200131 1 449080006 900000000000534007 900000000000207008 20200131 20200131 +686fe392-d2f7-586d-98aa-078aba426832 20200309 1 449080006 900000000000534007 900000000000207008 20200309 20200309 +686fe392-d2f7-586d-98aa-078aba426832 20200731 1 449080006 900000000000534007 900000000000207008 20200731 20200731 +686fe392-d2f7-586d-98aa-078aba426832 20210131 1 449080006 900000000000534007 900000000000207008 20210131 20210131 +686fe392-d2f7-586d-98aa-078aba426832 20210731 1 449080006 900000000000534007 900000000000207008 20210731 20210731 +686fe392-d2f7-586d-98aa-078aba426832 20210930 1 449080006 900000000000534007 900000000000207008 20210930 20210930 +686fe392-d2f7-586d-98aa-078aba426832 20211031 1 449080006 900000000000534007 900000000000207008 20211031 20211031 +686fe392-d2f7-586d-98aa-078aba426832 20211130 1 449080006 900000000000534007 900000000000207008 20211130 20211130 +686fe392-d2f7-586d-98aa-078aba426832 20220131 1 449080006 900000000000534007 900000000000207008 20220131 20220131 +686fe392-d2f7-586d-98aa-078aba426832 20220228 1 449080006 900000000000534007 900000000000207008 20220228 20220228 +686fe392-d2f7-586d-98aa-078aba426832 20220331 1 449080006 900000000000534007 900000000000207008 20220331 20220331 +686fe392-d2f7-586d-98aa-078aba426832 20220430 1 449080006 900000000000534007 900000000000207008 20220430 20220430 +686fe392-d2f7-586d-98aa-078aba426832 20220531 1 449080006 900000000000534007 900000000000207008 20220531 20220531 +686fe392-d2f7-586d-98aa-078aba426832 20220630 1 449080006 900000000000534007 900000000000207008 20220630 20220630 +686fe392-d2f7-586d-98aa-078aba426832 20220731 1 449080006 900000000000534007 900000000000207008 20220731 20220731 +686fe392-d2f7-586d-98aa-078aba426832 20220831 1 449080006 900000000000534007 900000000000207008 20220831 20220831 +686fe392-d2f7-586d-98aa-078aba426832 20220930 1 449080006 900000000000534007 900000000000207008 20220930 20220930 +686fe392-d2f7-586d-98aa-078aba426832 20221031 1 449080006 900000000000534007 900000000000207008 20221031 20221031 +686fe392-d2f7-586d-98aa-078aba426832 20221130 1 449080006 900000000000534007 900000000000207008 20221130 20221130 +686fe392-d2f7-586d-98aa-078aba426832 20221231 1 449080006 900000000000534007 900000000000207008 20221231 20221231 +686fe392-d2f7-586d-98aa-078aba426832 20230131 1 449080006 900000000000534007 900000000000207008 20230131 20230131 +686fe392-d2f7-586d-98aa-078aba426832 20230228 1 449080006 900000000000534007 900000000000207008 20230228 20230228 +686fe392-d2f7-586d-98aa-078aba426832 20230331 1 449080006 900000000000534007 900000000000207008 20230331 20230331 +686fe392-d2f7-586d-98aa-078aba426832 20230430 1 449080006 900000000000534007 900000000000207008 20230430 20230430 +686fe392-d2f7-586d-98aa-078aba426832 20230531 1 449080006 900000000000534007 900000000000207008 20230531 20230531 +686fe392-d2f7-586d-98aa-078aba426832 20230630 1 449080006 900000000000534007 900000000000207008 20230630 20230630 +686fe392-d2f7-586d-98aa-078aba426832 20230731 1 449080006 900000000000534007 900000000000207008 20230731 20230731 +686fe392-d2f7-586d-98aa-078aba426832 20230901 1 449080006 900000000000534007 900000000000207008 20230901 20230901 +686fe392-d2f7-586d-98aa-078aba426832 20231001 1 449080006 900000000000534007 900000000000207008 20231001 20231001 +686fe392-d2f7-586d-98aa-078aba426832 20231101 1 449080006 900000000000534007 900000000000207008 20231101 20231101 +686fe392-d2f7-586d-98aa-078aba426832 20231201 1 449080006 900000000000534007 900000000000207008 20231201 20231201 +686fe392-d2f7-586d-98aa-078aba426832 20240101 1 449080006 900000000000534007 900000000000207008 20240101 20240101 +686fe392-d2f7-586d-98aa-078aba426832 20240201 1 449080006 900000000000534007 900000000000207008 20240201 20240201 +686fe392-d2f7-586d-98aa-078aba426832 20240301 1 449080006 900000000000534007 900000000000207008 20240301 20240301 +686fe392-d2f7-586d-98aa-078aba426832 20240401 1 449080006 900000000000534007 900000000000207008 20240401 20240401 +686fe392-d2f7-586d-98aa-078aba426832 20240501 1 449080006 900000000000534007 900000000000207008 20240501 20240501 +686fe392-d2f7-586d-98aa-078aba426832 20240601 1 449080006 900000000000534007 900000000000207008 20240601 20240601 +686fe392-d2f7-586d-98aa-078aba426832 20240701 1 449080006 900000000000534007 900000000000207008 20240701 20240701 +686fe392-d2f7-586d-98aa-078aba426832 20240801 1 449080006 900000000000534007 900000000000207008 20240801 20240801 +686fe392-d2f7-586d-98aa-078aba426832 20240901 1 449080006 900000000000534007 900000000000207008 20240901 20240901 +686fe392-d2f7-586d-98aa-078aba426832 20241001 1 449080006 900000000000534007 900000000000207008 20241001 20241001 +b3f5eb17-831f-11ee-bd1c-38f3ab70978c 20241115 1 11000274103 900000000000534007 900000000000012004 20241115 20241001 +6d6d2700-658a-b414-33b5-2c1d24f3cf8a 20241115 1 11000274103 900000000000534007 900000000000207008 20241115 20241001 diff --git a/modules/terminology-service/sct-release/Full/Terminology/sct2_Concept_Full_GermanyEdition_20241115.txt b/modules/terminology-service/sct-release/Full/Terminology/sct2_Concept_Full_GermanyEdition_20241115.txt new file mode 100644 index 000000000..bd6c7d329 --- /dev/null +++ b/modules/terminology-service/sct-release/Full/Terminology/sct2_Concept_Full_GermanyEdition_20241115.txt @@ -0,0 +1,2764 @@ +id effectiveTime active moduleId definitionStatusId +40511003 20020131 1 900000000000207008 900000000000074008 +40511003 20080731 1 900000000000207008 900000000000073002 +48469005 20020131 1 900000000000207008 900000000000074008 +48469005 20180731 1 900000000000207008 900000000000073002 +110893002 20020131 1 900000000000207008 900000000000074008 +110893002 20080731 1 900000000000207008 900000000000073002 +110894008 20020131 1 900000000000207008 900000000000074008 +110894008 20080731 1 900000000000207008 900000000000073002 +110896005 20020131 1 900000000000207008 900000000000074008 +110896005 20080731 1 900000000000207008 900000000000073002 +110897001 20020131 1 900000000000207008 900000000000074008 +110897001 20080731 1 900000000000207008 900000000000073002 +110898006 20020131 1 900000000000207008 900000000000074008 +110898006 20080731 1 900000000000207008 900000000000073002 +110899003 20020131 1 900000000000207008 900000000000074008 +110899003 20080731 1 900000000000207008 900000000000073002 +110900008 20020131 1 900000000000207008 900000000000074008 +110900008 20080731 1 900000000000207008 900000000000073002 +110901007 20020131 1 900000000000207008 900000000000074008 +110901007 20080731 1 900000000000207008 900000000000073002 +110902000 20020131 1 900000000000207008 900000000000074008 +110902000 20080731 1 900000000000207008 900000000000073002 +110903005 20020131 1 900000000000207008 900000000000074008 +110903005 20080731 1 900000000000207008 900000000000073002 +110904004 20020131 1 900000000000207008 900000000000074008 +110904004 20040731 1 900000000000207008 900000000000073002 +110905003 20020131 1 900000000000207008 900000000000074008 +110905003 20080731 1 900000000000207008 900000000000073002 +110906002 20020131 1 900000000000207008 900000000000074008 +110906002 20080731 1 900000000000207008 900000000000073002 +110907006 20020131 1 900000000000207008 900000000000074008 +110907006 20080731 1 900000000000207008 900000000000073002 +110908001 20020131 1 900000000000207008 900000000000074008 +110908001 20080731 1 900000000000207008 900000000000073002 +110909009 20020131 1 900000000000207008 900000000000074008 +110909009 20080731 1 900000000000207008 900000000000073002 +110910004 20020131 1 900000000000207008 900000000000074008 +110910004 20080731 1 900000000000207008 900000000000073002 +110912007 20020131 1 900000000000207008 900000000000074008 +110912007 20080731 1 900000000000207008 900000000000073002 +110913002 20020131 1 900000000000207008 900000000000074008 +110913002 20080731 1 900000000000207008 900000000000073002 +110914008 20020131 1 900000000000207008 900000000000074008 +110914008 20080731 1 900000000000207008 900000000000073002 +110915009 20020131 1 900000000000207008 900000000000074008 +110915009 20080731 1 900000000000207008 900000000000073002 +110916005 20020131 1 900000000000207008 900000000000074008 +110916005 20080731 1 900000000000207008 900000000000073002 +110917001 20020131 1 900000000000207008 900000000000074008 +110917001 20080731 1 900000000000207008 900000000000073002 +110918006 20020131 1 900000000000207008 900000000000074008 +110918006 20080731 1 900000000000207008 900000000000073002 +110919003 20020131 1 900000000000207008 900000000000074008 +110919003 20080731 1 900000000000207008 900000000000073002 +110920009 20020131 1 900000000000207008 900000000000074008 +110920009 20090131 1 900000000000207008 900000000000073002 +110921008 20020131 1 900000000000207008 900000000000074008 +110921008 20080731 1 900000000000207008 900000000000073002 +110922001 20020131 1 900000000000207008 900000000000074008 +110922001 20080731 1 900000000000207008 900000000000073002 +110923006 20020131 1 900000000000207008 900000000000074008 +110923006 20080731 1 900000000000207008 900000000000073002 +110924000 20020131 1 900000000000207008 900000000000074008 +110924000 20080731 1 900000000000207008 900000000000073002 +110925004 20020131 1 900000000000207008 900000000000074008 +110925004 20080731 1 900000000000207008 900000000000073002 +110926003 20020131 1 900000000000207008 900000000000074008 +110926003 20080731 1 900000000000207008 900000000000073002 +110927007 20020131 1 900000000000207008 900000000000074008 +110927007 20080731 1 900000000000207008 900000000000073002 +110928002 20020131 1 900000000000207008 900000000000074008 +110928002 20080731 1 900000000000207008 900000000000073002 +110929005 20020131 1 900000000000207008 900000000000074008 +110929005 20080731 1 900000000000207008 900000000000073002 +110930000 20020131 1 900000000000207008 900000000000074008 +110930000 20080731 1 900000000000207008 900000000000073002 +110931001 20020131 1 900000000000207008 900000000000074008 +110931001 20080731 1 900000000000207008 900000000000073002 +110932008 20020131 1 900000000000207008 900000000000074008 +110932008 20080731 1 900000000000207008 900000000000073002 +110933003 20020131 1 900000000000207008 900000000000074008 +110933003 20080731 1 900000000000207008 900000000000073002 +110934009 20020131 1 900000000000207008 900000000000074008 +110934009 20080731 1 900000000000207008 900000000000073002 +110935005 20020131 1 900000000000207008 900000000000074008 +110935005 20080731 1 900000000000207008 900000000000073002 +110936006 20020131 1 900000000000207008 900000000000074008 +110936006 20080731 1 900000000000207008 900000000000073002 +110937002 20020131 1 900000000000207008 900000000000074008 +110937002 20080731 1 900000000000207008 900000000000073002 +110938007 20020131 1 900000000000207008 900000000000074008 +110938007 20080731 1 900000000000207008 900000000000073002 +110939004 20020131 1 900000000000207008 900000000000074008 +110939004 20080731 1 900000000000207008 900000000000073002 +110940002 20020131 1 900000000000207008 900000000000074008 +110940002 20080731 1 900000000000207008 900000000000073002 +110941003 20020131 1 900000000000207008 900000000000074008 +110941003 20080731 1 900000000000207008 900000000000073002 +110942005 20020131 1 900000000000207008 900000000000074008 +110942005 20080731 1 900000000000207008 900000000000073002 +110943000 20020131 1 900000000000207008 900000000000074008 +110943000 20080731 1 900000000000207008 900000000000073002 +110944006 20020131 1 900000000000207008 900000000000074008 +110944006 20080731 1 900000000000207008 900000000000073002 +110945007 20020131 1 900000000000207008 900000000000074008 +110945007 20080731 1 900000000000207008 900000000000073002 +110946008 20020131 1 900000000000207008 900000000000074008 +110946008 20080731 1 900000000000207008 900000000000073002 +110947004 20020131 1 900000000000207008 900000000000074008 +110947004 20080731 1 900000000000207008 900000000000073002 +110948009 20020131 1 900000000000207008 900000000000074008 +110948009 20080731 1 900000000000207008 900000000000073002 +110949001 20020131 1 900000000000207008 900000000000074008 +110949001 20080731 1 900000000000207008 900000000000073002 +110950001 20020131 1 900000000000207008 900000000000074008 +110950001 20080731 1 900000000000207008 900000000000073002 +110951002 20020131 1 900000000000207008 900000000000074008 +110951002 20080731 1 900000000000207008 900000000000073002 +110952009 20020131 1 900000000000207008 900000000000074008 +110952009 20110731 1 900000000000207008 900000000000073002 +110953004 20020131 1 900000000000207008 900000000000074008 +110954005 20020131 1 900000000000207008 900000000000074008 +110954005 20080731 1 900000000000207008 900000000000073002 +110955006 20020131 1 900000000000207008 900000000000074008 +110955006 20080731 1 900000000000207008 900000000000073002 +110956007 20020131 1 900000000000207008 900000000000074008 +110956007 20080731 1 900000000000207008 900000000000073002 +110957003 20020131 1 900000000000207008 900000000000074008 +110957003 20080731 1 900000000000207008 900000000000073002 +110958008 20020131 1 900000000000207008 900000000000074008 +110958008 20080731 1 900000000000207008 900000000000073002 +110959000 20020131 1 900000000000207008 900000000000074008 +110959000 20080731 1 900000000000207008 900000000000073002 +110960005 20020131 1 900000000000207008 900000000000074008 +110960005 20080731 1 900000000000207008 900000000000073002 +110961009 20020131 1 900000000000207008 900000000000074008 +110961009 20080731 1 900000000000207008 900000000000073002 +110962002 20020131 1 900000000000207008 900000000000074008 +110962002 20080731 1 900000000000207008 900000000000073002 +110963007 20020131 1 900000000000207008 900000000000074008 +110963007 20080731 1 900000000000207008 900000000000073002 +110964001 20020131 1 900000000000207008 900000000000074008 +110964001 20080731 1 900000000000207008 900000000000073002 +110965000 20020131 1 900000000000207008 900000000000074008 +110965000 20080731 1 900000000000207008 900000000000073002 +110966004 20020131 1 900000000000207008 900000000000074008 +110966004 20080731 1 900000000000207008 900000000000073002 +110967008 20020131 1 900000000000207008 900000000000074008 +110967008 20080731 1 900000000000207008 900000000000073002 +110968003 20020131 1 900000000000207008 900000000000074008 +110968003 20080731 1 900000000000207008 900000000000073002 +110969006 20020131 1 900000000000207008 900000000000074008 +110969006 20080731 1 900000000000207008 900000000000073002 +110969006 20110731 1 900000000000207008 900000000000074008 +110969006 20180731 1 900000000000207008 900000000000073002 +110970007 20020131 1 900000000000207008 900000000000074008 +110970007 20080731 1 900000000000207008 900000000000073002 +116155002 20020131 1 900000000000207008 900000000000074008 +116155002 20080731 1 900000000000207008 900000000000073002 +116156001 20020131 1 900000000000207008 900000000000074008 +116156001 20080731 1 900000000000207008 900000000000073002 +116157005 20020131 1 900000000000207008 900000000000074008 +116157005 20080731 1 900000000000207008 900000000000073002 +116158000 20020131 1 900000000000207008 900000000000074008 +116158000 20080731 1 900000000000207008 900000000000073002 +116159008 20020131 1 900000000000207008 900000000000074008 +116159008 20080731 1 900000000000207008 900000000000073002 +116160003 20020131 1 900000000000207008 900000000000074008 +116160003 20080731 1 900000000000207008 900000000000073002 +116161004 20020131 1 900000000000207008 900000000000074008 +116161004 20080731 1 900000000000207008 900000000000073002 +116162006 20020131 1 900000000000207008 900000000000074008 +116213003 20020131 1 900000000000207008 900000000000074008 +116213003 20080731 1 900000000000207008 900000000000073002 +119294007 20020131 1 900000000000207008 900000000000074008 +119295008 20020131 1 900000000000207008 900000000000074008 +119295008 20040731 1 900000000000207008 900000000000073002 +119297000 20020131 1 900000000000207008 900000000000074008 +119297000 20040731 1 900000000000207008 900000000000073002 +119298005 20020131 1 900000000000207008 900000000000074008 +119298005 20080731 1 900000000000207008 900000000000073002 +119299002 20020131 1 900000000000207008 900000000000074008 +119299002 20040731 1 900000000000207008 900000000000073002 +119300005 20020131 1 900000000000207008 900000000000074008 +119300005 20080731 1 900000000000207008 900000000000073002 +119301009 20020131 1 900000000000207008 900000000000074008 +119301009 20040731 1 900000000000207008 900000000000073002 +119302002 20020131 1 900000000000207008 900000000000074008 +119303007 20020131 1 900000000000207008 900000000000074008 +119303007 20080731 1 900000000000207008 900000000000073002 +119304001 20020131 1 900000000000207008 900000000000074008 +119304001 20040731 1 900000000000207008 900000000000073002 +119305000 20020131 1 900000000000207008 900000000000074008 +119305000 20080731 1 900000000000207008 900000000000073002 +119307008 20020131 1 900000000000207008 900000000000074008 +119307008 20080731 1 900000000000207008 900000000000073002 +119308003 20020131 1 900000000000207008 900000000000074008 +119308003 20080731 1 900000000000207008 900000000000073002 +119309006 20020131 1 900000000000207008 900000000000074008 +119309006 20080731 1 900000000000207008 900000000000073002 +119309006 20090131 1 900000000000207008 900000000000074008 +119309006 20210131 1 900000000000207008 900000000000073002 +119311002 20020131 1 900000000000207008 900000000000074008 +119311002 20040731 1 900000000000207008 900000000000073002 +119312009 20020131 1 900000000000207008 900000000000074008 +119312009 20080731 1 900000000000207008 900000000000073002 +119313004 20020131 1 900000000000207008 900000000000074008 +119313004 20080731 1 900000000000207008 900000000000073002 +119314005 20020131 1 900000000000207008 900000000000074008 +119314005 20040731 1 900000000000207008 900000000000073002 +119316007 20020131 1 900000000000207008 900000000000074008 +119316007 20080731 1 900000000000207008 900000000000073002 +119317003 20020131 1 900000000000207008 900000000000074008 +119317003 20040731 1 900000000000207008 900000000000073002 +119318008 20020131 1 900000000000207008 900000000000074008 +119318008 20080731 1 900000000000207008 900000000000073002 +119319000 20020131 1 900000000000207008 900000000000074008 +119319000 20040731 1 900000000000207008 900000000000073002 +119319000 20080731 1 900000000000207008 900000000000074008 +119319000 20090131 1 900000000000207008 900000000000073002 +119320006 20020131 1 900000000000207008 900000000000074008 +119320006 20040731 1 900000000000207008 900000000000073002 +119321005 20020131 1 900000000000207008 900000000000074008 +119321005 20040731 1 900000000000207008 900000000000073002 +119323008 20020131 1 900000000000207008 900000000000074008 +119323008 20030731 1 900000000000207008 900000000000073002 +119324002 20020131 1 900000000000207008 900000000000074008 +119325001 20020131 1 900000000000207008 900000000000074008 +119325001 20080731 1 900000000000207008 900000000000073002 +119326000 20020131 1 900000000000207008 900000000000074008 +119326000 20040731 1 900000000000207008 900000000000073002 +119327009 20020131 1 900000000000207008 900000000000074008 +119327009 20040731 1 900000000000207008 900000000000073002 +119328004 20020131 1 900000000000207008 900000000000074008 +119328004 20080731 1 900000000000207008 900000000000073002 +119328004 20100731 1 900000000000207008 900000000000074008 +119329007 20020131 1 900000000000207008 900000000000074008 +119329007 20040731 1 900000000000207008 900000000000073002 +119331003 20020131 1 900000000000207008 900000000000074008 +119331003 20080731 1 900000000000207008 900000000000073002 +119332005 20020131 1 900000000000207008 900000000000074008 +119332005 20080731 1 900000000000207008 900000000000073002 +119333000 20020131 1 900000000000207008 900000000000074008 +119333000 20040731 1 900000000000207008 900000000000073002 +119333000 20080731 1 900000000000207008 900000000000074008 +119334006 20020131 1 900000000000207008 900000000000074008 +119334006 20080731 1 900000000000207008 900000000000073002 +119335007 20020131 1 900000000000207008 900000000000074008 +119335007 20080731 1 900000000000207008 900000000000073002 +119336008 20020131 1 900000000000207008 900000000000074008 +119336008 20040731 1 900000000000207008 900000000000073002 +119337004 20020131 1 900000000000207008 900000000000074008 +119337004 20040731 1 900000000000207008 900000000000073002 +119338009 20020131 1 900000000000207008 900000000000074008 +119338009 20040731 1 900000000000207008 900000000000073002 +119339001 20020131 1 900000000000207008 900000000000074008 +119339001 20030731 1 900000000000207008 900000000000073002 +119340004 20020131 1 900000000000207008 900000000000074008 +119340004 20040731 1 900000000000207008 900000000000073002 +119340004 20110731 1 900000000000207008 900000000000074008 +119341000 20020131 1 900000000000207008 900000000000074008 +119341000 20040731 1 900000000000207008 900000000000073002 +119342007 20020131 1 900000000000207008 900000000000074008 +119342007 20040731 1 900000000000207008 900000000000073002 +119343002 20020131 1 900000000000207008 900000000000074008 +119343002 20080731 1 900000000000207008 900000000000073002 +119344008 20020131 1 900000000000207008 900000000000074008 +119344008 20040731 1 900000000000207008 900000000000073002 +119345009 20020131 1 900000000000207008 900000000000074008 +119345009 20040731 1 900000000000207008 900000000000073002 +119346005 20020131 1 900000000000207008 900000000000074008 +119346005 20040731 1 900000000000207008 900000000000073002 +119347001 20020131 1 900000000000207008 900000000000074008 +119347001 20080731 1 900000000000207008 900000000000073002 +119348006 20020131 1 900000000000207008 900000000000074008 +119348006 20080731 1 900000000000207008 900000000000073002 +119349003 20020131 1 900000000000207008 900000000000074008 +119350003 20020131 1 900000000000207008 900000000000074008 +119350003 20040731 1 900000000000207008 900000000000073002 +119351004 20020131 1 900000000000207008 900000000000074008 +119351004 20080731 1 900000000000207008 900000000000073002 +119352006 20020131 1 900000000000207008 900000000000074008 +119352006 20040731 1 900000000000207008 900000000000073002 +119353001 20020131 1 900000000000207008 900000000000074008 +119353001 20090731 1 900000000000207008 900000000000073002 +119355008 20020131 1 900000000000207008 900000000000074008 +119355008 20090731 1 900000000000207008 900000000000073002 +119356009 20020131 1 900000000000207008 900000000000074008 +119357000 20020131 1 900000000000207008 900000000000074008 +119358005 20020131 1 900000000000207008 900000000000074008 +119358005 20040731 1 900000000000207008 900000000000073002 +119358005 20090131 1 900000000000207008 900000000000074008 +119359002 20020131 1 900000000000207008 900000000000074008 +119359002 20040731 1 900000000000207008 900000000000073002 +119361006 20020131 1 900000000000207008 900000000000074008 +119361006 20040731 1 900000000000207008 900000000000073002 +119362004 20020131 1 900000000000207008 900000000000074008 +119362004 20040731 1 900000000000207008 900000000000073002 +119363009 20020131 1 900000000000207008 900000000000074008 +119363009 20080731 1 900000000000207008 900000000000073002 +119364003 20020131 1 900000000000207008 900000000000074008 +119364003 20050131 1 900000000000207008 900000000000073002 +119365002 20020131 1 900000000000207008 900000000000074008 +119365002 20040731 1 900000000000207008 900000000000073002 +119366001 20020131 1 900000000000207008 900000000000074008 +119366001 20080731 1 900000000000207008 900000000000073002 +119367005 20020131 1 900000000000207008 900000000000074008 +119367005 20040731 1 900000000000207008 900000000000073002 +119368000 20020131 1 900000000000207008 900000000000074008 +119368000 20040731 1 900000000000207008 900000000000073002 +119369008 20020131 1 900000000000207008 900000000000074008 +119369008 20040731 1 900000000000207008 900000000000073002 +119370009 20020131 1 900000000000207008 900000000000074008 +119370009 20040731 1 900000000000207008 900000000000073002 +119371008 20020131 1 900000000000207008 900000000000074008 +119371008 20040731 1 900000000000207008 900000000000073002 +119373006 20020131 1 900000000000207008 900000000000074008 +119373006 20040731 1 900000000000207008 900000000000073002 +119376003 20020131 1 900000000000207008 900000000000074008 +119376003 20030731 1 900000000000207008 900000000000073002 +119377007 20020131 1 900000000000207008 900000000000074008 +119377007 20080731 1 900000000000207008 900000000000073002 +119378002 20020131 1 900000000000207008 900000000000074008 +119378002 20080731 1 900000000000207008 900000000000073002 +119379005 20020131 1 900000000000207008 900000000000074008 +119379005 20080731 1 900000000000207008 900000000000073002 +119380008 20020131 1 900000000000207008 900000000000074008 +119380008 20040731 1 900000000000207008 900000000000073002 +119381007 20020131 1 900000000000207008 900000000000074008 +119381007 20080731 1 900000000000207008 900000000000073002 +119382000 20020131 1 900000000000207008 900000000000074008 +119382000 20080731 1 900000000000207008 900000000000073002 +119383005 20020131 1 900000000000207008 900000000000074008 +119383005 20040731 1 900000000000207008 900000000000073002 +119384004 20020131 1 900000000000207008 900000000000074008 +119384004 20080731 1 900000000000207008 900000000000073002 +119385003 20020131 1 900000000000207008 900000000000074008 +119385003 20080731 1 900000000000207008 900000000000073002 +119386002 20020131 1 900000000000207008 900000000000074008 +119386002 20080731 1 900000000000207008 900000000000073002 +119388001 20020131 1 900000000000207008 900000000000074008 +119388001 20040731 1 900000000000207008 900000000000073002 +119389009 20020131 1 900000000000207008 900000000000074008 +119389009 20040731 1 900000000000207008 900000000000073002 +119390000 20020131 1 900000000000207008 900000000000074008 +119390000 20040731 1 900000000000207008 900000000000073002 +119391001 20020131 1 900000000000207008 900000000000074008 +119391001 20040731 1 900000000000207008 900000000000073002 +119392008 20020131 1 900000000000207008 900000000000074008 +119392008 20040731 1 900000000000207008 900000000000073002 +119393003 20020131 1 900000000000207008 900000000000074008 +119393003 20040731 1 900000000000207008 900000000000073002 +119394009 20020131 1 900000000000207008 900000000000074008 +119394009 20040731 1 900000000000207008 900000000000073002 +119395005 20020131 1 900000000000207008 900000000000074008 +119395005 20040731 1 900000000000207008 900000000000073002 +119396006 20020131 1 900000000000207008 900000000000074008 +119396006 20040731 1 900000000000207008 900000000000073002 +119397002 20020131 1 900000000000207008 900000000000074008 +119397002 20040731 1 900000000000207008 900000000000073002 +119398007 20020131 1 900000000000207008 900000000000074008 +119398007 20040731 1 900000000000207008 900000000000073002 +119399004 20020131 1 900000000000207008 900000000000074008 +119399004 20030731 1 900000000000207008 900000000000073002 +119400006 20020131 1 900000000000207008 900000000000074008 +119400006 20040731 1 900000000000207008 900000000000073002 +119401005 20020131 1 900000000000207008 900000000000074008 +119401005 20040731 1 900000000000207008 900000000000073002 +119403008 20020131 1 900000000000207008 900000000000074008 +119403008 20040731 1 900000000000207008 900000000000073002 +122550002 20020131 1 900000000000207008 900000000000074008 +122550002 20040731 1 900000000000207008 900000000000073002 +122551003 20020131 1 900000000000207008 900000000000074008 +122551003 20080731 1 900000000000207008 900000000000073002 +122552005 20020131 1 900000000000207008 900000000000074008 +122552005 20080731 1 900000000000207008 900000000000073002 +122553000 20020131 1 900000000000207008 900000000000074008 +122553000 20080731 1 900000000000207008 900000000000073002 +122554006 20020131 1 900000000000207008 900000000000074008 +122554006 20080731 1 900000000000207008 900000000000073002 +122555007 20020131 1 900000000000207008 900000000000074008 +122555007 20080731 1 900000000000207008 900000000000073002 +122556008 20020131 1 900000000000207008 900000000000074008 +122556008 20080731 1 900000000000207008 900000000000073002 +122557004 20020131 1 900000000000207008 900000000000074008 +122557004 20080731 1 900000000000207008 900000000000073002 +122557004 20110731 1 900000000000207008 900000000000074008 +122558009 20020131 1 900000000000207008 900000000000074008 +122558009 20100131 1 900000000000207008 900000000000073002 +122559001 20020131 1 900000000000207008 900000000000074008 +122560006 20020131 1 900000000000207008 900000000000074008 +122560006 20080731 1 900000000000207008 900000000000073002 +122561005 20020131 1 900000000000207008 900000000000074008 +122561005 20040731 1 900000000000207008 900000000000073002 +122562003 20020131 1 900000000000207008 900000000000074008 +122562003 20080731 1 900000000000207008 900000000000073002 +122563008 20020131 1 900000000000207008 900000000000074008 +122563008 20040731 1 900000000000207008 900000000000073002 +122564002 20020131 1 900000000000207008 900000000000074008 +122564002 20080731 1 900000000000207008 900000000000073002 +122565001 20020131 1 900000000000207008 900000000000074008 +122565001 20080731 1 900000000000207008 900000000000073002 +122566000 20020131 1 900000000000207008 900000000000074008 +122566000 20080731 1 900000000000207008 900000000000073002 +122567009 20020131 1 900000000000207008 900000000000074008 +122567009 20040731 1 900000000000207008 900000000000073002 +122568004 20020131 1 900000000000207008 900000000000074008 +122568004 20080731 1 900000000000207008 900000000000073002 +122569007 20020131 1 900000000000207008 900000000000074008 +122569007 20080731 1 900000000000207008 900000000000073002 +122571007 20020131 1 900000000000207008 900000000000074008 +122571007 20040731 1 900000000000207008 900000000000073002 +122572000 20020131 1 900000000000207008 900000000000074008 +122572000 20080731 1 900000000000207008 900000000000073002 +122573005 20020131 1 900000000000207008 900000000000074008 +122573005 20040731 1 900000000000207008 900000000000073002 +122574004 20020131 1 900000000000207008 900000000000074008 +122574004 20040731 1 900000000000207008 900000000000073002 +122575003 20020131 1 900000000000207008 900000000000074008 +122575003 20080731 1 900000000000207008 900000000000073002 +122576002 20020131 1 900000000000207008 900000000000074008 +122576002 20080731 1 900000000000207008 900000000000073002 +122577006 20020131 1 900000000000207008 900000000000074008 +122577006 20080731 1 900000000000207008 900000000000073002 +122578001 20020131 1 900000000000207008 900000000000074008 +122578001 20040731 1 900000000000207008 900000000000073002 +122579009 20020131 1 900000000000207008 900000000000074008 +122579009 20040731 1 900000000000207008 900000000000073002 +122580007 20020131 1 900000000000207008 900000000000074008 +122580007 20040731 1 900000000000207008 900000000000073002 +122581006 20020131 1 900000000000207008 900000000000074008 +122581006 20080731 1 900000000000207008 900000000000073002 +122582004 20020131 1 900000000000207008 900000000000074008 +122583009 20020131 1 900000000000207008 900000000000074008 +122583009 20040731 1 900000000000207008 900000000000073002 +122584003 20020131 1 900000000000207008 900000000000074008 +122584003 20040731 1 900000000000207008 900000000000073002 +122585002 20020131 1 900000000000207008 900000000000074008 +122587005 20020131 1 900000000000207008 900000000000074008 +122588000 20020131 1 900000000000207008 900000000000074008 +122588000 20040731 1 900000000000207008 900000000000073002 +122589008 20020131 1 900000000000207008 900000000000074008 +122589008 20040731 1 900000000000207008 900000000000073002 +122590004 20020131 1 900000000000207008 900000000000074008 +122590004 20040731 1 900000000000207008 900000000000073002 +122591000 20020131 1 900000000000207008 900000000000074008 +122592007 20020131 1 900000000000207008 900000000000074008 +122592007 20040731 1 900000000000207008 900000000000073002 +122592007 20090131 1 900000000000207008 900000000000074008 +122593002 20020131 1 900000000000207008 900000000000074008 +122593002 20080731 1 900000000000207008 900000000000073002 +122594008 20020131 1 900000000000207008 900000000000074008 +122594008 20080731 1 900000000000207008 900000000000073002 +122595009 20020131 1 900000000000207008 900000000000074008 +122595009 20080731 1 900000000000207008 900000000000073002 +122596005 20020131 1 900000000000207008 900000000000074008 +122597001 20020131 1 900000000000207008 900000000000074008 +122598006 20020131 1 900000000000207008 900000000000074008 +122599003 20020131 1 900000000000207008 900000000000074008 +122599003 20080731 1 900000000000207008 900000000000073002 +122600000 20020131 1 900000000000207008 900000000000074008 +122600000 20080731 1 900000000000207008 900000000000073002 +122601001 20020131 1 900000000000207008 900000000000074008 +122601001 20080731 1 900000000000207008 900000000000073002 +122602008 20020131 1 900000000000207008 900000000000074008 +122602008 20080731 1 900000000000207008 900000000000073002 +122604009 20020131 1 900000000000207008 900000000000074008 +122604009 20080731 1 900000000000207008 900000000000073002 +122605005 20020131 1 900000000000207008 900000000000074008 +122605005 20080731 1 900000000000207008 900000000000073002 +122606006 20020131 1 900000000000207008 900000000000074008 +122606006 20080731 1 900000000000207008 900000000000073002 +122607002 20020131 1 900000000000207008 900000000000074008 +122607002 20080731 1 900000000000207008 900000000000073002 +122608007 20020131 1 900000000000207008 900000000000074008 +122608007 20080731 1 900000000000207008 900000000000073002 +122609004 20020131 1 900000000000207008 900000000000074008 +122609004 20150731 1 900000000000207008 900000000000073002 +122610009 20020131 1 900000000000207008 900000000000074008 +122610009 20080731 1 900000000000207008 900000000000073002 +122611008 20020131 1 900000000000207008 900000000000074008 +122611008 20080731 1 900000000000207008 900000000000073002 +122613006 20020131 1 900000000000207008 900000000000074008 +122614000 20020131 1 900000000000207008 900000000000074008 +122614000 20080731 1 900000000000207008 900000000000073002 +122616003 20020131 1 900000000000207008 900000000000074008 +122617007 20020131 1 900000000000207008 900000000000074008 +122618002 20020131 1 900000000000207008 900000000000074008 +122618002 20080731 1 900000000000207008 900000000000073002 +122619005 20020131 1 900000000000207008 900000000000074008 +122619005 20060131 1 900000000000207008 900000000000073002 +122620004 20020131 1 900000000000207008 900000000000074008 +122620004 20080731 1 900000000000207008 900000000000073002 +122621000 20020131 1 900000000000207008 900000000000074008 +122621000 20080731 1 900000000000207008 900000000000073002 +122622007 20020131 1 900000000000207008 900000000000074008 +122623002 20020131 1 900000000000207008 900000000000074008 +122623002 20080731 1 900000000000207008 900000000000073002 +122624008 20020131 1 900000000000207008 900000000000074008 +122624008 20080731 1 900000000000207008 900000000000073002 +122625009 20020131 1 900000000000207008 900000000000074008 +122625009 20080731 1 900000000000207008 900000000000073002 +122626005 20020131 1 900000000000207008 900000000000074008 +122626005 20080731 1 900000000000207008 900000000000073002 +122627001 20020131 1 900000000000207008 900000000000074008 +122627001 20080731 1 900000000000207008 900000000000073002 +122628006 20020131 1 900000000000207008 900000000000074008 +122628006 20080731 1 900000000000207008 900000000000073002 +122629003 20020131 1 900000000000207008 900000000000074008 +122629003 20080731 1 900000000000207008 900000000000073002 +122630008 20020131 1 900000000000207008 900000000000074008 +122630008 20080731 1 900000000000207008 900000000000073002 +122631007 20020131 1 900000000000207008 900000000000074008 +122631007 20080731 1 900000000000207008 900000000000073002 +122632000 20020131 1 900000000000207008 900000000000074008 +122632000 20080731 1 900000000000207008 900000000000073002 +122633005 20020131 1 900000000000207008 900000000000074008 +122633005 20080731 1 900000000000207008 900000000000073002 +122634004 20020131 1 900000000000207008 900000000000074008 +122634004 20080731 1 900000000000207008 900000000000073002 +122635003 20020131 1 900000000000207008 900000000000074008 +122635003 20080731 1 900000000000207008 900000000000073002 +122636002 20020131 1 900000000000207008 900000000000074008 +122636002 20080731 1 900000000000207008 900000000000073002 +122637006 20020131 1 900000000000207008 900000000000074008 +122638001 20020131 1 900000000000207008 900000000000074008 +122638001 20080731 1 900000000000207008 900000000000073002 +122639009 20020131 1 900000000000207008 900000000000074008 +122639009 20080731 1 900000000000207008 900000000000073002 +122640006 20020131 1 900000000000207008 900000000000074008 +122640006 20080731 1 900000000000207008 900000000000073002 +122641005 20020131 1 900000000000207008 900000000000074008 +122641005 20080731 1 900000000000207008 900000000000073002 +122642003 20020131 1 900000000000207008 900000000000074008 +122642003 20080731 1 900000000000207008 900000000000073002 +122643008 20020131 1 900000000000207008 900000000000074008 +122643008 20080731 1 900000000000207008 900000000000073002 +122644002 20020131 1 900000000000207008 900000000000074008 +122644002 20080731 1 900000000000207008 900000000000073002 +122645001 20020131 1 900000000000207008 900000000000074008 +122645001 20080731 1 900000000000207008 900000000000073002 +122646000 20020131 1 900000000000207008 900000000000074008 +122647009 20020131 1 900000000000207008 900000000000074008 +122648004 20020131 1 900000000000207008 900000000000074008 +122648004 20080731 1 900000000000207008 900000000000073002 +122649007 20020131 1 900000000000207008 900000000000074008 +122649007 20080731 1 900000000000207008 900000000000073002 +122650007 20020131 1 900000000000207008 900000000000074008 +122650007 20080731 1 900000000000207008 900000000000073002 +122651006 20020131 1 900000000000207008 900000000000074008 +122651006 20080731 1 900000000000207008 900000000000073002 +122652004 20020131 1 900000000000207008 900000000000074008 +122652004 20080731 1 900000000000207008 900000000000073002 +122653009 20020131 1 900000000000207008 900000000000074008 +122653009 20100131 1 900000000000207008 900000000000073002 +122654003 20020131 1 900000000000207008 900000000000074008 +122655002 20020131 1 900000000000207008 900000000000074008 +122656001 20020131 1 900000000000207008 900000000000074008 +122656001 20080731 1 900000000000207008 900000000000073002 +122657005 20020131 1 900000000000207008 900000000000074008 +122657005 20080731 1 900000000000207008 900000000000073002 +122658000 20020131 1 900000000000207008 900000000000074008 +122658000 20080731 1 900000000000207008 900000000000073002 +122659008 20020131 1 900000000000207008 900000000000074008 +122659008 20080731 1 900000000000207008 900000000000073002 +122660003 20020131 1 900000000000207008 900000000000074008 +122660003 20080731 1 900000000000207008 900000000000073002 +122661004 20020131 1 900000000000207008 900000000000074008 +122661004 20080731 1 900000000000207008 900000000000073002 +122662006 20020131 1 900000000000207008 900000000000074008 +122662006 20080731 1 900000000000207008 900000000000073002 +122663001 20020131 1 900000000000207008 900000000000074008 +122663001 20080731 1 900000000000207008 900000000000073002 +122664007 20020131 1 900000000000207008 900000000000074008 +122664007 20080731 1 900000000000207008 900000000000073002 +122665008 20020131 1 900000000000207008 900000000000074008 +122665008 20080731 1 900000000000207008 900000000000073002 +122666009 20020131 1 900000000000207008 900000000000074008 +122666009 20080731 1 900000000000207008 900000000000073002 +122667000 20020131 1 900000000000207008 900000000000074008 +122667000 20080731 1 900000000000207008 900000000000073002 +122668005 20020131 1 900000000000207008 900000000000074008 +122668005 20080731 1 900000000000207008 900000000000073002 +122669002 20020131 1 900000000000207008 900000000000074008 +122669002 20080731 1 900000000000207008 900000000000073002 +122670001 20020131 1 900000000000207008 900000000000074008 +122670001 20080731 1 900000000000207008 900000000000073002 +122671002 20020131 1 900000000000207008 900000000000074008 +122671002 20060131 1 900000000000207008 900000000000073002 +122672009 20020131 1 900000000000207008 900000000000074008 +122672009 20080731 1 900000000000207008 900000000000073002 +122673004 20020131 1 900000000000207008 900000000000074008 +122673004 20080731 1 900000000000207008 900000000000073002 +122674005 20020131 1 900000000000207008 900000000000074008 +122674005 20080731 1 900000000000207008 900000000000073002 +122675006 20020131 1 900000000000207008 900000000000074008 +122675006 20110731 1 900000000000207008 900000000000073002 +122676007 20020131 1 900000000000207008 900000000000074008 +122676007 20080731 1 900000000000207008 900000000000073002 +122677003 20020131 1 900000000000207008 900000000000074008 +122677003 20080731 1 900000000000207008 900000000000073002 +122678008 20020131 1 900000000000207008 900000000000074008 +122678008 20080731 1 900000000000207008 900000000000073002 +122679000 20020131 1 900000000000207008 900000000000074008 +122679000 20080731 1 900000000000207008 900000000000073002 +122680002 20020131 1 900000000000207008 900000000000074008 +122680002 20080731 1 900000000000207008 900000000000073002 +122681003 20020131 1 900000000000207008 900000000000074008 +122681003 20100131 1 900000000000207008 900000000000073002 +122682005 20020131 1 900000000000207008 900000000000074008 +122682005 20080731 1 900000000000207008 900000000000073002 +122683000 20020131 1 900000000000207008 900000000000074008 +122683000 20080731 1 900000000000207008 900000000000073002 +122684006 20020131 1 900000000000207008 900000000000074008 +122684006 20080731 1 900000000000207008 900000000000073002 +122685007 20020131 1 900000000000207008 900000000000074008 +122685007 20080731 1 900000000000207008 900000000000073002 +122686008 20020131 1 900000000000207008 900000000000074008 +122686008 20080731 1 900000000000207008 900000000000073002 +122687004 20020131 1 900000000000207008 900000000000074008 +122687004 20080731 1 900000000000207008 900000000000073002 +122688009 20020131 1 900000000000207008 900000000000074008 +122688009 20080731 1 900000000000207008 900000000000073002 +122689001 20020131 1 900000000000207008 900000000000074008 +122689001 20080731 1 900000000000207008 900000000000073002 +122690005 20020131 1 900000000000207008 900000000000074008 +122690005 20080731 1 900000000000207008 900000000000073002 +122690005 20100131 1 900000000000207008 900000000000074008 +122690005 20110731 1 900000000000207008 900000000000073002 +122691009 20020131 1 900000000000207008 900000000000074008 +122691009 20080731 1 900000000000207008 900000000000073002 +122692002 20020131 1 900000000000207008 900000000000074008 +122692002 20080731 1 900000000000207008 900000000000073002 +122693007 20020131 1 900000000000207008 900000000000074008 +122693007 20080731 1 900000000000207008 900000000000073002 +122694001 20020131 1 900000000000207008 900000000000074008 +122694001 20080731 1 900000000000207008 900000000000073002 +122696004 20020131 1 900000000000207008 900000000000074008 +122696004 20080731 1 900000000000207008 900000000000073002 +122697008 20020131 1 900000000000207008 900000000000074008 +122697008 20080731 1 900000000000207008 900000000000073002 +122698003 20020131 1 900000000000207008 900000000000074008 +122698003 20080731 1 900000000000207008 900000000000073002 +122699006 20020131 1 900000000000207008 900000000000074008 +122699006 20080731 1 900000000000207008 900000000000073002 +122700007 20020131 1 900000000000207008 900000000000074008 +122700007 20080731 1 900000000000207008 900000000000073002 +122701006 20020131 1 900000000000207008 900000000000074008 +122701006 20080731 1 900000000000207008 900000000000073002 +122702004 20020131 1 900000000000207008 900000000000074008 +122702004 20080731 1 900000000000207008 900000000000073002 +122703009 20020131 1 900000000000207008 900000000000074008 +122703009 20080731 1 900000000000207008 900000000000073002 +122704003 20020131 1 900000000000207008 900000000000074008 +122704003 20080731 1 900000000000207008 900000000000073002 +122705002 20020131 1 900000000000207008 900000000000074008 +122705002 20080731 1 900000000000207008 900000000000073002 +122706001 20020131 1 900000000000207008 900000000000074008 +122706001 20080731 1 900000000000207008 900000000000073002 +122707005 20020131 1 900000000000207008 900000000000074008 +122707005 20080731 1 900000000000207008 900000000000073002 +122708000 20020131 1 900000000000207008 900000000000074008 +122708000 20080731 1 900000000000207008 900000000000073002 +122709008 20020131 1 900000000000207008 900000000000074008 +122709008 20080731 1 900000000000207008 900000000000073002 +122710003 20020131 1 900000000000207008 900000000000074008 +122710003 20080731 1 900000000000207008 900000000000073002 +122711004 20020131 1 900000000000207008 900000000000074008 +122711004 20080731 1 900000000000207008 900000000000073002 +122712006 20020131 1 900000000000207008 900000000000074008 +122713001 20020131 1 900000000000207008 900000000000074008 +122713001 20080731 1 900000000000207008 900000000000073002 +122714007 20020131 1 900000000000207008 900000000000074008 +122714007 20080731 1 900000000000207008 900000000000073002 +122715008 20020131 1 900000000000207008 900000000000074008 +122715008 20080731 1 900000000000207008 900000000000073002 +122716009 20020131 1 900000000000207008 900000000000074008 +122716009 20080731 1 900000000000207008 900000000000073002 +122717000 20020131 1 900000000000207008 900000000000074008 +122717000 20080731 1 900000000000207008 900000000000073002 +122718005 20020131 1 900000000000207008 900000000000074008 +122718005 20080731 1 900000000000207008 900000000000073002 +122719002 20020131 1 900000000000207008 900000000000074008 +122720008 20020131 1 900000000000207008 900000000000074008 +122720008 20080731 1 900000000000207008 900000000000073002 +122720008 20180131 1 900000000000207008 900000000000074008 +122721007 20020131 1 900000000000207008 900000000000074008 +122721007 20080731 1 900000000000207008 900000000000073002 +122722000 20020131 1 900000000000207008 900000000000074008 +122722000 20080731 1 900000000000207008 900000000000073002 +122723005 20020131 1 900000000000207008 900000000000074008 +122723005 20080731 1 900000000000207008 900000000000073002 +122724004 20020131 1 900000000000207008 900000000000074008 +122724004 20080731 1 900000000000207008 900000000000073002 +122725003 20020131 1 900000000000207008 900000000000074008 +122725003 20080731 1 900000000000207008 900000000000073002 +122726002 20020131 1 900000000000207008 900000000000074008 +122726002 20080731 1 900000000000207008 900000000000073002 +122727006 20020131 1 900000000000207008 900000000000074008 +122727006 20080731 1 900000000000207008 900000000000073002 +122728001 20020131 1 900000000000207008 900000000000074008 +122729009 20020131 1 900000000000207008 900000000000074008 +122729009 20080731 1 900000000000207008 900000000000073002 +122730004 20020131 1 900000000000207008 900000000000074008 +122730004 20080731 1 900000000000207008 900000000000073002 +122732007 20020131 1 900000000000207008 900000000000074008 +122732007 20080731 1 900000000000207008 900000000000073002 +122733002 20020131 1 900000000000207008 900000000000074008 +122733002 20080731 1 900000000000207008 900000000000073002 +122734008 20020131 1 900000000000207008 900000000000074008 +122734008 20080731 1 900000000000207008 900000000000073002 +122735009 20020131 1 900000000000207008 900000000000074008 +122735009 20080731 1 900000000000207008 900000000000073002 +122736005 20020131 1 900000000000207008 900000000000074008 +122736005 20040731 1 900000000000207008 900000000000073002 +122737001 20020131 1 900000000000207008 900000000000074008 +122737001 20080731 1 900000000000207008 900000000000073002 +122738006 20020131 1 900000000000207008 900000000000074008 +122738006 20080731 1 900000000000207008 900000000000073002 +122739003 20020131 1 900000000000207008 900000000000074008 +122739003 20080731 1 900000000000207008 900000000000073002 +122877000 20020131 1 900000000000207008 900000000000074008 +122877000 20040731 1 900000000000207008 900000000000073002 +122879002 20020131 1 900000000000207008 900000000000074008 +122879002 20080731 1 900000000000207008 900000000000073002 +122880004 20020131 1 900000000000207008 900000000000074008 +122880004 20080731 1 900000000000207008 900000000000073002 +123038009 20020131 1 900000000000207008 900000000000074008 +127456000 20020131 1 900000000000207008 900000000000074008 +127456000 20030731 1 900000000000207008 900000000000073002 +127457009 20020131 1 900000000000207008 900000000000074008 +127457009 20080731 1 900000000000207008 900000000000073002 +127458004 20020131 1 900000000000207008 900000000000074008 +127458004 20040731 1 900000000000207008 900000000000073002 +127459007 20020131 1 900000000000207008 900000000000074008 +127459007 20040731 1 900000000000207008 900000000000073002 +127460002 20020131 1 900000000000207008 900000000000074008 +127460002 20080731 1 900000000000207008 900000000000073002 +127461003 20020131 1 900000000000207008 900000000000074008 +127461003 20080731 1 900000000000207008 900000000000073002 +127462005 20020131 1 900000000000207008 900000000000074008 +127462005 20040731 1 900000000000207008 900000000000073002 +127463000 20020131 1 900000000000207008 900000000000074008 +127463000 20030731 1 900000000000207008 900000000000073002 +127464006 20020131 1 900000000000207008 900000000000074008 +127464006 20080731 1 900000000000207008 900000000000073002 +127465007 20020131 1 900000000000207008 900000000000074008 +127465007 20050131 1 900000000000207008 900000000000073002 +127466008 20020131 1 900000000000207008 900000000000074008 +127466008 20080731 1 900000000000207008 900000000000073002 +127467004 20020131 1 900000000000207008 900000000000074008 +127467004 20080731 1 900000000000207008 900000000000073002 +127468009 20020131 1 900000000000207008 900000000000074008 +127468009 20080731 1 900000000000207008 900000000000073002 +127469001 20020131 1 900000000000207008 900000000000074008 +127469001 20040731 1 900000000000207008 900000000000073002 +127470000 20020131 1 900000000000207008 900000000000074008 +127470000 20080731 1 900000000000207008 900000000000073002 +127471001 20020131 1 900000000000207008 900000000000074008 +127471001 20040731 1 900000000000207008 900000000000073002 +127472008 20020131 1 900000000000207008 900000000000074008 +127472008 20080731 1 900000000000207008 900000000000073002 +127473003 20020131 1 900000000000207008 900000000000074008 +127473003 20040731 1 900000000000207008 900000000000073002 +127474009 20020131 1 900000000000207008 900000000000074008 +127474009 20080731 1 900000000000207008 900000000000073002 +127475005 20020131 1 900000000000207008 900000000000074008 +127475005 20080731 1 900000000000207008 900000000000073002 +127476006 20020131 1 900000000000207008 900000000000074008 +127476006 20040731 1 900000000000207008 900000000000073002 +127478007 20020131 1 900000000000207008 900000000000074008 +127478007 20080731 1 900000000000207008 900000000000073002 +127479004 20020131 1 900000000000207008 900000000000074008 +127479004 20080731 1 900000000000207008 900000000000073002 +127480001 20020131 1 900000000000207008 900000000000074008 +127480001 20080731 1 900000000000207008 900000000000073002 +127481002 20020131 1 900000000000207008 900000000000074008 +127481002 20080731 1 900000000000207008 900000000000073002 +127482009 20020131 1 900000000000207008 900000000000074008 +127482009 20080731 1 900000000000207008 900000000000073002 +127483004 20020131 1 900000000000207008 900000000000074008 +127483004 20080731 1 900000000000207008 900000000000073002 +128154006 20020131 1 900000000000207008 900000000000074008 +128154006 20040731 1 900000000000207008 900000000000073002 +128155007 20020131 1 900000000000207008 900000000000074008 +128155007 20040731 1 900000000000207008 900000000000073002 +128156008 20020131 1 900000000000207008 900000000000074008 +128156008 20080731 1 900000000000207008 900000000000073002 +128157004 20020131 1 900000000000207008 900000000000074008 +128157004 20040731 1 900000000000207008 900000000000073002 +128158009 20020131 1 900000000000207008 900000000000074008 +128158009 20080731 1 900000000000207008 900000000000073002 +128159001 20020131 1 900000000000207008 900000000000074008 +128159001 20080731 1 900000000000207008 900000000000073002 +128160006 20020131 1 900000000000207008 900000000000074008 +128160006 20080731 1 900000000000207008 900000000000073002 +128161005 20020131 1 900000000000207008 900000000000074008 +128161005 20080731 1 900000000000207008 900000000000073002 +128162003 20020131 1 900000000000207008 900000000000074008 +128162003 20080731 1 900000000000207008 900000000000073002 +128163008 20020131 1 900000000000207008 900000000000074008 +128163008 20080731 1 900000000000207008 900000000000073002 +128164002 20020131 1 900000000000207008 900000000000074008 +128164002 20050131 1 900000000000207008 900000000000073002 +128165001 20020131 1 900000000000207008 900000000000074008 +128165001 20080731 1 900000000000207008 900000000000073002 +128166000 20020131 1 900000000000207008 900000000000074008 +128166000 20080731 1 900000000000207008 900000000000073002 +128167009 20020131 1 900000000000207008 900000000000074008 +128167009 20080731 1 900000000000207008 900000000000073002 +128168004 20020131 1 900000000000207008 900000000000074008 +128168004 20080731 1 900000000000207008 900000000000073002 +128169007 20020131 1 900000000000207008 900000000000074008 +128169007 20080731 1 900000000000207008 900000000000073002 +128170008 20020131 1 900000000000207008 900000000000074008 +128170008 20080731 1 900000000000207008 900000000000073002 +128171007 20020131 1 900000000000207008 900000000000074008 +128171007 20080731 1 900000000000207008 900000000000073002 +128172000 20020131 1 900000000000207008 900000000000074008 +128172000 20080731 1 900000000000207008 900000000000073002 +128173005 20020131 1 900000000000207008 900000000000074008 +128173005 20080731 1 900000000000207008 900000000000073002 +128174004 20020131 1 900000000000207008 900000000000074008 +128174004 20080731 1 900000000000207008 900000000000073002 +128175003 20020131 1 900000000000207008 900000000000074008 +128175003 20080731 1 900000000000207008 900000000000073002 +167867009 20020131 1 900000000000207008 900000000000074008 +167868004 20020131 1 900000000000207008 900000000000074008 +167868004 20080731 1 900000000000207008 900000000000073002 +167869007 20020131 1 900000000000207008 900000000000074008 +167869007 20080731 1 900000000000207008 900000000000073002 +167870008 20020131 1 900000000000207008 900000000000074008 +167870008 20080731 1 900000000000207008 900000000000073002 +167871007 20020131 1 900000000000207008 900000000000074008 +167871007 20080731 1 900000000000207008 900000000000073002 +167872000 20020131 1 900000000000207008 900000000000074008 +167872000 20080731 1 900000000000207008 900000000000073002 +167873005 20020131 1 900000000000207008 900000000000074008 +167873005 20080731 1 900000000000207008 900000000000073002 +167874004 20020131 1 900000000000207008 900000000000074008 +167874004 20080731 1 900000000000207008 900000000000073002 +167875003 20020131 1 900000000000207008 900000000000074008 +167875003 20080731 1 900000000000207008 900000000000073002 +167876002 20020131 1 900000000000207008 900000000000074008 +167876002 20080731 1 900000000000207008 900000000000073002 +167877006 20020131 1 900000000000207008 900000000000074008 +167877006 20080731 1 900000000000207008 900000000000073002 +167913002 20020131 1 900000000000207008 900000000000074008 +168136008 20020131 1 900000000000207008 900000000000074008 +168136008 20080731 1 900000000000207008 900000000000073002 +168137004 20020131 1 900000000000207008 900000000000074008 +168137004 20060131 1 900000000000207008 900000000000073002 +168138009 20020131 1 900000000000207008 900000000000074008 +168138009 20080731 1 900000000000207008 900000000000073002 +168139001 20020131 1 900000000000207008 900000000000074008 +168139001 20040731 1 900000000000207008 900000000000073002 +168140004 20020131 1 900000000000207008 900000000000074008 +168140004 20230430 1 900000000000207008 900000000000073002 +168141000 20020131 1 900000000000207008 900000000000074008 +168141000 20040731 1 900000000000207008 900000000000073002 +168145009 20020131 1 900000000000207008 900000000000074008 +168145009 20080731 1 900000000000207008 900000000000073002 +256889002 20020131 1 900000000000207008 900000000000074008 +256889002 20040731 1 900000000000207008 900000000000073002 +256912003 20020131 1 900000000000207008 900000000000074008 +256912003 20080731 1 900000000000207008 900000000000073002 +257261003 20020131 1 900000000000207008 900000000000074008 +257261003 20040731 1 900000000000207008 900000000000073002 +258407001 20020131 1 900000000000207008 900000000000074008 +258407001 20080731 1 900000000000207008 900000000000073002 +258411007 20020131 1 900000000000207008 900000000000074008 +258411007 20080731 1 900000000000207008 900000000000073002 +258412000 20020131 1 900000000000207008 900000000000074008 +258412000 20080731 1 900000000000207008 900000000000073002 +258414004 20020131 1 900000000000207008 900000000000074008 +258414004 20080731 1 900000000000207008 900000000000073002 +258415003 20020131 1 900000000000207008 900000000000074008 +258415003 20040731 1 900000000000207008 900000000000073002 +258417006 20020131 1 900000000000207008 900000000000074008 +258417006 20080731 1 900000000000207008 900000000000073002 +258418001 20020131 1 900000000000207008 900000000000074008 +258418001 20080731 1 900000000000207008 900000000000073002 +258419009 20020131 1 900000000000207008 900000000000074008 +258419009 20040731 1 900000000000207008 900000000000073002 +258420003 20020131 1 900000000000207008 900000000000074008 +258420003 20080731 1 900000000000207008 900000000000073002 +258421004 20020131 1 900000000000207008 900000000000074008 +258421004 20040731 1 900000000000207008 900000000000073002 +258422006 20020131 1 900000000000207008 900000000000074008 +258422006 20080731 1 900000000000207008 900000000000073002 +258423001 20020131 1 900000000000207008 900000000000074008 +258423001 20080731 1 900000000000207008 900000000000073002 +258424007 20020131 1 900000000000207008 900000000000074008 +258424007 20080731 1 900000000000207008 900000000000073002 +258425008 20020131 1 900000000000207008 900000000000074008 +258426009 20020131 1 900000000000207008 900000000000074008 +258426009 20080731 1 900000000000207008 900000000000073002 +258428005 20020131 1 900000000000207008 900000000000074008 +258428005 20040731 1 900000000000207008 900000000000073002 +258429002 20020131 1 900000000000207008 900000000000074008 +258429002 20080731 1 900000000000207008 900000000000073002 +258430007 20020131 1 900000000000207008 900000000000074008 +258431006 20020131 1 900000000000207008 900000000000074008 +258431006 20040731 1 900000000000207008 900000000000073002 +258432004 20020131 1 900000000000207008 900000000000074008 +258432004 20040731 1 900000000000207008 900000000000073002 +258433009 20020131 1 900000000000207008 900000000000074008 +258433009 20040731 1 900000000000207008 900000000000073002 +258434003 20020131 1 900000000000207008 900000000000074008 +258434003 20080731 1 900000000000207008 900000000000073002 +258435002 20020131 1 900000000000207008 900000000000074008 +258435002 20080731 1 900000000000207008 900000000000073002 +258436001 20020131 1 900000000000207008 900000000000074008 +258436001 20040731 1 900000000000207008 900000000000073002 +258437005 20020131 1 900000000000207008 900000000000074008 +258437005 20080731 1 900000000000207008 900000000000073002 +258438000 20020131 1 900000000000207008 900000000000074008 +258438000 20080731 1 900000000000207008 900000000000073002 +258439008 20020131 1 900000000000207008 900000000000074008 +258439008 20040731 1 900000000000207008 900000000000073002 +258440005 20020131 1 900000000000207008 900000000000074008 +258440005 20080731 1 900000000000207008 900000000000073002 +258441009 20020131 1 900000000000207008 900000000000074008 +258441009 20030731 1 900000000000207008 900000000000073002 +258442002 20020131 1 900000000000207008 900000000000074008 +258442002 20030731 1 900000000000207008 900000000000073002 +258444001 20020131 1 900000000000207008 900000000000074008 +258444001 20080731 1 900000000000207008 900000000000073002 +258446004 20020131 1 900000000000207008 900000000000074008 +258446004 20080731 1 900000000000207008 900000000000073002 +258448003 20020131 1 900000000000207008 900000000000074008 +258448003 20080731 1 900000000000207008 900000000000073002 +258450006 20020131 1 900000000000207008 900000000000074008 +258450006 20040731 1 900000000000207008 900000000000073002 +258450006 20110731 1 900000000000207008 900000000000074008 +258452003 20020131 1 900000000000207008 900000000000074008 +258452003 20040731 1 900000000000207008 900000000000073002 +258453008 20020131 1 900000000000207008 900000000000074008 +258453008 20080731 1 900000000000207008 900000000000073002 +258454002 20020131 1 900000000000207008 900000000000074008 +258454002 20230430 1 900000000000207008 900000000000073002 +258455001 20020131 1 900000000000207008 900000000000074008 +258455001 20080731 1 900000000000207008 900000000000073002 +258456000 20020131 1 900000000000207008 900000000000074008 +258456000 20080731 1 900000000000207008 900000000000073002 +258457009 20020131 1 900000000000207008 900000000000074008 +258458004 20020131 1 900000000000207008 900000000000074008 +258458004 20080731 1 900000000000207008 900000000000073002 +258459007 20020131 1 900000000000207008 900000000000074008 +258459007 20040731 1 900000000000207008 900000000000073002 +258461003 20020131 1 900000000000207008 900000000000074008 +258461003 20080731 1 900000000000207008 900000000000073002 +258462005 20020131 1 900000000000207008 900000000000074008 +258462005 20080731 1 900000000000207008 900000000000073002 +258463000 20020131 1 900000000000207008 900000000000074008 +258463000 20080731 1 900000000000207008 900000000000073002 +258465007 20020131 1 900000000000207008 900000000000074008 +258465007 20040731 1 900000000000207008 900000000000073002 +258466008 20020131 1 900000000000207008 900000000000074008 +258466008 20080731 1 900000000000207008 900000000000073002 +258467004 20020131 1 900000000000207008 900000000000074008 +258467004 20080731 1 900000000000207008 900000000000073002 +258468009 20020131 1 900000000000207008 900000000000074008 +258469001 20020131 1 900000000000207008 900000000000074008 +258469001 20070731 1 900000000000207008 900000000000073002 +258470000 20020131 1 900000000000207008 900000000000074008 +258470000 20040731 1 900000000000207008 900000000000073002 +258471001 20020131 1 900000000000207008 900000000000074008 +258471001 20080731 1 900000000000207008 900000000000073002 +258472008 20020131 1 900000000000207008 900000000000074008 +258472008 20080731 1 900000000000207008 900000000000073002 +258474009 20020131 1 900000000000207008 900000000000074008 +258474009 20040731 1 900000000000207008 900000000000073002 +258475005 20020131 1 900000000000207008 900000000000074008 +258475005 20080731 1 900000000000207008 900000000000073002 +258476006 20020131 1 900000000000207008 900000000000074008 +258476006 20080731 1 900000000000207008 900000000000073002 +258479004 20020131 1 900000000000207008 900000000000074008 +258479004 20080731 1 900000000000207008 900000000000073002 +258479004 20090131 1 900000000000207008 900000000000074008 +258479004 20221130 1 900000000000207008 900000000000073002 +258480001 20020131 1 900000000000207008 900000000000074008 +258481002 20020131 1 900000000000207008 900000000000074008 +258481002 20040731 1 900000000000207008 900000000000073002 +258482009 20020131 1 900000000000207008 900000000000074008 +258482009 20170731 1 900000000000207008 900000000000073002 +258483004 20020131 1 900000000000207008 900000000000074008 +258483004 20030731 1 900000000000207008 900000000000073002 +258484005 20020131 1 900000000000207008 900000000000074008 +258484005 20040731 1 900000000000207008 900000000000073002 +258485006 20020131 1 900000000000207008 900000000000074008 +258485006 20080731 1 900000000000207008 900000000000073002 +258487003 20020131 1 900000000000207008 900000000000074008 +258487003 20080731 1 900000000000207008 900000000000073002 +258488008 20020131 1 900000000000207008 900000000000074008 +258488008 20080731 1 900000000000207008 900000000000073002 +258489000 20020131 1 900000000000207008 900000000000074008 +258490009 20020131 1 900000000000207008 900000000000074008 +258490009 20040731 1 900000000000207008 900000000000073002 +258492001 20020131 1 900000000000207008 900000000000074008 +258492001 20080731 1 900000000000207008 900000000000073002 +258493006 20020131 1 900000000000207008 900000000000074008 +258493006 20080731 1 900000000000207008 900000000000073002 +258494000 20020131 1 900000000000207008 900000000000074008 +258494000 20080731 1 900000000000207008 900000000000073002 +258495004 20020131 1 900000000000207008 900000000000074008 +258495004 20080731 1 900000000000207008 900000000000073002 +258496003 20020131 1 900000000000207008 900000000000074008 +258496003 20080731 1 900000000000207008 900000000000073002 +258497007 20020131 1 900000000000207008 900000000000074008 +258497007 20080731 1 900000000000207008 900000000000073002 +258498002 20020131 1 900000000000207008 900000000000074008 +258498002 20080731 1 900000000000207008 900000000000073002 +258499005 20020131 1 900000000000207008 900000000000074008 +258499005 20080731 1 900000000000207008 900000000000073002 +258500001 20020131 1 900000000000207008 900000000000074008 +258500001 20080731 1 900000000000207008 900000000000073002 +258502009 20020131 1 900000000000207008 900000000000074008 +258502009 20080731 1 900000000000207008 900000000000073002 +258503004 20020131 1 900000000000207008 900000000000074008 +258503004 20080731 1 900000000000207008 900000000000073002 +258504005 20020131 1 900000000000207008 900000000000074008 +258505006 20020131 1 900000000000207008 900000000000074008 +258505006 20080731 1 900000000000207008 900000000000073002 +258506007 20020131 1 900000000000207008 900000000000074008 +258506007 20080731 1 900000000000207008 900000000000073002 +258507003 20020131 1 900000000000207008 900000000000074008 +258507003 20080731 1 900000000000207008 900000000000073002 +258508008 20020131 1 900000000000207008 900000000000074008 +258508008 20080731 1 900000000000207008 900000000000073002 +258509000 20020131 1 900000000000207008 900000000000074008 +258509000 20080731 1 900000000000207008 900000000000073002 +258510005 20020131 1 900000000000207008 900000000000074008 +258510005 20080731 1 900000000000207008 900000000000073002 +258511009 20020131 1 900000000000207008 900000000000074008 +258511009 20080731 1 900000000000207008 900000000000073002 +258512002 20020131 1 900000000000207008 900000000000074008 +258512002 20080731 1 900000000000207008 900000000000073002 +258513007 20020131 1 900000000000207008 900000000000074008 +258513007 20080731 1 900000000000207008 900000000000073002 +258514001 20020131 1 900000000000207008 900000000000074008 +258515000 20020131 1 900000000000207008 900000000000074008 +258515000 20080731 1 900000000000207008 900000000000073002 +258516004 20020131 1 900000000000207008 900000000000074008 +258516004 20080731 1 900000000000207008 900000000000073002 +258517008 20020131 1 900000000000207008 900000000000074008 +258517008 20080731 1 900000000000207008 900000000000073002 +258518003 20020131 1 900000000000207008 900000000000074008 +258518003 20080731 1 900000000000207008 900000000000073002 +258519006 20020131 1 900000000000207008 900000000000074008 +258519006 20080731 1 900000000000207008 900000000000073002 +258520000 20020131 1 900000000000207008 900000000000074008 +258520000 20080731 1 900000000000207008 900000000000073002 +258521001 20020131 1 900000000000207008 900000000000074008 +258521001 20080731 1 900000000000207008 900000000000073002 +258522008 20020131 1 900000000000207008 900000000000074008 +258522008 20080731 1 900000000000207008 900000000000073002 +258523003 20020131 1 900000000000207008 900000000000074008 +258523003 20080731 1 900000000000207008 900000000000073002 +258524009 20020131 1 900000000000207008 900000000000074008 +258524009 20080731 1 900000000000207008 900000000000073002 +258525005 20020131 1 900000000000207008 900000000000074008 +258525005 20080731 1 900000000000207008 900000000000073002 +258526006 20020131 1 900000000000207008 900000000000074008 +258526006 20080731 1 900000000000207008 900000000000073002 +258527002 20020131 1 900000000000207008 900000000000074008 +258527002 20080731 1 900000000000207008 900000000000073002 +258528007 20020131 1 900000000000207008 900000000000074008 +258528007 20080731 1 900000000000207008 900000000000073002 +258529004 20020131 1 900000000000207008 900000000000074008 +258529004 20080731 1 900000000000207008 900000000000073002 +258530009 20020131 1 900000000000207008 900000000000074008 +258530009 20080731 1 900000000000207008 900000000000073002 +258531008 20020131 1 900000000000207008 900000000000074008 +258531008 20080731 1 900000000000207008 900000000000073002 +258532001 20020131 1 900000000000207008 900000000000074008 +258535004 20020131 1 900000000000207008 900000000000074008 +258536003 20020131 1 900000000000207008 900000000000074008 +258537007 20020131 1 900000000000207008 900000000000074008 +258538002 20020131 1 900000000000207008 900000000000074008 +258538002 20080731 1 900000000000207008 900000000000073002 +258539005 20020131 1 900000000000207008 900000000000074008 +258541006 20020131 1 900000000000207008 900000000000074008 +258541006 20040731 1 900000000000207008 900000000000073002 +258542004 20020131 1 900000000000207008 900000000000074008 +258542004 20080731 1 900000000000207008 900000000000073002 +258544003 20020131 1 900000000000207008 900000000000074008 +258545002 20020131 1 900000000000207008 900000000000074008 +258545002 20080731 1 900000000000207008 900000000000073002 +258546001 20020131 1 900000000000207008 900000000000074008 +258547005 20020131 1 900000000000207008 900000000000074008 +258548000 20020131 1 900000000000207008 900000000000074008 +258548000 20040731 1 900000000000207008 900000000000073002 +258549008 20020131 1 900000000000207008 900000000000074008 +258553005 20020131 1 900000000000207008 900000000000074008 +258553005 20080731 1 900000000000207008 900000000000073002 +258554004 20020131 1 900000000000207008 900000000000074008 +258555003 20020131 1 900000000000207008 900000000000074008 +258558001 20020131 1 900000000000207008 900000000000074008 +258558001 20080731 1 900000000000207008 900000000000073002 +258559009 20020131 1 900000000000207008 900000000000074008 +258559009 20080731 1 900000000000207008 900000000000073002 +258560004 20020131 1 900000000000207008 900000000000074008 +258561000 20020131 1 900000000000207008 900000000000074008 +258561000 20080731 1 900000000000207008 900000000000073002 +258562007 20020131 1 900000000000207008 900000000000074008 +258563002 20020131 1 900000000000207008 900000000000074008 +258564008 20020131 1 900000000000207008 900000000000074008 +258564008 20080731 1 900000000000207008 900000000000073002 +258565009 20020131 1 900000000000207008 900000000000074008 +258565009 20040731 1 900000000000207008 900000000000073002 +258566005 20020131 1 900000000000207008 900000000000074008 +258566005 20080731 1 900000000000207008 900000000000073002 +258567001 20020131 1 900000000000207008 900000000000074008 +258567001 20080731 1 900000000000207008 900000000000073002 +258568006 20020131 1 900000000000207008 900000000000074008 +258569003 20020131 1 900000000000207008 900000000000074008 +258570002 20020131 1 900000000000207008 900000000000074008 +258570002 20040731 1 900000000000207008 900000000000073002 +258571003 20020131 1 900000000000207008 900000000000074008 +258572005 20020131 1 900000000000207008 900000000000074008 +258574006 20020131 1 900000000000207008 900000000000074008 +258574006 20080731 1 900000000000207008 900000000000073002 +258575007 20020131 1 900000000000207008 900000000000074008 +258575007 20080731 1 900000000000207008 900000000000073002 +258576008 20020131 1 900000000000207008 900000000000074008 +258576008 20080731 1 900000000000207008 900000000000073002 +258576008 20110131 1 900000000000207008 900000000000074008 +258577004 20020131 1 900000000000207008 900000000000074008 +258577004 20040731 1 900000000000207008 900000000000073002 +258580003 20020131 1 900000000000207008 900000000000074008 +258580003 20080731 1 900000000000207008 900000000000073002 +258581004 20020131 1 900000000000207008 900000000000074008 +258582006 20020131 1 900000000000207008 900000000000074008 +258582006 20080731 1 900000000000207008 900000000000073002 +258583001 20020131 1 900000000000207008 900000000000074008 +258584007 20020131 1 900000000000207008 900000000000074008 +258585008 20020131 1 900000000000207008 900000000000074008 +258585008 20080731 1 900000000000207008 900000000000073002 +258587000 20020131 1 900000000000207008 900000000000074008 +258588005 20020131 1 900000000000207008 900000000000074008 +258588005 20080731 1 900000000000207008 900000000000073002 +258589002 20020131 1 900000000000207008 900000000000074008 +258589002 20040731 1 900000000000207008 900000000000073002 +258590006 20020131 1 900000000000207008 900000000000074008 +258590006 20080731 1 900000000000207008 900000000000073002 +258591005 20020131 1 900000000000207008 900000000000074008 +258591005 20040731 1 900000000000207008 900000000000073002 +258591005 20080731 1 900000000000207008 900000000000074008 +258591005 20090731 1 900000000000207008 900000000000073002 +258599007 20020131 1 900000000000207008 900000000000074008 +258601009 20020131 1 900000000000207008 900000000000074008 +258601009 20220531 1 900000000000207008 900000000000073002 +258602002 20020131 1 900000000000207008 900000000000074008 +258602002 20220630 1 900000000000207008 900000000000073002 +258603007 20020131 1 900000000000207008 900000000000074008 +258603007 20040731 1 900000000000207008 900000000000073002 +258604001 20020131 1 900000000000207008 900000000000074008 +258604001 20050131 1 900000000000207008 900000000000073002 +258606004 20020131 1 900000000000207008 900000000000074008 +258606004 20080731 1 900000000000207008 900000000000073002 +258607008 20020131 1 900000000000207008 900000000000074008 +258607008 20080731 1 900000000000207008 900000000000073002 +258608003 20020131 1 900000000000207008 900000000000074008 +258608003 20080731 1 900000000000207008 900000000000073002 +258609006 20020131 1 900000000000207008 900000000000074008 +258609006 20080731 1 900000000000207008 900000000000073002 +258610001 20020131 1 900000000000207008 900000000000074008 +258610001 20080731 1 900000000000207008 900000000000073002 +258611002 20020131 1 900000000000207008 900000000000074008 +258613004 20020131 1 900000000000207008 900000000000074008 +258614005 20020131 1 900000000000207008 900000000000074008 +258615006 20020131 1 900000000000207008 900000000000074008 +258616007 20020131 1 900000000000207008 900000000000074008 +258617003 20020131 1 900000000000207008 900000000000074008 +258618008 20020131 1 900000000000207008 900000000000074008 +258627009 20020131 1 900000000000207008 900000000000074008 +258628004 20020131 1 900000000000207008 900000000000074008 +258629007 20020131 1 900000000000207008 900000000000074008 +258630002 20020131 1 900000000000207008 900000000000074008 +258631003 20020131 1 900000000000207008 900000000000074008 +258649003 20020131 1 900000000000207008 900000000000074008 +258649003 20080731 1 900000000000207008 900000000000073002 +258650003 20020131 1 900000000000207008 900000000000074008 +258651004 20020131 1 900000000000207008 900000000000074008 +258651004 20080731 1 900000000000207008 900000000000073002 +258652006 20020131 1 900000000000207008 900000000000074008 +258652006 20080731 1 900000000000207008 900000000000073002 +258653001 20020131 1 900000000000207008 900000000000074008 +258653001 20080731 1 900000000000207008 900000000000073002 +258654007 20020131 1 900000000000207008 900000000000074008 +258654007 20080731 1 900000000000207008 900000000000073002 +258655008 20020131 1 900000000000207008 900000000000074008 +258655008 20080731 1 900000000000207008 900000000000073002 +258656009 20020131 1 900000000000207008 900000000000074008 +258656009 20080731 1 900000000000207008 900000000000073002 +258657000 20020131 1 900000000000207008 900000000000074008 +258657000 20080731 1 900000000000207008 900000000000073002 +258658005 20020131 1 900000000000207008 900000000000074008 +258658005 20080731 1 900000000000207008 900000000000073002 +258659002 20020131 1 900000000000207008 900000000000074008 +258659002 20080731 1 900000000000207008 900000000000073002 +258660007 20020131 1 900000000000207008 900000000000074008 +258660007 20080731 1 900000000000207008 900000000000073002 +258662004 20020131 1 900000000000207008 900000000000074008 +258662004 20170731 1 900000000000207008 900000000000073002 +258663009 20020131 1 900000000000207008 900000000000074008 +258664003 20020131 1 900000000000207008 900000000000074008 +264380007 20020131 1 900000000000207008 900000000000074008 +271514008 20020131 1 900000000000207008 900000000000074008 +271514008 20080731 1 900000000000207008 900000000000073002 +271515009 20020131 1 900000000000207008 900000000000074008 +271515009 20080731 1 900000000000207008 900000000000073002 +271516005 20020131 1 900000000000207008 900000000000074008 +271516005 20080731 1 900000000000207008 900000000000073002 +271518006 20020131 1 900000000000207008 900000000000074008 +271518006 20080731 1 900000000000207008 900000000000073002 +276446009 20020131 1 900000000000207008 900000000000074008 +276446009 20080731 1 900000000000207008 900000000000073002 +276833005 20020131 1 900000000000207008 900000000000074008 +276833005 20080731 1 900000000000207008 900000000000073002 +278020009 20020131 1 900000000000207008 900000000000074008 +278020009 20080731 1 900000000000207008 900000000000073002 +302794003 20020131 1 900000000000207008 900000000000074008 +302794003 20080731 1 900000000000207008 900000000000073002 +302795002 20020131 1 900000000000207008 900000000000074008 +302795002 20040731 1 900000000000207008 900000000000073002 +303247002 20020131 1 900000000000207008 900000000000074008 +303247002 20080731 1 900000000000207008 900000000000073002 +303248007 20020131 1 900000000000207008 900000000000074008 +303248007 20080731 1 900000000000207008 900000000000073002 +309048008 20020131 1 900000000000207008 900000000000074008 +309048008 20040731 1 900000000000207008 900000000000073002 +309049000 20020131 1 900000000000207008 900000000000074008 +309049000 20040731 1 900000000000207008 900000000000073002 +309050000 20020131 1 900000000000207008 900000000000074008 +309050000 20040731 1 900000000000207008 900000000000073002 +309051001 20020131 1 900000000000207008 900000000000074008 +309051001 20030731 1 900000000000207008 900000000000073002 +309052008 20020131 1 900000000000207008 900000000000074008 +309052008 20040731 1 900000000000207008 900000000000073002 +309053003 20020131 1 900000000000207008 900000000000074008 +309053003 20040731 1 900000000000207008 900000000000073002 +309055005 20020131 1 900000000000207008 900000000000074008 +309055005 20040731 1 900000000000207008 900000000000073002 +309057002 20020131 1 900000000000207008 900000000000074008 +309058007 20020131 1 900000000000207008 900000000000074008 +309058007 20080731 1 900000000000207008 900000000000073002 +309059004 20020131 1 900000000000207008 900000000000074008 +309059004 20080731 1 900000000000207008 900000000000073002 +309061008 20020131 1 900000000000207008 900000000000074008 +309061008 20040731 1 900000000000207008 900000000000073002 +309066003 20020131 1 900000000000207008 900000000000074008 +309066003 20080731 1 900000000000207008 900000000000073002 +309067007 20020131 1 900000000000207008 900000000000074008 +309067007 20080731 1 900000000000207008 900000000000073002 +309068002 20020131 1 900000000000207008 900000000000074008 +309068002 20080731 1 900000000000207008 900000000000073002 +309070006 20020131 1 900000000000207008 900000000000074008 +309070006 20080731 1 900000000000207008 900000000000073002 +309071005 20020131 1 900000000000207008 900000000000074008 +309071005 20080731 1 900000000000207008 900000000000073002 +309072003 20020131 1 900000000000207008 900000000000074008 +309072003 20040731 1 900000000000207008 900000000000073002 +309073008 20020131 1 900000000000207008 900000000000074008 +309073008 20080731 1 900000000000207008 900000000000073002 +309074002 20020131 1 900000000000207008 900000000000074008 +309074002 20080731 1 900000000000207008 900000000000073002 +309075001 20020131 1 900000000000207008 900000000000074008 +309075001 20080731 1 900000000000207008 900000000000073002 +309077009 20020131 1 900000000000207008 900000000000074008 +309077009 20040731 1 900000000000207008 900000000000073002 +309078004 20020131 1 900000000000207008 900000000000074008 +309078004 20080731 1 900000000000207008 900000000000073002 +309079007 20020131 1 900000000000207008 900000000000074008 +309079007 20080731 1 900000000000207008 900000000000073002 +309101008 20020131 1 900000000000207008 900000000000074008 +309101008 20080731 1 900000000000207008 900000000000073002 +309102001 20020131 1 900000000000207008 900000000000074008 +309102001 20080731 1 900000000000207008 900000000000073002 +309103006 20020131 1 900000000000207008 900000000000074008 +309103006 20080731 1 900000000000207008 900000000000073002 +309104000 20020131 1 900000000000207008 900000000000074008 +309104000 20040731 1 900000000000207008 900000000000073002 +309105004 20020131 1 900000000000207008 900000000000074008 +309105004 20080731 1 900000000000207008 900000000000073002 +309107007 20020131 1 900000000000207008 900000000000074008 +309107007 20080731 1 900000000000207008 900000000000073002 +309108002 20020131 1 900000000000207008 900000000000074008 +309108002 20080731 1 900000000000207008 900000000000073002 +309109005 20020131 1 900000000000207008 900000000000074008 +309109005 20080731 1 900000000000207008 900000000000073002 +309110000 20020131 1 900000000000207008 900000000000074008 +309110000 20080731 1 900000000000207008 900000000000073002 +309111001 20020131 1 900000000000207008 900000000000074008 +309111001 20080731 1 900000000000207008 900000000000073002 +309112008 20020131 1 900000000000207008 900000000000074008 +309112008 20080731 1 900000000000207008 900000000000073002 +309113003 20020131 1 900000000000207008 900000000000074008 +309113003 20070731 1 900000000000207008 900000000000073002 +309114009 20020131 1 900000000000207008 900000000000074008 +309114009 20080731 1 900000000000207008 900000000000073002 +309115005 20020131 1 900000000000207008 900000000000074008 +309115005 20080731 1 900000000000207008 900000000000073002 +309116006 20020131 1 900000000000207008 900000000000074008 +309116006 20080731 1 900000000000207008 900000000000073002 +309117002 20020131 1 900000000000207008 900000000000074008 +309117002 20080731 1 900000000000207008 900000000000073002 +309118007 20020131 1 900000000000207008 900000000000074008 +309118007 20080731 1 900000000000207008 900000000000073002 +309119004 20020131 1 900000000000207008 900000000000074008 +309119004 20080731 1 900000000000207008 900000000000073002 +309120005 20020131 1 900000000000207008 900000000000074008 +309120005 20080731 1 900000000000207008 900000000000073002 +309121009 20020131 1 900000000000207008 900000000000074008 +309121009 20080731 1 900000000000207008 900000000000073002 +309122002 20020131 1 900000000000207008 900000000000074008 +309122002 20080731 1 900000000000207008 900000000000073002 +309123007 20020131 1 900000000000207008 900000000000074008 +309123007 20080731 1 900000000000207008 900000000000073002 +309124001 20020131 1 900000000000207008 900000000000074008 +309124001 20080731 1 900000000000207008 900000000000073002 +309125000 20020131 1 900000000000207008 900000000000074008 +309125000 20080731 1 900000000000207008 900000000000073002 +309126004 20020131 1 900000000000207008 900000000000074008 +309126004 20080731 1 900000000000207008 900000000000073002 +309127008 20020131 1 900000000000207008 900000000000074008 +309127008 20080731 1 900000000000207008 900000000000073002 +309128003 20020131 1 900000000000207008 900000000000074008 +309128003 20070731 1 900000000000207008 900000000000073002 +309129006 20020131 1 900000000000207008 900000000000074008 +309129006 20040731 1 900000000000207008 900000000000073002 +309130001 20020131 1 900000000000207008 900000000000074008 +309130001 20080731 1 900000000000207008 900000000000073002 +309131002 20020131 1 900000000000207008 900000000000074008 +309131002 20080731 1 900000000000207008 900000000000073002 +309132009 20020131 1 900000000000207008 900000000000074008 +309132009 20080731 1 900000000000207008 900000000000073002 +309133004 20020131 1 900000000000207008 900000000000074008 +309133004 20080731 1 900000000000207008 900000000000073002 +309134005 20020131 1 900000000000207008 900000000000074008 +309134005 20080731 1 900000000000207008 900000000000073002 +309135006 20020131 1 900000000000207008 900000000000074008 +309135006 20080731 1 900000000000207008 900000000000073002 +309137003 20020131 1 900000000000207008 900000000000074008 +309137003 20080731 1 900000000000207008 900000000000073002 +309138008 20020131 1 900000000000207008 900000000000074008 +309138008 20080731 1 900000000000207008 900000000000073002 +309139000 20020131 1 900000000000207008 900000000000074008 +309139000 20080731 1 900000000000207008 900000000000073002 +309140003 20020131 1 900000000000207008 900000000000074008 +309140003 20080731 1 900000000000207008 900000000000073002 +309141004 20020131 1 900000000000207008 900000000000074008 +309141004 20080731 1 900000000000207008 900000000000073002 +309142006 20020131 1 900000000000207008 900000000000074008 +309142006 20080731 1 900000000000207008 900000000000073002 +309143001 20020131 1 900000000000207008 900000000000074008 +309143001 20080731 1 900000000000207008 900000000000073002 +309144007 20020131 1 900000000000207008 900000000000074008 +309144007 20080731 1 900000000000207008 900000000000073002 +309145008 20020131 1 900000000000207008 900000000000074008 +309145008 20080731 1 900000000000207008 900000000000073002 +309146009 20020131 1 900000000000207008 900000000000074008 +309146009 20040731 1 900000000000207008 900000000000073002 +309147000 20020131 1 900000000000207008 900000000000074008 +309147000 20080731 1 900000000000207008 900000000000073002 +309148005 20020131 1 900000000000207008 900000000000074008 +309149002 20020131 1 900000000000207008 900000000000074008 +309149002 20080731 1 900000000000207008 900000000000073002 +309150002 20020131 1 900000000000207008 900000000000074008 +309150002 20080731 1 900000000000207008 900000000000073002 +309151003 20020131 1 900000000000207008 900000000000074008 +309151003 20080731 1 900000000000207008 900000000000073002 +309153000 20020131 1 900000000000207008 900000000000074008 +309153000 20080731 1 900000000000207008 900000000000073002 +309154006 20020131 1 900000000000207008 900000000000074008 +309154006 20080731 1 900000000000207008 900000000000073002 +309164002 20020131 1 900000000000207008 900000000000074008 +309164002 20080731 1 900000000000207008 900000000000073002 +309165001 20020131 1 900000000000207008 900000000000074008 +309165001 20040731 1 900000000000207008 900000000000073002 +309166000 20020131 1 900000000000207008 900000000000074008 +309166000 20080731 1 900000000000207008 900000000000073002 +309167009 20020131 1 900000000000207008 900000000000074008 +309167009 20080731 1 900000000000207008 900000000000073002 +309168004 20020131 1 900000000000207008 900000000000074008 +309168004 20080731 1 900000000000207008 900000000000073002 +309169007 20020131 1 900000000000207008 900000000000074008 +309169007 20080731 1 900000000000207008 900000000000073002 +309170008 20020131 1 900000000000207008 900000000000074008 +309170008 20080731 1 900000000000207008 900000000000073002 +309171007 20020131 1 900000000000207008 900000000000074008 +309171007 20040731 1 900000000000207008 900000000000073002 +309172000 20020131 1 900000000000207008 900000000000074008 +309172000 20080731 1 900000000000207008 900000000000073002 +309173005 20020131 1 900000000000207008 900000000000074008 +309173005 20080731 1 900000000000207008 900000000000073002 +309174004 20020131 1 900000000000207008 900000000000074008 +309174004 20080731 1 900000000000207008 900000000000073002 +309175003 20020131 1 900000000000207008 900000000000074008 +309175003 20080731 1 900000000000207008 900000000000073002 +309176002 20020131 1 900000000000207008 900000000000074008 +309176002 20080731 1 900000000000207008 900000000000073002 +309177006 20020131 1 900000000000207008 900000000000074008 +309178001 20020131 1 900000000000207008 900000000000074008 +309178001 20080731 1 900000000000207008 900000000000073002 +309179009 20020131 1 900000000000207008 900000000000074008 +309179009 20080731 1 900000000000207008 900000000000073002 +309180007 20020131 1 900000000000207008 900000000000074008 +309180007 20080731 1 900000000000207008 900000000000073002 +309181006 20020131 1 900000000000207008 900000000000074008 +309181006 20080731 1 900000000000207008 900000000000073002 +309182004 20020131 1 900000000000207008 900000000000074008 +309182004 20080731 1 900000000000207008 900000000000073002 +309183009 20020131 1 900000000000207008 900000000000074008 +309183009 20080731 1 900000000000207008 900000000000073002 +309184003 20020131 1 900000000000207008 900000000000074008 +309184003 20080731 1 900000000000207008 900000000000073002 +309185002 20020131 1 900000000000207008 900000000000074008 +309185002 20040731 1 900000000000207008 900000000000073002 +309186001 20020131 1 900000000000207008 900000000000074008 +309186001 20080731 1 900000000000207008 900000000000073002 +309187005 20020131 1 900000000000207008 900000000000074008 +309187005 20080731 1 900000000000207008 900000000000073002 +309188000 20020131 1 900000000000207008 900000000000074008 +309188000 20080731 1 900000000000207008 900000000000073002 +309189008 20020131 1 900000000000207008 900000000000074008 +309189008 20080731 1 900000000000207008 900000000000073002 +309190004 20020131 1 900000000000207008 900000000000074008 +309190004 20080731 1 900000000000207008 900000000000073002 +309191000 20020131 1 900000000000207008 900000000000074008 +309191000 20080731 1 900000000000207008 900000000000073002 +309192007 20020131 1 900000000000207008 900000000000074008 +309192007 20080731 1 900000000000207008 900000000000073002 +309193002 20020131 1 900000000000207008 900000000000074008 +309193002 20080731 1 900000000000207008 900000000000073002 +309199003 20020131 1 900000000000207008 900000000000074008 +309199003 20070731 1 900000000000207008 900000000000073002 +309200000 20020131 1 900000000000207008 900000000000074008 +309200000 20080731 1 900000000000207008 900000000000073002 +309201001 20020131 1 900000000000207008 900000000000074008 +309201001 20080731 1 900000000000207008 900000000000073002 +309202008 20020131 1 900000000000207008 900000000000074008 +309203003 20020131 1 900000000000207008 900000000000074008 +309203003 20080731 1 900000000000207008 900000000000073002 +309204009 20020131 1 900000000000207008 900000000000074008 +309205005 20020131 1 900000000000207008 900000000000074008 +309205005 20080731 1 900000000000207008 900000000000073002 +309206006 20020131 1 900000000000207008 900000000000074008 +309206006 20080731 1 900000000000207008 900000000000073002 +309207002 20020131 1 900000000000207008 900000000000074008 +309207002 20080731 1 900000000000207008 900000000000073002 +309208007 20020131 1 900000000000207008 900000000000074008 +309208007 20080731 1 900000000000207008 900000000000073002 +309209004 20020131 1 900000000000207008 900000000000074008 +309209004 20080731 1 900000000000207008 900000000000073002 +309210009 20020131 1 900000000000207008 900000000000074008 +309210009 20080731 1 900000000000207008 900000000000073002 +309211008 20020131 1 900000000000207008 900000000000074008 +309211008 20080731 1 900000000000207008 900000000000073002 +309212001 20020131 1 900000000000207008 900000000000074008 +309212001 20080731 1 900000000000207008 900000000000073002 +309213006 20020131 1 900000000000207008 900000000000074008 +309213006 20080731 1 900000000000207008 900000000000073002 +309214000 20020131 1 900000000000207008 900000000000074008 +309214000 20080731 1 900000000000207008 900000000000073002 +309215004 20020131 1 900000000000207008 900000000000074008 +309215004 20080731 1 900000000000207008 900000000000073002 +309216003 20020131 1 900000000000207008 900000000000074008 +309216003 20080731 1 900000000000207008 900000000000073002 +309217007 20020131 1 900000000000207008 900000000000074008 +309217007 20080731 1 900000000000207008 900000000000073002 +309218002 20020131 1 900000000000207008 900000000000074008 +309218002 20080731 1 900000000000207008 900000000000073002 +309219005 20020131 1 900000000000207008 900000000000074008 +309219005 20080731 1 900000000000207008 900000000000073002 +309220004 20020131 1 900000000000207008 900000000000074008 +309220004 20080731 1 900000000000207008 900000000000073002 +309221000 20020131 1 900000000000207008 900000000000074008 +309221000 20080731 1 900000000000207008 900000000000073002 +309222007 20020131 1 900000000000207008 900000000000074008 +309222007 20080731 1 900000000000207008 900000000000073002 +309223002 20020131 1 900000000000207008 900000000000074008 +309223002 20080731 1 900000000000207008 900000000000073002 +309224008 20020131 1 900000000000207008 900000000000074008 +309225009 20020131 1 900000000000207008 900000000000074008 +309225009 20080731 1 900000000000207008 900000000000073002 +309226005 20020131 1 900000000000207008 900000000000074008 +309226005 20080731 1 900000000000207008 900000000000073002 +309227001 20020131 1 900000000000207008 900000000000074008 +309227001 20080731 1 900000000000207008 900000000000073002 +309260003 20020131 1 900000000000207008 900000000000074008 +309260003 20080731 1 900000000000207008 900000000000073002 +309261004 20020131 1 900000000000207008 900000000000074008 +309261004 20080731 1 900000000000207008 900000000000073002 +309262006 20020131 1 900000000000207008 900000000000074008 +309262006 20080731 1 900000000000207008 900000000000073002 +309263001 20020131 1 900000000000207008 900000000000074008 +309263001 20080731 1 900000000000207008 900000000000073002 +309264007 20020131 1 900000000000207008 900000000000074008 +309264007 20080731 1 900000000000207008 900000000000073002 +309265008 20020131 1 900000000000207008 900000000000074008 +309265008 20080731 1 900000000000207008 900000000000073002 +309266009 20020131 1 900000000000207008 900000000000074008 +309266009 20080731 1 900000000000207008 900000000000073002 +309267000 20020131 1 900000000000207008 900000000000074008 +309267000 20080731 1 900000000000207008 900000000000073002 +309268005 20020131 1 900000000000207008 900000000000074008 +309268005 20110731 1 900000000000207008 900000000000073002 +309269002 20020131 1 900000000000207008 900000000000074008 +309269002 20080731 1 900000000000207008 900000000000073002 +309270001 20020131 1 900000000000207008 900000000000074008 +309270001 20080731 1 900000000000207008 900000000000073002 +309271002 20020131 1 900000000000207008 900000000000074008 +309271002 20080731 1 900000000000207008 900000000000073002 +309272009 20020131 1 900000000000207008 900000000000074008 +309272009 20080731 1 900000000000207008 900000000000073002 +309273004 20020131 1 900000000000207008 900000000000074008 +309273004 20080731 1 900000000000207008 900000000000073002 +309274005 20020131 1 900000000000207008 900000000000074008 +309274005 20080731 1 900000000000207008 900000000000073002 +309275006 20020131 1 900000000000207008 900000000000074008 +309275006 20080731 1 900000000000207008 900000000000073002 +309276007 20020131 1 900000000000207008 900000000000074008 +309276007 20080731 1 900000000000207008 900000000000073002 +309277003 20020131 1 900000000000207008 900000000000074008 +309277003 20080731 1 900000000000207008 900000000000073002 +309278008 20020131 1 900000000000207008 900000000000074008 +309278008 20080731 1 900000000000207008 900000000000073002 +309280002 20020131 1 900000000000207008 900000000000074008 +309280002 20080731 1 900000000000207008 900000000000073002 +309281003 20020131 1 900000000000207008 900000000000074008 +309281003 20080731 1 900000000000207008 900000000000073002 +309283000 20020131 1 900000000000207008 900000000000074008 +309283000 20080731 1 900000000000207008 900000000000073002 +309285007 20020131 1 900000000000207008 900000000000074008 +309285007 20080731 1 900000000000207008 900000000000073002 +309286008 20020131 1 900000000000207008 900000000000074008 +309286008 20080731 1 900000000000207008 900000000000073002 +309287004 20020131 1 900000000000207008 900000000000074008 +309287004 20080731 1 900000000000207008 900000000000073002 +309287004 20090731 1 900000000000207008 900000000000074008 +309288009 20020131 1 900000000000207008 900000000000074008 +309288009 20080731 1 900000000000207008 900000000000073002 +309289001 20020131 1 900000000000207008 900000000000074008 +309289001 20080731 1 900000000000207008 900000000000073002 +309290005 20020131 1 900000000000207008 900000000000074008 +309290005 20080731 1 900000000000207008 900000000000073002 +309291009 20020131 1 900000000000207008 900000000000074008 +309291009 20080731 1 900000000000207008 900000000000073002 +309292002 20020131 1 900000000000207008 900000000000074008 +309292002 20080731 1 900000000000207008 900000000000073002 +309293007 20020131 1 900000000000207008 900000000000074008 +309293007 20080731 1 900000000000207008 900000000000073002 +309476009 20020131 1 900000000000207008 900000000000074008 +309478005 20020131 1 900000000000207008 900000000000074008 +309478005 20080731 1 900000000000207008 900000000000073002 +309479002 20020131 1 900000000000207008 900000000000074008 +309479002 20080731 1 900000000000207008 900000000000073002 +309480004 20020131 1 900000000000207008 900000000000074008 +309480004 20080731 1 900000000000207008 900000000000073002 +309481000 20020131 1 900000000000207008 900000000000074008 +309481000 20080731 1 900000000000207008 900000000000073002 +309482007 20020131 1 900000000000207008 900000000000074008 +309482007 20080731 1 900000000000207008 900000000000073002 +309483002 20020131 1 900000000000207008 900000000000074008 +309483002 20080731 1 900000000000207008 900000000000073002 +309484008 20020131 1 900000000000207008 900000000000074008 +309484008 20080731 1 900000000000207008 900000000000073002 +309485009 20020131 1 900000000000207008 900000000000074008 +309485009 20080731 1 900000000000207008 900000000000073002 +309486005 20020131 1 900000000000207008 900000000000074008 +309486005 20080731 1 900000000000207008 900000000000073002 +309487001 20020131 1 900000000000207008 900000000000074008 +309487001 20080731 1 900000000000207008 900000000000073002 +309488006 20020131 1 900000000000207008 900000000000074008 +309488006 20080731 1 900000000000207008 900000000000073002 +309489003 20020131 1 900000000000207008 900000000000074008 +309489003 20080731 1 900000000000207008 900000000000073002 +309490007 20020131 1 900000000000207008 900000000000074008 +309490007 20080731 1 900000000000207008 900000000000073002 +309491006 20020131 1 900000000000207008 900000000000074008 +309491006 20080731 1 900000000000207008 900000000000073002 +309493009 20020131 1 900000000000207008 900000000000074008 +309493009 20080731 1 900000000000207008 900000000000073002 +309494003 20020131 1 900000000000207008 900000000000074008 +309494003 20080731 1 900000000000207008 900000000000073002 +309495002 20020131 1 900000000000207008 900000000000074008 +309495002 20080731 1 900000000000207008 900000000000073002 +309496001 20020131 1 900000000000207008 900000000000074008 +309496001 20080731 1 900000000000207008 900000000000073002 +309497005 20020131 1 900000000000207008 900000000000074008 +309497005 20080731 1 900000000000207008 900000000000073002 +309498000 20020131 1 900000000000207008 900000000000074008 +309498000 20080731 1 900000000000207008 900000000000073002 +309499008 20020131 1 900000000000207008 900000000000074008 +309499008 20080731 1 900000000000207008 900000000000073002 +309501000 20020131 1 900000000000207008 900000000000074008 +309501000 20080731 1 900000000000207008 900000000000073002 +309502007 20020131 1 900000000000207008 900000000000074008 +309502007 20040731 1 900000000000207008 900000000000073002 +309503002 20020131 1 900000000000207008 900000000000074008 +309503002 20040731 1 900000000000207008 900000000000073002 +309504008 20020131 1 900000000000207008 900000000000074008 +309504008 20080731 1 900000000000207008 900000000000073002 +309505009 20020131 1 900000000000207008 900000000000074008 +309505009 20080731 1 900000000000207008 900000000000073002 +309506005 20020131 1 900000000000207008 900000000000074008 +309506005 20080731 1 900000000000207008 900000000000073002 +309507001 20020131 1 900000000000207008 900000000000074008 +309507001 20080731 1 900000000000207008 900000000000073002 +309507001 20090131 1 900000000000207008 900000000000074008 +309508006 20020131 1 900000000000207008 900000000000074008 +309508006 20040731 1 900000000000207008 900000000000073002 +309546004 20020131 1 900000000000207008 900000000000074008 +309546004 20080731 1 900000000000207008 900000000000073002 +309547008 20020131 1 900000000000207008 900000000000074008 +309547008 20080731 1 900000000000207008 900000000000073002 +309548003 20020131 1 900000000000207008 900000000000074008 +309548003 20080731 1 900000000000207008 900000000000073002 +309549006 20020131 1 900000000000207008 900000000000074008 +309549006 20080731 1 900000000000207008 900000000000073002 +312494007 20020131 1 900000000000207008 900000000000074008 +312494007 20080731 1 900000000000207008 900000000000073002 +363311008 20020131 1 900000000000207008 900000000000074008 +363311008 20040731 1 900000000000207008 900000000000073002 +363328006 20020131 1 900000000000207008 900000000000074008 +363328006 20080731 1 900000000000207008 900000000000073002 +363329003 20020131 1 900000000000207008 900000000000074008 +363329003 20080731 1 900000000000207008 900000000000073002 +369611008 20020131 1 900000000000207008 900000000000074008 +369611008 20080731 1 900000000000207008 900000000000073002 +369613006 20020131 1 900000000000207008 900000000000074008 +369614000 20020131 1 900000000000207008 900000000000074008 +369614000 20080731 1 900000000000207008 900000000000073002 +369615004 20020131 1 900000000000207008 900000000000074008 +369615004 20080731 1 900000000000207008 900000000000073002 +369616003 20020131 1 900000000000207008 900000000000074008 +369616003 20080731 1 900000000000207008 900000000000073002 +369617007 20020131 1 900000000000207008 900000000000074008 +369617007 20080731 1 900000000000207008 900000000000073002 +369617007 20110731 1 900000000000207008 900000000000074008 +369618002 20020131 1 900000000000207008 900000000000074008 +369618002 20080731 1 900000000000207008 900000000000073002 +370108001 20020131 1 900000000000207008 900000000000074008 +370108001 20080731 1 900000000000207008 900000000000073002 +371780008 20020731 1 900000000000207008 900000000000074008 +371782000 20020731 1 900000000000207008 900000000000074008 +371783005 20020731 1 900000000000207008 900000000000074008 +371783005 20080731 1 900000000000207008 900000000000073002 +371784004 20020731 1 900000000000207008 900000000000074008 +373101006 20020731 1 900000000000207008 900000000000074008 +373101006 20080731 1 900000000000207008 900000000000073002 +373101006 20090131 1 900000000000207008 900000000000074008 +373102004 20020731 1 900000000000207008 900000000000074008 +373103009 20020731 1 900000000000207008 900000000000074008 +373103009 20080731 1 900000000000207008 900000000000073002 +373192005 20020731 1 900000000000207008 900000000000074008 +373193000 20020731 1 900000000000207008 900000000000074008 +373826004 20020731 1 900000000000207008 900000000000074008 +373826004 20040731 1 900000000000207008 900000000000073002 +384744003 20030131 1 900000000000207008 900000000000074008 +384744003 20080731 1 900000000000207008 900000000000073002 +384746001 20030131 1 900000000000207008 900000000000074008 +384746001 20080731 1 900000000000207008 900000000000073002 +384747005 20030131 1 900000000000207008 900000000000074008 +384819001 20030131 1 900000000000207008 900000000000074008 +384819001 20080731 1 900000000000207008 900000000000073002 +384820007 20030131 1 900000000000207008 900000000000074008 +384820007 20080731 1 900000000000207008 900000000000073002 +385338007 20030131 1 900000000000207008 900000000000074008 +385339004 20030131 1 900000000000207008 900000000000074008 +385340002 20030131 1 900000000000207008 900000000000074008 +396273004 20030731 1 900000000000207008 900000000000074008 +396273004 20080731 1 900000000000207008 900000000000073002 +396353007 20030731 1 900000000000207008 900000000000074008 +396354001 20030731 1 900000000000207008 900000000000074008 +396355000 20030731 1 900000000000207008 900000000000074008 +396355000 20080731 1 900000000000207008 900000000000073002 +396356004 20030731 1 900000000000207008 900000000000074008 +396356004 20080731 1 900000000000207008 900000000000073002 +396357008 20030731 1 900000000000207008 900000000000074008 +396358003 20030731 1 900000000000207008 900000000000074008 +396359006 20030731 1 900000000000207008 900000000000074008 +396476009 20030731 1 900000000000207008 900000000000074008 +396476009 20080731 1 900000000000207008 900000000000073002 +396477000 20030731 1 900000000000207008 900000000000074008 +396477000 20080731 1 900000000000207008 900000000000073002 +396478005 20030731 1 900000000000207008 900000000000074008 +396478005 20080731 1 900000000000207008 900000000000073002 +396479002 20030731 1 900000000000207008 900000000000074008 +396479002 20080731 1 900000000000207008 900000000000073002 +396480004 20030731 1 900000000000207008 900000000000074008 +396480004 20080731 1 900000000000207008 900000000000073002 +396481000 20030731 1 900000000000207008 900000000000074008 +396483002 20030731 1 900000000000207008 900000000000074008 +396483002 20080731 1 900000000000207008 900000000000073002 +396525008 20030731 1 900000000000207008 900000000000074008 +396525008 20080731 1 900000000000207008 900000000000073002 +396526009 20030731 1 900000000000207008 900000000000074008 +396526009 20080731 1 900000000000207008 900000000000073002 +396527000 20030731 1 900000000000207008 900000000000074008 +396527000 20080731 1 900000000000207008 900000000000073002 +396685001 20030731 1 900000000000207008 900000000000074008 +396685001 20080731 1 900000000000207008 900000000000073002 +396804002 20030731 1 900000000000207008 900000000000074008 +396805001 20030731 1 900000000000207008 900000000000074008 +396806000 20030731 1 900000000000207008 900000000000074008 +396807009 20030731 1 900000000000207008 900000000000074008 +396896007 20030731 1 900000000000207008 900000000000074008 +396896007 20040731 1 900000000000207008 900000000000073002 +396897003 20030731 1 900000000000207008 900000000000074008 +396897003 20080731 1 900000000000207008 900000000000073002 +396898008 20030731 1 900000000000207008 900000000000074008 +396898008 20080731 1 900000000000207008 900000000000073002 +396899000 20030731 1 900000000000207008 900000000000074008 +396899000 20080731 1 900000000000207008 900000000000073002 +396900005 20030731 1 900000000000207008 900000000000074008 +396902002 20030731 1 900000000000207008 900000000000074008 +396902002 20220228 1 900000000000207008 900000000000073002 +396904001 20030731 1 900000000000207008 900000000000074008 +396904001 20080731 1 900000000000207008 900000000000073002 +396904001 20100131 1 900000000000207008 900000000000074008 +396906004 20030731 1 900000000000207008 900000000000074008 +396906004 20080731 1 900000000000207008 900000000000073002 +396928004 20030731 1 900000000000207008 900000000000074008 +396928004 20050131 1 900000000000207008 900000000000073002 +396997002 20030731 1 900000000000207008 900000000000074008 +396997002 20080731 1 900000000000207008 900000000000073002 +396998007 20030731 1 900000000000207008 900000000000074008 +396999004 20030731 1 900000000000207008 900000000000074008 +396999004 20080731 1 900000000000207008 900000000000073002 +397053005 20030731 1 900000000000207008 900000000000074008 +397053005 20080731 1 900000000000207008 900000000000073002 +397055003 20030731 1 900000000000207008 900000000000074008 +397055003 20080731 1 900000000000207008 900000000000073002 +397056002 20030731 1 900000000000207008 900000000000074008 +397056002 20080731 1 900000000000207008 900000000000073002 +397077004 20030731 1 900000000000207008 900000000000074008 +397077004 20080731 1 900000000000207008 900000000000073002 +397078009 20030731 1 900000000000207008 900000000000074008 +397078009 20080731 1 900000000000207008 900000000000073002 +397111007 20030731 1 900000000000207008 900000000000074008 +397111007 20080731 1 900000000000207008 900000000000073002 +397129002 20030731 1 900000000000207008 900000000000074008 +397129002 20080731 1 900000000000207008 900000000000073002 +397130007 20030731 1 900000000000207008 900000000000074008 +397130007 20080731 1 900000000000207008 900000000000073002 +397131006 20030731 1 900000000000207008 900000000000074008 +397131006 20080731 1 900000000000207008 900000000000073002 +397132004 20030731 1 900000000000207008 900000000000074008 +397132004 20080731 1 900000000000207008 900000000000073002 +397133009 20030731 1 900000000000207008 900000000000074008 +397133009 20080731 1 900000000000207008 900000000000073002 +397134003 20030731 1 900000000000207008 900000000000074008 +397134003 20080731 1 900000000000207008 900000000000073002 +397135002 20030731 1 900000000000207008 900000000000074008 +397135002 20080731 1 900000000000207008 900000000000073002 +397136001 20030731 1 900000000000207008 900000000000074008 +397136001 20080731 1 900000000000207008 900000000000073002 +397199005 20030731 1 900000000000207008 900000000000074008 +397199005 20080731 1 900000000000207008 900000000000073002 +397221008 20030731 1 900000000000207008 900000000000074008 +397221008 20080731 1 900000000000207008 900000000000073002 +397232008 20030731 1 900000000000207008 900000000000074008 +397232008 20080731 1 900000000000207008 900000000000073002 +397233003 20030731 1 900000000000207008 900000000000074008 +397233003 20080731 1 900000000000207008 900000000000073002 +397234009 20030731 1 900000000000207008 900000000000074008 +397235005 20030731 1 900000000000207008 900000000000074008 +397245007 20030731 1 900000000000207008 900000000000074008 +397246008 20030731 1 900000000000207008 900000000000074008 +397326000 20030731 1 900000000000207008 900000000000074008 +397326000 20180731 1 900000000000207008 900000000000073002 +397333000 20030731 1 900000000000207008 900000000000074008 +397333000 20080731 1 900000000000207008 900000000000073002 +397334006 20030731 1 900000000000207008 900000000000074008 +397334006 20080731 1 900000000000207008 900000000000073002 +397436009 20030731 1 900000000000207008 900000000000074008 +397436009 20080731 1 900000000000207008 900000000000073002 +397438005 20030731 1 900000000000207008 900000000000074008 +397455009 20030731 1 900000000000207008 900000000000074008 +397455009 20080731 1 900000000000207008 900000000000073002 +397456005 20030731 1 900000000000207008 900000000000074008 +397456005 20080731 1 900000000000207008 900000000000073002 +397457001 20030731 1 900000000000207008 900000000000074008 +397457001 20040731 1 900000000000207008 900000000000073002 +397458006 20030731 1 900000000000207008 900000000000074008 +397458006 20080731 1 900000000000207008 900000000000073002 +397462000 20030731 1 900000000000207008 900000000000074008 +397462000 20080731 1 900000000000207008 900000000000073002 +397482001 20030731 1 900000000000207008 900000000000074008 +397482001 20080731 1 900000000000207008 900000000000073002 +397483006 20030731 1 900000000000207008 900000000000074008 +399388008 20030731 1 900000000000207008 900000000000074008 +399388008 20180731 1 900000000000207008 900000000000073002 +399396003 20030731 1 900000000000207008 900000000000074008 +399396003 20080731 1 900000000000207008 900000000000073002 +399402006 20030731 1 900000000000207008 900000000000074008 +399402006 20080731 1 900000000000207008 900000000000073002 +399407000 20030731 1 900000000000207008 900000000000074008 +399407000 20080731 1 900000000000207008 900000000000073002 +399411006 20030731 1 900000000000207008 900000000000073002 +399436000 20030731 1 900000000000207008 900000000000074008 +399436000 20040731 1 900000000000207008 900000000000073002 +399440009 20030731 1 900000000000207008 900000000000074008 +399440009 20080731 1 900000000000207008 900000000000073002 +399443006 20030731 1 900000000000207008 900000000000074008 +399443006 20080731 1 900000000000207008 900000000000073002 +399447007 20030731 1 900000000000207008 900000000000074008 +399447007 20080731 1 900000000000207008 900000000000073002 +399451009 20030731 1 900000000000207008 900000000000073002 +399460001 20030731 1 900000000000207008 900000000000074008 +399460001 20080731 1 900000000000207008 900000000000073002 +399467003 20030731 1 900000000000207008 900000000000074008 +399484009 20030731 1 900000000000207008 900000000000074008 +399484009 20080731 1 900000000000207008 900000000000073002 +399486006 20030731 1 900000000000207008 900000000000074008 +399486006 20080731 1 900000000000207008 900000000000073002 +399492000 20030731 1 900000000000207008 900000000000074008 +399492000 20080731 1 900000000000207008 900000000000073002 +399499009 20030731 1 900000000000207008 900000000000074008 +399499009 20080731 1 900000000000207008 900000000000073002 +399502008 20030731 1 900000000000207008 900000000000074008 +399502008 20080731 1 900000000000207008 900000000000073002 +399512001 20030731 1 900000000000207008 900000000000073002 +399526005 20030731 1 900000000000207008 900000000000074008 +399526005 20080731 1 900000000000207008 900000000000073002 +399532000 20030731 1 900000000000207008 900000000000074008 +399532000 20080731 1 900000000000207008 900000000000073002 +399541005 20030731 1 900000000000207008 900000000000074008 +399541005 20080731 1 900000000000207008 900000000000073002 +399542003 20030731 1 900000000000207008 900000000000074008 +399542003 20080731 1 900000000000207008 900000000000073002 +399551006 20030731 1 900000000000207008 900000000000074008 +399551006 20080731 1 900000000000207008 900000000000073002 +399559008 20030731 1 900000000000207008 900000000000074008 +399559008 20080731 1 900000000000207008 900000000000073002 +399572009 20030731 1 900000000000207008 900000000000074008 +399572009 20080731 1 900000000000207008 900000000000073002 +399603006 20030731 1 900000000000207008 900000000000074008 +399603006 20080731 1 900000000000207008 900000000000073002 +399614009 20030731 1 900000000000207008 900000000000074008 +399619004 20030731 1 900000000000207008 900000000000073002 +399622002 20030731 1 900000000000207008 900000000000074008 +399622002 20080731 1 900000000000207008 900000000000073002 +399624001 20030731 1 900000000000207008 900000000000074008 +399624001 20080731 1 900000000000207008 900000000000073002 +399629006 20030731 1 900000000000207008 900000000000074008 +399629006 20080731 1 900000000000207008 900000000000073002 +399633004 20030731 1 900000000000207008 900000000000074008 +399633004 20080731 1 900000000000207008 900000000000073002 +399640003 20030731 1 900000000000207008 900000000000074008 +399645008 20030731 1 900000000000207008 900000000000074008 +399645008 20080731 1 900000000000207008 900000000000073002 +399649002 20030731 1 900000000000207008 900000000000074008 +399649002 20080731 1 900000000000207008 900000000000073002 +399657004 20030731 1 900000000000207008 900000000000073002 +399658009 20030731 1 900000000000207008 900000000000074008 +399658009 20080731 1 900000000000207008 900000000000073002 +399661005 20030731 1 900000000000207008 900000000000074008 +399661005 20080731 1 900000000000207008 900000000000073002 +399672000 20030731 1 900000000000207008 900000000000074008 +399672000 20080731 1 900000000000207008 900000000000073002 +399680007 20030731 1 900000000000207008 900000000000074008 +399680007 20040731 1 900000000000207008 900000000000073002 +399689008 20030731 1 900000000000207008 900000000000074008 +399689008 20080731 1 900000000000207008 900000000000073002 +399693002 20030731 1 900000000000207008 900000000000074008 +399693002 20080731 1 900000000000207008 900000000000073002 +399713008 20030731 1 900000000000207008 900000000000074008 +399713008 20080731 1 900000000000207008 900000000000073002 +399728008 20030731 1 900000000000207008 900000000000074008 +399728008 20080731 1 900000000000207008 900000000000073002 +399731009 20030731 1 900000000000207008 900000000000074008 +399731009 20080731 1 900000000000207008 900000000000073002 +399732002 20030731 1 900000000000207008 900000000000074008 +399732002 20080731 1 900000000000207008 900000000000073002 +399735000 20030731 1 900000000000207008 900000000000074008 +399741007 20030731 1 900000000000207008 900000000000074008 +399741007 20080731 1 900000000000207008 900000000000073002 +399747006 20030731 1 900000000000207008 900000000000074008 +399747006 20080731 1 900000000000207008 900000000000073002 +399751008 20030731 1 900000000000207008 900000000000074008 +399751008 20080731 1 900000000000207008 900000000000073002 +399752001 20030731 1 900000000000207008 900000000000074008 +399752001 20080731 1 900000000000207008 900000000000073002 +404643001 20040131 1 900000000000207008 900000000000074008 +404643001 20080731 1 900000000000207008 900000000000073002 +405902005 20040131 1 900000000000207008 900000000000074008 +405902005 20080731 1 900000000000207008 900000000000073002 +406101006 20040131 1 900000000000207008 900000000000074008 +406101006 20050131 1 900000000000207008 900000000000073002 +408654003 20040131 1 900000000000207008 900000000000074008 +408654003 20040731 1 900000000000207008 900000000000073002 +409821005 20040731 1 900000000000207008 900000000000074008 +409821005 20080731 1 900000000000207008 900000000000073002 +409876003 20040731 1 900000000000207008 900000000000074008 +409876003 20090131 1 900000000000207008 900000000000073002 +410580001 20040731 1 900000000000207008 900000000000073002 +410581002 20040731 1 900000000000207008 900000000000073002 +410729004 20040731 1 900000000000207008 900000000000073002 +415293009 20050131 1 900000000000207008 900000000000073002 +415563002 20050131 1 900000000000207008 900000000000074008 +415563002 20080731 1 900000000000207008 900000000000073002 +418564007 20060131 1 900000000000207008 900000000000074008 +418564007 20080731 1 900000000000207008 900000000000073002 +418932006 20060131 1 900000000000207008 900000000000074008 +418932006 20080731 1 900000000000207008 900000000000073002 +419695002 20060131 1 900000000000207008 900000000000074008 +419695002 20080731 1 900000000000207008 900000000000073002 +419695002 20090131 1 900000000000207008 900000000000074008 +419695002 20210131 1 900000000000207008 900000000000073002 +420548004 20060731 1 900000000000207008 900000000000073002 +421615004 20060731 1 900000000000207008 900000000000074008 +421615004 20080731 1 900000000000207008 900000000000073002 +422991009 20070131 1 900000000000207008 900000000000074008 +422991009 20080731 1 900000000000207008 900000000000073002 +423671006 20070131 1 900000000000207008 900000000000074008 +423671006 20080731 1 900000000000207008 900000000000073002 +423696009 20070131 1 900000000000207008 900000000000074008 +423696009 20080731 1 900000000000207008 900000000000073002 +425804000 20070731 1 900000000000207008 900000000000074008 +426815000 20070731 1 900000000000207008 900000000000074008 +426924005 20070731 1 900000000000207008 900000000000074008 +427558003 20070731 1 900000000000207008 900000000000073002 +429832000 20080731 1 900000000000207008 900000000000073002 +429836002 20080731 1 900000000000207008 900000000000073002 +430117006 20080731 1 900000000000207008 900000000000073002 +430131006 20080731 1 900000000000207008 900000000000073002 +430132004 20080731 1 900000000000207008 900000000000073002 +430133009 20080731 1 900000000000207008 900000000000073002 +430144001 20080731 1 900000000000207008 900000000000073002 +430157009 20080731 1 900000000000207008 900000000000073002 +430214008 20080731 1 900000000000207008 900000000000073002 +430221008 20080731 1 900000000000207008 900000000000073002 +430222001 20080731 1 900000000000207008 900000000000073002 +430228002 20080731 1 900000000000207008 900000000000073002 +430232008 20080731 1 900000000000207008 900000000000073002 +430234009 20080731 1 900000000000207008 900000000000073002 +430236006 20080731 1 900000000000207008 900000000000073002 +430238007 20080731 1 900000000000207008 900000000000073002 +430241003 20080731 1 900000000000207008 900000000000073002 +430244006 20080731 1 900000000000207008 900000000000073002 +430245007 20080731 1 900000000000207008 900000000000073002 +430246008 20080731 1 900000000000207008 900000000000073002 +430248009 20080731 1 900000000000207008 900000000000073002 +430249001 20080731 1 900000000000207008 900000000000073002 +430250001 20080731 1 900000000000207008 900000000000073002 +430268003 20080731 1 900000000000207008 900000000000073002 +430297000 20080731 1 900000000000207008 900000000000073002 +430304001 20080731 1 900000000000207008 900000000000073002 +430304001 20090731 1 900000000000207008 900000000000074008 +430309006 20080731 1 900000000000207008 900000000000073002 +430310001 20080731 1 900000000000207008 900000000000073002 +430312009 20080731 1 900000000000207008 900000000000073002 +430318008 20080731 1 900000000000207008 900000000000073002 +430319000 20080731 1 900000000000207008 900000000000074008 +430319000 20110731 1 900000000000207008 900000000000073002 +430346005 20080731 1 900000000000207008 900000000000074008 +430379005 20080731 1 900000000000207008 900000000000073002 +430386002 20080731 1 900000000000207008 900000000000073002 +430387006 20080731 1 900000000000207008 900000000000074008 +430389009 20080731 1 900000000000207008 900000000000073002 +430408004 20080731 1 900000000000207008 900000000000073002 +430855004 20080731 1 900000000000207008 900000000000073002 +430856003 20080731 1 900000000000207008 900000000000074008 +430861001 20080731 1 900000000000207008 900000000000074008 +430970004 20080731 1 900000000000207008 900000000000074008 +431058008 20080731 1 900000000000207008 900000000000073002 +431196006 20080731 1 900000000000207008 900000000000074008 +431205006 20080731 1 900000000000207008 900000000000073002 +431232001 20080731 1 900000000000207008 900000000000073002 +431233006 20080731 1 900000000000207008 900000000000073002 +431234000 20080731 1 900000000000207008 900000000000073002 +431235004 20080731 1 900000000000207008 900000000000073002 +431361003 20080731 1 900000000000207008 900000000000073002 +431404007 20080731 1 900000000000207008 900000000000073002 +431405008 20080731 1 900000000000207008 900000000000073002 +431406009 20080731 1 900000000000207008 900000000000073002 +431412004 20080731 1 900000000000207008 900000000000073002 +431413009 20080731 1 900000000000207008 900000000000073002 +431696005 20080731 1 900000000000207008 900000000000073002 +431697001 20080731 1 900000000000207008 900000000000073002 +431771004 20080731 1 900000000000207008 900000000000073002 +431776009 20080731 1 900000000000207008 900000000000074008 +431884001 20080731 1 900000000000207008 900000000000073002 +431889006 20080731 1 900000000000207008 900000000000073002 +431905001 20080731 1 900000000000207008 900000000000074008 +432057001 20080731 1 900000000000207008 900000000000073002 +432058006 20080731 1 900000000000207008 900000000000073002 +432059003 20080731 1 900000000000207008 900000000000073002 +432060008 20080731 1 900000000000207008 900000000000073002 +432061007 20080731 1 900000000000207008 900000000000073002 +432097003 20080731 1 900000000000207008 900000000000073002 +432098008 20080731 1 900000000000207008 900000000000073002 +432099000 20080731 1 900000000000207008 900000000000073002 +432134009 20080731 1 900000000000207008 900000000000073002 +432135005 20080731 1 900000000000207008 900000000000073002 +432136006 20080731 1 900000000000207008 900000000000073002 +432139004 20080731 1 900000000000207008 900000000000073002 +432140002 20080731 1 900000000000207008 900000000000073002 +432141003 20080731 1 900000000000207008 900000000000073002 +432142005 20080731 1 900000000000207008 900000000000073002 +432143000 20080731 1 900000000000207008 900000000000073002 +432144006 20080731 1 900000000000207008 900000000000073002 +432145007 20080731 1 900000000000207008 900000000000073002 +432146008 20080731 1 900000000000207008 900000000000073002 +432382007 20080731 1 900000000000207008 900000000000073002 +432383002 20080731 1 900000000000207008 900000000000073002 +432384008 20080731 1 900000000000207008 900000000000073002 +432385009 20080731 1 900000000000207008 900000000000073002 +432419006 20080731 1 900000000000207008 900000000000073002 +432420000 20080731 1 900000000000207008 900000000000073002 +432436003 20080731 1 900000000000207008 900000000000073002 +432441006 20080731 1 900000000000207008 900000000000073002 +432607005 20080731 1 900000000000207008 900000000000073002 +432608000 20080731 1 900000000000207008 900000000000073002 +432657002 20080731 1 900000000000207008 900000000000073002 +432825001 20080731 1 900000000000207008 900000000000073002 +432864003 20080731 1 900000000000207008 900000000000073002 +432865002 20080731 1 900000000000207008 900000000000073002 +432897002 20080731 1 900000000000207008 900000000000073002 +432910000 20080731 1 900000000000207008 900000000000073002 +432980007 20080731 1 900000000000207008 900000000000073002 +432981006 20080731 1 900000000000207008 900000000000073002 +432982004 20080731 1 900000000000207008 900000000000073002 +432983009 20080731 1 900000000000207008 900000000000073002 +432984003 20080731 1 900000000000207008 900000000000073002 +432985002 20080731 1 900000000000207008 900000000000073002 +432986001 20080731 1 900000000000207008 900000000000073002 +433115004 20080731 1 900000000000207008 900000000000073002 +433116003 20080731 1 900000000000207008 900000000000073002 +433117007 20080731 1 900000000000207008 900000000000073002 +433118002 20080731 1 900000000000207008 900000000000073002 +433119005 20080731 1 900000000000207008 900000000000073002 +433120004 20080731 1 900000000000207008 900000000000073002 +433308004 20080731 1 900000000000207008 900000000000073002 +433309007 20080731 1 900000000000207008 900000000000073002 +433322004 20080731 1 900000000000207008 900000000000073002 +433323009 20080731 1 900000000000207008 900000000000073002 +433324003 20080731 1 900000000000207008 900000000000073002 +433326001 20080731 1 900000000000207008 900000000000073002 +433760005 20080731 1 900000000000207008 900000000000073002 +433799002 20080731 1 900000000000207008 900000000000073002 +433854001 20080731 1 900000000000207008 900000000000073002 +433859006 20080731 1 900000000000207008 900000000000073002 +433860001 20080731 1 900000000000207008 900000000000073002 +433861002 20080731 1 900000000000207008 900000000000073002 +433873002 20080731 1 900000000000207008 900000000000073002 +434014007 20080731 1 900000000000207008 900000000000073002 +434140003 20080731 1 900000000000207008 900000000000073002 +434244002 20080731 1 900000000000207008 900000000000073002 +434249007 20080731 1 900000000000207008 900000000000073002 +434250007 20080731 1 900000000000207008 900000000000073002 +434406008 20080731 1 900000000000207008 900000000000073002 +438336007 20090131 1 900000000000207008 900000000000073002 +438343001 20090131 1 900000000000207008 900000000000074008 +438351003 20090131 1 900000000000207008 900000000000073002 +438352005 20090131 1 900000000000207008 900000000000073002 +438454007 20090131 1 900000000000207008 900000000000073002 +438542005 20090131 1 900000000000207008 900000000000073002 +438543000 20090131 1 900000000000207008 900000000000073002 +438545007 20090131 1 900000000000207008 900000000000073002 +438595008 20090131 1 900000000000207008 900000000000073002 +438659007 20090131 1 900000000000207008 900000000000073002 +438660002 20090131 1 900000000000207008 900000000000073002 +438661003 20090131 1 900000000000207008 900000000000073002 +438803004 20090131 1 900000000000207008 900000000000073002 +438804005 20090131 1 900000000000207008 900000000000073002 +438805006 20090131 1 900000000000207008 900000000000073002 +438960000 20090131 1 900000000000207008 900000000000073002 +439034006 20090131 1 900000000000207008 900000000000073002 +439479000 20090131 1 900000000000207008 900000000000073002 +439580004 20090131 1 900000000000207008 900000000000073002 +439580004 20100731 1 900000000000207008 900000000000074008 +439580004 20130131 1 900000000000207008 900000000000073002 +439628000 20090131 1 900000000000207008 900000000000073002 +439628000 20100731 1 900000000000207008 900000000000074008 +439628000 20130131 1 900000000000207008 900000000000073002 +439895009 20090131 1 900000000000207008 900000000000073002 +439961009 20090131 1 900000000000207008 900000000000074008 +439961009 20130131 1 900000000000207008 900000000000073002 +440135000 20090131 1 900000000000207008 900000000000073002 +440136004 20090131 1 900000000000207008 900000000000073002 +440137008 20090131 1 900000000000207008 900000000000073002 +440138003 20090131 1 900000000000207008 900000000000073002 +440229008 20090131 1 900000000000207008 900000000000074008 +440229008 20210131 1 900000000000207008 900000000000073002 +440468004 20090131 1 900000000000207008 900000000000073002 +440468004 20100731 1 900000000000207008 900000000000074008 +440468004 20130131 1 900000000000207008 900000000000073002 +440469007 20090131 1 900000000000207008 900000000000074008 +440472000 20090131 1 900000000000207008 900000000000073002 +440473005 20090131 1 900000000000207008 900000000000073002 +440473005 20100731 1 900000000000207008 900000000000074008 +440473005 20130131 1 900000000000207008 900000000000073002 +440493002 20090131 1 900000000000207008 900000000000073002 +440500007 20090131 1 900000000000207008 900000000000074008 +440502004 20090131 1 900000000000207008 900000000000073002 +440515008 20090131 1 900000000000207008 900000000000074008 +440674008 20090131 1 900000000000207008 900000000000073002 +440675009 20090131 1 900000000000207008 900000000000073002 +441479001 20090731 1 900000000000207008 900000000000074008 +441510007 20090731 1 900000000000207008 900000000000074008 +441518000 20090731 1 900000000000207008 900000000000074008 +441620008 20090731 1 900000000000207008 900000000000073002 +441652008 20090731 1 900000000000207008 900000000000074008 +441673008 20090731 1 900000000000207008 900000000000073002 +441694006 20090731 1 900000000000207008 900000000000073002 +441695007 20090731 1 900000000000207008 900000000000073002 +441709004 20090731 1 900000000000207008 900000000000074008 +441709004 20210930 1 900000000000207008 900000000000073002 +441710009 20090731 1 900000000000207008 900000000000073002 +441749007 20090731 1 900000000000207008 900000000000073002 +441750007 20090731 1 900000000000207008 900000000000073002 +441792002 20090731 1 900000000000207008 900000000000073002 +441810001 20090731 1 900000000000207008 900000000000073002 +441876003 20090731 1 900000000000207008 900000000000073002 +441884004 20090731 1 900000000000207008 900000000000073002 +441903006 20090731 1 900000000000207008 900000000000073002 +441906003 20090731 1 900000000000207008 900000000000073002 +442043001 20090731 1 900000000000207008 900000000000074008 +442166002 20090731 1 900000000000207008 900000000000073002 +442173007 20090731 1 900000000000207008 900000000000074008 +442219007 20090731 1 900000000000207008 900000000000074008 +442427000 20090731 1 900000000000207008 900000000000073002 +442524009 20090731 1 900000000000207008 900000000000074008 +442649003 20090731 1 900000000000207008 900000000000073002 +443241002 20100131 1 900000000000207008 900000000000073002 +443418008 20100131 1 900000000000207008 900000000000073002 +443498007 20100131 1 900000000000207008 900000000000073002 +443654002 20100131 1 900000000000207008 900000000000073002 +444623009 20100731 1 900000000000207008 900000000000074008 +444656005 20100731 1 900000000000207008 900000000000074008 +444656005 20130131 1 900000000000207008 900000000000073002 +444787003 20100731 1 900000000000207008 900000000000073002 +444824001 20100731 1 900000000000207008 900000000000074008 +444831002 20100731 1 900000000000207008 900000000000074008 +444832009 20100731 1 900000000000207008 900000000000074008 +444865001 20100731 1 900000000000207008 900000000000074008 +444936006 20100731 1 900000000000207008 900000000000073002 +444937002 20100731 1 900000000000207008 900000000000073002 +444946008 20100731 1 900000000000207008 900000000000074008 +444959000 20100731 1 900000000000207008 900000000000074008 +444959000 20230430 1 900000000000207008 900000000000073002 +444965000 20100731 1 900000000000207008 900000000000073002 +445069004 20100731 1 900000000000207008 900000000000074008 +445069004 20230430 1 900000000000207008 900000000000073002 +445160003 20100731 1 900000000000207008 900000000000073002 +445295009 20100731 1 900000000000207008 900000000000074008 +445297001 20100731 1 900000000000207008 900000000000073002 +445364004 20100731 1 900000000000207008 900000000000073002 +445367006 20100731 1 900000000000207008 900000000000073002 +445369009 20100731 1 900000000000207008 900000000000073002 +445372002 20100731 1 900000000000207008 900000000000073002 +445383006 20100731 1 900000000000207008 900000000000073002 +445384000 20100731 1 900000000000207008 900000000000074008 +445405002 20100731 1 900000000000207008 900000000000073002 +445421007 20100731 1 900000000000207008 900000000000074008 +445444005 20100731 1 900000000000207008 900000000000073002 +445447003 20100731 1 900000000000207008 900000000000073002 +445516007 20100731 1 900000000000207008 900000000000074008 +445529007 20100731 1 900000000000207008 900000000000074008 +445742005 20110131 1 900000000000207008 900000000000074008 +445743000 20110131 1 900000000000207008 900000000000074008 +445744006 20110131 1 900000000000207008 900000000000073002 +445745007 20110131 1 900000000000207008 900000000000073002 +446128003 20110131 1 900000000000207008 900000000000073002 +446129006 20110131 1 900000000000207008 900000000000073002 +446130001 20110131 1 900000000000207008 900000000000073002 +446131002 20110131 1 900000000000207008 900000000000074008 +446137003 20110131 1 900000000000207008 900000000000074008 +446211008 20110131 1 900000000000207008 900000000000074008 +446212001 20110131 1 900000000000207008 900000000000073002 +446235003 20110131 1 900000000000207008 900000000000073002 +446272009 20110131 1 900000000000207008 900000000000074008 +446277003 20110131 1 900000000000207008 900000000000074008 +446299006 20110131 1 900000000000207008 900000000000074008 +446300003 20110131 1 900000000000207008 900000000000073002 +446302006 20110131 1 900000000000207008 900000000000073002 +446304007 20110131 1 900000000000207008 900000000000073002 +446305008 20110131 1 900000000000207008 900000000000074008 +446306009 20110131 1 900000000000207008 900000000000073002 +446364005 20110131 1 900000000000207008 900000000000074008 +446561003 20110131 1 900000000000207008 900000000000074008 +446562005 20110131 1 900000000000207008 900000000000074008 +446577002 20110131 1 900000000000207008 900000000000074008 +446674003 20110131 1 900000000000207008 900000000000073002 +446675002 20110131 1 900000000000207008 900000000000073002 +446676001 20110131 1 900000000000207008 900000000000073002 +446700001 20110131 1 900000000000207008 900000000000073002 +446774006 20110131 1 900000000000207008 900000000000073002 +446817004 20110131 1 900000000000207008 900000000000073002 +446837000 20110131 1 900000000000207008 900000000000073002 +446838005 20110131 1 900000000000207008 900000000000074008 +446842008 20110131 1 900000000000207008 900000000000073002 +446846006 20110131 1 900000000000207008 900000000000073002 +446861007 20110131 1 900000000000207008 900000000000073002 +446906004 20110131 1 900000000000207008 900000000000074008 +446907008 20110131 1 900000000000207008 900000000000073002 +446908003 20110131 1 900000000000207008 900000000000073002 +446951004 20110131 1 900000000000207008 900000000000073002 +446952006 20110131 1 900000000000207008 900000000000073002 +446972001 20110131 1 900000000000207008 900000000000073002 +447098004 20110131 1 900000000000207008 900000000000073002 +447103002 20110131 1 900000000000207008 900000000000074008 +447104008 20110131 1 900000000000207008 900000000000073002 +447148003 20110131 1 900000000000207008 900000000000073002 +447154002 20110131 1 900000000000207008 900000000000073002 +447155001 20110131 1 900000000000207008 900000000000073002 +447158004 20110131 1 900000000000207008 900000000000073002 +447337004 20110131 1 900000000000207008 900000000000073002 +447339001 20110131 1 900000000000207008 900000000000073002 +447341000 20110131 1 900000000000207008 900000000000073002 +447345009 20110131 1 900000000000207008 900000000000074008 +447355008 20110131 1 900000000000207008 900000000000074008 +447357000 20110131 1 900000000000207008 900000000000073002 +447358005 20110131 1 900000000000207008 900000000000073002 +447359002 20110131 1 900000000000207008 900000000000073002 +447375004 20110131 1 900000000000207008 900000000000073002 +447391001 20110131 1 900000000000207008 900000000000073002 +447392008 20110131 1 900000000000207008 900000000000073002 +447403008 20110131 1 900000000000207008 900000000000074008 +447407009 20110131 1 900000000000207008 900000000000073002 +447488002 20110131 1 900000000000207008 900000000000073002 +447589008 20110131 1 900000000000207008 900000000000074008 +447881000 20110731 1 900000000000207008 900000000000073002 +447955000 20110731 1 900000000000207008 900000000000073002 +448789008 20110731 1 900000000000207008 900000000000073002 +449446003 20110731 1 900000000000207008 900000000000073002 +450872001 20120731 1 900000000000207008 900000000000073002 +472861000 20130131 1 900000000000207008 900000000000073002 +472862007 20130131 1 900000000000207008 900000000000073002 +472863002 20130131 1 900000000000207008 900000000000073002 +472864008 20130131 1 900000000000207008 900000000000073002 +472865009 20130131 1 900000000000207008 900000000000073002 +472866005 20130131 1 900000000000207008 900000000000073002 +472867001 20130131 1 900000000000207008 900000000000073002 +472868006 20130131 1 900000000000207008 900000000000073002 +472869003 20130131 1 900000000000207008 900000000000073002 +472870002 20130131 1 900000000000207008 900000000000073002 +472871003 20130131 1 900000000000207008 900000000000073002 +472872005 20130131 1 900000000000207008 900000000000074008 +472873000 20130131 1 900000000000207008 900000000000073002 +472874006 20130131 1 900000000000207008 900000000000073002 +472875007 20130131 1 900000000000207008 900000000000073002 +472876008 20130131 1 900000000000207008 900000000000073002 +472877004 20130131 1 900000000000207008 900000000000073002 +472878009 20130131 1 900000000000207008 900000000000073002 +472879001 20130131 1 900000000000207008 900000000000073002 +472880003 20130131 1 900000000000207008 900000000000073002 +472881004 20130131 1 900000000000207008 900000000000073002 +472882006 20130131 1 900000000000207008 900000000000073002 +472883001 20130131 1 900000000000207008 900000000000073002 +472884007 20130131 1 900000000000207008 900000000000073002 +472885008 20130131 1 900000000000207008 900000000000073002 +472886009 20130131 1 900000000000207008 900000000000074008 +472887000 20130131 1 900000000000207008 900000000000073002 +472888005 20130131 1 900000000000207008 900000000000073002 +472889002 20130131 1 900000000000207008 900000000000073002 +472890006 20130131 1 900000000000207008 900000000000073002 +472891005 20130131 1 900000000000207008 900000000000073002 +472892003 20130131 1 900000000000207008 900000000000073002 +472893008 20130131 1 900000000000207008 900000000000073002 +472894002 20130131 1 900000000000207008 900000000000073002 +472895001 20130131 1 900000000000207008 900000000000073002 +472896000 20130131 1 900000000000207008 900000000000073002 +472897009 20130131 1 900000000000207008 900000000000073002 +472898004 20130131 1 900000000000207008 900000000000073002 +472899007 20130131 1 900000000000207008 900000000000073002 +472900002 20130131 1 900000000000207008 900000000000073002 +472901003 20130131 1 900000000000207008 900000000000073002 +472902005 20130131 1 900000000000207008 900000000000074008 +472903000 20130131 1 900000000000207008 900000000000073002 +472904006 20130131 1 900000000000207008 900000000000073002 +472919007 20130131 1 900000000000207008 900000000000073002 +472920001 20130131 1 900000000000207008 900000000000073002 +472921002 20130131 1 900000000000207008 900000000000074008 +472922009 20130131 1 900000000000207008 900000000000073002 +472923004 20130131 1 900000000000207008 900000000000074008 +472924005 20130131 1 900000000000207008 900000000000074008 +472925006 20130131 1 900000000000207008 900000000000074008 +472926007 20130131 1 900000000000207008 900000000000074008 +472927003 20130131 1 900000000000207008 900000000000073002 +472928008 20130131 1 900000000000207008 900000000000074008 +472929000 20130131 1 900000000000207008 900000000000074008 +472929000 20160131 1 900000000000207008 900000000000073002 +472930005 20130131 1 900000000000207008 900000000000073002 +472931009 20130131 1 900000000000207008 900000000000074008 +472931009 20170731 1 900000000000207008 900000000000073002 +472932002 20130131 1 900000000000207008 900000000000073002 +472933007 20130131 1 900000000000207008 900000000000074008 +472934001 20130131 1 900000000000207008 900000000000073002 +472935000 20130131 1 900000000000207008 900000000000074008 +472936004 20130131 1 900000000000207008 900000000000074008 +472937008 20130131 1 900000000000207008 900000000000073002 +472938003 20130131 1 900000000000207008 900000000000073002 +472939006 20130131 1 900000000000207008 900000000000073002 +472940008 20130131 1 900000000000207008 900000000000073002 +472941007 20130131 1 900000000000207008 900000000000074008 +472942000 20130131 1 900000000000207008 900000000000073002 +472943005 20130131 1 900000000000207008 900000000000073002 +472944004 20130131 1 900000000000207008 900000000000073002 +473399006 20130131 1 900000000000207008 900000000000074008 +473400004 20130131 1 900000000000207008 900000000000073002 +473401000 20130131 1 900000000000207008 900000000000073002 +473403002 20130131 1 900000000000207008 900000000000074008 +473404008 20130131 1 900000000000207008 900000000000073002 +473405009 20130131 1 900000000000207008 900000000000073002 +473406005 20130131 1 900000000000207008 900000000000073002 +473407001 20130131 1 900000000000207008 900000000000073002 +473408006 20130131 1 900000000000207008 900000000000074008 +473408006 20230228 1 900000000000207008 900000000000073002 +473409003 20130131 1 900000000000207008 900000000000073002 +473410008 20130131 1 900000000000207008 900000000000073002 +473411007 20130131 1 900000000000207008 900000000000074008 +473412000 20130131 1 900000000000207008 900000000000073002 +473413005 20130131 1 900000000000207008 900000000000074008 +473414004 20130131 1 900000000000207008 900000000000073002 +473415003 20130131 1 900000000000207008 900000000000073002 +473416002 20130131 1 900000000000207008 900000000000073002 +473417006 20130131 1 900000000000207008 900000000000073002 +473432004 20130131 1 900000000000207008 900000000000073002 +473433009 20130131 1 900000000000207008 900000000000073002 +608840004 20130731 1 900000000000207008 900000000000073002 +608842007 20130731 1 900000000000207008 900000000000073002 +608852006 20130731 1 900000000000207008 900000000000073002 +608856009 20130731 1 900000000000207008 900000000000073002 +608858005 20130731 1 900000000000207008 900000000000073002 +608860007 20130731 1 900000000000207008 900000000000073002 +608868000 20130731 1 900000000000207008 900000000000073002 +608870009 20130731 1 900000000000207008 900000000000073002 +608969007 20130731 1 900000000000207008 900000000000073002 +697988001 20140131 1 900000000000207008 900000000000074008 +697989009 20140131 1 900000000000207008 900000000000073002 +698276005 20140131 1 900000000000207008 900000000000073002 +699283007 20140131 1 900000000000207008 900000000000074008 +699284001 20140131 1 900000000000207008 900000000000074008 +699285000 20140131 1 900000000000207008 900000000000074008 +699285000 20180131 1 900000000000207008 900000000000073002 +699286004 20140131 1 900000000000207008 900000000000074008 +699287008 20140131 1 900000000000207008 900000000000073002 +699868006 20140131 1 900000000000207008 900000000000073002 +699874006 20140131 1 900000000000207008 900000000000073002 +702701006 20140731 1 900000000000207008 900000000000074008 +703430008 20140731 1 900000000000207008 900000000000074008 +703430008 20230430 1 900000000000207008 900000000000073002 +703431007 20140731 1 900000000000207008 900000000000074008 +703431007 20230430 1 900000000000207008 900000000000073002 +703432000 20140731 1 900000000000207008 900000000000074008 +703432000 20240501 1 900000000000207008 900000000000073002 +703475006 20140731 1 900000000000207008 900000000000073002 +703691002 20140731 1 900000000000207008 900000000000074008 +704243004 20150131 1 900000000000207008 900000000000074008 +704663000 20150131 1 900000000000207008 900000000000074008 +705054005 20150131 1 900000000000207008 900000000000074008 +708048008 20150131 1 900000000000207008 900000000000074008 +708049000 20150131 1 900000000000207008 900000000000074008 +708110000 20150131 1 900000000000207008 900000000000074008 +708111001 20150131 1 900000000000207008 900000000000074008 +708112008 20150131 1 900000000000207008 900000000000073002 +708285007 20150131 1 900000000000207008 900000000000074008 +708317005 20150131 1 900000000000207008 900000000000074008 +709024005 20150731 1 900000000000207008 900000000000074008 +710069003 20150731 1 900000000000207008 900000000000074008 +712559006 20150731 1 900000000000207008 900000000000074008 +712560001 20150731 1 900000000000207008 900000000000074008 +712562009 20150731 1 900000000000207008 900000000000074008 +718684005 20170131 1 900000000000207008 900000000000073002 +725372003 20170731 1 900000000000207008 900000000000073002 +725946000 20170731 1 900000000000207008 900000000000073002 +725957005 20170731 1 900000000000207008 900000000000074008 +732211001 20170731 1 900000000000207008 900000000000073002 +732217002 20170731 1 900000000000207008 900000000000073002 +732220005 20170731 1 900000000000207008 900000000000073002 +732222002 20170731 1 900000000000207008 900000000000073002 +732226004 20170731 1 900000000000207008 900000000000073002 +732227008 20170731 1 900000000000207008 900000000000073002 +732293002 20170731 1 900000000000207008 900000000000073002 +732295009 20170731 1 900000000000207008 900000000000073002 +732964006 20170731 1 900000000000207008 900000000000073002 +732972008 20170731 1 900000000000207008 900000000000073002 +732975005 20170731 1 900000000000207008 900000000000073002 +732976006 20170731 1 900000000000207008 900000000000073002 +733056005 20170731 1 900000000000207008 900000000000073002 +733101007 20170731 1 900000000000207008 900000000000073002 +733103005 20170731 1 900000000000207008 900000000000073002 +733104004 20170731 1 900000000000207008 900000000000073002 +733105003 20170731 1 900000000000207008 900000000000073002 +733475007 20170731 1 900000000000207008 900000000000073002 +733476008 20170731 1 900000000000207008 900000000000073002 +733482006 20170731 1 900000000000207008 900000000000073002 +733484007 20170731 1 900000000000207008 900000000000073002 +733485008 20170731 1 900000000000207008 900000000000074008 +734307008 20180131 1 900000000000207008 900000000000073002 +734333000 20180131 1 900000000000207008 900000000000073002 +734334006 20180131 1 900000000000207008 900000000000073002 +734335007 20180131 1 900000000000207008 900000000000073002 +734336008 20180131 1 900000000000207008 900000000000073002 +734337004 20180131 1 900000000000207008 900000000000073002 +734338009 20180131 1 900000000000207008 900000000000073002 +734341000 20180131 1 900000000000207008 900000000000073002 +734342007 20180131 1 900000000000207008 900000000000073002 +734343002 20180131 1 900000000000207008 900000000000073002 +734375004 20180131 1 900000000000207008 900000000000073002 +734377007 20180131 1 900000000000207008 900000000000073002 +734379005 20180131 1 900000000000207008 900000000000073002 +734380008 20180131 1 900000000000207008 900000000000073002 +734381007 20180131 1 900000000000207008 900000000000073002 +734417004 20180131 1 900000000000207008 900000000000073002 +734419001 20180131 1 900000000000207008 900000000000073002 +734420007 20180131 1 900000000000207008 900000000000073002 +734421006 20180131 1 900000000000207008 900000000000073002 +734422004 20180131 1 900000000000207008 900000000000073002 +734425002 20180131 1 900000000000207008 900000000000073002 +734426001 20180131 1 900000000000207008 900000000000073002 +734427005 20180131 1 900000000000207008 900000000000073002 +734442008 20180131 1 900000000000207008 900000000000073002 +734443003 20180131 1 900000000000207008 900000000000073002 +735197003 20180131 1 900000000000207008 900000000000073002 +735198008 20180131 1 900000000000207008 900000000000073002 +735950000 20180131 1 900000000000207008 900000000000073002 +737016007 20180131 1 900000000000207008 900000000000073002 +737017003 20180131 1 900000000000207008 900000000000073002 +737087006 20180131 1 900000000000207008 900000000000074008 +737089009 20180131 1 900000000000207008 900000000000074008 +737356002 20180131 1 900000000000207008 900000000000074008 +737357006 20180131 1 900000000000207008 900000000000073002 +765469005 20180731 1 900000000000207008 900000000000073002 +765470006 20180731 1 900000000000207008 900000000000073002 +773611006 20190131 1 900000000000207008 900000000000073002 +773630006 20190131 1 900000000000207008 900000000000073002 +787149001 20190731 1 900000000000207008 900000000000074008 +787150001 20190731 1 900000000000207008 900000000000074008 +787151002 20190731 1 900000000000207008 900000000000074008 +787152009 20190731 1 900000000000207008 900000000000074008 +788524009 20200131 1 900000000000207008 900000000000074008 +788707000 20200131 1 900000000000207008 900000000000074008 +840395001 20200731 1 900000000000207008 900000000000073002 +866032008 20200731 1 900000000000207008 900000000000074008 +866033003 20200731 1 900000000000207008 900000000000074008 +866034009 20200731 1 900000000000207008 900000000000074008 +866035005 20200731 1 900000000000207008 900000000000074008 +878861003 20210131 1 900000000000207008 900000000000074008 +898201001 20210131 1 900000000000207008 900000000000073002 +898203003 20210131 1 900000000000207008 900000000000073002 +898205005 20210131 1 900000000000207008 900000000000074008 +1003517007 20210131 1 900000000000207008 900000000000074008 +1003522007 20210131 1 900000000000207008 900000000000074008 +1003705007 20210131 1 900000000000207008 900000000000073002 +1003706008 20210131 1 900000000000207008 900000000000073002 +1003707004 20210131 1 900000000000207008 900000000000073002 +1003708009 20210131 1 900000000000207008 900000000000073002 +1003709001 20210131 1 900000000000207008 900000000000073002 +1003710006 20210131 1 900000000000207008 900000000000073002 +1003711005 20210131 1 900000000000207008 900000000000073002 +1003712003 20210131 1 900000000000207008 900000000000073002 +1003713008 20210131 1 900000000000207008 900000000000073002 +1003714002 20210131 1 900000000000207008 900000000000073002 +1149105007 20210731 1 900000000000207008 900000000000074008 +1163592005 20210930 1 900000000000207008 900000000000073002 +1172660005 20211031 1 900000000000207008 900000000000073002 +1173097006 20210930 1 900000000000207008 900000000000073002 +1173996004 20211031 1 900000000000207008 900000000000073002 +1177151008 20220228 1 900000000000207008 900000000000073002 +1179252003 20220131 1 900000000000207008 900000000000073002 +1201985008 20220228 1 900000000000207008 900000000000074008 +1237234002 20220831 1 900000000000207008 900000000000073002 +1259931002 20221231 1 900000000000207008 900000000000073002 +1285640000 20230630 1 900000000000207008 900000000000073002 +1293160008 20231101 1 900000000000207008 900000000000073002 +1331990008 20240601 1 900000000000207008 900000000000073002 +1331991007 20240601 1 900000000000207008 900000000000073002 +1332490003 20240501 1 900000000000207008 900000000000073002 +1335919003 20240701 1 900000000000207008 900000000000073002 +1335920009 20240701 1 900000000000207008 900000000000073002 +1335921008 20240701 1 900000000000207008 900000000000073002 +1335922001 20240701 1 900000000000207008 900000000000073002 +1335924000 20240701 1 900000000000207008 900000000000073002 +1335925004 20240701 1 900000000000207008 900000000000073002 +1338034005 20240701 1 900000000000207008 900000000000073002 +1340203001 20240701 1 900000000000207008 900000000000074008 +1343300000 20240701 1 900000000000207008 900000000000073002 +1343301001 20240701 1 900000000000207008 900000000000073002 +1344978009 20240901 1 900000000000207008 900000000000073002 +1345107007 20240901 1 900000000000207008 900000000000073002 +1345219005 20241001 1 900000000000207008 900000000000073002 +1345230008 20241001 1 900000000000207008 900000000000074008 +1345231007 20241001 1 900000000000207008 900000000000073002 +1345234004 20241001 1 900000000000207008 900000000000074008 +1345235003 20241001 1 900000000000207008 900000000000074008 +1345268005 20241001 1 900000000000207008 900000000000073002 +1345269002 20241001 1 900000000000207008 900000000000074008 +1345270001 20241001 1 900000000000207008 900000000000074008 +621000009105 20200131 1 900000000000207008 900000000000074008 +791000009104 20240101 1 900000000000207008 900000000000073002 +2421000181104 20240501 1 900000000000207008 900000000000073002 +2431000181102 20240501 1 900000000000207008 900000000000073002 +2441000181109 20240501 1 900000000000207008 900000000000073002 +2451000181107 20240501 1 900000000000207008 900000000000073002 +2501000181105 20240501 1 900000000000207008 900000000000073002 +2511000181107 20240701 1 900000000000207008 900000000000074008 +2521000181103 20240501 1 900000000000207008 900000000000073002 +2531000181101 20240501 1 900000000000207008 900000000000074008 +2541000181108 20240501 1 900000000000207008 900000000000074008 +28971000087101 20210731 1 900000000000207008 900000000000073002 +28981000087104 20210731 1 900000000000207008 900000000000073002 +28991000087102 20210731 1 900000000000207008 900000000000073002 +29001000087102 20210731 1 900000000000207008 900000000000073002 +29011000087100 20210731 1 900000000000207008 900000000000073002 +29021000087108 20210731 1 900000000000207008 900000000000073002 +29031000087105 20210731 1 900000000000207008 900000000000073002 +29041000087104 20210731 1 900000000000207008 900000000000073002 +30941000087105 20211031 1 900000000000207008 900000000000073002 +30961000087106 20211031 1 900000000000207008 900000000000073002 +32641000087102 20220228 1 900000000000207008 900000000000073002 +32651000087104 20220228 1 900000000000207008 900000000000073002 +33331000087108 20220228 1 900000000000207008 900000000000073002 +33351000087104 20220228 1 900000000000207008 900000000000073002 +33481000087100 20220228 1 900000000000207008 900000000000073002 +33491000087103 20220228 1 900000000000207008 900000000000073002 +33501000087106 20220228 1 900000000000207008 900000000000073002 +33511000087108 20220228 1 900000000000207008 900000000000073002 +33521000087100 20220228 1 900000000000207008 900000000000073002 +33531000087103 20220228 1 900000000000207008 900000000000073002 +33541000087109 20220228 1 900000000000207008 900000000000073002 +33551000087107 20220228 1 900000000000207008 900000000000073002 +33631000087102 20220228 1 900000000000207008 900000000000073002 +33641000087108 20220228 1 900000000000207008 900000000000073002 +33651000087106 20220228 1 900000000000207008 900000000000073002 +33661000087109 20220228 1 900000000000207008 900000000000073002 +33671000087100 20220228 1 900000000000207008 900000000000073002 +33891000087100 20220228 1 900000000000207008 900000000000073002 +33901000087104 20220228 1 900000000000207008 900000000000073002 +33911000087102 20220228 1 900000000000207008 900000000000073002 +33921000087105 20220228 1 900000000000207008 900000000000073002 +33931000087107 20220228 1 900000000000207008 900000000000073002 +34141000087102 20220331 1 900000000000207008 900000000000074008 +34151000087104 20220331 1 900000000000207008 900000000000074008 +35261000087106 20240501 1 900000000000207008 900000000000073002 +35271000087102 20240501 1 900000000000207008 900000000000073002 +35281000087100 20240501 1 900000000000207008 900000000000074008 +35291000087103 20240501 1 900000000000207008 900000000000073002 +35311000087102 20240501 1 900000000000207008 900000000000073002 +35321000087105 20240501 1 900000000000207008 900000000000073002 +38851000087103 20230531 1 900000000000207008 900000000000073002 +40371000087100 20230531 1 900000000000207008 900000000000073002 +42061000087105 20230531 1 900000000000207008 900000000000073002 +46121000146104 20241001 1 900000000000207008 900000000000073002 +50841000087100 20230901 1 900000000000207008 900000000000074008 +52041000087106 20240501 1 900000000000207008 900000000000073002 +57221000087106 20241001 1 900000000000207008 900000000000073002 +57481000052108 20220228 1 900000000000207008 900000000000073002 +57711000052109 20220228 1 900000000000207008 900000000000073002 +57721000052101 20220228 1 900000000000207008 900000000000074008 +57731000052104 20220228 1 900000000000207008 900000000000073002 +57741000052105 20220228 1 900000000000207008 900000000000073002 +57921000052103 20220228 1 900000000000207008 900000000000074008 +57931000052101 20220228 1 900000000000207008 900000000000073002 +142261000146106 20240501 1 900000000000207008 900000000000073002 +290211000146104 20240501 1 900000000000207008 900000000000073002 +429931000124105 20211031 1 900000000000207008 900000000000073002 +433781000124108 20230630 1 900000000000207008 900000000000073002 +433801000124107 20211031 1 900000000000207008 900000000000073002 +433871000124101 20211031 1 900000000000207008 900000000000073002 +433881000124103 20221231 1 900000000000207008 900000000000073002 +435541000124108 20230430 1 900000000000207008 900000000000073002 +454911000124104 20230630 1 900000000000207008 900000000000073002 +454951000124103 20200731 1 900000000000207008 900000000000073002 +461911000124106 20200731 1 900000000000207008 900000000000073002 +3040001000004107 20210731 1 900000000000207008 900000000000074008 +15650531000119105 20160131 1 900000000000207008 900000000000073002 +15650601000119102 20160131 1 900000000000207008 900000000000073002 +15650671000119107 20150731 1 900000000000207008 900000000000074008 +16209251000119104 20150731 1 900000000000207008 900000000000073002 +16209291000119109 20150731 1 900000000000207008 900000000000073002 +16209331000119103 20150731 1 900000000000207008 900000000000073002 +16209691000119106 20150731 1 900000000000207008 900000000000074008 +16209691000119106 20190731 1 900000000000207008 900000000000073002 +16209731000119104 20150731 1 900000000000207008 900000000000074008 +16209731000119104 20190731 1 900000000000207008 900000000000073002 +16209771000119101 20150731 1 900000000000207008 900000000000074008 +16209771000119101 20170731 1 900000000000207008 900000000000073002 +16209811000119101 20150731 1 900000000000207008 900000000000074008 +16209811000119101 20170731 1 900000000000207008 900000000000073002 +16209851000119100 20150731 1 900000000000207008 900000000000074008 +16209851000119100 20170731 1 900000000000207008 900000000000073002 +16209891000119105 20150731 1 900000000000207008 900000000000074008 +16209891000119105 20170731 1 900000000000207008 900000000000073002 +16209931000119102 20150731 1 900000000000207008 900000000000074008 +16209931000119102 20170731 1 900000000000207008 900000000000073002 +16210211000119107 20150731 1 900000000000207008 900000000000074008 +16210251000119108 20150731 1 900000000000207008 900000000000074008 +16210291000119103 20150731 1 900000000000207008 900000000000073002 +16210331000119109 20150731 1 900000000000207008 900000000000074008 +16210371000119107 20150731 1 900000000000207008 900000000000073002 +16210411000119108 20160131 1 900000000000207008 900000000000073002 +16210451000119109 20150731 1 900000000000207008 900000000000073002 +16210491000119104 20150731 1 900000000000207008 900000000000073002 +16210531000119104 20150731 1 900000000000207008 900000000000073002 +16210571000119101 20150731 1 900000000000207008 900000000000073002 +16210611000119105 20150731 1 900000000000207008 900000000000073002 +16210651000119106 20150731 1 900000000000207008 900000000000073002 +16210691000119101 20150731 1 900000000000207008 900000000000073002 +16210811000119106 20160131 1 900000000000207008 900000000000074008 +16210851000119107 20150731 1 900000000000207008 900000000000073002 +16210891000119102 20160131 1 900000000000207008 900000000000073002 +16210931000119105 20150731 1 900000000000207008 900000000000073002 +16210971000119108 20160131 1 900000000000207008 900000000000073002 +16211011000119108 20150731 1 900000000000207008 900000000000073002 +16211051000119109 20150731 1 900000000000207008 900000000000073002 +16211091000119104 20150731 1 900000000000207008 900000000000073002 +16211131000119102 20150731 1 900000000000207008 900000000000073002 +16211211000119102 20150731 1 900000000000207008 900000000000073002 +16211251000119101 20150731 1 900000000000207008 900000000000074008 +16211291000119106 20150731 1 900000000000207008 900000000000073002 +16211331000119100 20150731 1 900000000000207008 900000000000073002 +16211371000119102 20150731 1 900000000000207008 900000000000073002 +16211411000119101 20150731 1 900000000000207008 900000000000074008 +16211451000119100 20150731 1 900000000000207008 900000000000074008 +16211491000119105 20150731 1 900000000000207008 900000000000074008 +16211531000119105 20150731 1 900000000000207008 900000000000074008 +16211571000119108 20150731 1 900000000000207008 900000000000074008 +16211611000119104 20150731 1 900000000000207008 900000000000074008 +16211651000119103 20160131 1 900000000000207008 900000000000073002 +16211731000119101 20150731 1 900000000000207008 900000000000074008 +16211771000119103 20150731 1 900000000000207008 900000000000074008 +16212051000119104 20150731 1 900000000000207008 900000000000073002 +16212091000119109 20160131 1 900000000000207008 900000000000073002 +16212131000119106 20160131 1 900000000000207008 900000000000073002 +16212171000119109 20160131 1 900000000000207008 900000000000073002 +16212251000119107 20150731 1 900000000000207008 900000000000074008 +16212331000119108 20160131 1 900000000000207008 900000000000073002 +16212371000119106 20150731 1 900000000000207008 900000000000074008 +16212411000119107 20150731 1 900000000000207008 900000000000074008 +16212451000119108 20150731 1 900000000000207008 900000000000074008 +16212491000119103 20150731 1 900000000000207008 900000000000074008 +16212531000119103 20150731 1 900000000000207008 900000000000074008 +16212571000119100 20150731 1 900000000000207008 900000000000074008 +16212691000119100 20150731 1 900000000000207008 900000000000074008 +16212691000119100 20220630 1 900000000000207008 900000000000073002 +16212731000119107 20150731 1 900000000000207008 900000000000073002 +16212771000119105 20150731 1 900000000000207008 900000000000073002 +16212811000119105 20150731 1 900000000000207008 900000000000073002 +16212851000119106 20150731 1 900000000000207008 900000000000073002 +16212931000119109 20150731 1 900000000000207008 900000000000073002 +16212971000119107 20150731 1 900000000000207008 900000000000073002 +16213011000119107 20150731 1 900000000000207008 900000000000074008 +16213051000119108 20150731 1 900000000000207008 900000000000074008 +16213091000119103 20150731 1 900000000000207008 900000000000074008 +16213171000119103 20150731 1 900000000000207008 900000000000074008 +16213211000119101 20150731 1 900000000000207008 900000000000074008 +16213251000119100 20150731 1 900000000000207008 900000000000073002 +16213331000119104 20150731 1 900000000000207008 900000000000074008 +16213371000119101 20150731 1 900000000000207008 900000000000074008 +16213411000119100 20150731 1 900000000000207008 900000000000073002 +16213451000119104 20150731 1 900000000000207008 900000000000074008 +16213491000119109 20150731 1 900000000000207008 900000000000074008 +16213491000119109 20220630 1 900000000000207008 900000000000073002 +16213531000119109 20150731 1 900000000000207008 900000000000073002 +16213571000119107 20150731 1 900000000000207008 900000000000074008 +16213651000119102 20150731 1 900000000000207008 900000000000073002 +16213691000119107 20150731 1 900000000000207008 900000000000073002 +16213731000119100 20150731 1 900000000000207008 900000000000074008 +16213851000119101 20160131 1 900000000000207008 900000000000073002 +16213891000119106 20150731 1 900000000000207008 900000000000073002 +16213931000119103 20150731 1 900000000000207008 900000000000073002 +16214011000119105 20150731 1 900000000000207008 900000000000073002 +16214091000119101 20150731 1 900000000000207008 900000000000073002 +16214131000119104 20150731 1 900000000000207008 900000000000073002 +16214171000119101 20150731 1 900000000000207008 900000000000074008 +16214211000119104 20150731 1 900000000000207008 900000000000074008 +16214291000119108 20150731 1 900000000000207008 900000000000074008 +16214331000119102 20150731 1 900000000000207008 900000000000074008 +16214371000119104 20150731 1 900000000000207008 900000000000073002 +16214411000119103 20150731 1 900000000000207008 900000000000074008 +16214451000119102 20150731 1 900000000000207008 900000000000074008 +16214491000119107 20150731 1 900000000000207008 900000000000074008 +16214531000119107 20150731 1 900000000000207008 900000000000074008 +16214571000119105 20150731 1 900000000000207008 900000000000074008 +16214611000119101 20150731 1 900000000000207008 900000000000074008 +16214651000119100 20150731 1 900000000000207008 900000000000074008 +16214691000119105 20150731 1 900000000000207008 900000000000073002 +16214971000119103 20150731 1 900000000000207008 900000000000074008 +16215051000119107 20150731 1 900000000000207008 900000000000073002 +16215091000119102 20150731 1 900000000000207008 900000000000074008 +16215131000119100 20150731 1 900000000000207008 900000000000073002 +16215171000119102 20150731 1 900000000000207008 900000000000073002 +16215211000119100 20150731 1 900000000000207008 900000000000073002 +16215251000119104 20150731 1 900000000000207008 900000000000074008 +16215291000119109 20150731 1 900000000000207008 900000000000074008 +16215331000119103 20150731 1 900000000000207008 900000000000074008 +16215411000119104 20150731 1 900000000000207008 900000000000074008 +16215451000119103 20150731 1 900000000000207008 900000000000074008 +16215491000119108 20150731 1 900000000000207008 900000000000073002 +16215531000119108 20150731 1 900000000000207008 900000000000074008 +16215571000119106 20150731 1 900000000000207008 900000000000074008 +16215611000119102 20150731 1 900000000000207008 900000000000074008 +16215651000119101 20150731 1 900000000000207008 900000000000074008 +16215691000119106 20150731 1 900000000000207008 900000000000074008 +16215731000119104 20150731 1 900000000000207008 900000000000074008 +16215771000119101 20150731 1 900000000000207008 900000000000073002 +16215811000119101 20150731 1 900000000000207008 900000000000074008 +16215851000119100 20150731 1 900000000000207008 900000000000073002 +16215931000119102 20150731 1 900000000000207008 900000000000073002 +16216011000119104 20150731 1 900000000000207008 900000000000073002 +16216051000119103 20150731 1 900000000000207008 900000000000073002 +16216091000119108 20150731 1 900000000000207008 900000000000074008 +16216131000119105 20150731 1 900000000000207008 900000000000073002 +16216171000119108 20150731 1 900000000000207008 900000000000074008 +16216211000119105 20150731 1 900000000000207008 900000000000073002 +16216251000119106 20150731 1 900000000000207008 900000000000074008 +16216291000119101 20150731 1 900000000000207008 900000000000073002 +16216331000119107 20150731 1 900000000000207008 900000000000073002 +16216371000119105 20150731 1 900000000000207008 900000000000073002 +16216411000119106 20150731 1 900000000000207008 900000000000073002 +16216451000119107 20150731 1 900000000000207008 900000000000073002 +16216491000119102 20150731 1 900000000000207008 900000000000073002 +16216531000119102 20150731 1 900000000000207008 900000000000074008 +16216571000119104 20150731 1 900000000000207008 900000000000074008 +16216611000119108 20150731 1 900000000000207008 900000000000074008 +16219801000119102 20160131 1 900000000000207008 900000000000073002 +16220041000119107 20170131 1 900000000000207008 900000000000073002 +16220931000119104 20150731 1 900000000000207008 900000000000073002 +16220971000119101 20150731 1 900000000000207008 900000000000073002 +16221011000119101 20150731 1 900000000000207008 900000000000073002 +16221251000119108 20150731 1 900000000000207008 900000000000073002 +16221371000119107 20150731 1 900000000000207008 900000000000073002 +16221491000119104 20150731 1 900000000000207008 900000000000074008 +16221811000119106 20160131 1 900000000000207008 900000000000073002 +16221891000119102 20150731 1 900000000000207008 900000000000074008 +16222091000119100 20150731 1 900000000000207008 900000000000074008 +16222251000119102 20150731 1 900000000000207008 900000000000074008 +16222611000119100 20160131 1 900000000000207008 900000000000073002 +16222771000119104 20150731 1 900000000000207008 900000000000074008 +16222971000119102 20150731 1 900000000000207008 900000000000074008 +16223051000119101 20150731 1 900000000000207008 900000000000074008 +16223091000119106 20150731 1 900000000000207008 900000000000073002 +16223251000119109 20150731 1 900000000000207008 900000000000074008 +16223251000119109 20170731 1 900000000000207008 900000000000073002 +16223491000119100 20150731 1 900000000000207008 900000000000074008 +16223531000119100 20150731 1 900000000000207008 900000000000074008 +16223571000119102 20150731 1 900000000000207008 900000000000074008 +16223651000119107 20150731 1 900000000000207008 900000000000074008 +16223731000119109 20150731 1 900000000000207008 900000000000073002 +16223771000119107 20150731 1 900000000000207008 900000000000074008 +16223931000119106 20150731 1 900000000000207008 900000000000073002 +16223971000119109 20150731 1 900000000000207008 900000000000073002 +16224091000119108 20150731 1 900000000000207008 900000000000074008 +16224131000119105 20150731 1 900000000000207008 900000000000074008 +16224171000119108 20150731 1 900000000000207008 900000000000073002 +16224251000119106 20150731 1 900000000000207008 900000000000074008 +16224291000119101 20150731 1 900000000000207008 900000000000073002 +16224371000119105 20150731 1 900000000000207008 900000000000074008 +16235301000119101 20150731 1 900000000000207008 900000000000074008 +860958002 20200731 1 900000000000207008 900000000000073002 +860958002 20220531 0 900000000000207008 900000000000074008 +386725007 20030131 1 900000000000207008 900000000000074008 +386725007 20170131 1 900000000000207008 900000000000073002 +386725007 20200731 1 900000000000207008 900000000000074008 +430220009 20080731 1 900000000000207008 900000000000073002 +430220009 20240701 0 900000000000207008 900000000000074008 diff --git a/modules/terminology-service/sct-release/Full/Terminology/sct2_Description_Full_GermanyEdition_20241115.txt b/modules/terminology-service/sct-release/Full/Terminology/sct2_Description_Full_GermanyEdition_20241115.txt new file mode 100644 index 000000000..b0d3a7ef6 --- /dev/null +++ b/modules/terminology-service/sct-release/Full/Terminology/sct2_Description_Full_GermanyEdition_20241115.txt @@ -0,0 +1,9416 @@ +id effectiveTime active moduleId conceptId languageCode typeId term caseSignificanceId +744015 20020131 1 900000000000207008 127456000 en 900000000000013009 Specimen from breast 900000000000020002 +744015 20170731 1 900000000000207008 127456000 en 900000000000013009 Specimen from breast 900000000000448009 +745019 20020131 1 900000000000207008 127457009 en 900000000000013009 Tissue specimen from breast 900000000000020002 +745019 20170731 1 900000000000207008 127457009 en 900000000000013009 Tissue specimen from breast 900000000000448009 +746018 20020131 1 900000000000207008 127458004 en 900000000000013009 Specimen from lung 900000000000020002 +746018 20170731 1 900000000000207008 127458004 en 900000000000013009 Specimen from lung 900000000000448009 +747010 20020131 1 900000000000207008 127459007 en 900000000000013009 Specimen from pleura 900000000000020002 +747010 20170731 1 900000000000207008 127459007 en 900000000000013009 Specimen from pleura 900000000000448009 +748017 20020131 1 900000000000207008 127460002 en 900000000000013009 Tissue specimen from pleura 900000000000020002 +748017 20170731 1 900000000000207008 127460002 en 900000000000013009 Tissue specimen from pleura 900000000000448009 +749013 20020131 1 900000000000207008 127461003 en 900000000000013009 Specimen from pleura obtained by pleurectomy 900000000000020002 +749013 20170731 1 900000000000207008 127461003 en 900000000000013009 Specimen from pleura obtained by pleurectomy 900000000000448009 +750013 20020131 1 900000000000207008 127462005 en 900000000000013009 Specimen from heart 900000000000020002 +750013 20170731 1 900000000000207008 127462005 en 900000000000013009 Specimen from heart 900000000000448009 +751012 20020131 1 900000000000207008 127463000 en 900000000000013009 Specimen from esophagus 900000000000020002 +751012 20170731 1 900000000000207008 127463000 en 900000000000013009 Specimen from esophagus 900000000000448009 +752017 20020131 1 900000000000207008 127464006 en 900000000000013009 Tissue specimen from esophagus 900000000000020002 +752017 20170731 1 900000000000207008 127464006 en 900000000000013009 Tissue specimen from esophagus 900000000000448009 +753010 20020131 1 900000000000207008 127465007 en 900000000000013009 Specimen from gastrointestinal tract 900000000000020002 +753010 20170731 1 900000000000207008 127465007 en 900000000000013009 Specimen from gastrointestinal tract 900000000000448009 +754016 20020131 1 900000000000207008 127466008 en 900000000000013009 Tissue specimen from gastrointestinal tract 900000000000020002 +754016 20170731 1 900000000000207008 127466008 en 900000000000013009 Tissue specimen from gastrointestinal tract 900000000000448009 +755015 20020131 1 900000000000207008 127467004 en 900000000000013009 Specimen from ampulla of Vater 900000000000020002 +756019 20020131 1 900000000000207008 127468009 en 900000000000013009 Tissue specimen from ampulla of Vater 900000000000020002 +757011 20020131 1 900000000000207008 127469001 en 900000000000013009 Specimen from pancreas 900000000000020002 +757011 20170731 1 900000000000207008 127469001 en 900000000000013009 Specimen from pancreas 900000000000448009 +758018 20020131 1 900000000000207008 127470000 en 900000000000013009 Tissue specimen from pancreas 900000000000020002 +758018 20170731 1 900000000000207008 127470000 en 900000000000013009 Tissue specimen from pancreas 900000000000448009 +759014 20020131 1 900000000000207008 127471001 en 900000000000013009 Specimen from urinary tract 900000000000020002 +759014 20170731 1 900000000000207008 127471001 en 900000000000013009 Specimen from urinary tract 900000000000448009 +760016 20020131 1 900000000000207008 127472008 en 900000000000013009 Tissue specimen from urinary tract 900000000000020002 +760016 20170731 1 900000000000207008 127472008 en 900000000000013009 Tissue specimen from urinary tract 900000000000448009 +761017 20020131 1 900000000000207008 127473003 en 900000000000013009 Specimen from kidney 900000000000020002 +761017 20170731 1 900000000000207008 127473003 en 900000000000013009 Specimen from kidney 900000000000448009 +762012 20020131 1 900000000000207008 127474009 en 900000000000013009 Tissue specimen from kidney 900000000000020002 +762012 20170731 1 900000000000207008 127474009 en 900000000000013009 Tissue specimen from kidney 900000000000448009 +763019 20020131 1 900000000000207008 127475005 en 900000000000013009 Tissue specimen from testis 900000000000020002 +763019 20170731 1 900000000000207008 127475005 en 900000000000013009 Tissue specimen from testis 900000000000448009 +764013 20020131 1 900000000000207008 127476006 en 900000000000013009 Specimen from fallopian tube 900000000000020002 +764013 20170731 1 900000000000207008 127476006 en 900000000000013009 Specimen from fallopian tube 900000000000448009 +766010 20020131 1 900000000000207008 127478007 en 900000000000013009 Tissue specimen from thyroid gland 900000000000020002 +766010 20170731 1 900000000000207008 127478007 en 900000000000013009 Tissue specimen from thyroid gland 900000000000448009 +767018 20020131 1 900000000000207008 127479004 en 900000000000013009 Specimen from uterus 900000000000020002 +767018 20170731 1 900000000000207008 127479004 en 900000000000013009 Specimen from uterus 900000000000448009 +768011 20020131 1 900000000000207008 127480001 en 900000000000013009 Tissue specimen from uterus 900000000000020002 +768011 20170731 1 900000000000207008 127480001 en 900000000000013009 Tissue specimen from uterus 900000000000448009 +769015 20020131 1 900000000000207008 127481002 en 900000000000013009 Tissue specimen from uterine cervix 900000000000020002 +769015 20170731 1 900000000000207008 127481002 en 900000000000013009 Tissue specimen from uterine cervix 900000000000448009 +770019 20020131 1 900000000000207008 127482009 en 900000000000013009 Tissue specimen from ovary 900000000000020002 +770019 20170731 1 900000000000207008 127482009 en 900000000000013009 Tissue specimen from ovary 900000000000448009 +771015 20020131 1 900000000000207008 127483004 en 900000000000013009 Tissue specimen from fallopian tube 900000000000020002 +771015 20170731 1 900000000000207008 127483004 en 900000000000013009 Tissue specimen from fallopian tube 900000000000448009 +67549014 20020131 1 900000000000207008 40511003 en 900000000000013009 Eluate 900000000000020002 +67549014 20170731 1 900000000000207008 40511003 en 900000000000013009 Eluate 900000000000448009 +80755012 20020131 1 900000000000207008 48469005 en 900000000000013009 Cytologic material 900000000000020002 +80755012 20170731 1 900000000000207008 48469005 en 900000000000013009 Cytologic material 900000000000448009 +80756013 20020131 0 900000000000207008 48469005 en 900000000000013009 Cytologic material, NOS 900000000000020002 +80757016 20020131 0 900000000000207008 48469005 en 900000000000013009 Cytologic scraping, NOS 900000000000020002 +175795015 20020131 1 900000000000207008 110893002 en 900000000000013009 Cutaneous cytologic material 900000000000020002 +175795015 20170731 1 900000000000207008 110893002 en 900000000000013009 Cutaneous cytologic material 900000000000448009 +175797011 20020131 1 900000000000207008 110894008 en 900000000000013009 Mammary cytologic material 900000000000020002 +175797011 20170731 1 900000000000207008 110894008 en 900000000000013009 Mammary cytologic material 900000000000448009 +175800013 20020131 1 900000000000207008 110896005 en 900000000000013009 Subcutaneous cytologic material 900000000000020002 +175800013 20170731 1 900000000000207008 110896005 en 900000000000013009 Subcutaneous cytologic material 900000000000448009 +175801012 20020131 1 900000000000207008 110897001 en 900000000000013009 Bone marrow cytological material 900000000000020002 +175801012 20170731 1 900000000000207008 110897001 en 900000000000013009 Bone marrow cytological material 900000000000448009 +175802017 20020131 1 900000000000207008 110898006 en 900000000000013009 Lymph node cytologic material 900000000000020002 +175802017 20170731 1 900000000000207008 110898006 en 900000000000013009 Lymph node cytologic material 900000000000448009 +175803010 20020131 1 900000000000207008 110899003 en 900000000000013009 Breast nipple cytologic material 900000000000020002 +175803010 20170731 1 900000000000207008 110899003 en 900000000000013009 Breast nipple cytologic material 900000000000448009 +175804016 20020131 1 900000000000207008 110900008 en 900000000000013009 Skeletal muscle cytologic material 900000000000020002 +175804016 20170731 1 900000000000207008 110900008 en 900000000000013009 Skeletal muscle cytologic material 900000000000448009 +175805015 20020131 1 900000000000207008 110901007 en 900000000000013009 Bone cytologic material 900000000000020002 +175805015 20170731 1 900000000000207008 110901007 en 900000000000013009 Bone cytologic material 900000000000448009 +175806019 20020131 1 900000000000207008 110902000 en 900000000000013009 Upper respiratory tract cytologic material 900000000000020002 +175806019 20170731 1 900000000000207008 110902000 en 900000000000013009 Upper respiratory tract cytologic material 900000000000448009 +175807011 20020131 1 900000000000207008 110903005 en 900000000000013009 Nasal cytologic material 900000000000020002 +175807011 20170731 1 900000000000207008 110903005 en 900000000000013009 Nasal cytologic material 900000000000448009 +175808018 20020131 1 900000000000207008 110904004 en 900000000000013009 Accessory sinus cytologic material 900000000000020002 +175808018 20170731 1 900000000000207008 110904004 en 900000000000013009 Accessory sinus cytologic material 900000000000448009 +175809014 20020131 1 900000000000207008 110905003 en 900000000000013009 Nasopharyngeal cytologic material 900000000000020002 +175809014 20170731 1 900000000000207008 110905003 en 900000000000013009 Nasopharyngeal cytologic material 900000000000448009 +175810016 20020131 1 900000000000207008 110906002 en 900000000000013009 Lower respiratory tract cytologic material 900000000000020002 +175810016 20170731 1 900000000000207008 110906002 en 900000000000013009 Lower respiratory tract cytologic material 900000000000448009 +175811017 20020131 1 900000000000207008 110907006 en 900000000000013009 Epiglottic cytologic material 900000000000020002 +175811017 20170731 1 900000000000207008 110907006 en 900000000000013009 Epiglottic cytologic material 900000000000448009 +175812012 20020131 1 900000000000207008 110908001 en 900000000000013009 Laryngeal cytologic material 900000000000020002 +175812012 20170731 1 900000000000207008 110908001 en 900000000000013009 Laryngeal cytologic material 900000000000448009 +175813019 20020131 1 900000000000207008 110909009 en 900000000000013009 Vocal cord cytologic material 900000000000020002 +175813019 20170731 1 900000000000207008 110909009 en 900000000000013009 Vocal cord cytologic material 900000000000448009 +175814013 20020131 1 900000000000207008 110910004 en 900000000000013009 Lung cytologic material 900000000000020002 +175814013 20170731 1 900000000000207008 110910004 en 900000000000013009 Lung cytologic material 900000000000448009 +175816010 20020131 1 900000000000207008 110912007 en 900000000000013009 Bronchial cytologic material 900000000000020002 +175816010 20170731 1 900000000000207008 110912007 en 900000000000013009 Bronchial cytologic material 900000000000448009 +175817018 20020131 1 900000000000207008 110912007 en 900000000000013009 Bronchial brushing cytologic material 900000000000020002 +175817018 20170731 1 900000000000207008 110912007 en 900000000000013009 Bronchial brushing cytologic material 900000000000448009 +175817018 20190131 0 900000000000207008 110912007 en 900000000000013009 Bronchial brushing cytologic material 900000000000448009 +175818011 20020131 1 900000000000207008 110912007 en 900000000000013009 Bronchial washing cytologic material 900000000000020002 +175818011 20170731 1 900000000000207008 110912007 en 900000000000013009 Bronchial washing cytologic material 900000000000448009 +175818011 20190131 0 900000000000207008 110912007 en 900000000000013009 Bronchial washing cytologic material 900000000000448009 +175819015 20020131 1 900000000000207008 110913002 en 900000000000013009 Pleural cytologic material 900000000000020002 +175819015 20170731 1 900000000000207008 110913002 en 900000000000013009 Pleural cytologic material 900000000000448009 +175820014 20020131 1 900000000000207008 110914008 en 900000000000013009 Right upper lobe bronchus cytologic material 900000000000020002 +175820014 20170731 1 900000000000207008 110914008 en 900000000000013009 Right upper lobe bronchus cytologic material 900000000000448009 +175821013 20020131 1 900000000000207008 110915009 en 900000000000013009 Right pleural cytologic material 900000000000020002 +175821013 20170731 1 900000000000207008 110915009 en 900000000000013009 Right pleural cytologic material 900000000000448009 +175822018 20020131 1 900000000000207008 110916005 en 900000000000013009 Right lower lobe bronchus cytologic material 900000000000020002 +175822018 20170731 1 900000000000207008 110916005 en 900000000000013009 Right lower lobe bronchus cytologic material 900000000000448009 +175823011 20020131 1 900000000000207008 110917001 en 900000000000013009 Left pleural cytologic material 900000000000020002 +175823011 20170731 1 900000000000207008 110917001 en 900000000000013009 Left pleural cytologic material 900000000000448009 +175824017 20020131 1 900000000000207008 110918006 en 900000000000013009 Left upper lobe bronchus cytologic material 900000000000020002 +175824017 20170731 1 900000000000207008 110918006 en 900000000000013009 Left upper lobe bronchus cytologic material 900000000000448009 +175825016 20020131 1 900000000000207008 110919003 en 900000000000013009 Pericardial cytologic material 900000000000020002 +175825016 20170731 1 900000000000207008 110919003 en 900000000000013009 Pericardial cytologic material 900000000000448009 +175826015 20020131 1 900000000000207008 110920009 en 900000000000013009 Tracheal cytologic material 900000000000020002 +175826015 20170731 1 900000000000207008 110920009 en 900000000000013009 Tracheal cytologic material 900000000000448009 +175827012 20020131 1 900000000000207008 110921008 en 900000000000013009 Right middle lobe bronchus cytologic material 900000000000020002 +175827012 20170731 1 900000000000207008 110921008 en 900000000000013009 Right middle lobe bronchus cytologic material 900000000000448009 +175828019 20020131 1 900000000000207008 110922001 en 900000000000013009 Left bronchial cytologic material 900000000000020002 +175828019 20170731 1 900000000000207008 110922001 en 900000000000013009 Left bronchial cytologic material 900000000000448009 +175829010 20020131 1 900000000000207008 110923006 en 900000000000013009 Left lower lobe bronchus cytologic material 900000000000020002 +175829010 20170731 1 900000000000207008 110923006 en 900000000000013009 Left lower lobe bronchus cytologic material 900000000000448009 +175830017 20020131 1 900000000000207008 110924000 en 900000000000013009 Right bronchial cytologic material 900000000000020002 +175830017 20170731 1 900000000000207008 110924000 en 900000000000013009 Right bronchial cytologic material 900000000000448009 +175831018 20020131 1 900000000000207008 110925004 en 900000000000013009 Cytologic material of mouth 900000000000020002 +175831018 20170731 1 900000000000207008 110925004 en 900000000000013009 Cytologic material of mouth 900000000000448009 +175832013 20020131 1 900000000000207008 110926003 en 900000000000013009 Gallbladder cytologic material 900000000000020002 +175832013 20170731 1 900000000000207008 110926003 en 900000000000013009 Gallbladder cytologic material 900000000000448009 +175833015 20020131 1 900000000000207008 110927007 en 900000000000013009 Liver cytologic material 900000000000020002 +175833015 20170731 1 900000000000207008 110927007 en 900000000000013009 Liver cytologic material 900000000000448009 +175834014 20020131 1 900000000000207008 110928002 en 900000000000013009 Bile duct cytologic material 900000000000020002 +175834014 20170731 1 900000000000207008 110928002 en 900000000000013009 Bile duct cytologic material 900000000000448009 +175835010 20020131 1 900000000000207008 110929005 en 900000000000013009 Pancreatic cytologic material 900000000000020002 +175835010 20170731 1 900000000000207008 110929005 en 900000000000013009 Pancreatic cytologic material 900000000000448009 +175836011 20020131 1 900000000000207008 110930000 en 900000000000013009 Salivary gland cytologic material 900000000000020002 +175836011 20170731 1 900000000000207008 110930000 en 900000000000013009 Salivary gland cytologic material 900000000000448009 +175837019 20020131 1 900000000000207008 110931001 en 900000000000013009 Penis cytologic material 900000000000020002 +175837019 20170731 1 900000000000207008 110931001 en 900000000000013009 Penis cytologic material 900000000000448009 +175838012 20020131 1 900000000000207008 110932008 en 900000000000013009 Parotid gland cytologic material 900000000000020002 +175838012 20170731 1 900000000000207008 110932008 en 900000000000013009 Parotid gland cytologic material 900000000000448009 +175839016 20020131 1 900000000000207008 110933003 en 900000000000013009 Prostate cytologic material 900000000000020002 +175839016 20170731 1 900000000000207008 110933003 en 900000000000013009 Prostate cytologic material 900000000000448009 +175840019 20020131 1 900000000000207008 110934009 en 900000000000013009 Pharyngeal cytologic material 900000000000020002 +175840019 20170731 1 900000000000207008 110934009 en 900000000000013009 Pharyngeal cytologic material 900000000000448009 +175841015 20020131 1 900000000000207008 110935005 en 900000000000013009 Testis cytologic material 900000000000020002 +175841015 20170731 1 900000000000207008 110935005 en 900000000000013009 Testis cytologic material 900000000000448009 +175842010 20020131 1 900000000000207008 110936006 en 900000000000013009 Gastric cytologic material 900000000000020002 +175842010 20170731 1 900000000000207008 110936006 en 900000000000013009 Gastric cytologic material 900000000000448009 +175843017 20020131 1 900000000000207008 110937002 en 900000000000013009 Seminal vesicle cytologic material 900000000000020002 +175843017 20170731 1 900000000000207008 110937002 en 900000000000013009 Seminal vesicle cytologic material 900000000000448009 +175844011 20020131 1 900000000000207008 110938007 en 900000000000013009 Duodenal cytologic material 900000000000020002 +175844011 20170731 1 900000000000207008 110938007 en 900000000000013009 Duodenal cytologic material 900000000000448009 +175845012 20020131 1 900000000000207008 110939004 en 900000000000013009 Vas deferens cytologic material 900000000000020002 +175845012 20170731 1 900000000000207008 110939004 en 900000000000013009 Vas deferens cytologic material 900000000000448009 +175846013 20020131 1 900000000000207008 110940002 en 900000000000013009 Ileal cytologic material 900000000000020002 +175846013 20170731 1 900000000000207008 110940002 en 900000000000013009 Ileal cytologic material 900000000000448009 +175847016 20020131 1 900000000000207008 110941003 en 900000000000013009 Epididymis cytologic material 900000000000020002 +175847016 20170731 1 900000000000207008 110941003 en 900000000000013009 Epididymis cytologic material 900000000000448009 +175848014 20020131 1 900000000000207008 110942005 en 900000000000013009 Rectal cytologic material 900000000000020002 +175848014 20170731 1 900000000000207008 110942005 en 900000000000013009 Rectal cytologic material 900000000000448009 +175849018 20020131 1 900000000000207008 110943000 en 900000000000013009 Renal pelvis cytologic material 900000000000020002 +175849018 20170731 1 900000000000207008 110943000 en 900000000000013009 Renal pelvis cytologic material 900000000000448009 +175850018 20020131 1 900000000000207008 110944006 en 900000000000013009 Peritoneal cytologic material 900000000000020002 +175850018 20170731 1 900000000000207008 110944006 en 900000000000013009 Peritoneal cytologic material 900000000000448009 +175851019 20020131 1 900000000000207008 110945007 en 900000000000013009 Vulva cytologic material 900000000000020002 +175851019 20170731 1 900000000000207008 110945007 en 900000000000013009 Vulva cytologic material 900000000000448009 +175852014 20020131 1 900000000000207008 110946008 en 900000000000013009 Upper urinary tract cytologic material 900000000000020002 +175852014 20170731 1 900000000000207008 110946008 en 900000000000013009 Upper urinary tract cytologic material 900000000000448009 +175853016 20020131 1 900000000000207008 110947004 en 900000000000013009 Vagina cytologic material 900000000000020002 +175853016 20170731 1 900000000000207008 110947004 en 900000000000013009 Vagina cytologic material 900000000000448009 +175854010 20020131 1 900000000000207008 110948009 en 900000000000013009 Kidney cytologic material 900000000000020002 +175854010 20170731 1 900000000000207008 110948009 en 900000000000013009 Kidney cytologic material 900000000000448009 +175855011 20020131 1 900000000000207008 110949001 en 900000000000013009 Cervix cytologic material 900000000000020002 +175855011 20170731 1 900000000000207008 110949001 en 900000000000013009 Cervix cytologic material 900000000000448009 +175856012 20020131 1 900000000000207008 110950001 en 900000000000013009 Urinary bladder cytologic material 900000000000020002 +175856012 20170731 1 900000000000207008 110950001 en 900000000000013009 Urinary bladder cytologic material 900000000000448009 +175857015 20020131 1 900000000000207008 110951002 en 900000000000013009 Endocervical cytologic material 900000000000020002 +175857015 20170731 1 900000000000207008 110951002 en 900000000000013009 Endocervical cytologic material 900000000000448009 +175858013 20020131 1 900000000000207008 110952009 en 900000000000013009 Submaxillary gland cytologic material 900000000000020002 +175858013 20170731 1 900000000000207008 110952009 en 900000000000013009 Submaxillary gland cytologic material 900000000000448009 +175859017 20020131 1 900000000000207008 110953004 en 900000000000013009 Vaginal-cervical cytologic material 900000000000020002 +175859017 20090131 0 900000000000207008 110953004 en 900000000000013009 Vaginal-cervical cytologic material 900000000000020002 +175860010 20020131 1 900000000000207008 110954005 en 900000000000013009 Small intestine cytologic material 900000000000020002 +175860010 20170731 1 900000000000207008 110954005 en 900000000000013009 Small intestine cytologic material 900000000000448009 +175861014 20020131 1 900000000000207008 110955006 en 900000000000013009 Endometrium cytologic material 900000000000020002 +175861014 20170731 1 900000000000207008 110955006 en 900000000000013009 Endometrium cytologic material 900000000000448009 +175862019 20020131 1 900000000000207008 110956007 en 900000000000013009 Colonic cytologic material 900000000000020002 +175862019 20170731 1 900000000000207008 110956007 en 900000000000013009 Colonic cytologic material 900000000000448009 +175863012 20020131 1 900000000000207008 110957003 en 900000000000013009 Fallopian tube cytologic material 900000000000020002 +175863012 20170731 1 900000000000207008 110957003 en 900000000000013009 Fallopian tube cytologic material 900000000000448009 +175864018 20020131 1 900000000000207008 110958008 en 900000000000013009 Urinary tract cytologic material 900000000000020002 +175864018 20170731 1 900000000000207008 110958008 en 900000000000013009 Urinary tract cytologic material 900000000000448009 +175865017 20020131 1 900000000000207008 110959000 en 900000000000013009 Placenta cytologic material 900000000000020002 +175865017 20170731 1 900000000000207008 110959000 en 900000000000013009 Placenta cytologic material 900000000000448009 +175866016 20020131 1 900000000000207008 110960005 en 900000000000013009 Ureter cytologic material 900000000000020002 +175866016 20170731 1 900000000000207008 110960005 en 900000000000013009 Ureter cytologic material 900000000000448009 +175867013 20020131 1 900000000000207008 110961009 en 900000000000013009 Chorion cytologic material 900000000000020002 +175867013 20170731 1 900000000000207008 110961009 en 900000000000013009 Chorion cytologic material 900000000000448009 +175868015 20020131 1 900000000000207008 110962002 en 900000000000013009 Esophageal cytologic material 900000000000020002 +175868015 20170731 1 900000000000207008 110962002 en 900000000000013009 Esophageal cytologic material 900000000000448009 +175869011 20020131 1 900000000000207008 110963007 en 900000000000013009 Anal cytologic material 900000000000020002 +175869011 20170731 1 900000000000207008 110963007 en 900000000000013009 Anal cytologic material 900000000000448009 +175870012 20020131 1 900000000000207008 110964001 en 900000000000013009 Lower urinary tract cytologic material 900000000000020002 +175870012 20170731 1 900000000000207008 110964001 en 900000000000013009 Lower urinary tract cytologic material 900000000000448009 +175871011 20020131 1 900000000000207008 110965000 en 900000000000013009 Urethra cytologic material 900000000000020002 +175871011 20170731 1 900000000000207008 110965000 en 900000000000013009 Urethra cytologic material 900000000000448009 +175872016 20020131 1 900000000000207008 110966004 en 900000000000013009 Jejunal cytologic material 900000000000020002 +175872016 20170731 1 900000000000207008 110966004 en 900000000000013009 Jejunal cytologic material 900000000000448009 +175873014 20020131 1 900000000000207008 110967008 en 900000000000013009 Amnion cytologic material 900000000000020002 +175873014 20170731 1 900000000000207008 110967008 en 900000000000013009 Amnion cytologic material 900000000000448009 +175874015 20020131 1 900000000000207008 110968003 en 900000000000013009 Fetal cytologic material 900000000000020002 +175874015 20170731 1 900000000000207008 110968003 en 900000000000013009 Fetal cytologic material 900000000000448009 +175875019 20020131 1 900000000000207008 110969006 en 900000000000013009 Cerebrospinal fluid cytologic material 900000000000020002 +175875019 20170731 1 900000000000207008 110969006 en 900000000000013009 Cerebrospinal fluid cytologic material 900000000000448009 +175876018 20020131 1 900000000000207008 110970007 en 900000000000013009 Cerebroventricular fluid cytologic material 900000000000020002 +175876018 20170731 1 900000000000207008 110970007 en 900000000000013009 Cerebroventricular fluid cytologic material 900000000000448009 +180791016 20020131 1 900000000000207008 119294007 en 900000000000013009 Dried blood specimen 900000000000020002 +180791016 20170731 1 900000000000207008 119294007 en 900000000000013009 Dried blood specimen 900000000000448009 +180792011 20020131 1 900000000000207008 119295008 en 900000000000013009 Specimen obtained by aspiration 900000000000020002 +180792011 20170731 1 900000000000207008 119295008 en 900000000000013009 Specimen obtained by aspiration 900000000000448009 +180795013 20020131 1 900000000000207008 119297000 en 900000000000013009 Blood specimen 900000000000020002 +180795013 20170731 1 900000000000207008 119297000 en 900000000000013009 Blood specimen 900000000000448009 +180796014 20020131 1 900000000000207008 122551003 en 900000000000013009 Peripheral blood specimen 900000000000020002 +180796014 20170731 1 900000000000207008 122551003 en 900000000000013009 Peripheral blood specimen 900000000000448009 +180798010 20020131 1 900000000000207008 122553000 en 900000000000013009 Blood specimen obtained from umbilicus 900000000000020002 +180798010 20170731 1 900000000000207008 122553000 en 900000000000013009 Blood specimen obtained from umbilicus 900000000000448009 +180799019 20020131 1 900000000000207008 122554006 en 900000000000013009 Capillary blood specimen 900000000000020002 +180799019 20170731 1 900000000000207008 122554006 en 900000000000013009 Capillary blood specimen 900000000000448009 +180800015 20020131 1 900000000000207008 122555007 en 900000000000013009 Venous blood specimen 900000000000020002 +180800015 20170731 1 900000000000207008 122555007 en 900000000000013009 Venous blood specimen 900000000000448009 +180801016 20020131 1 900000000000207008 122556008 en 900000000000013009 Cord blood specimen 900000000000020002 +180801016 20170731 1 900000000000207008 122556008 en 900000000000013009 Cord blood specimen 900000000000448009 +180802011 20020131 1 900000000000207008 122557004 en 900000000000013009 Cord blood specimen from fetus 900000000000020002 +180802011 20170731 1 900000000000207008 122557004 en 900000000000013009 Cord blood specimen from fetus 900000000000448009 +180803018 20020131 1 900000000000207008 119298005 en 900000000000013009 Mixed venous blood specimen 900000000000020002 +180803018 20170731 1 900000000000207008 119298005 en 900000000000013009 Mixed venous blood specimen 900000000000448009 +180804012 20020131 1 900000000000207008 122558009 en 900000000000013009 Blood specimen from blood product 900000000000020002 +180804012 20170731 1 900000000000207008 122558009 en 900000000000013009 Blood specimen from blood product 900000000000448009 +180805013 20020131 1 900000000000207008 122559001 en 900000000000013009 Blood specimen from control 900000000000020002 +180805013 20170731 1 900000000000207008 122559001 en 900000000000013009 Blood specimen from control 900000000000448009 +180806014 20020131 1 900000000000207008 122560006 en 900000000000013009 Blood specimen from donor 900000000000020002 +180806014 20170731 1 900000000000207008 122560006 en 900000000000013009 Blood specimen from donor 900000000000448009 +180807017 20020131 1 900000000000207008 122561005 en 900000000000013009 Blood specimen from patient 900000000000020002 +180807017 20170731 1 900000000000207008 122561005 en 900000000000013009 Blood specimen from patient 900000000000448009 +180808010 20020131 1 900000000000207008 122562003 en 900000000000013009 Blood specimen from newborn 900000000000020002 +180808010 20170731 1 900000000000207008 122562003 en 900000000000013009 Blood specimen from newborn 900000000000448009 +180809019 20020131 1 900000000000207008 119299002 en 900000000000013009 Specimen from patient 900000000000020002 +180809019 20170731 1 900000000000207008 119299002 en 900000000000013009 Specimen from patient 900000000000448009 +180810012 20020131 1 900000000000207008 119300005 en 900000000000013009 Specimen from blood product 900000000000020002 +180810012 20170731 1 900000000000207008 119300005 en 900000000000013009 Specimen from blood product 900000000000448009 +180811011 20020131 1 900000000000207008 119301009 en 900000000000013009 Plant specimen 900000000000020002 +180811011 20170731 1 900000000000207008 119301009 en 900000000000013009 Plant specimen 900000000000448009 +180812016 20020131 1 900000000000207008 119302002 en 900000000000013009 Mushroom specimen 900000000000020002 +180812016 20170731 1 900000000000207008 119302002 en 900000000000013009 Mushroom specimen 900000000000448009 +180813014 20020131 1 900000000000207008 119303007 en 900000000000013009 Microbial isolate specimen 900000000000020002 +180813014 20170731 1 900000000000207008 119303007 en 900000000000013009 Microbial isolate specimen 900000000000448009 +180814015 20020131 1 900000000000207008 119304001 en 900000000000013009 Blood bag specimen 900000000000020002 +180814015 20170731 1 900000000000207008 119304001 en 900000000000013009 Blood bag specimen 900000000000448009 +180814015 20210131 0 900000000000207008 119304001 en 900000000000013009 Blood bag specimen 900000000000448009 +180815019 20020131 1 900000000000207008 122563008 en 900000000000013009 Blood bag specimen, from patient 900000000000020002 +180815019 20170731 1 900000000000207008 122563008 en 900000000000013009 Blood bag specimen, from patient 900000000000448009 +180815019 20210131 0 900000000000207008 122563008 en 900000000000013009 Blood bag specimen, from patient 900000000000448009 +180816018 20020131 1 900000000000207008 122564002 en 900000000000013009 Blood bag specimen, from blood product 900000000000020002 +180816018 20170731 1 900000000000207008 122564002 en 900000000000013009 Blood bag specimen, from blood product 900000000000448009 +180816018 20210131 0 900000000000207008 122564002 en 900000000000013009 Blood bag specimen, from blood product 900000000000448009 +180817010 20020131 1 900000000000207008 119305000 en 900000000000013009 Plasma bag specimen 900000000000020002 +180817010 20170731 1 900000000000207008 119305000 en 900000000000013009 Plasma bag specimen 900000000000448009 +180817010 20210131 0 900000000000207008 119305000 en 900000000000013009 Plasma bag specimen 900000000000448009 +180819013 20020131 1 900000000000207008 119307008 en 900000000000013009 Endotracheal tube specimen 900000000000020002 +180819013 20170731 1 900000000000207008 119307008 en 900000000000013009 Endotracheal tube specimen 900000000000448009 +180820019 20020131 1 900000000000207008 119308003 en 900000000000013009 Cannula specimen 900000000000020002 +180820019 20170731 1 900000000000207008 119308003 en 900000000000013009 Cannula specimen 900000000000448009 +180820019 20210131 0 900000000000207008 119308003 en 900000000000013009 Cannula specimen 900000000000448009 +180821015 20020131 1 900000000000207008 119309006 en 900000000000013009 Arterial line specimen 900000000000020002 +180821015 20170731 1 900000000000207008 119309006 en 900000000000013009 Arterial line specimen 900000000000448009 +180821015 20210131 0 900000000000207008 119309006 en 900000000000013009 Arterial line specimen 900000000000448009 +180823017 20020131 1 900000000000207008 119311002 en 900000000000013009 Catheter specimen 900000000000020002 +180823017 20170731 1 900000000000207008 119311002 en 900000000000013009 Catheter specimen 900000000000448009 +180823017 20210131 0 900000000000207008 119311002 en 900000000000013009 Catheter specimen 900000000000448009 +180824011 20020131 1 900000000000207008 119312009 en 900000000000013009 Catheter tip specimen 900000000000020002 +180824011 20170731 1 900000000000207008 119312009 en 900000000000013009 Catheter tip specimen 900000000000448009 +180824011 20210131 0 900000000000207008 119312009 en 900000000000013009 Catheter tip specimen 900000000000448009 +180825012 20020131 1 900000000000207008 122565001 en 900000000000013009 Urinary catheter specimen 900000000000020002 +180825012 20170731 1 900000000000207008 122565001 en 900000000000013009 Urinary catheter specimen 900000000000448009 +180826013 20020131 1 900000000000207008 119313004 en 900000000000013009 Implantable venous catheter specimen 900000000000020002 +180826013 20170731 1 900000000000207008 119313004 en 900000000000013009 Implantable venous catheter specimen 900000000000448009 +180826013 20210131 0 900000000000207008 119313004 en 900000000000013009 Implantable venous catheter specimen 900000000000448009 +180827016 20020131 1 900000000000207008 119314005 en 900000000000013009 Electrode specimen 900000000000020002 +180827016 20170731 1 900000000000207008 119314005 en 900000000000013009 Electrode specimen 900000000000448009 +180827016 20210131 0 900000000000207008 119314005 en 900000000000013009 Electrode specimen 900000000000448009 +180829018 20020131 1 900000000000207008 122566000 en 900000000000013009 Fluid specimen from wound 900000000000020002 +180829018 20170731 1 900000000000207008 122566000 en 900000000000013009 Fluid specimen from wound 900000000000448009 +180830011 20020131 1 900000000000207008 119316007 en 900000000000013009 Non-biological fluid specimen 900000000000020002 +180830011 20170731 1 900000000000207008 119316007 en 900000000000013009 Non-biological fluid specimen 900000000000448009 +180831010 20020131 1 900000000000207008 119317003 en 900000000000013009 Gaseous material specimen 900000000000020002 +180831010 20170731 1 900000000000207008 119317003 en 900000000000013009 Gaseous material specimen 900000000000448009 +180832015 20020131 1 900000000000207008 119318008 en 900000000000013009 Water specimen 900000000000020002 +180832015 20170731 1 900000000000207008 119318008 en 900000000000013009 Water specimen 900000000000448009 +180833013 20020131 1 900000000000207008 119319000 en 900000000000013009 Drug specimen 900000000000020002 +180833013 20170731 1 900000000000207008 119319000 en 900000000000013009 Drug specimen 900000000000448009 +180834019 20020131 1 900000000000207008 119320006 en 900000000000013009 Food specimen 900000000000020002 +180834019 20170731 1 900000000000207008 119320006 en 900000000000013009 Food specimen 900000000000448009 +180835018 20020131 1 900000000000207008 119321005 en 900000000000013009 Milk specimen 900000000000020002 +180835018 20170731 1 900000000000207008 119321005 en 900000000000013009 Milk specimen 900000000000448009 +180837014 20020131 1 900000000000207008 122567009 en 900000000000013009 Urine sediment specimen 900000000000020002 +180837014 20170731 1 900000000000207008 122567009 en 900000000000013009 Urine sediment specimen 900000000000448009 +180838016 20020131 1 900000000000207008 122568004 en 900000000000013009 Exudate specimen from wound 900000000000020002 +180838016 20170731 1 900000000000207008 122568004 en 900000000000013009 Exudate specimen from wound 900000000000448009 +180839012 20020131 1 900000000000207008 119323008 en 900000000000013009 Pus specimen 900000000000020002 +180839012 20170731 1 900000000000207008 119323008 en 900000000000013009 Pus specimen 900000000000448009 +180840014 20020131 1 900000000000207008 119324002 en 900000000000013009 Specimen of unknown material 900000000000020002 +180840014 20170731 1 900000000000207008 119324002 en 900000000000013009 Specimen of unknown material 900000000000448009 +180841013 20020131 1 900000000000207008 119325001 en 900000000000013009 Skin specimen 900000000000020002 +180841013 20170731 1 900000000000207008 119325001 en 900000000000013009 Skin specimen 900000000000448009 +180842018 20020131 1 900000000000207008 122569007 en 900000000000013009 Sweat specimen 900000000000020002 +180842018 20170731 1 900000000000207008 122569007 en 900000000000013009 Sweat specimen 900000000000448009 +180843011 20020131 1 900000000000207008 119326000 en 900000000000013009 Hair specimen 900000000000020002 +180843011 20170731 1 900000000000207008 119326000 en 900000000000013009 Hair specimen 900000000000448009 +180844017 20020131 1 900000000000207008 119327009 en 900000000000013009 Nail specimen 900000000000020002 +180844017 20170731 1 900000000000207008 119327009 en 900000000000013009 Nail specimen 900000000000448009 +180845016 20020131 1 900000000000207008 119328004 en 900000000000013009 Mother's milk specimen 900000000000020002 +180845016 20170731 1 900000000000207008 119328004 en 900000000000013009 Mother's milk specimen 900000000000448009 +180846015 20020131 1 900000000000207008 119329007 en 900000000000013009 Colostrum specimen 900000000000020002 +180846015 20170731 1 900000000000207008 119329007 en 900000000000013009 Colostrum specimen 900000000000448009 +180848019 20020131 1 900000000000207008 119331003 en 900000000000013009 Skeletal muscle specimen 900000000000020002 +180848019 20170731 1 900000000000207008 119331003 en 900000000000013009 Skeletal muscle specimen 900000000000448009 +180849010 20020131 1 900000000000207008 119332005 en 900000000000013009 Synovial fluid specimen 900000000000020002 +180849010 20170731 1 900000000000207008 119332005 en 900000000000013009 Synovial fluid specimen 900000000000448009 +180850010 20020131 1 900000000000207008 119333000 en 900000000000013009 Fibroblast specimen 900000000000020002 +180850010 20170731 1 900000000000207008 119333000 en 900000000000013009 Fibroblast specimen 900000000000448009 +180851014 20020131 1 900000000000207008 122877000 en 900000000000013009 Upper respiratory fluid specimen obtained by tracheal aspiration 900000000000020002 +180851014 20170731 1 900000000000207008 122877000 en 900000000000013009 Upper respiratory fluid specimen obtained by tracheal aspiration 900000000000448009 +180853012 20020131 1 900000000000207008 119334006 en 900000000000013009 Sputum specimen 900000000000020002 +180853012 20170731 1 900000000000207008 119334006 en 900000000000013009 Sputum specimen 900000000000448009 +180854018 20020131 1 900000000000207008 119335007 en 900000000000013009 Coughed sputum specimen 900000000000020002 +180854018 20170731 1 900000000000207008 119335007 en 900000000000013009 Coughed sputum specimen 900000000000448009 +180855017 20020131 1 900000000000207008 119336008 en 900000000000013009 Exhaled air specimen 900000000000020002 +180855017 20170731 1 900000000000207008 119336008 en 900000000000013009 Exhaled air specimen 900000000000448009 +180856016 20020131 1 900000000000207008 119337004 en 900000000000013009 Inhaled gas specimen 900000000000020002 +180856016 20170731 1 900000000000207008 119337004 en 900000000000013009 Inhaled gas specimen 900000000000448009 +180858015 20020131 1 900000000000207008 122571007 en 900000000000013009 Pericardial fluid specimen 900000000000020002 +180858015 20170731 1 900000000000207008 122571007 en 900000000000013009 Pericardial fluid specimen 900000000000448009 +180859011 20020131 1 900000000000207008 119338009 en 900000000000013009 Dentin specimen 900000000000020002 +180859011 20170731 1 900000000000207008 119338009 en 900000000000013009 Dentin specimen 900000000000448009 +180860018 20020131 1 900000000000207008 122572000 en 900000000000013009 Vomitus specimen 900000000000020002 +180860018 20170731 1 900000000000207008 122572000 en 900000000000013009 Vomitus specimen 900000000000448009 +180861019 20020131 1 900000000000207008 122879002 en 900000000000013009 Upper gastrointestinal contents specimen 900000000000020002 +180861019 20170731 1 900000000000207008 122879002 en 900000000000013009 Upper gastrointestinal contents specimen 900000000000448009 +180862014 20020131 1 900000000000207008 122573005 en 900000000000013009 Gastric contents specimen 900000000000020002 +180862014 20170731 1 900000000000207008 122573005 en 900000000000013009 Gastric contents specimen 900000000000448009 +180863016 20020131 1 900000000000207008 122574004 en 900000000000013009 Duodenal fluid specimen 900000000000020002 +180863016 20170731 1 900000000000207008 122574004 en 900000000000013009 Duodenal fluid specimen 900000000000448009 +180864010 20020131 1 900000000000207008 119339001 en 900000000000013009 Stool specimen 900000000000020002 +180864010 20170731 1 900000000000207008 119339001 en 900000000000013009 Stool specimen 900000000000448009 +180865011 20020131 1 900000000000207008 119340004 en 900000000000013009 Meconium specimen 900000000000020002 +180865011 20170731 1 900000000000207008 119340004 en 900000000000013009 Meconium specimen 900000000000448009 +180866012 20020131 1 900000000000207008 119341000 en 900000000000013009 Bile specimen 900000000000020002 +180866012 20170731 1 900000000000207008 119341000 en 900000000000013009 Bile specimen 900000000000448009 +180867015 20020131 1 900000000000207008 119342007 en 900000000000013009 Saliva specimen 900000000000020002 +180867015 20170731 1 900000000000207008 119342007 en 900000000000013009 Saliva specimen 900000000000448009 +180868013 20020131 1 900000000000207008 119343002 en 900000000000013009 Pancreatic fluid specimen 900000000000020002 +180868013 20170731 1 900000000000207008 119343002 en 900000000000013009 Pancreatic fluid specimen 900000000000448009 +180869017 20020131 1 900000000000207008 122575003 en 900000000000013009 Urine specimen 900000000000020002 +180869017 20170731 1 900000000000207008 122575003 en 900000000000013009 Urine specimen 900000000000448009 +180870016 20020131 1 900000000000207008 122880004 en 900000000000013009 Urine specimen obtained by clean catch procedure 900000000000020002 +180870016 20170731 1 900000000000207008 122880004 en 900000000000013009 Urine specimen obtained by clean catch procedure 900000000000448009 +180871017 20020131 1 900000000000207008 119344008 en 900000000000013009 Specimen from genital system 900000000000020002 +180871017 20170731 1 900000000000207008 119344008 en 900000000000013009 Specimen from genital system 900000000000448009 +180872012 20020131 1 900000000000207008 122576002 en 900000000000013009 Genital mucus specimen 900000000000020002 +180872012 20170731 1 900000000000207008 122576002 en 900000000000013009 Genital mucus specimen 900000000000448009 +180873019 20020131 1 900000000000207008 122577006 en 900000000000013009 Cervical mucus specimen 900000000000020002 +180873019 20170731 1 900000000000207008 122577006 en 900000000000013009 Cervical mucus specimen 900000000000448009 +180874013 20020131 1 900000000000207008 122578001 en 900000000000013009 Female genital fluid specimen 900000000000020002 +180874013 20170731 1 900000000000207008 122578001 en 900000000000013009 Female genital fluid specimen 900000000000448009 +180875014 20020131 1 900000000000207008 122579009 en 900000000000013009 Genital lochia specimen 900000000000020002 +180875014 20170731 1 900000000000207008 122579009 en 900000000000013009 Genital lochia specimen 900000000000448009 +180876010 20020131 1 900000000000207008 119345009 en 900000000000013009 Menstrual blood specimen 900000000000020002 +180876010 20170731 1 900000000000207008 119345009 en 900000000000013009 Menstrual blood specimen 900000000000448009 +180877018 20020131 1 900000000000207008 119346005 en 900000000000013009 Egg yolk specimen 900000000000020002 +180877018 20170731 1 900000000000207008 119346005 en 900000000000013009 Egg yolk specimen 900000000000448009 +180878011 20020131 1 900000000000207008 119347001 en 900000000000013009 Seminal fluid specimen 900000000000020002 +180878011 20170731 1 900000000000207008 119347001 en 900000000000013009 Seminal fluid specimen 900000000000448009 +180879015 20020131 1 900000000000207008 119348006 en 900000000000013009 Seminal plasma specimen 900000000000020002 +180879015 20170731 1 900000000000207008 119348006 en 900000000000013009 Seminal plasma specimen 900000000000448009 +180880017 20020131 1 900000000000207008 119349003 en 900000000000013009 Spermatozoa specimen 900000000000020002 +180880017 20170731 1 900000000000207008 119349003 en 900000000000013009 Spermatozoa specimen 900000000000448009 +180881018 20020131 1 900000000000207008 122580007 en 900000000000013009 Cerumen specimen 900000000000020002 +180881018 20170731 1 900000000000207008 122580007 en 900000000000013009 Cerumen specimen 900000000000448009 +180882013 20020131 1 900000000000207008 119350003 en 900000000000013009 Calculus specimen 900000000000020002 +180882013 20170731 1 900000000000207008 119350003 en 900000000000013009 Calculus specimen 900000000000448009 +180883015 20020131 1 900000000000207008 119351004 en 900000000000013009 Erythrocyte specimen 900000000000020002 +180883015 20170731 1 900000000000207008 119351004 en 900000000000013009 Erythrocyte specimen 900000000000448009 +180885010 20020131 1 900000000000207008 122582004 en 900000000000013009 Erythrocyte specimen from blood product 900000000000020002 +180885010 20170731 1 900000000000207008 122582004 en 900000000000013009 Erythrocyte specimen from blood product 900000000000448009 +180886011 20020131 1 900000000000207008 122583009 en 900000000000013009 Erythrocyte specimen from patient 900000000000020002 +180886011 20170731 1 900000000000207008 122583009 en 900000000000013009 Erythrocyte specimen from patient 900000000000448009 +180887019 20020131 1 900000000000207008 119352006 en 900000000000013009 Macrophage specimen 900000000000020002 +180887019 20170731 1 900000000000207008 119352006 en 900000000000013009 Macrophage specimen 900000000000448009 +180888012 20020131 1 900000000000207008 119353001 en 900000000000013009 Lymphocyte specimen 900000000000020002 +180888012 20170731 1 900000000000207008 119353001 en 900000000000013009 Lymphocyte specimen 900000000000448009 +180890013 20020131 1 900000000000207008 122584003 en 900000000000013009 Leukocyte specimen from patient 900000000000020002 +180890013 20170731 1 900000000000207008 122584003 en 900000000000013009 Leukocyte specimen from patient 900000000000448009 +180891012 20020131 1 900000000000207008 122585002 en 900000000000013009 Leukocyte specimen from control 900000000000020002 +180891012 20170731 1 900000000000207008 122585002 en 900000000000013009 Leukocyte specimen from control 900000000000448009 +180892017 20020131 1 900000000000207008 119355008 en 900000000000013009 Polymorphonuclear neutrophil specimen 900000000000020002 +180892017 20170731 1 900000000000207008 119355008 en 900000000000013009 Polymorphonuclear neutrophil specimen 900000000000448009 +180893010 20020131 1 900000000000207008 119356009 en 900000000000013009 Eosinophil specimen 900000000000020002 +180893010 20170731 1 900000000000207008 119356009 en 900000000000013009 Eosinophil specimen 900000000000448009 +180894016 20020131 1 900000000000207008 119357000 en 900000000000013009 Basophil specimen 900000000000020002 +180894016 20170731 1 900000000000207008 119357000 en 900000000000013009 Basophil specimen 900000000000448009 +180895015 20020131 1 900000000000207008 119358005 en 900000000000013009 Platelet specimen 900000000000020002 +180895015 20170731 1 900000000000207008 119358005 en 900000000000013009 Platelet specimen 900000000000448009 +180897011 20020131 1 900000000000207008 119359002 en 900000000000013009 Bone marrow specimen 900000000000020002 +180897011 20170731 1 900000000000207008 119359002 en 900000000000013009 Bone marrow specimen 900000000000448009 +180900016 20020131 1 900000000000207008 119361006 en 900000000000013009 Plasma specimen 900000000000020002 +180900016 20170731 1 900000000000207008 119361006 en 900000000000013009 Plasma specimen 900000000000448009 +180901017 20020131 1 900000000000207008 119362004 en 900000000000013009 Platelet poor plasma specimen 900000000000020002 +180901017 20170731 1 900000000000207008 119362004 en 900000000000013009 Platelet poor plasma specimen 900000000000448009 +180902012 20020131 1 900000000000207008 122587005 en 900000000000013009 Platelet poor plasma specimen from control 900000000000020002 +180902012 20170731 1 900000000000207008 122587005 en 900000000000013009 Platelet poor plasma specimen from control 900000000000448009 +180903019 20020131 1 900000000000207008 122588000 en 900000000000013009 Platelet poor plasma specimen from patient 900000000000020002 +180903019 20170731 1 900000000000207008 122588000 en 900000000000013009 Platelet poor plasma specimen from patient 900000000000448009 +180904013 20020131 1 900000000000207008 119363009 en 900000000000013009 Platelet rich plasma specimen 900000000000020002 +180904013 20170731 1 900000000000207008 119363009 en 900000000000013009 Platelet rich plasma specimen 900000000000448009 +180905014 20020131 1 900000000000207008 119364003 en 900000000000013009 Serum specimen 900000000000020002 +180905014 20170731 1 900000000000207008 119364003 en 900000000000013009 Serum specimen 900000000000448009 +180906010 20020131 1 900000000000207008 122589008 en 900000000000013009 Serum specimen from donor 900000000000020002 +180906010 20170731 1 900000000000207008 122589008 en 900000000000013009 Serum specimen from donor 900000000000448009 +180907018 20020131 1 900000000000207008 122590004 en 900000000000013009 Serum specimen from patient 900000000000020002 +180907018 20170731 1 900000000000207008 122590004 en 900000000000013009 Serum specimen from patient 900000000000448009 +180908011 20020131 1 900000000000207008 122591000 en 900000000000013009 Serum specimen from blood product 900000000000020002 +180908011 20170731 1 900000000000207008 122591000 en 900000000000013009 Serum specimen from blood product 900000000000448009 +180909015 20020131 1 900000000000207008 122592007 en 900000000000013009 Acellular blood (serum or plasma) specimen 900000000000020002 +180909015 20170731 1 900000000000207008 122592007 en 900000000000013009 Acellular blood (serum or plasma) specimen 900000000000448009 +180910013 20020131 1 900000000000207008 119365002 en 900000000000013009 Specimen from wound 900000000000020002 +180910013 20170731 1 900000000000207008 119365002 en 900000000000013009 Specimen from wound 900000000000448009 +180911012 20020131 1 900000000000207008 119366001 en 900000000000013009 Specimen from wound abscess 900000000000020002 +180911012 20170731 1 900000000000207008 119366001 en 900000000000013009 Specimen from wound abscess 900000000000448009 +180912017 20020131 1 900000000000207008 119367005 en 900000000000013009 Specimen from burn injury 900000000000020002 +180912017 20170731 1 900000000000207008 119367005 en 900000000000013009 Specimen from burn injury 900000000000448009 +180913010 20020131 1 900000000000207008 119368000 en 900000000000013009 Specimen from cyst 900000000000020002 +180913010 20170731 1 900000000000207008 119368000 en 900000000000013009 Specimen from cyst 900000000000448009 +180914016 20020131 1 900000000000207008 119369008 en 900000000000013009 Specimen from ulcer 900000000000020002 +180914016 20170731 1 900000000000207008 119369008 en 900000000000013009 Specimen from ulcer 900000000000448009 +180915015 20020131 1 900000000000207008 122593002 en 900000000000013009 Tissue specimen obtained from ulcer 900000000000020002 +180915015 20170731 1 900000000000207008 122593002 en 900000000000013009 Tissue specimen obtained from ulcer 900000000000448009 +180916019 20020131 1 900000000000207008 119370009 en 900000000000013009 Specimen from fistula 900000000000020002 +180916019 20170731 1 900000000000207008 119370009 en 900000000000013009 Specimen from fistula 900000000000448009 +180917011 20020131 1 900000000000207008 119371008 en 900000000000013009 Specimen from abscess 900000000000020002 +180917011 20170731 1 900000000000207008 119371008 en 900000000000013009 Specimen from abscess 900000000000448009 +180920015 20020131 1 900000000000207008 119373006 en 900000000000013009 Amniotic fluid specimen 900000000000020002 +180920015 20170731 1 900000000000207008 119373006 en 900000000000013009 Amniotic fluid specimen 900000000000448009 +180923018 20020131 1 900000000000207008 122594008 en 900000000000013009 Tears specimen 900000000000020002 +180923018 20170731 1 900000000000207008 122594008 en 900000000000013009 Tears specimen 900000000000448009 +180924012 20020131 1 900000000000207008 119376003 en 900000000000013009 Tissue specimen 900000000000020002 +180924012 20170731 1 900000000000207008 119376003 en 900000000000013009 Tissue specimen 900000000000448009 +180925013 20020131 1 900000000000207008 122595009 en 900000000000013009 Specimen from breast obtained by total mastectomy 900000000000020002 +180925013 20170731 1 900000000000207008 122595009 en 900000000000013009 Specimen from breast obtained by total mastectomy 900000000000448009 +180927017 20020131 1 900000000000207008 122597001 en 900000000000013009 Specimen from breast obtained by complete excision, less than total mastectomy, with axillary contents 900000000000020002 +180927017 20170731 1 900000000000207008 122597001 en 900000000000013009 Specimen from breast obtained by complete excision, less than total mastectomy, with axillary contents 900000000000448009 +180928010 20020131 1 900000000000207008 122598006 en 900000000000013009 Specimen from breast obtained by complete excision, less than total mastectomy, without axillary contents 900000000000020002 +180928010 20170731 1 900000000000207008 122598006 en 900000000000013009 Specimen from breast obtained by complete excision, less than total mastectomy, without axillary contents 900000000000448009 +180929019 20020131 1 900000000000207008 122599003 en 900000000000013009 Specimen from breast obtained by radical mastectomy 900000000000020002 +180929019 20170731 1 900000000000207008 122599003 en 900000000000013009 Specimen from breast obtained by radical mastectomy 900000000000448009 +180930012 20020131 1 900000000000207008 122600000 en 900000000000013009 Specimen from breast obtained by modified radical mastectomy 900000000000020002 +180930012 20170731 1 900000000000207008 122600000 en 900000000000013009 Specimen from breast obtained by modified radical mastectomy 900000000000448009 +180931011 20020131 1 900000000000207008 122601001 en 900000000000013009 Specimen from breast obtained by biopsy 900000000000020002 +180931011 20170731 1 900000000000207008 122601001 en 900000000000013009 Specimen from breast obtained by biopsy 900000000000448009 +180932016 20020131 1 900000000000207008 122737001 en 900000000000013009 Specimen from breast obtained by core needle biopsy 900000000000020002 +180932016 20170731 1 900000000000207008 122737001 en 900000000000013009 Specimen from breast obtained by core needle biopsy 900000000000448009 +180937010 20020131 1 900000000000207008 122604009 en 900000000000013009 Specimen from lung obtained by wedge resection 900000000000020002 +180937010 20170731 1 900000000000207008 122604009 en 900000000000013009 Specimen from lung obtained by wedge resection 900000000000448009 +180938017 20020131 1 900000000000207008 122605005 en 900000000000013009 Specimen from lung obtained by segmentectomy 900000000000020002 +180938017 20170731 1 900000000000207008 122605005 en 900000000000013009 Specimen from lung obtained by segmentectomy 900000000000448009 +180939013 20020131 1 900000000000207008 122606006 en 900000000000013009 Specimen from lung obtained by lobectomy 900000000000020002 +180939013 20170731 1 900000000000207008 122606006 en 900000000000013009 Specimen from lung obtained by lobectomy 900000000000448009 +180940010 20020131 1 900000000000207008 122607002 en 900000000000013009 Specimen from lung obtained by pneumonectomy 900000000000020002 +180940010 20170731 1 900000000000207008 122607002 en 900000000000013009 Specimen from lung obtained by pneumonectomy 900000000000448009 +180941014 20020131 1 900000000000207008 122608007 en 900000000000013009 Specimen from lung obtained by major airway resection 900000000000020002 +180941014 20170731 1 900000000000207008 122608007 en 900000000000013009 Specimen from lung obtained by major airway resection 900000000000448009 +180942019 20020131 1 900000000000207008 122609004 en 900000000000013009 Specimen from lung obtained by bronchial washing procedure 900000000000020002 +180942019 20170731 1 900000000000207008 122609004 en 900000000000013009 Specimen from lung obtained by bronchial washing procedure 900000000000448009 +180943012 20020131 1 900000000000207008 122610009 en 900000000000013009 Specimen from lung obtained by biopsy 900000000000020002 +180943012 20170731 1 900000000000207008 122610009 en 900000000000013009 Specimen from lung obtained by biopsy 900000000000448009 +180944018 20020131 1 900000000000207008 122611008 en 900000000000013009 Specimen from lung obtained by fiberoptic bronchoscopic biopsy 900000000000020002 +180944018 20170731 1 900000000000207008 122611008 en 900000000000013009 Specimen from lung obtained by fiberoptic bronchoscopic biopsy 900000000000448009 +180946016 20020131 1 900000000000207008 122613006 en 900000000000013009 Specimen from lung obtained by mediastinoscopic biopsy 900000000000020002 +180946016 20170731 1 900000000000207008 122613006 en 900000000000013009 Specimen from lung obtained by mediastinoscopic biopsy 900000000000448009 +180947013 20020131 1 900000000000207008 122614000 en 900000000000013009 Specimen from lung obtained by fine needle aspiration procedure 900000000000020002 +180947013 20170731 1 900000000000207008 122614000 en 900000000000013009 Specimen from lung obtained by fine needle aspiration procedure 900000000000448009 +180950011 20020131 1 900000000000207008 122617007 en 900000000000013009 Specimen from pleura obtained by percutaneous needle biopsy 900000000000020002 +180950011 20170731 1 900000000000207008 122617007 en 900000000000013009 Specimen from pleura obtained by percutaneous needle biopsy 900000000000448009 +180951010 20020131 1 900000000000207008 122618002 en 900000000000013009 Specimen from pleura obtained by fine needle aspiration procedure 900000000000020002 +180951010 20170731 1 900000000000207008 122618002 en 900000000000013009 Specimen from pleura obtained by fine needle aspiration procedure 900000000000448009 +180952015 20020131 1 900000000000207008 122619005 en 900000000000013009 Specimen from pleura obtained by thoracentesis 900000000000020002 +180952015 20170731 1 900000000000207008 122619005 en 900000000000013009 Specimen from pleura obtained by thoracentesis 900000000000448009 +180953013 20020131 1 900000000000207008 122620004 en 900000000000013009 Specimen from pleura obtained by thoracoscopic procedure 900000000000020002 +180953013 20170731 1 900000000000207008 122620004 en 900000000000013009 Specimen from pleura obtained by thoracoscopic procedure 900000000000448009 +180954019 20020131 1 900000000000207008 122621000 en 900000000000013009 Specimen from pleura obtained by thoracoscopic biopsy 900000000000020002 +180954019 20170731 1 900000000000207008 122621000 en 900000000000013009 Specimen from pleura obtained by thoracoscopic biopsy 900000000000448009 +180955018 20020131 1 900000000000207008 122622007 en 900000000000013009 Specimen from pleura obtained by lymph node biopsy 900000000000020002 +180955018 20170731 1 900000000000207008 122622007 en 900000000000013009 Specimen from pleura obtained by lymph node biopsy 900000000000448009 +180956017 20020131 1 900000000000207008 119377007 en 900000000000013009 Myocardial specimen 900000000000020002 +180956017 20170731 1 900000000000207008 119377007 en 900000000000013009 Myocardial specimen 900000000000448009 +180957014 20020131 1 900000000000207008 122623002 en 900000000000013009 Specimen from heart obtained by biopsy 900000000000020002 +180957014 20170731 1 900000000000207008 122623002 en 900000000000013009 Specimen from heart obtained by biopsy 900000000000448009 +180958016 20020131 1 900000000000207008 122624008 en 900000000000013009 Specimen from heart obtained by excisional biopsy of lesion 900000000000020002 +180958016 20170731 1 900000000000207008 122624008 en 900000000000013009 Specimen from heart obtained by excisional biopsy of lesion 900000000000448009 +180959012 20020131 1 900000000000207008 122625009 en 900000000000013009 Specimen from heart obtained by incisional biopsy 900000000000020002 +180959012 20170731 1 900000000000207008 122625009 en 900000000000013009 Specimen from heart obtained by incisional biopsy 900000000000448009 +180960019 20020131 1 900000000000207008 122626005 en 900000000000013009 Specimen from heart obtained by fine needle aspiration procedure 900000000000020002 +180960019 20170731 1 900000000000207008 122626005 en 900000000000013009 Specimen from heart obtained by fine needle aspiration procedure 900000000000448009 +180961015 20020131 1 900000000000207008 119378002 en 900000000000013009 Endocardial specimen 900000000000020002 +180961015 20170731 1 900000000000207008 119378002 en 900000000000013009 Endocardial specimen 900000000000448009 +180962010 20020131 1 900000000000207008 122627001 en 900000000000013009 Specimen from gastrointestinal tract obtained by incisional biopsy 900000000000020002 +180962010 20170731 1 900000000000207008 122627001 en 900000000000013009 Specimen from gastrointestinal tract obtained by incisional biopsy 900000000000448009 +180963017 20020131 1 900000000000207008 122628006 en 900000000000013009 Specimen from esophagus obtained by incisional biopsy 900000000000020002 +180963017 20170731 1 900000000000207008 122628006 en 900000000000013009 Specimen from esophagus obtained by incisional biopsy 900000000000448009 +180964011 20020131 1 900000000000207008 122629003 en 900000000000013009 Specimen from esophagus obtained by excisional biopsy of lesion 900000000000020002 +180964011 20170731 1 900000000000207008 122629003 en 900000000000013009 Specimen from esophagus obtained by excisional biopsy of lesion 900000000000448009 +180965012 20020131 1 900000000000207008 122630008 en 900000000000013009 Specimen from esophagus obtained by esophageal resection 900000000000020002 +180965012 20170731 1 900000000000207008 122630008 en 900000000000013009 Specimen from esophagus obtained by esophageal resection 900000000000448009 +180966013 20020131 1 900000000000207008 122631007 en 900000000000013009 Specimen from esophagus obtained by esophagogastrectomy 900000000000020002 +180966013 20170731 1 900000000000207008 122631007 en 900000000000013009 Specimen from esophagus obtained by esophagogastrectomy 900000000000448009 +180967016 20020131 1 900000000000207008 119379005 en 900000000000013009 Specimen from stomach 900000000000020002 +180967016 20170731 1 900000000000207008 119379005 en 900000000000013009 Specimen from stomach 900000000000448009 +180968014 20020131 1 900000000000207008 122632000 en 900000000000013009 Specimen from stomach obtained by incisional biopsy 900000000000020002 +180968014 20170731 1 900000000000207008 122632000 en 900000000000013009 Specimen from stomach obtained by incisional biopsy 900000000000448009 +180969018 20020131 1 900000000000207008 122633005 en 900000000000013009 Specimen from stomach obtained by excisional biopsy (polypectomy) of lesion 900000000000020002 +180969018 20170731 1 900000000000207008 122633005 en 900000000000013009 Specimen from stomach obtained by excisional biopsy (polypectomy) of lesion 900000000000448009 +180970017 20020131 1 900000000000207008 122634004 en 900000000000013009 Specimen from stomach obtained by total gastrectomy 900000000000020002 +180970017 20170731 1 900000000000207008 122634004 en 900000000000013009 Specimen from stomach obtained by total gastrectomy 900000000000448009 +180971018 20020131 1 900000000000207008 122635003 en 900000000000013009 Specimen from stomach obtained by partial gastrectomy 900000000000020002 +180971018 20170731 1 900000000000207008 122635003 en 900000000000013009 Specimen from stomach obtained by partial gastrectomy 900000000000448009 +180972013 20020131 1 900000000000207008 122636002 en 900000000000013009 Specimen from proximal stomach obtained by partial gastrectomy 900000000000020002 +180972013 20170731 1 900000000000207008 122636002 en 900000000000013009 Specimen from proximal stomach obtained by partial gastrectomy 900000000000448009 +180973015 20020131 1 900000000000207008 122637006 en 900000000000013009 Specimen from distal stomach obtained by partial gastrectomy 900000000000020002 +180973015 20170731 1 900000000000207008 122637006 en 900000000000013009 Specimen from distal stomach obtained by partial gastrectomy 900000000000448009 +180974014 20020131 1 900000000000207008 119380008 en 900000000000013009 Specimen from small intestine 900000000000020002 +180974014 20170731 1 900000000000207008 119380008 en 900000000000013009 Specimen from small intestine 900000000000448009 +180976011 20020131 1 900000000000207008 122639009 en 900000000000013009 Specimen from duodenum obtained by Whipple resection 900000000000020002 +180977019 20020131 1 900000000000207008 122640006 en 900000000000013009 Specimen from jejunum obtained by segmental resection 900000000000020002 +180977019 20170731 1 900000000000207008 122640006 en 900000000000013009 Specimen from jejunum obtained by segmental resection 900000000000448009 +180978012 20020131 1 900000000000207008 122641005 en 900000000000013009 Specimen from ileum obtained by segmental resection 900000000000020002 +180978012 20170731 1 900000000000207008 122641005 en 900000000000013009 Specimen from ileum obtained by segmental resection 900000000000448009 +180979016 20020131 1 900000000000207008 122642003 en 900000000000013009 Specimen from distal ileum obtained by right hemicolectomy 900000000000020002 +180979016 20170731 1 900000000000207008 122642003 en 900000000000013009 Specimen from distal ileum obtained by right hemicolectomy 900000000000448009 +180981019 20020131 1 900000000000207008 122644002 en 900000000000013009 Specimen from large intestine obtained by incisional biopsy 900000000000020002 +180981019 20170731 1 900000000000207008 122644002 en 900000000000013009 Specimen from large intestine obtained by incisional biopsy 900000000000448009 +180982014 20020131 1 900000000000207008 122645001 en 900000000000013009 Specimen from large intestine obtained by excisional biopsy (polypectomy) of lesion 900000000000020002 +180982014 20170731 1 900000000000207008 122645001 en 900000000000013009 Specimen from large intestine obtained by excisional biopsy (polypectomy) of lesion 900000000000448009 +180983016 20020131 1 900000000000207008 122646000 en 900000000000013009 Specimen from large intestine obtained by abdominoperineal resection 900000000000020002 +180983016 20170731 1 900000000000207008 122646000 en 900000000000013009 Specimen from large intestine obtained by abdominoperineal resection 900000000000448009 +180984010 20020131 1 900000000000207008 122647009 en 900000000000013009 Specimen from large intestine obtained by total abdominal colectomy 900000000000020002 +180984010 20170731 1 900000000000207008 122647009 en 900000000000013009 Specimen from large intestine obtained by total abdominal colectomy 900000000000448009 +180985011 20020131 1 900000000000207008 119381007 en 900000000000013009 Specimen from large intestine 900000000000020002 +180985011 20170731 1 900000000000207008 119381007 en 900000000000013009 Specimen from large intestine 900000000000448009 +180986012 20020131 1 900000000000207008 119382000 en 900000000000013009 Specimen from colon 900000000000020002 +180986012 20170731 1 900000000000207008 119382000 en 900000000000013009 Specimen from colon 900000000000448009 +180987015 20020131 1 900000000000207008 122648004 en 900000000000013009 Specimen from colon obtained by right hemicolectomy 900000000000020002 +180987015 20170731 1 900000000000207008 122648004 en 900000000000013009 Specimen from colon obtained by right hemicolectomy 900000000000448009 +180988013 20020131 1 900000000000207008 122649007 en 900000000000013009 Specimen from colon obtained by transverse colectomy 900000000000020002 +180988013 20170731 1 900000000000207008 122649007 en 900000000000013009 Specimen from colon obtained by transverse colectomy 900000000000448009 +180989017 20020131 1 900000000000207008 122650007 en 900000000000013009 Specimen from colon obtained by left hemicolectomy 900000000000020002 +180989017 20170731 1 900000000000207008 122650007 en 900000000000013009 Specimen from colon obtained by left hemicolectomy 900000000000448009 +180990014 20020131 1 900000000000207008 122651006 en 900000000000013009 Specimen from colon obtained by sigmoidectomy 900000000000020002 +180990014 20170731 1 900000000000207008 122651006 en 900000000000013009 Specimen from colon obtained by sigmoidectomy 900000000000448009 +180991013 20020131 1 900000000000207008 122652004 en 900000000000013009 Specimen from colon obtained by rectal (low anterior) resection 900000000000020002 +180991013 20170731 1 900000000000207008 122652004 en 900000000000013009 Specimen from colon obtained by rectal (low anterior) resection 900000000000448009 +180992018 20020131 1 900000000000207008 122653009 en 900000000000013009 Specimen from rectum obtained by transanal disk excision 900000000000020002 +180992018 20170731 1 900000000000207008 122653009 en 900000000000013009 Specimen from rectum obtained by transanal disk excision 900000000000448009 +180993011 20020131 1 900000000000207008 122654003 en 900000000000013009 Specimen from rectum obtained by transanal disk excision, intact 900000000000020002 +180993011 20170731 1 900000000000207008 122654003 en 900000000000013009 Specimen from rectum obtained by transanal disk excision, intact 900000000000448009 +180994017 20020131 1 900000000000207008 122655002 en 900000000000013009 Specimen from rectum obtained by transanal disk excision, fragmented 900000000000020002 +180994017 20170731 1 900000000000207008 122655002 en 900000000000013009 Specimen from rectum obtained by transanal disk excision, fragmented 900000000000448009 +180995016 20020131 1 900000000000207008 119383005 en 900000000000013009 Specimen from liver 900000000000020002 +180995016 20170731 1 900000000000207008 119383005 en 900000000000013009 Specimen from liver 900000000000448009 +180997012 20020131 1 900000000000207008 122657005 en 900000000000013009 Specimen from ampulla of Vater obtained by incisional biopsy 900000000000020002 +180998019 20020131 1 900000000000207008 122658000 en 900000000000013009 Specimen from ampulla of Vater obtained by ampullectomy 900000000000020002 +180999010 20020131 1 900000000000207008 122659008 en 900000000000013009 Specimen from ampulla of Vater obtained by pancreaticoduodenectomy 900000000000020002 +181000014 20020131 1 900000000000207008 122660003 en 900000000000013009 Specimen from ampulla of Vater obtained by pylorus-sparing pancreaticoduodenectomy 900000000000020002 +181002018 20020131 1 900000000000207008 122662006 en 900000000000013009 Specimen from pancreatic body obtained by partial resection 900000000000020002 +181002018 20170731 1 900000000000207008 122662006 en 900000000000013009 Specimen from pancreatic body obtained by partial resection 900000000000448009 +181003011 20020131 1 900000000000207008 122663001 en 900000000000013009 Specimen from pancreatic tail obtained by partial resection 900000000000020002 +181003011 20170731 1 900000000000207008 122663001 en 900000000000013009 Specimen from pancreatic tail obtained by partial resection 900000000000448009 +181004017 20020131 1 900000000000207008 122664007 en 900000000000013009 Specimen from pancreas obtained by total pancreatectomy 900000000000020002 +181004017 20170731 1 900000000000207008 122664007 en 900000000000013009 Specimen from pancreas obtained by total pancreatectomy 900000000000448009 +181005016 20020131 1 900000000000207008 122665008 en 900000000000013009 Specimen from pancreas obtained by pancreaticoduodenectomy (Whipple resection) 900000000000020002 +181006015 20020131 1 900000000000207008 122666009 en 900000000000013009 Specimen from pancreas obtained by pylorus sparing pancreaticoduodenectomy 900000000000020002 +181006015 20170731 1 900000000000207008 122666009 en 900000000000013009 Specimen from pancreas obtained by pylorus sparing pancreaticoduodenectomy 900000000000448009 +181007012 20020131 1 900000000000207008 122667000 en 900000000000013009 Specimen from pancreas obtained by incisional biopsy 900000000000020002 +181007012 20170731 1 900000000000207008 122667000 en 900000000000013009 Specimen from pancreas obtained by incisional biopsy 900000000000448009 +181009010 20020131 1 900000000000207008 122669002 en 900000000000013009 Specimen from urinary tract obtained by anterior exenteration 900000000000020002 +181009010 20030731 0 900000000000207008 122669002 en 900000000000013009 Specimen from urinary tract obtained by anterior exenteration 900000000000020002 +181010017 20020131 1 900000000000207008 122670001 en 900000000000013009 Specimen from kidney obtained by (core) needle biopsy 900000000000020002 +181010017 20170731 1 900000000000207008 122670001 en 900000000000013009 Specimen from kidney obtained by (core) needle biopsy 900000000000448009 +181011018 20020131 1 900000000000207008 122671002 en 900000000000013009 Specimen from kidney obtained by fine needle aspiration procedure 900000000000020002 +181011018 20170731 1 900000000000207008 122671002 en 900000000000013009 Specimen from kidney obtained by fine needle aspiration procedure 900000000000448009 +181012013 20020131 1 900000000000207008 122672009 en 900000000000013009 Specimen from kidney obtained by incisional biopsy 900000000000020002 +181012013 20170731 1 900000000000207008 122672009 en 900000000000013009 Specimen from kidney obtained by incisional biopsy 900000000000448009 +181013015 20020131 1 900000000000207008 122673004 en 900000000000013009 Specimen from kidney obtained by wedge biopsy 900000000000020002 +181013015 20170731 1 900000000000207008 122673004 en 900000000000013009 Specimen from kidney obtained by wedge biopsy 900000000000448009 +181014014 20020131 1 900000000000207008 122674005 en 900000000000013009 Specimen from right kidney obtained by radical nephrectomy 900000000000020002 +181014014 20170731 1 900000000000207008 122674005 en 900000000000013009 Specimen from right kidney obtained by radical nephrectomy 900000000000448009 +181015010 20020131 1 900000000000207008 122675006 en 900000000000013009 Specimen from right kidney obtained by radical nephrectomy, without adrenal 900000000000020002 +181015010 20170731 1 900000000000207008 122675006 en 900000000000013009 Specimen from right kidney obtained by radical nephrectomy, without adrenal 900000000000448009 +181016011 20020131 1 900000000000207008 122676007 en 900000000000013009 Specimen from right kidney obtained by partial nephrectomy 900000000000020002 +181016011 20170731 1 900000000000207008 122676007 en 900000000000013009 Specimen from right kidney obtained by partial nephrectomy 900000000000448009 +181017019 20020131 1 900000000000207008 122677003 en 900000000000013009 Specimen from right kidney, inferior pole obtained by partial nephrectomy 900000000000020002 +181017019 20170731 1 900000000000207008 122677003 en 900000000000013009 Specimen from right kidney, inferior pole obtained by partial nephrectomy 900000000000448009 +181018012 20020131 1 900000000000207008 122678008 en 900000000000013009 Specimen from right kidney, middle pole obtained by partial nephrectomy 900000000000020002 +181018012 20170731 1 900000000000207008 122678008 en 900000000000013009 Specimen from right kidney, middle pole obtained by partial nephrectomy 900000000000448009 +181019016 20020131 1 900000000000207008 122679000 en 900000000000013009 Specimen from right kidney, superior pole obtained by partial nephrectomy 900000000000020002 +181019016 20170731 1 900000000000207008 122679000 en 900000000000013009 Specimen from right kidney, superior pole obtained by partial nephrectomy 900000000000448009 +181020010 20020131 1 900000000000207008 122680002 en 900000000000013009 Specimen from left kidney obtained by radical nephrectomy 900000000000020002 +181020010 20170731 1 900000000000207008 122680002 en 900000000000013009 Specimen from left kidney obtained by radical nephrectomy 900000000000448009 +181021014 20020131 1 900000000000207008 122681003 en 900000000000013009 Specimen from left kidney obtained by radical nephrectomy, without adrenal 900000000000020002 +181021014 20170731 1 900000000000207008 122681003 en 900000000000013009 Specimen from left kidney obtained by radical nephrectomy, without adrenal 900000000000448009 +181022019 20020131 1 900000000000207008 122682005 en 900000000000013009 Specimen from left kidney obtained by partial nephrectomy 900000000000020002 +181022019 20170731 1 900000000000207008 122682005 en 900000000000013009 Specimen from left kidney obtained by partial nephrectomy 900000000000448009 +181023012 20020131 1 900000000000207008 122683000 en 900000000000013009 Specimen from left kidney, inferior pole obtained by partial nephrectomy 900000000000020002 +181023012 20170731 1 900000000000207008 122683000 en 900000000000013009 Specimen from left kidney, inferior pole obtained by partial nephrectomy 900000000000448009 +181024018 20020131 1 900000000000207008 122684006 en 900000000000013009 Specimen from left kidney, middle pole obtained by partial nephrectomy 900000000000020002 +181024018 20170731 1 900000000000207008 122684006 en 900000000000013009 Specimen from left kidney, middle pole obtained by partial nephrectomy 900000000000448009 +181025017 20020131 1 900000000000207008 122685007 en 900000000000013009 Specimen from left kidney, superior pole obtained by partial nephrectomy 900000000000020002 +181025017 20170731 1 900000000000207008 122685007 en 900000000000013009 Specimen from left kidney, superior pole obtained by partial nephrectomy 900000000000448009 +181026016 20020131 1 900000000000207008 122686008 en 900000000000013009 Specimen from urinary tract obtained by partial cystectomy 900000000000020002 +181026016 20030731 0 900000000000207008 122686008 en 900000000000013009 Specimen from urinary tract obtained by partial cystectomy 900000000000020002 +181027013 20020131 1 900000000000207008 122687004 en 900000000000013009 Specimen from urinary tract obtained by total cystectomy 900000000000020002 +181027013 20030731 0 900000000000207008 122687004 en 900000000000013009 Specimen from urinary tract obtained by total cystectomy 900000000000020002 +181028015 20020131 1 900000000000207008 122688009 en 900000000000013009 Specimen from urinary tract obtained by radical cystoprostatectomy 900000000000020002 +181028015 20030731 0 900000000000207008 122688009 en 900000000000013009 Specimen from urinary tract obtained by radical cystoprostatectomy 900000000000020002 +181029011 20020131 1 900000000000207008 122689001 en 900000000000013009 Specimen from right kidney obtained by radical nephrectomy and adrenalectomy 900000000000020002 +181029011 20170731 1 900000000000207008 122689001 en 900000000000013009 Specimen from right kidney obtained by radical nephrectomy and adrenalectomy 900000000000448009 +181030018 20020131 1 900000000000207008 122690005 en 900000000000013009 Specimen from left kidney obtained by radical nephrectomy and adrenalectomy 900000000000020002 +181030018 20170731 1 900000000000207008 122690005 en 900000000000013009 Specimen from left kidney obtained by radical nephrectomy and adrenalectomy 900000000000448009 +181031019 20020131 1 900000000000207008 122691009 en 900000000000013009 Specimen from vagina obtained by incisional biopsy 900000000000020002 +181031019 20170731 1 900000000000207008 122691009 en 900000000000013009 Specimen from vagina obtained by incisional biopsy 900000000000448009 +181032014 20020131 1 900000000000207008 122692002 en 900000000000013009 Specimen from vagina obtained by excisional biopsy of lesion 900000000000020002 +181032014 20170731 1 900000000000207008 122692002 en 900000000000013009 Specimen from vagina obtained by excisional biopsy of lesion 900000000000448009 +181033016 20020131 1 900000000000207008 122693007 en 900000000000013009 Specimen from vagina obtained by vaginectomy 900000000000020002 +181033016 20170731 1 900000000000207008 122693007 en 900000000000013009 Specimen from vagina obtained by vaginectomy 900000000000448009 +181034010 20020131 1 900000000000207008 122694001 en 900000000000013009 Specimen from vagina obtained by radical vaginectomy 900000000000020002 +181034010 20170731 1 900000000000207008 122694001 en 900000000000013009 Specimen from vagina obtained by radical vaginectomy 900000000000448009 +181036012 20020131 1 900000000000207008 122696004 en 900000000000013009 Specimen from uterus obtained by radical hysterectomy 900000000000020002 +181036012 20170731 1 900000000000207008 122696004 en 900000000000013009 Specimen from uterus obtained by radical hysterectomy 900000000000448009 +181037015 20020131 1 900000000000207008 122697008 en 900000000000013009 Specimen from uterus obtained by pelvic exenteration 900000000000020002 +181037015 20170731 1 900000000000207008 122697008 en 900000000000013009 Specimen from uterus obtained by pelvic exenteration 900000000000448009 +181038013 20020131 1 900000000000207008 122698003 en 900000000000013009 Specimen from uterine cervix obtained by incisional biopsy 900000000000020002 +181038013 20170731 1 900000000000207008 122698003 en 900000000000013009 Specimen from uterine cervix obtained by incisional biopsy 900000000000448009 +181039017 20020131 1 900000000000207008 122699006 en 900000000000013009 Specimen from uterine cervix obtained by excisional biopsy (cone biopsy) of lesion 900000000000020002 +181039017 20170731 1 900000000000207008 122699006 en 900000000000013009 Specimen from uterine cervix obtained by excisional biopsy (cone biopsy) of lesion 900000000000448009 +181040015 20020131 1 900000000000207008 122700007 en 900000000000013009 Specimen from uterine cervix obtained by hysterectomy 900000000000020002 +181040015 20170731 1 900000000000207008 122700007 en 900000000000013009 Specimen from uterine cervix obtained by hysterectomy 900000000000448009 +181041016 20020131 1 900000000000207008 122701006 en 900000000000013009 Specimen from uterine cervix obtained by radical hysterectomy 900000000000020002 +181041016 20170731 1 900000000000207008 122701006 en 900000000000013009 Specimen from uterine cervix obtained by radical hysterectomy 900000000000448009 +181042011 20020131 1 900000000000207008 122702004 en 900000000000013009 Specimen from uterine cervix obtained by pelvic exenteration 900000000000020002 +181042011 20170731 1 900000000000207008 122702004 en 900000000000013009 Specimen from uterine cervix obtained by pelvic exenteration 900000000000448009 +181043018 20020131 1 900000000000207008 122703009 en 900000000000013009 Specimen from endometrium obtained by curettage 900000000000020002 +181043018 20170731 1 900000000000207008 122703009 en 900000000000013009 Specimen from endometrium obtained by curettage 900000000000448009 +181044012 20020131 1 900000000000207008 122704003 en 900000000000013009 Specimen from endometrium obtained by biopsy 900000000000020002 +181044012 20170731 1 900000000000207008 122704003 en 900000000000013009 Specimen from endometrium obtained by biopsy 900000000000448009 +181045013 20020131 1 900000000000207008 122705002 en 900000000000013009 Specimen from endometrium obtained by hysterectomy 900000000000020002 +181045013 20170731 1 900000000000207008 122705002 en 900000000000013009 Specimen from endometrium obtained by hysterectomy 900000000000448009 +181046014 20020131 1 900000000000207008 122706001 en 900000000000013009 Specimen from endometrium obtained by radical hysterectomy 900000000000020002 +181046014 20170731 1 900000000000207008 122706001 en 900000000000013009 Specimen from endometrium obtained by radical hysterectomy 900000000000448009 +181047017 20020131 1 900000000000207008 122707005 en 900000000000013009 Specimen from endometrium obtained by pelvic exenteration 900000000000020002 +181047017 20170731 1 900000000000207008 122707005 en 900000000000013009 Specimen from endometrium obtained by pelvic exenteration 900000000000448009 +181048010 20020131 1 900000000000207008 122708000 en 900000000000013009 Specimen from ovary obtained by biopsy 900000000000020002 +181048010 20170731 1 900000000000207008 122708000 en 900000000000013009 Specimen from ovary obtained by biopsy 900000000000448009 +181049019 20020131 1 900000000000207008 122709008 en 900000000000013009 Specimen from ovary obtained by incisional biopsy 900000000000020002 +181049019 20170731 1 900000000000207008 122709008 en 900000000000013009 Specimen from ovary obtained by incisional biopsy 900000000000448009 +181051015 20020131 1 900000000000207008 122711004 en 900000000000013009 Specimen from ovary obtained by removal of tumor in fragments 900000000000020002 +181051015 20170731 1 900000000000207008 122711004 en 900000000000013009 Specimen from ovary obtained by removal of tumor in fragments 900000000000448009 +181053017 20020131 1 900000000000207008 122713001 en 900000000000013009 Specimen from ovary obtained by subtotal right oophorectomy 900000000000020002 +181053017 20170731 1 900000000000207008 122713001 en 900000000000013009 Specimen from ovary obtained by subtotal right oophorectomy 900000000000448009 +181054011 20020131 1 900000000000207008 122714007 en 900000000000013009 Specimen from right ovary obtained by oophorectomy 900000000000020002 +181054011 20170731 1 900000000000207008 122714007 en 900000000000013009 Specimen from right ovary obtained by oophorectomy 900000000000448009 +181055012 20020131 1 900000000000207008 122715008 en 900000000000013009 Specimen from right ovary obtained by salpingo-oophorectomy 900000000000020002 +181055012 20170731 1 900000000000207008 122715008 en 900000000000013009 Specimen from right ovary obtained by salpingo-oophorectomy 900000000000448009 +181056013 20020131 1 900000000000207008 122716009 en 900000000000013009 Specimen from left ovary obtained by oophorectomy 900000000000020002 +181056013 20170731 1 900000000000207008 122716009 en 900000000000013009 Specimen from left ovary obtained by oophorectomy 900000000000448009 +181057016 20020131 1 900000000000207008 122717000 en 900000000000013009 Specimen from ovary obtained by subtotal left oophorectomy 900000000000020002 +181057016 20170731 1 900000000000207008 122717000 en 900000000000013009 Specimen from ovary obtained by subtotal left oophorectomy 900000000000448009 +181058014 20020131 1 900000000000207008 122718005 en 900000000000013009 Specimen from left ovary obtained by salpingo-oophorectomy 900000000000020002 +181058014 20170731 1 900000000000207008 122718005 en 900000000000013009 Specimen from left ovary obtained by salpingo-oophorectomy 900000000000448009 +181059018 20020131 1 900000000000207008 122719002 en 900000000000013009 Specimen from fallopian tube obtained by hysterectomy with salpingo-oophorectomy 900000000000020002 +181059018 20170731 1 900000000000207008 122719002 en 900000000000013009 Specimen from fallopian tube obtained by hysterectomy with salpingo-oophorectomy 900000000000448009 +181060011 20020131 1 900000000000207008 122720008 en 900000000000013009 Specimen from fallopian tube obtained by excision of tubal fragments 900000000000020002 +181060011 20170731 1 900000000000207008 122720008 en 900000000000013009 Specimen from fallopian tube obtained by excision of tubal fragments 900000000000448009 +181061010 20020131 1 900000000000207008 122721007 en 900000000000013009 Specimen from fallopian tube obtained by pelvic exenteration 900000000000020002 +181061010 20170731 1 900000000000207008 122721007 en 900000000000013009 Specimen from fallopian tube obtained by pelvic exenteration 900000000000448009 +181062015 20020131 1 900000000000207008 119384004 en 900000000000013009 Specimen from right fallopian tube 900000000000020002 +181062015 20170731 1 900000000000207008 119384004 en 900000000000013009 Specimen from right fallopian tube 900000000000448009 +181063013 20020131 1 900000000000207008 122722000 en 900000000000013009 Specimen from right fallopian tube obtained by salpingo-oophorectomy 900000000000020002 +181063013 20170731 1 900000000000207008 122722000 en 900000000000013009 Specimen from right fallopian tube obtained by salpingo-oophorectomy 900000000000448009 +181064019 20020131 1 900000000000207008 119385003 en 900000000000013009 Specimen from left fallopian tube 900000000000020002 +181064019 20170731 1 900000000000207008 119385003 en 900000000000013009 Specimen from left fallopian tube 900000000000448009 +181065018 20020131 1 900000000000207008 122723005 en 900000000000013009 Specimen from left fallopian tube obtained by salpingo-oophorectomy 900000000000020002 +181065018 20170731 1 900000000000207008 122723005 en 900000000000013009 Specimen from left fallopian tube obtained by salpingo-oophorectomy 900000000000448009 +181066017 20020131 1 900000000000207008 119386002 en 900000000000013009 Specimen from prostate 900000000000020002 +181066017 20170731 1 900000000000207008 119386002 en 900000000000013009 Specimen from prostate 900000000000448009 +181067014 20020131 1 900000000000207008 122724004 en 900000000000013009 Specimen from prostate obtained by enucleation 900000000000020002 +181067014 20170731 1 900000000000207008 122724004 en 900000000000013009 Specimen from prostate obtained by enucleation 900000000000448009 +181068016 20020131 1 900000000000207008 122725003 en 900000000000013009 Specimen from prostate obtained by radical prostatectomy 900000000000020002 +181068016 20170731 1 900000000000207008 122725003 en 900000000000013009 Specimen from prostate obtained by radical prostatectomy 900000000000448009 +181069012 20020131 1 900000000000207008 122726002 en 900000000000013009 Specimen from prostate obtained by retropubic resection 900000000000020002 +181069012 20170731 1 900000000000207008 122726002 en 900000000000013009 Specimen from prostate obtained by retropubic resection 900000000000448009 +181070013 20020131 1 900000000000207008 122727006 en 900000000000013009 Specimen from prostate obtained by suprapubic resection 900000000000020002 +181070013 20170731 1 900000000000207008 122727006 en 900000000000013009 Specimen from prostate obtained by suprapubic resection 900000000000448009 +181071012 20020131 1 900000000000207008 122728001 en 900000000000013009 Specimen from testis obtained by inguinal exposure with testicular isolation and biopsy 900000000000020002 +181071012 20170731 1 900000000000207008 122728001 en 900000000000013009 Specimen from testis obtained by inguinal exposure with testicular isolation and biopsy 900000000000448009 +181073010 20020131 1 900000000000207008 122730004 en 900000000000013009 Specimen from testis obtained by transcrotal open biopsy 900000000000020002 +181073010 20170731 1 900000000000207008 122730004 en 900000000000013009 Specimen from testis obtained by transcrotal open biopsy 900000000000448009 +181075015 20020131 1 900000000000207008 122732007 en 900000000000013009 Specimen from thyroid obtained by lobectomy 900000000000020002 +181075015 20170731 1 900000000000207008 122732007 en 900000000000013009 Specimen from thyroid obtained by lobectomy 900000000000448009 +181076019 20020131 1 900000000000207008 122733002 en 900000000000013009 Specimen from right lobe of thyroid obtained by lobe resection 900000000000020002 +181076019 20170731 1 900000000000207008 122733002 en 900000000000013009 Specimen from right lobe of thyroid obtained by lobe resection 900000000000448009 +181077011 20020131 1 900000000000207008 122734008 en 900000000000013009 Specimen from left lobe of thyroid obtained by lobe resection 900000000000020002 +181077011 20170731 1 900000000000207008 122734008 en 900000000000013009 Specimen from left lobe of thyroid obtained by lobe resection 900000000000448009 +181078018 20020131 1 900000000000207008 122735009 en 900000000000013009 Specimen from thyroid obtained by isthmectomy 900000000000020002 +181078018 20170731 1 900000000000207008 122735009 en 900000000000013009 Specimen from thyroid obtained by isthmectomy 900000000000448009 +181081011 20020131 1 900000000000207008 119388001 en 900000000000013009 Specimen from internal nose 900000000000020002 +181081011 20170731 1 900000000000207008 119388001 en 900000000000013009 Specimen from internal nose 900000000000448009 +181082016 20020131 1 900000000000207008 119389009 en 900000000000013009 Specimen from throat 900000000000020002 +181082016 20170731 1 900000000000207008 119389009 en 900000000000013009 Specimen from throat 900000000000448009 +181083014 20020131 1 900000000000207008 119390000 en 900000000000013009 Specimen from trachea 900000000000020002 +181083014 20170731 1 900000000000207008 119390000 en 900000000000013009 Specimen from trachea 900000000000448009 +181084015 20020131 1 900000000000207008 119391001 en 900000000000013009 Specimen from bronchus 900000000000020002 +181084015 20170731 1 900000000000207008 119391001 en 900000000000013009 Specimen from bronchus 900000000000448009 +181085019 20020131 1 900000000000207008 119392008 en 900000000000013009 Specimen from anus 900000000000020002 +181085019 20170731 1 900000000000207008 119392008 en 900000000000013009 Specimen from anus 900000000000448009 +181086018 20020131 1 900000000000207008 119393003 en 900000000000013009 Specimen from urethra 900000000000020002 +181086018 20170731 1 900000000000207008 119393003 en 900000000000013009 Specimen from urethra 900000000000448009 +181087010 20020131 1 900000000000207008 119394009 en 900000000000013009 Specimen from vagina 900000000000020002 +181087010 20170731 1 900000000000207008 119394009 en 900000000000013009 Specimen from vagina 900000000000448009 +181088017 20020131 1 900000000000207008 119395005 en 900000000000013009 Specimen from uterine cervix 900000000000020002 +181088017 20170731 1 900000000000207008 119395005 en 900000000000013009 Specimen from uterine cervix 900000000000448009 +181089013 20020131 1 900000000000207008 119396006 en 900000000000013009 Specimen from endometrium 900000000000020002 +181089013 20170731 1 900000000000207008 119396006 en 900000000000013009 Specimen from endometrium 900000000000448009 +181090016 20020131 1 900000000000207008 119397002 en 900000000000013009 Specimen from penis 900000000000020002 +181090016 20170731 1 900000000000207008 119397002 en 900000000000013009 Specimen from penis 900000000000448009 +181091017 20020131 1 900000000000207008 119398007 en 900000000000013009 Specimen from brain 900000000000020002 +181091017 20170731 1 900000000000207008 119398007 en 900000000000013009 Specimen from brain 900000000000448009 +181092012 20020131 1 900000000000207008 119399004 en 900000000000013009 Specimen from eye 900000000000020002 +181092012 20170731 1 900000000000207008 119399004 en 900000000000013009 Specimen from eye 900000000000448009 +181093019 20020131 1 900000000000207008 119400006 en 900000000000013009 Specimen from cornea 900000000000020002 +181093019 20170731 1 900000000000207008 119400006 en 900000000000013009 Specimen from cornea 900000000000448009 +181094013 20020131 1 900000000000207008 119401005 en 900000000000013009 Specimen from conjunctiva 900000000000020002 +181094013 20170731 1 900000000000207008 119401005 en 900000000000013009 Specimen from conjunctiva 900000000000448009 +181096010 20020131 1 900000000000207008 119403008 en 900000000000013009 Specimen from placenta 900000000000020002 +181096010 20170731 1 900000000000207008 119403008 en 900000000000013009 Specimen from placenta 900000000000448009 +187598014 20020131 1 900000000000207008 116213003 en 900000000000013009 Ovary cytologic material 900000000000020002 +187598014 20170731 1 900000000000207008 116213003 en 900000000000013009 Ovary cytologic material 900000000000448009 +187599018 20020131 1 900000000000207008 116155002 en 900000000000013009 Ampulla of Vater cytologic material 900000000000020002 +187600015 20020131 1 900000000000207008 116156001 en 900000000000013009 Gastrointestinal tract cytologic material 900000000000020002 +187600015 20170731 1 900000000000207008 116156001 en 900000000000013009 Gastrointestinal tract cytologic material 900000000000448009 +187601016 20020131 1 900000000000207008 116157005 en 900000000000013009 Heart cytologic material 900000000000020002 +187601016 20170731 1 900000000000207008 116157005 en 900000000000013009 Heart cytologic material 900000000000448009 +187602011 20020131 1 900000000000207008 116158000 en 900000000000013009 Large intestine cytologic material 900000000000020002 +187602011 20170731 1 900000000000207008 116158000 en 900000000000013009 Large intestine cytologic material 900000000000448009 +187603018 20020131 1 900000000000207008 116159008 en 900000000000013009 Upper aerodigestive tract cytologic material 900000000000020002 +187603018 20170731 1 900000000000207008 116159008 en 900000000000013009 Upper aerodigestive tract cytologic material 900000000000448009 +187604012 20020131 1 900000000000207008 116160003 en 900000000000013009 Thyroid cytologic material 900000000000020002 +187604012 20170731 1 900000000000207008 116160003 en 900000000000013009 Thyroid cytologic material 900000000000448009 +187605013 20020131 1 900000000000207008 116161004 en 900000000000013009 Fine needle aspirate of thyroid, cytologic material 900000000000020002 +187605013 20170731 1 900000000000207008 116161004 en 900000000000013009 Fine needle aspirate of thyroid, cytologic material 900000000000448009 +187606014 20020131 1 900000000000207008 116162006 en 900000000000013009 Thyroid cytologic material, processed intraoperatively 900000000000020002 +187606014 20170731 1 900000000000207008 116162006 en 900000000000013009 Thyroid cytologic material, processed intraoperatively 900000000000448009 +190895018 20020131 1 900000000000207008 123038009 en 900000000000013009 Specimen 900000000000020002 +190895018 20170731 1 900000000000207008 123038009 en 900000000000013009 Specimen 900000000000448009 +194748016 20020131 1 900000000000207008 128154006 en 900000000000013009 Specimen from testis 900000000000020002 +194748016 20170731 1 900000000000207008 128154006 en 900000000000013009 Specimen from testis 900000000000448009 +194749012 20020131 1 900000000000207008 128155007 en 900000000000013009 Specimen from ovary 900000000000020002 +194749012 20170731 1 900000000000207008 128155007 en 900000000000013009 Specimen from ovary 900000000000448009 +194750012 20020131 1 900000000000207008 128156008 en 900000000000013009 Tissue specimen from anus 900000000000020002 +194750012 20170731 1 900000000000207008 128156008 en 900000000000013009 Tissue specimen from anus 900000000000448009 +194751011 20020131 1 900000000000207008 128157004 en 900000000000013009 Tissue specimen from brain 900000000000020002 +194751011 20170731 1 900000000000207008 128157004 en 900000000000013009 Tissue specimen from brain 900000000000448009 +194752016 20020131 1 900000000000207008 128158009 en 900000000000013009 Tissue specimen from bronchus 900000000000020002 +194752016 20170731 1 900000000000207008 128158009 en 900000000000013009 Tissue specimen from bronchus 900000000000448009 +194753014 20020131 1 900000000000207008 128159001 en 900000000000013009 Tissue specimen from colon 900000000000020002 +194753014 20170731 1 900000000000207008 128159001 en 900000000000013009 Tissue specimen from colon 900000000000448009 +194754015 20020131 1 900000000000207008 128160006 en 900000000000013009 Tissue specimen from conjunctiva 900000000000020002 +194754015 20170731 1 900000000000207008 128160006 en 900000000000013009 Tissue specimen from conjunctiva 900000000000448009 +194755019 20020131 1 900000000000207008 128161005 en 900000000000013009 Tissue specimen from cornea 900000000000020002 +194755019 20170731 1 900000000000207008 128161005 en 900000000000013009 Tissue specimen from cornea 900000000000448009 +194756018 20020131 1 900000000000207008 128162003 en 900000000000013009 Tissue specimen from ear 900000000000020002 +194756018 20170731 1 900000000000207008 128162003 en 900000000000013009 Tissue specimen from ear 900000000000448009 +194757010 20020131 1 900000000000207008 128163008 en 900000000000013009 Tissue specimen from endometrium 900000000000020002 +194757010 20170731 1 900000000000207008 128163008 en 900000000000013009 Tissue specimen from endometrium 900000000000448009 +194758017 20020131 1 900000000000207008 128164002 en 900000000000013009 Tissue specimen from eye 900000000000020002 +194758017 20170731 1 900000000000207008 128164002 en 900000000000013009 Tissue specimen from eye 900000000000448009 +194759013 20020131 1 900000000000207008 128165001 en 900000000000013009 Tissue specimen from genital system 900000000000020002 +194759013 20170731 1 900000000000207008 128165001 en 900000000000013009 Tissue specimen from genital system 900000000000448009 +194760015 20020131 1 900000000000207008 128166000 en 900000000000013009 Tissue specimen from heart 900000000000020002 +194760015 20170731 1 900000000000207008 128166000 en 900000000000013009 Tissue specimen from heart 900000000000448009 +194761016 20020131 1 900000000000207008 128167009 en 900000000000013009 Tissue specimen from internal nose 900000000000020002 +194761016 20170731 1 900000000000207008 128167009 en 900000000000013009 Tissue specimen from internal nose 900000000000448009 +194762011 20020131 1 900000000000207008 128168004 en 900000000000013009 Tissue specimen from liver 900000000000020002 +194762011 20170731 1 900000000000207008 128168004 en 900000000000013009 Tissue specimen from liver 900000000000448009 +194763018 20020131 1 900000000000207008 128169007 en 900000000000013009 Tissue specimen from penis 900000000000020002 +194763018 20170731 1 900000000000207008 128169007 en 900000000000013009 Tissue specimen from penis 900000000000448009 +194764012 20020131 1 900000000000207008 128170008 en 900000000000013009 Tissue specimen from prostate 900000000000020002 +194764012 20170731 1 900000000000207008 128170008 en 900000000000013009 Tissue specimen from prostate 900000000000448009 +194765013 20020131 1 900000000000207008 128171007 en 900000000000013009 Tissue specimen from stomach 900000000000020002 +194765013 20170731 1 900000000000207008 128171007 en 900000000000013009 Tissue specimen from stomach 900000000000448009 +194766014 20020131 1 900000000000207008 128172000 en 900000000000013009 Tissue specimen from throat 900000000000020002 +194766014 20170731 1 900000000000207008 128172000 en 900000000000013009 Tissue specimen from throat 900000000000448009 +194767017 20020131 1 900000000000207008 128173005 en 900000000000013009 Tissue specimen from trachea 900000000000020002 +194767017 20170731 1 900000000000207008 128173005 en 900000000000013009 Tissue specimen from trachea 900000000000448009 +194768010 20020131 1 900000000000207008 128174004 en 900000000000013009 Tissue specimen from urethra 900000000000020002 +194768010 20170731 1 900000000000207008 128174004 en 900000000000013009 Tissue specimen from urethra 900000000000448009 +194769019 20020131 1 900000000000207008 128175003 en 900000000000013009 Tissue specimen from vagina 900000000000020002 +194769019 20170731 1 900000000000207008 128175003 en 900000000000013009 Tissue specimen from vagina 900000000000448009 +202932011 20020131 1 900000000000207008 110922001 en 900000000000013009 Cytologic material from left main bronchus 900000000000020002 +202932011 20170731 1 900000000000207008 110922001 en 900000000000013009 Cytologic material from left main bronchus 900000000000448009 +202933018 20020131 1 900000000000207008 110924000 en 900000000000013009 Cytologic material from right main bronchus 900000000000020002 +202933018 20170731 1 900000000000207008 110924000 en 900000000000013009 Cytologic material from right main bronchus 900000000000448009 +203087015 20020131 1 900000000000207008 122550002 en 900000000000013009 Specimen obtained by fine needle aspiration procedure 900000000000020002 +203087015 20170731 1 900000000000207008 122550002 en 900000000000013009 Specimen obtained by fine needle aspiration procedure 900000000000448009 +203088013 20020131 1 900000000000207008 122552005 en 900000000000013009 Arterial blood specimen 900000000000020002 +203088013 20170731 1 900000000000207008 122552005 en 900000000000013009 Arterial blood specimen 900000000000448009 +203089017 20020131 1 900000000000207008 122560006 en 900000000000013009 Blood specimen from blood donor 900000000000020002 +203089017 20170731 1 900000000000207008 122560006 en 900000000000013009 Blood specimen from blood donor 900000000000448009 +203091013 20020131 1 900000000000207008 122581006 en 900000000000013009 Erythrocyte specimen from blood donor 900000000000020002 +203091013 20170731 1 900000000000207008 122581006 en 900000000000013009 Erythrocyte specimen from blood donor 900000000000448009 +203093011 20020131 1 900000000000207008 122589008 en 900000000000013009 Serum specimen from blood donor 900000000000020002 +203093011 20170731 1 900000000000207008 122589008 en 900000000000013009 Serum specimen from blood donor 900000000000448009 +203094017 20020131 1 900000000000207008 122596005 en 900000000000013009 Specimen from breast obtained by complete excision of lesion, less than total mastectomy 900000000000020002 +203094017 20170731 1 900000000000207008 122596005 en 900000000000013009 Specimen from breast obtained by complete excision of lesion, less than total mastectomy 900000000000448009 +203095016 20020131 1 900000000000207008 122602008 en 900000000000013009 Tissue specimen from biopsy of upper aerodigestive tract 900000000000020002 +203095016 20170731 1 900000000000207008 122602008 en 900000000000013009 Tissue specimen from biopsy of upper aerodigestive tract 900000000000448009 +203097012 20020131 1 900000000000207008 122616003 en 900000000000013009 Specimen from pleura obtained by open thoracotomy and biopsy 900000000000020002 +203097012 20170731 1 900000000000207008 122616003 en 900000000000013009 Specimen from pleura obtained by open thoracotomy and biopsy 900000000000448009 +203098019 20020131 1 900000000000207008 122638001 en 900000000000013009 Tissue specimen from small intestine 900000000000020002 +203098019 20170731 1 900000000000207008 122638001 en 900000000000013009 Tissue specimen from small intestine 900000000000448009 +203099010 20020131 1 900000000000207008 122643008 en 900000000000013009 Tissue specimen from large intestine 900000000000020002 +203099010 20170731 1 900000000000207008 122643008 en 900000000000013009 Tissue specimen from large intestine 900000000000448009 +203100019 20020131 1 900000000000207008 122656001 en 900000000000013009 Tissue specimen from gall bladder 900000000000020002 +203100019 20170731 1 900000000000207008 122656001 en 900000000000013009 Tissue specimen from gall bladder 900000000000448009 +203101015 20020131 1 900000000000207008 122661004 en 900000000000013009 Specimen from pancreas obtained by partial pancreatectomy 900000000000020002 +203101015 20170731 1 900000000000207008 122661004 en 900000000000013009 Specimen from pancreas obtained by partial pancreatectomy 900000000000448009 +203102010 20020131 1 900000000000207008 122668005 en 900000000000013009 Specimen from urinary tract obtained by transurethral excision 900000000000020002 +203102010 20170731 1 900000000000207008 122668005 en 900000000000013009 Specimen from urinary tract obtained by transurethral excision 900000000000448009 +203103017 20020131 0 900000000000207008 122710003 en 900000000000013009 Specimen from ovary obtained by resection 900000000000020002 +203104011 20020131 0 900000000000207008 122712006 en 900000000000013009 Specimen from ovary obtained by hysterectomy with salpingo-oophorectomy 900000000000020002 +203105012 20020131 1 900000000000207008 122729009 en 900000000000013009 Specimen from testis obtained by transscrotal needle biopsy 900000000000020002 +203105012 20170731 1 900000000000207008 122729009 en 900000000000013009 Specimen from testis obtained by transscrotal needle biopsy 900000000000448009 +203106013 20020131 1 900000000000207008 122736005 en 900000000000013009 Tissue specimen from placenta 900000000000020002 +203106013 20170731 1 900000000000207008 122736005 en 900000000000013009 Tissue specimen from placenta 900000000000448009 +203112015 20020131 1 900000000000207008 122738006 en 900000000000013009 Specimen obtained from breast by stereotactically guided core needle biopsy 900000000000020002 +203112015 20170731 1 900000000000207008 122738006 en 900000000000013009 Specimen obtained from breast by stereotactically guided core needle biopsy 900000000000448009 +203113013 20020131 1 900000000000207008 122739003 en 900000000000013009 Specimen from breast obtained by incisional biopsy of breast mass 900000000000020002 +203113013 20170731 1 900000000000207008 122739003 en 900000000000013009 Specimen from breast obtained by incisional biopsy of breast mass 900000000000448009 +214166014 20020131 1 900000000000207008 122710003 en 900000000000013009 Specimen from ovary obtained by resection 900000000000020002 +214166014 20170731 1 900000000000207008 122710003 en 900000000000013009 Specimen from ovary obtained by resection 900000000000448009 +214167017 20020131 1 900000000000207008 122712006 en 900000000000013009 Specimen from ovary obtained by hysterectomy with salpingo-oophorectomy 900000000000020002 +214167017 20170731 1 900000000000207008 122712006 en 900000000000013009 Specimen from ovary obtained by hysterectomy with salpingo-oophorectomy 900000000000448009 +260798019 20020131 1 900000000000207008 167867009 en 900000000000013009 Multiple joint synovial fluid 900000000000020002 +260798019 20170731 1 900000000000207008 167867009 en 900000000000013009 Multiple joint synovial fluid 900000000000448009 +260799010 20020131 1 900000000000207008 167868004 en 900000000000013009 Shoulder joint synovial fluid 900000000000020002 +260799010 20170731 1 900000000000207008 167868004 en 900000000000013009 Shoulder joint synovial fluid 900000000000448009 +260800014 20020131 1 900000000000207008 167869007 en 900000000000013009 Elbow joint synovial fluid 900000000000020002 +260800014 20170731 1 900000000000207008 167869007 en 900000000000013009 Elbow joint synovial fluid 900000000000448009 +260801013 20020131 1 900000000000207008 167870008 en 900000000000013009 Wrist joint synovial fluid 900000000000020002 +260801013 20170731 1 900000000000207008 167870008 en 900000000000013009 Wrist joint synovial fluid 900000000000448009 +260802018 20020131 1 900000000000207008 167871007 en 900000000000013009 Hand joint synovial fluid 900000000000020002 +260802018 20170731 1 900000000000207008 167871007 en 900000000000013009 Hand joint synovial fluid 900000000000448009 +260803011 20020131 1 900000000000207008 167872000 en 900000000000013009 Finger joint synovial fluid 900000000000020002 +260803011 20170731 1 900000000000207008 167872000 en 900000000000013009 Finger joint synovial fluid 900000000000448009 +260804017 20020131 1 900000000000207008 167873005 en 900000000000013009 Hip joint synovial fluid 900000000000020002 +260804017 20170731 1 900000000000207008 167873005 en 900000000000013009 Hip joint synovial fluid 900000000000448009 +260805016 20020131 1 900000000000207008 167874004 en 900000000000013009 Knee joint synovial fluid 900000000000020002 +260805016 20170731 1 900000000000207008 167874004 en 900000000000013009 Knee joint synovial fluid 900000000000448009 +260806015 20020131 1 900000000000207008 167875003 en 900000000000013009 Ankle joint synovial fluid 900000000000020002 +260806015 20170731 1 900000000000207008 167875003 en 900000000000013009 Ankle joint synovial fluid 900000000000448009 +260807012 20020131 1 900000000000207008 167876002 en 900000000000013009 Foot joint synovial fluid 900000000000020002 +260807012 20170731 1 900000000000207008 167876002 en 900000000000013009 Foot joint synovial fluid 900000000000448009 +260808019 20020131 1 900000000000207008 167877006 en 900000000000013009 Toe joint synovial fluid 900000000000020002 +260808019 20170731 1 900000000000207008 167877006 en 900000000000013009 Toe joint synovial fluid 900000000000448009 +260847017 20020131 1 900000000000207008 167913002 en 900000000000013009 Bone marrow source 900000000000020002 +260847017 20170731 1 900000000000207008 167913002 en 900000000000013009 Bone marrow source 900000000000448009 +261131013 20020131 1 900000000000207008 168136008 en 900000000000013009 Colostomy fluid sample 900000000000020002 +261131013 20170731 1 900000000000207008 168136008 en 900000000000013009 Colostomy fluid sample 900000000000448009 +261132018 20020131 1 900000000000207008 168137004 en 900000000000013009 Gastric aspirate sample 900000000000020002 +261132018 20170731 1 900000000000207008 168137004 en 900000000000013009 Gastric aspirate sample 900000000000448009 +261133011 20020131 1 900000000000207008 168137004 en 900000000000013009 Stomach aspirate sample 900000000000020002 +261133011 20170731 1 900000000000207008 168137004 en 900000000000013009 Stomach aspirate sample 900000000000448009 +261134017 20020131 1 900000000000207008 168138009 en 900000000000013009 Gastric lavage aspirate sample 900000000000020002 +261134017 20170731 1 900000000000207008 168138009 en 900000000000013009 Gastric lavage aspirate sample 900000000000448009 +261135016 20020131 1 900000000000207008 168139001 en 900000000000013009 Peritoneal fluid sample 900000000000020002 +261135016 20170731 1 900000000000207008 168139001 en 900000000000013009 Peritoneal fluid sample 900000000000448009 +261136015 20020131 1 900000000000207008 168140004 en 900000000000013009 Peritoneal dialysis sample 900000000000020002 +261136015 20170731 1 900000000000207008 168140004 en 900000000000013009 Peritoneal dialysis sample 900000000000448009 +261137012 20020131 1 900000000000207008 168140004 en 900000000000013009 Returned peritoneal lavage fluid sample 900000000000020002 +261137012 20170731 1 900000000000207008 168140004 en 900000000000013009 Returned peritoneal lavage fluid sample 900000000000448009 +261138019 20020131 1 900000000000207008 168140004 en 900000000000013009 Peritoneal dialysate sample 900000000000020002 +261138019 20170731 1 900000000000207008 168140004 en 900000000000013009 Peritoneal dialysate sample 900000000000448009 +261139010 20020131 1 900000000000207008 168141000 en 900000000000013009 Nasal fluid sample 900000000000020002 +261139010 20170731 1 900000000000207008 168141000 en 900000000000013009 Nasal fluid sample 900000000000448009 +261146018 20020131 1 900000000000207008 168145009 en 900000000000013009 Lymph sample 900000000000020002 +261146018 20170731 1 900000000000207008 168145009 en 900000000000013009 Lymph sample 900000000000448009 +356864011 20020131 1 900000000000207008 110962002 en 900000000000013009 Oesophageal cytologic material 900000000000020002 +356864011 20170731 1 900000000000207008 110962002 en 900000000000013009 Oesophageal cytologic material 900000000000448009 +382607014 20020131 1 900000000000207008 256889002 en 900000000000013009 Breast cyst fluid sample 900000000000020002 +382607014 20170731 1 900000000000207008 256889002 en 900000000000013009 Breast cyst fluid sample 900000000000448009 +382636014 20020131 1 900000000000207008 256912003 en 900000000000013009 Red blood cell fluid sample 900000000000020002 +382636014 20170731 1 900000000000207008 256912003 en 900000000000013009 Red blood cell fluid sample 900000000000448009 +383041011 20020131 1 900000000000207008 257261003 en 900000000000013009 Swab 900000000000020002 +383041011 20170731 1 900000000000207008 257261003 en 900000000000013009 Swab 900000000000448009 +384544017 20020131 1 900000000000207008 258407001 en 900000000000013009 Abscess tissue 900000000000020002 +384544017 20170731 1 900000000000207008 258407001 en 900000000000013009 Abscess tissue 900000000000448009 +384549010 20020131 1 900000000000207008 258411007 en 900000000000013009 Nasopharyngeal aspirate 900000000000020002 +384549010 20170731 1 900000000000207008 258411007 en 900000000000013009 Nasopharyngeal aspirate 900000000000448009 +384550010 20020131 1 900000000000207008 258411007 en 900000000000013009 NPA - Nasopharyngeal aspirate 900000000000017005 +384551014 20020131 1 900000000000207008 258412000 en 900000000000013009 Oropharyngeal aspirate 900000000000020002 +384551014 20170731 1 900000000000207008 258412000 en 900000000000013009 Oropharyngeal aspirate 900000000000448009 +384554018 20020131 1 900000000000207008 258414004 en 900000000000013009 Adipose tissue sample 900000000000020002 +384554018 20170731 1 900000000000207008 258414004 en 900000000000013009 Adipose tissue sample 900000000000448009 +384555017 20020131 1 900000000000207008 258415003 en 900000000000013009 Biopsy sample 900000000000020002 +384555017 20170731 1 900000000000207008 258415003 en 900000000000013009 Biopsy sample 900000000000448009 +384558015 20020131 1 900000000000207008 258417006 en 900000000000013009 Bone tissue sample 900000000000020002 +384558015 20170731 1 900000000000207008 258417006 en 900000000000013009 Bone tissue sample 900000000000448009 +384559011 20020131 1 900000000000207008 258418001 en 900000000000013009 Burn tissue 900000000000020002 +384559011 20170731 1 900000000000207008 258418001 en 900000000000013009 Burn tissue 900000000000448009 +384560018 20020131 1 900000000000207008 258419009 en 900000000000013009 Curettings 900000000000020002 +384560018 20170731 1 900000000000207008 258419009 en 900000000000013009 Curettings 900000000000448009 +384561019 20020131 1 900000000000207008 258420003 en 900000000000013009 Cyst tissue 900000000000020002 +384561019 20170731 1 900000000000207008 258420003 en 900000000000013009 Cyst tissue 900000000000448009 +384562014 20020131 1 900000000000207008 258421004 en 900000000000013009 Embryo biopsy sample 900000000000020002 +384562014 20170731 1 900000000000207008 258421004 en 900000000000013009 Embryo biopsy sample 900000000000448009 +384563016 20020131 1 900000000000207008 258422006 en 900000000000013009 Gonad tissue 900000000000020002 +384563016 20170731 1 900000000000207008 258422006 en 900000000000013009 Gonad tissue 900000000000448009 +384564010 20020131 1 900000000000207008 258423001 en 900000000000013009 Hair bulb sample 900000000000020002 +384564010 20170731 1 900000000000207008 258423001 en 900000000000013009 Hair bulb sample 900000000000448009 +384565011 20020131 1 900000000000207008 258424007 en 900000000000013009 Heart valve tissue 900000000000020002 +384565011 20170731 1 900000000000207008 258424007 en 900000000000013009 Heart valve tissue 900000000000448009 +384566012 20020131 1 900000000000207008 258425008 en 900000000000013009 Natural lens tissue 900000000000020002 +384566012 20170731 1 900000000000207008 258425008 en 900000000000013009 Natural lens tissue 900000000000448009 +384567015 20020131 1 900000000000207008 258426009 en 900000000000013009 Placental membrane tissue sample 900000000000020002 +384567015 20170731 1 900000000000207008 258426009 en 900000000000013009 Placental membrane tissue sample 900000000000448009 +384568013 20020131 1 900000000000207008 258426009 en 900000000000013009 Placental membrane tissue 900000000000020002 +384568013 20170731 1 900000000000207008 258426009 en 900000000000013009 Placental membrane tissue 900000000000448009 +384570016 20020131 1 900000000000207008 258428005 en 900000000000013009 Products of conception tissue sample 900000000000020002 +384570016 20170731 1 900000000000207008 258428005 en 900000000000013009 Products of conception tissue sample 900000000000448009 +384571017 20020131 1 900000000000207008 258428005 en 900000000000013009 Products of conception tissue 900000000000020002 +384571017 20170731 1 900000000000207008 258428005 en 900000000000013009 Products of conception tissue 900000000000448009 +384572012 20020131 1 900000000000207008 258429002 en 900000000000013009 Rectal scrape sample 900000000000020002 +384572012 20170731 1 900000000000207008 258429002 en 900000000000013009 Rectal scrape sample 900000000000448009 +384573019 20020131 1 900000000000207008 258430007 en 900000000000013009 Rectal snip sample 900000000000020002 +384573019 20170731 1 900000000000207008 258430007 en 900000000000013009 Rectal snip sample 900000000000448009 +384574013 20020131 1 900000000000207008 258431006 en 900000000000013009 Scrapings 900000000000020002 +384574013 20170731 1 900000000000207008 258431006 en 900000000000013009 Scrapings 900000000000448009 +384575014 20020131 1 900000000000207008 258432004 en 900000000000013009 Sebum sample 900000000000020002 +384575014 20170731 1 900000000000207008 258432004 en 900000000000013009 Sebum sample 900000000000448009 +384576010 20020131 1 900000000000207008 258433009 en 900000000000013009 Smear sample 900000000000020002 +384576010 20170731 1 900000000000207008 258433009 en 900000000000013009 Smear sample 900000000000448009 +384577018 20020131 1 900000000000207008 258434003 en 900000000000013009 Spun urinary sediment 900000000000020002 +384577018 20170731 1 900000000000207008 258434003 en 900000000000013009 Spun urinary sediment 900000000000448009 +384578011 20020131 1 900000000000207008 258435002 en 900000000000013009 Tumour tissue 900000000000020002 +384578011 20170731 1 900000000000207008 258435002 en 900000000000013009 Tumour tissue 900000000000448009 +384579015 20020131 1 900000000000207008 258435002 en 900000000000013009 Tumour tissue sample 900000000000020002 +384579015 20170731 1 900000000000207008 258435002 en 900000000000013009 Tumour tissue sample 900000000000448009 +384580017 20020131 1 900000000000207008 258435002 en 900000000000013009 Tumor tissue 900000000000020002 +384580017 20170731 1 900000000000207008 258435002 en 900000000000013009 Tumor tissue 900000000000448009 +384581018 20020131 1 900000000000207008 258435002 en 900000000000013009 Tumor tissue sample 900000000000020002 +384581018 20170731 1 900000000000207008 258435002 en 900000000000013009 Tumor tissue sample 900000000000448009 +384582013 20020131 1 900000000000207008 258436001 en 900000000000013009 Umbilical cord tissue 900000000000020002 +384582013 20170731 1 900000000000207008 258436001 en 900000000000013009 Umbilical cord tissue 900000000000448009 +384583015 20020131 1 900000000000207008 258436001 en 900000000000013009 Umbilical cord tissue sample 900000000000020002 +384583015 20170731 1 900000000000207008 258436001 en 900000000000013009 Umbilical cord tissue sample 900000000000448009 +384584014 20020131 1 900000000000207008 258437005 en 900000000000013009 Vegetation from heart valve 900000000000020002 +384584014 20170731 1 900000000000207008 258437005 en 900000000000013009 Vegetation from heart valve 900000000000448009 +384585010 20020131 1 900000000000207008 258438000 en 900000000000013009 Vitreous humor sample 900000000000020002 +384585010 20170731 1 900000000000207008 258438000 en 900000000000013009 Vitreous humor sample 900000000000448009 +384586011 20020131 1 900000000000207008 258438000 en 900000000000013009 Vitreous humour sample 900000000000020002 +384586011 20170731 1 900000000000207008 258438000 en 900000000000013009 Vitreous humour sample 900000000000448009 +384587019 20020131 1 900000000000207008 258439008 en 900000000000013009 Discharge - sample 900000000000020002 +384587019 20080731 0 900000000000207008 258439008 en 900000000000013009 Discharge - sample 900000000000020002 +384588012 20020131 1 900000000000207008 258439008 en 900000000000013009 Discharge 900000000000020002 +384588012 20170731 1 900000000000207008 258439008 en 900000000000013009 Discharge 900000000000448009 +384589016 20020131 1 900000000000207008 258439008 en 900000000000013009 Dx - Discharge 900000000000020002 +384590013 20020131 1 900000000000207008 258440005 en 900000000000013009 Effusion sample 900000000000020002 +384590013 20170731 1 900000000000207008 258440005 en 900000000000013009 Effusion sample 900000000000448009 +384591012 20020131 1 900000000000207008 258441009 en 900000000000013009 Exudate sample 900000000000020002 +384591012 20170731 1 900000000000207008 258441009 en 900000000000013009 Exudate sample 900000000000448009 +384592017 20020131 1 900000000000207008 258442002 en 900000000000013009 Fluid sample 900000000000020002 +384592017 20170731 1 900000000000207008 258442002 en 900000000000013009 Fluid sample 900000000000448009 +384593010 20020131 1 900000000000207008 258442002 en 900000000000013009 Fluid specimen 900000000000020002 +384593010 20170731 1 900000000000207008 258442002 en 900000000000013009 Fluid specimen 900000000000448009 +384598018 20020131 1 900000000000207008 258444001 en 900000000000013009 Aqueous humour sample 900000000000020002 +384598018 20170731 1 900000000000207008 258444001 en 900000000000013009 Aqueous humour sample 900000000000448009 +384599014 20020131 1 900000000000207008 258444001 en 900000000000013009 Aqueous humor sample 900000000000020002 +384599014 20170731 1 900000000000207008 258444001 en 900000000000013009 Aqueous humor sample 900000000000448009 +384601011 20020131 1 900000000000207008 258446004 en 900000000000013009 Bronchial fluid sample 900000000000020002 +384601011 20170731 1 900000000000207008 258446004 en 900000000000013009 Bronchial fluid sample 900000000000448009 +384603014 20020131 1 900000000000207008 258448003 en 900000000000013009 Bursa fluid sample 900000000000020002 +384603014 20170731 1 900000000000207008 258448003 en 900000000000013009 Bursa fluid sample 900000000000448009 +384605019 20020131 1 900000000000207008 258450006 en 900000000000013009 Cerebrospinal fluid sample 900000000000020002 +384605019 20170731 1 900000000000207008 258450006 en 900000000000013009 Cerebrospinal fluid sample 900000000000448009 +384606018 20020131 1 900000000000207008 258450006 en 900000000000013009 CSF - Cerebrospinal fluid sample 900000000000017005 +384609013 20020131 1 900000000000207008 258452003 en 900000000000013009 Chylous fluid sample 900000000000020002 +384609013 20170731 1 900000000000207008 258452003 en 900000000000013009 Chylous fluid sample 900000000000448009 +384610015 20020131 1 900000000000207008 258453008 en 900000000000013009 Cyst fluid sample 900000000000020002 +384610015 20170731 1 900000000000207008 258453008 en 900000000000013009 Cyst fluid sample 900000000000448009 +384611016 20020131 1 900000000000207008 258454002 en 900000000000013009 Dialysate sample 900000000000020002 +384611016 20170731 1 900000000000207008 258454002 en 900000000000013009 Dialysate sample 900000000000448009 +384612011 20020131 1 900000000000207008 258455001 en 900000000000013009 Drainage fluid sample 900000000000020002 +384612011 20170731 1 900000000000207008 258455001 en 900000000000013009 Drainage fluid sample 900000000000448009 +384613018 20020131 1 900000000000207008 258456000 en 900000000000013009 Empyema fluid sample 900000000000020002 +384613018 20170731 1 900000000000207008 258456000 en 900000000000013009 Empyema fluid sample 900000000000448009 +384614012 20020131 1 900000000000207008 258457009 en 900000000000013009 Faecal fluid sample 900000000000020002 +384614012 20170731 1 900000000000207008 258457009 en 900000000000013009 Faecal fluid sample 900000000000448009 +384615013 20020131 1 900000000000207008 258457009 en 900000000000013009 Fecal fluid sample 900000000000020002 +384615013 20170731 1 900000000000207008 258457009 en 900000000000013009 Fecal fluid sample 900000000000448009 +384616014 20020131 1 900000000000207008 258458004 en 900000000000013009 Fistula fluid sample 900000000000020002 +384616014 20170731 1 900000000000207008 258458004 en 900000000000013009 Fistula fluid sample 900000000000448009 +384617017 20020131 1 900000000000207008 258459007 en 900000000000013009 Gastric fluid sample 900000000000020002 +384617017 20170731 1 900000000000207008 258459007 en 900000000000013009 Gastric fluid sample 900000000000448009 +384618010 20020131 1 900000000000207008 258459007 en 900000000000013009 Gastric juice sample 900000000000020002 +384618010 20170731 1 900000000000207008 258459007 en 900000000000013009 Gastric juice sample 900000000000448009 +384620013 20020131 1 900000000000207008 258461003 en 900000000000013009 Hydrocele fluid sample 900000000000020002 +384620013 20170731 1 900000000000207008 258461003 en 900000000000013009 Hydrocele fluid sample 900000000000448009 +384621012 20020131 1 900000000000207008 258462005 en 900000000000013009 Ileostomy fluid sample 900000000000020002 +384621012 20170731 1 900000000000207008 258462005 en 900000000000013009 Ileostomy fluid sample 900000000000448009 +384622017 20020131 1 900000000000207008 258463000 en 900000000000013009 Jejunal fluid sample 900000000000020002 +384622017 20170731 1 900000000000207008 258463000 en 900000000000013009 Jejunal fluid sample 900000000000448009 +384624016 20020131 1 900000000000207008 258465007 en 900000000000013009 Lacrimal fluid sample 900000000000020002 +384624016 20170731 1 900000000000207008 258465007 en 900000000000013009 Lacrimal fluid sample 900000000000448009 +384625015 20020131 1 900000000000207008 258466008 en 900000000000013009 Middle ear fluid sample 900000000000020002 +384625015 20170731 1 900000000000207008 258466008 en 900000000000013009 Middle ear fluid sample 900000000000448009 +384626019 20020131 1 900000000000207008 258467004 en 900000000000013009 Nasopharyngeal washings 900000000000020002 +384626019 20170731 1 900000000000207008 258467004 en 900000000000013009 Nasopharyngeal washings 900000000000448009 +384627011 20020131 1 900000000000207008 258468009 en 900000000000013009 Oedema fluid sample 900000000000020002 +384627011 20170731 1 900000000000207008 258468009 en 900000000000013009 Oedema fluid sample 900000000000448009 +384628018 20020131 1 900000000000207008 258468009 en 900000000000013009 Edema fluid sample 900000000000020002 +384628018 20170731 1 900000000000207008 258468009 en 900000000000013009 Edema fluid sample 900000000000448009 +384629014 20020131 1 900000000000207008 258469001 en 900000000000013009 Pharyngeal washings 900000000000020002 +384629014 20170731 1 900000000000207008 258469001 en 900000000000013009 Pharyngeal washings 900000000000448009 +384630016 20020131 1 900000000000207008 258470000 en 900000000000013009 Prostatic fluid sample 900000000000020002 +384630016 20170731 1 900000000000207008 258470000 en 900000000000013009 Prostatic fluid sample 900000000000448009 +384631017 20020131 1 900000000000207008 258471001 en 900000000000013009 Prostatic massage fluid sample 900000000000020002 +384631017 20170731 1 900000000000207008 258471001 en 900000000000013009 Prostatic massage fluid sample 900000000000448009 +384632012 20020131 1 900000000000207008 258472008 en 900000000000013009 Renal pelvis fluid sample 900000000000020002 +384632012 20170731 1 900000000000207008 258472008 en 900000000000013009 Renal pelvis fluid sample 900000000000448009 +384634013 20020131 1 900000000000207008 258474009 en 900000000000013009 Sinus fluid sample 900000000000020002 +384634013 20170731 1 900000000000207008 258474009 en 900000000000013009 Sinus fluid sample 900000000000448009 +384635014 20020131 1 900000000000207008 258475005 en 900000000000013009 Sinus washings 900000000000020002 +384635014 20170731 1 900000000000207008 258475005 en 900000000000013009 Sinus washings 900000000000448009 +384636010 20020131 1 900000000000207008 258476006 en 900000000000013009 Subretinal fluid sample 900000000000020002 +384636010 20170731 1 900000000000207008 258476006 en 900000000000013009 Subretinal fluid sample 900000000000448009 +384640018 20020131 1 900000000000207008 258479004 en 900000000000013009 Tissue fluid sample 900000000000020002 +384640018 20170731 1 900000000000207008 258479004 en 900000000000013009 Tissue fluid sample 900000000000448009 +384641019 20020131 1 900000000000207008 258480001 en 900000000000013009 Transtracheal aspirate sample 900000000000020002 +384641019 20170731 1 900000000000207008 258480001 en 900000000000013009 Transtracheal aspirate sample 900000000000448009 +384642014 20020131 1 900000000000207008 258480001 en 900000000000013009 Transtracheal secretion sample 900000000000020002 +384642014 20170731 1 900000000000207008 258480001 en 900000000000013009 Transtracheal secretion sample 900000000000448009 +384643016 20020131 1 900000000000207008 258480001 en 900000000000013009 Transtracheal aspirate 900000000000020002 +384643016 20170731 1 900000000000207008 258480001 en 900000000000013009 Transtracheal aspirate 900000000000448009 +384644010 20020131 1 900000000000207008 258480001 en 900000000000013009 Transtracheal fluid sample 900000000000020002 +384644010 20170731 1 900000000000207008 258480001 en 900000000000013009 Transtracheal fluid sample 900000000000448009 +384645011 20020131 1 900000000000207008 258481002 en 900000000000013009 Vaginal washout fluid sample 900000000000020002 +384645011 20170731 1 900000000000207008 258481002 en 900000000000013009 Vaginal washout fluid sample 900000000000448009 +384646012 20020131 1 900000000000207008 258482009 en 900000000000013009 Vesicle fluid sample 900000000000020002 +384646012 20170731 1 900000000000207008 258482009 en 900000000000013009 Vesicle fluid sample 900000000000448009 +384647015 20020131 1 900000000000207008 258483004 en 900000000000013009 Mucus sample 900000000000020002 +384647015 20170731 1 900000000000207008 258483004 en 900000000000013009 Mucus sample 900000000000448009 +384648013 20020131 1 900000000000207008 258484005 en 900000000000013009 Postmortem tissue sample 900000000000020002 +384648013 20170731 1 900000000000207008 258484005 en 900000000000013009 Postmortem tissue sample 900000000000448009 +384649017 20020131 1 900000000000207008 258484005 en 900000000000013009 Postmortem tissue 900000000000020002 +384649017 20170731 1 900000000000207008 258484005 en 900000000000013009 Postmortem tissue 900000000000448009 +384650017 20020131 1 900000000000207008 258485006 en 900000000000013009 Corneal scrapings 900000000000020002 +384650017 20170731 1 900000000000207008 258485006 en 900000000000013009 Corneal scrapings 900000000000448009 +384651018 20020131 1 900000000000207008 258485006 en 900000000000013009 Corneal scraping sample 900000000000020002 +384651018 20170731 1 900000000000207008 258485006 en 900000000000013009 Corneal scraping sample 900000000000448009 +384653015 20020131 1 900000000000207008 258487003 en 900000000000013009 Faecal smear 900000000000020002 +384653015 20170731 1 900000000000207008 258487003 en 900000000000013009 Faecal smear 900000000000448009 +384654014 20020131 1 900000000000207008 258487003 en 900000000000013009 Fecal smear 900000000000020002 +384654014 20170731 1 900000000000207008 258487003 en 900000000000013009 Fecal smear 900000000000448009 +384655010 20020131 1 900000000000207008 258488008 en 900000000000013009 Lymph node smear 900000000000020002 +384655010 20170731 1 900000000000207008 258488008 en 900000000000013009 Lymph node smear 900000000000448009 +384656011 20020131 1 900000000000207008 258489000 en 900000000000013009 Slit skin smear 900000000000020002 +384656011 20170731 1 900000000000207008 258489000 en 900000000000013009 Slit skin smear 900000000000448009 +384657019 20020131 1 900000000000207008 258490009 en 900000000000013009 Biliary stone sample 900000000000020002 +384657019 20170731 1 900000000000207008 258490009 en 900000000000013009 Biliary stone sample 900000000000448009 +384660014 20020131 1 900000000000207008 258492001 en 900000000000013009 Gallstone sample 900000000000020002 +384660014 20170731 1 900000000000207008 258492001 en 900000000000013009 Gallstone sample 900000000000448009 +384662018 20020131 1 900000000000207008 258493006 en 900000000000013009 Bladder stone sample 900000000000020002 +384662018 20170731 1 900000000000207008 258493006 en 900000000000013009 Bladder stone sample 900000000000448009 +384663011 20020131 1 900000000000207008 258494000 en 900000000000013009 Pancreatic stone sample 900000000000020002 +384663011 20170731 1 900000000000207008 258494000 en 900000000000013009 Pancreatic stone sample 900000000000448009 +384664017 20020131 1 900000000000207008 258495004 en 900000000000013009 Renal stone sample 900000000000020002 +384664017 20170731 1 900000000000207008 258495004 en 900000000000013009 Renal stone sample 900000000000448009 +384665016 20020131 1 900000000000207008 258496003 en 900000000000013009 Ureteric stone sample 900000000000020002 +384665016 20170731 1 900000000000207008 258496003 en 900000000000013009 Ureteric stone sample 900000000000448009 +384666015 20020131 1 900000000000207008 258497007 en 900000000000013009 Abscess swab 900000000000020002 +384666015 20170731 1 900000000000207008 258497007 en 900000000000013009 Abscess swab 900000000000448009 +384667012 20020131 1 900000000000207008 258498002 en 900000000000013009 Conjunctival swab 900000000000020002 +384667012 20170731 1 900000000000207008 258498002 en 900000000000013009 Conjunctival swab 900000000000448009 +384668019 20020131 1 900000000000207008 258499005 en 900000000000013009 Cough swab 900000000000020002 +384668019 20170731 1 900000000000207008 258499005 en 900000000000013009 Cough swab 900000000000448009 +384669010 20020131 1 900000000000207008 258500001 en 900000000000013009 Nasopharyngeal swab 900000000000020002 +384669010 20170731 1 900000000000207008 258500001 en 900000000000013009 Nasopharyngeal swab 900000000000448009 +384671010 20020131 1 900000000000207008 258502009 en 900000000000013009 Pus swab 900000000000020002 +384671010 20170731 1 900000000000207008 258502009 en 900000000000013009 Pus swab 900000000000448009 +384672015 20020131 1 900000000000207008 258503004 en 900000000000013009 Skin swab 900000000000020002 +384672015 20170731 1 900000000000207008 258503004 en 900000000000013009 Skin swab 900000000000448009 +384673013 20020131 1 900000000000207008 258504005 en 900000000000013009 BCG site swab 900000000000017005 +384674019 20020131 1 900000000000207008 258505006 en 900000000000013009 Skin ulcer swab 900000000000020002 +384674019 20170731 1 900000000000207008 258505006 en 900000000000013009 Skin ulcer swab 900000000000448009 +384675018 20020131 1 900000000000207008 258506007 en 900000000000013009 Swab of drain insertion site 900000000000020002 +384675018 20170731 1 900000000000207008 258506007 en 900000000000013009 Swab of drain insertion site 900000000000448009 +384676017 20020131 1 900000000000207008 258507003 en 900000000000013009 Swab of line insertion site 900000000000020002 +384676017 20170731 1 900000000000207008 258507003 en 900000000000013009 Swab of line insertion site 900000000000448009 +384677014 20020131 1 900000000000207008 258508008 en 900000000000013009 Genital swab 900000000000020002 +384677014 20170731 1 900000000000207008 258508008 en 900000000000013009 Genital swab 900000000000448009 +384678016 20020131 1 900000000000207008 258509000 en 900000000000013009 Male genital swab 900000000000020002 +384678016 20170731 1 900000000000207008 258509000 en 900000000000013009 Male genital swab 900000000000448009 +384679012 20020131 1 900000000000207008 258510005 en 900000000000013009 Penis swab 900000000000020002 +384679012 20170731 1 900000000000207008 258510005 en 900000000000013009 Penis swab 900000000000448009 +384680010 20020131 1 900000000000207008 258511009 en 900000000000013009 Penile urethral swab 900000000000020002 +384680010 20170731 1 900000000000207008 258511009 en 900000000000013009 Penile urethral swab 900000000000448009 +384681014 20020131 1 900000000000207008 258512002 en 900000000000013009 Glans penis swab 900000000000020002 +384681014 20170731 1 900000000000207008 258512002 en 900000000000013009 Glans penis swab 900000000000448009 +384682019 20020131 1 900000000000207008 258513007 en 900000000000013009 Prepuce swab 900000000000020002 +384682019 20170731 1 900000000000207008 258513007 en 900000000000013009 Prepuce swab 900000000000448009 +384683012 20020131 1 900000000000207008 258513007 en 900000000000013009 Foreskin swab 900000000000020002 +384683012 20170731 1 900000000000207008 258513007 en 900000000000013009 Foreskin swab 900000000000448009 +384684018 20020131 1 900000000000207008 258514001 en 900000000000013009 Subpreputial swab 900000000000020002 +384684018 20170731 1 900000000000207008 258514001 en 900000000000013009 Subpreputial swab 900000000000448009 +384685017 20020131 1 900000000000207008 258515000 en 900000000000013009 Coronal sulcus of penis swab 900000000000020002 +384685017 20170731 1 900000000000207008 258515000 en 900000000000013009 Coronal sulcus of penis swab 900000000000448009 +384686016 20020131 1 900000000000207008 258516004 en 900000000000013009 Frenulum of penis swab 900000000000020002 +384686016 20170731 1 900000000000207008 258516004 en 900000000000013009 Frenulum of penis swab 900000000000448009 +384687013 20020131 1 900000000000207008 258517008 en 900000000000013009 Shaft of penis swab 900000000000020002 +384687013 20170731 1 900000000000207008 258517008 en 900000000000013009 Shaft of penis swab 900000000000448009 +384688015 20020131 1 900000000000207008 258518003 en 900000000000013009 Scrotal swab 900000000000020002 +384688015 20170731 1 900000000000207008 258518003 en 900000000000013009 Scrotal swab 900000000000448009 +384689011 20020131 1 900000000000207008 258519006 en 900000000000013009 Female genital swab 900000000000020002 +384689011 20170731 1 900000000000207008 258519006 en 900000000000013009 Female genital swab 900000000000448009 +384690019 20020131 1 900000000000207008 258520000 en 900000000000013009 Vaginal swab 900000000000020002 +384690019 20170731 1 900000000000207008 258520000 en 900000000000013009 Vaginal swab 900000000000448009 +384691015 20020131 1 900000000000207008 258520000 en 900000000000013009 VS - Vaginal swab 900000000000017005 +384692010 20020131 1 900000000000207008 258521001 en 900000000000013009 HVS - High vaginal swab 900000000000017005 +384693017 20020131 1 900000000000207008 258521001 en 900000000000013009 High vaginal swab 900000000000020002 +384693017 20170731 1 900000000000207008 258521001 en 900000000000013009 High vaginal swab 900000000000448009 +384694011 20020131 1 900000000000207008 258522008 en 900000000000013009 Low vaginal swab 900000000000020002 +384694011 20170731 1 900000000000207008 258522008 en 900000000000013009 Low vaginal swab 900000000000448009 +384695012 20020131 1 900000000000207008 258523003 en 900000000000013009 Vulval swab 900000000000020002 +384695012 20170731 1 900000000000207008 258523003 en 900000000000013009 Vulval swab 900000000000448009 +384696013 20020131 1 900000000000207008 258524009 en 900000000000013009 Cervical swab 900000000000020002 +384696013 20170731 1 900000000000207008 258524009 en 900000000000013009 Cervical swab 900000000000448009 +384697016 20020131 1 900000000000207008 258524009 en 900000000000013009 CS - Cervical swab 900000000000017005 +384698014 20020131 1 900000000000207008 258525005 en 900000000000013009 Perineal swab 900000000000020002 +384698014 20170731 1 900000000000207008 258525005 en 900000000000013009 Perineal swab 900000000000448009 +384699018 20020131 1 900000000000207008 258526006 en 900000000000013009 Perianal swab 900000000000020002 +384699018 20170731 1 900000000000207008 258526006 en 900000000000013009 Perianal swab 900000000000448009 +384700017 20020131 1 900000000000207008 258527002 en 900000000000013009 Anal swab 900000000000020002 +384700017 20170731 1 900000000000207008 258527002 en 900000000000013009 Anal swab 900000000000448009 +384701018 20020131 1 900000000000207008 258528007 en 900000000000013009 Rectal swab 900000000000020002 +384701018 20170731 1 900000000000207008 258528007 en 900000000000013009 Rectal swab 900000000000448009 +384702013 20020131 1 900000000000207008 258528007 en 900000000000013009 RS - Rectal swab 900000000000017005 +384703015 20020131 1 900000000000207008 258529004 en 900000000000013009 TS - Throat swab 900000000000017005 +384704014 20020131 1 900000000000207008 258529004 en 900000000000013009 Throat swab 900000000000020002 +384704014 20170731 1 900000000000207008 258529004 en 900000000000013009 Throat swab 900000000000448009 +384705010 20020131 1 900000000000207008 258530009 en 900000000000013009 Urethral swab 900000000000020002 +384705010 20170731 1 900000000000207008 258530009 en 900000000000013009 Urethral swab 900000000000448009 +384706011 20020131 1 900000000000207008 258530009 en 900000000000013009 US - Urethral swab 900000000000017005 +384707019 20020131 1 900000000000207008 258531008 en 900000000000013009 Wound swab 900000000000020002 +384707019 20170731 1 900000000000207008 258531008 en 900000000000013009 Wound swab 900000000000448009 +384708012 20020131 1 900000000000207008 258532001 en 900000000000013009 Swab of inanimate object 900000000000020002 +384708012 20170731 1 900000000000207008 258532001 en 900000000000013009 Swab of inanimate object 900000000000448009 +384711013 20020131 1 900000000000207008 258535004 en 900000000000013009 Floor swab 900000000000020002 +384711013 20170731 1 900000000000207008 258535004 en 900000000000013009 Floor swab 900000000000448009 +384712018 20020131 1 900000000000207008 258536003 en 900000000000013009 Incubator swab 900000000000020002 +384712018 20170731 1 900000000000207008 258536003 en 900000000000013009 Incubator swab 900000000000448009 +384713011 20020131 1 900000000000207008 258537007 en 900000000000013009 Surface swab 900000000000020002 +384713011 20170731 1 900000000000207008 258537007 en 900000000000013009 Surface swab 900000000000448009 +384714017 20020131 1 900000000000207008 258538002 en 900000000000013009 Transudate sample 900000000000020002 +384714017 20170731 1 900000000000207008 258538002 en 900000000000013009 Transudate sample 900000000000448009 +384715016 20020131 1 900000000000207008 258539005 en 900000000000013009 Bone and joint sample 900000000000020002 +384715016 20170731 1 900000000000207008 258539005 en 900000000000013009 Bone and joint sample 900000000000448009 +384717012 20020131 1 900000000000207008 258541006 en 900000000000013009 Cardiovascular sample 900000000000020002 +384717012 20170731 1 900000000000207008 258541006 en 900000000000013009 Cardiovascular sample 900000000000448009 +384718019 20020131 1 900000000000207008 258542004 en 900000000000013009 Heart valve sample 900000000000020002 +384718019 20170731 1 900000000000207008 258542004 en 900000000000013009 Heart valve sample 900000000000448009 +384721017 20020131 1 900000000000207008 258544003 en 900000000000013009 Natural heart valve sample 900000000000020002 +384721017 20170731 1 900000000000207008 258544003 en 900000000000013009 Natural heart valve sample 900000000000448009 +384722012 20020131 1 900000000000207008 258544003 en 900000000000013009 Native heart valve sample 900000000000020002 +384722012 20170731 1 900000000000207008 258544003 en 900000000000013009 Native heart valve sample 900000000000448009 +384723019 20020131 1 900000000000207008 258545002 en 900000000000013009 Vegetation from prosthetic heart valve 900000000000020002 +384723019 20170731 1 900000000000207008 258545002 en 900000000000013009 Vegetation from prosthetic heart valve 900000000000448009 +384724013 20020131 1 900000000000207008 258545002 en 900000000000013009 Vegetation from artificial heart valve 900000000000020002 +384724013 20170731 1 900000000000207008 258545002 en 900000000000013009 Vegetation from artificial heart valve 900000000000448009 +384725014 20020131 1 900000000000207008 258546001 en 900000000000013009 Vegetation from natural heart valve 900000000000020002 +384725014 20170731 1 900000000000207008 258546001 en 900000000000013009 Vegetation from natural heart valve 900000000000448009 +384726010 20020131 1 900000000000207008 258546001 en 900000000000013009 Vegetation from native heart valve 900000000000020002 +384726010 20170731 1 900000000000207008 258546001 en 900000000000013009 Vegetation from native heart valve 900000000000448009 +384727018 20020131 1 900000000000207008 258547005 en 900000000000013009 Cardiac bypass pump fluid sample 900000000000020002 +384727018 20170731 1 900000000000207008 258547005 en 900000000000013009 Cardiac bypass pump fluid sample 900000000000448009 +384727018 20220430 0 900000000000207008 258547005 en 900000000000013009 Cardiac bypass pump fluid sample 900000000000448009 +384728011 20020131 1 900000000000207008 258548000 en 900000000000013009 Dermatological sample 900000000000020002 +384728011 20170731 1 900000000000207008 258548000 en 900000000000013009 Dermatological sample 900000000000448009 +384729015 20020131 1 900000000000207008 258549008 en 900000000000013009 Skin scale sample 900000000000020002 +384729015 20170731 1 900000000000207008 258549008 en 900000000000013009 Skin scale sample 900000000000448009 +384733010 20020131 1 900000000000207008 258553005 en 900000000000013009 Duodenal string 900000000000020002 +384733010 20170731 1 900000000000207008 258553005 en 900000000000013009 Duodenal string 900000000000448009 +384734016 20020131 1 900000000000207008 258554004 en 900000000000013009 Faecal concretion sample 900000000000020002 +384734016 20170731 1 900000000000207008 258554004 en 900000000000013009 Faecal concretion sample 900000000000448009 +384735015 20020131 1 900000000000207008 258554004 en 900000000000013009 Fecal concretion sample 900000000000020002 +384735015 20170731 1 900000000000207008 258554004 en 900000000000013009 Fecal concretion sample 900000000000448009 +384736019 20020131 1 900000000000207008 258555003 en 900000000000013009 Hot stool sample 900000000000020002 +384736019 20170731 1 900000000000207008 258555003 en 900000000000013009 Hot stool sample 900000000000448009 +384740011 20020131 1 900000000000207008 258558001 en 900000000000013009 Oral secretion sample 900000000000020002 +384740011 20170731 1 900000000000207008 258558001 en 900000000000013009 Oral secretion sample 900000000000448009 +384741010 20020131 1 900000000000207008 258559009 en 900000000000013009 Gingivocrevicular fluid sample 900000000000017005 +384741010 20200131 1 900000000000207008 258559009 en 900000000000013009 Gingivocrevicular fluid sample 900000000000448009 +384742015 20020131 1 900000000000207008 258560004 en 900000000000013009 Oral saliva sample 900000000000020002 +384742015 20170731 1 900000000000207008 258560004 en 900000000000013009 Oral saliva sample 900000000000448009 +384743013 20020131 1 900000000000207008 258561000 en 900000000000013009 Parotid gland saliva sample 900000000000020002 +384743013 20170731 1 900000000000207008 258561000 en 900000000000013009 Parotid gland saliva sample 900000000000448009 +384744019 20020131 1 900000000000207008 258562007 en 900000000000013009 Genetic sample 900000000000020002 +384744019 20170731 1 900000000000207008 258562007 en 900000000000013009 Genetic sample 900000000000448009 +384745018 20020131 1 900000000000207008 258563002 en 900000000000013009 Amniotic cell sample 900000000000020002 +384745018 20170731 1 900000000000207008 258563002 en 900000000000013009 Amniotic cell sample 900000000000448009 +384746017 20020131 1 900000000000207008 258564008 en 900000000000013009 Buccal smear sample 900000000000020002 +384746017 20170731 1 900000000000207008 258564008 en 900000000000013009 Buccal smear sample 900000000000448009 +384747014 20020131 1 900000000000207008 258565009 en 900000000000013009 Chorionic villi sample 900000000000020002 +384747014 20170731 1 900000000000207008 258565009 en 900000000000013009 Chorionic villi sample 900000000000448009 +384748016 20020131 1 900000000000207008 258566005 en 900000000000013009 Deoxyribonucleic acid sample 900000000000020002 +384748016 20170731 1 900000000000207008 258566005 en 900000000000013009 Deoxyribonucleic acid sample 900000000000448009 +384749012 20020131 1 900000000000207008 258566005 en 900000000000013009 DNA - Deoxyribonucleic acid sample 900000000000017005 +384750012 20020131 1 900000000000207008 258567001 en 900000000000013009 Gonad sample 900000000000020002 +384750012 20170731 1 900000000000207008 258567001 en 900000000000013009 Gonad sample 900000000000448009 +384751011 20020131 1 900000000000207008 258568006 en 900000000000013009 Polar body sample 900000000000020002 +384751011 20170731 1 900000000000207008 258568006 en 900000000000013009 Polar body sample 900000000000448009 +384752016 20020131 1 900000000000207008 258569003 en 900000000000013009 Skin fibroblast sample 900000000000020002 +384752016 20170731 1 900000000000207008 258569003 en 900000000000013009 Skin fibroblast sample 900000000000448009 +384753014 20020131 1 900000000000207008 258570002 en 900000000000013009 Genitourinary sample 900000000000020002 +384753014 20170731 1 900000000000207008 258570002 en 900000000000013009 Genitourinary sample 900000000000448009 +384754015 20020131 1 900000000000207008 258571003 en 900000000000013009 Machine hemodialysate sample 900000000000020002 +384754015 20170731 1 900000000000207008 258571003 en 900000000000013009 Machine hemodialysate sample 900000000000448009 +384755019 20020131 1 900000000000207008 258571003 en 900000000000013009 Machine haemodialysate sample 900000000000020002 +384755019 20170731 1 900000000000207008 258571003 en 900000000000013009 Machine haemodialysate sample 900000000000448009 +384756018 20020131 1 900000000000207008 258572005 en 900000000000013009 Ultrafiltrate sample 900000000000020002 +384756018 20170731 1 900000000000207008 258572005 en 900000000000013009 Ultrafiltrate sample 900000000000448009 +384757010 20020131 1 900000000000207008 258572005 en 900000000000013009 Haemofiltrate sample 900000000000020002 +384757010 20170731 1 900000000000207008 258572005 en 900000000000013009 Haemofiltrate sample 900000000000448009 +384758017 20020131 1 900000000000207008 258572005 en 900000000000013009 Hemofiltrate sample 900000000000020002 +384758017 20170731 1 900000000000207008 258572005 en 900000000000013009 Hemofiltrate sample 900000000000448009 +384760015 20020131 1 900000000000207008 258574006 en 900000000000013009 Mid-stream urine sample 900000000000020002 +384760015 20170731 1 900000000000207008 258574006 en 900000000000013009 Mid-stream urine sample 900000000000448009 +384761016 20020131 1 900000000000207008 258574006 en 900000000000013009 MSU - Mid-stream urine sample 900000000000017005 +384762011 20020131 1 900000000000207008 258575007 en 900000000000013009 EMU-Early morning urine sample 900000000000017005 +384763018 20020131 1 900000000000207008 258575007 en 900000000000013009 Early morning urine 900000000000020002 +384763018 20170731 1 900000000000207008 258575007 en 900000000000013009 Early morning urine 900000000000448009 +384764012 20020131 1 900000000000207008 258575007 en 900000000000013009 Early morning urine sample 900000000000020002 +384764012 20170731 1 900000000000207008 258575007 en 900000000000013009 Early morning urine sample 900000000000448009 +384765013 20020131 1 900000000000207008 258576008 en 900000000000013009 Suprapubic aspirate sample 900000000000020002 +384765013 20170731 1 900000000000207008 258576008 en 900000000000013009 Suprapubic aspirate sample 900000000000448009 +384766014 20020131 1 900000000000207008 258576008 en 900000000000013009 Suprapubic aspirate 900000000000020002 +384766014 20170731 1 900000000000207008 258576008 en 900000000000013009 Suprapubic aspirate 900000000000448009 +384767017 20020131 1 900000000000207008 258577004 en 900000000000013009 Vaginal secretion sample 900000000000020002 +384767017 20170731 1 900000000000207008 258577004 en 900000000000013009 Vaginal secretion sample 900000000000448009 +384771019 20020131 1 900000000000207008 258580003 en 900000000000013009 Whole blood sample 900000000000020002 +384771019 20170731 1 900000000000207008 258580003 en 900000000000013009 Whole blood sample 900000000000448009 +384772014 20020131 1 900000000000207008 258581004 en 900000000000013009 Clotted blood sample 900000000000020002 +384772014 20170731 1 900000000000207008 258581004 en 900000000000013009 Clotted blood sample 900000000000448009 +384773016 20020131 1 900000000000207008 258582006 en 900000000000013009 Blood clot sample 900000000000020002 +384773016 20090131 1 900000000000207008 258582006 en 900000000000013009 Blood clot sample 900000000000017005 +384773016 20200131 1 900000000000207008 258582006 en 900000000000013009 Blood clot sample 900000000000448009 +384774010 20020131 1 900000000000207008 258583001 en 900000000000013009 Bone marrow clot sample 900000000000020002 +384774010 20170731 1 900000000000207008 258583001 en 900000000000013009 Bone marrow clot sample 900000000000448009 +384775011 20020131 1 900000000000207008 258584007 en 900000000000013009 Bone marrow fragment sample 900000000000020002 +384775011 20170731 1 900000000000207008 258584007 en 900000000000013009 Bone marrow fragment sample 900000000000448009 +384776012 20020131 1 900000000000207008 258585008 en 900000000000013009 Bone marrow trephine sample 900000000000020002 +384776012 20170731 1 900000000000207008 258585008 en 900000000000013009 Bone marrow trephine sample 900000000000448009 +384779017 20020131 1 900000000000207008 258587000 en 900000000000013009 Buffy coat 900000000000020002 +384779017 20170731 1 900000000000207008 258587000 en 900000000000013009 Buffy coat 900000000000448009 +384780019 20020131 1 900000000000207008 258588005 en 900000000000013009 Hematoma sample 900000000000020002 +384780019 20170731 1 900000000000207008 258588005 en 900000000000013009 Hematoma sample 900000000000448009 +384781015 20020131 1 900000000000207008 258588005 en 900000000000013009 Haematoma sample 900000000000020002 +384781015 20170731 1 900000000000207008 258588005 en 900000000000013009 Haematoma sample 900000000000448009 +384782010 20020131 1 900000000000207008 258589002 en 900000000000013009 Lymph node sample 900000000000020002 +384782010 20170731 1 900000000000207008 258589002 en 900000000000013009 Lymph node sample 900000000000448009 +384783017 20020131 1 900000000000207008 258590006 en 900000000000013009 Acidified serum sample 900000000000020002 +384783017 20170731 1 900000000000207008 258590006 en 900000000000013009 Acidified serum sample 900000000000448009 +384784011 20020131 1 900000000000207008 258591005 en 900000000000013009 White blood cell sample 900000000000020002 +384784011 20170731 1 900000000000207008 258591005 en 900000000000013009 White blood cell sample 900000000000448009 +384796016 20020131 1 900000000000207008 258599007 en 900000000000013009 Contact lens solution sample 900000000000020002 +384796016 20170731 1 900000000000207008 258599007 en 900000000000013009 Contact lens solution sample 900000000000448009 +384798015 20020131 1 900000000000207008 258601009 en 900000000000013009 Lens sample 900000000000020002 +384798015 20170731 1 900000000000207008 258601009 en 900000000000013009 Lens sample 900000000000448009 +384799011 20020131 1 900000000000207008 258602002 en 900000000000013009 Intraocular lens sample 900000000000020002 +384799011 20170731 1 900000000000207008 258602002 en 900000000000013009 Intraocular lens sample 900000000000448009 +384800010 20020131 1 900000000000207008 258603007 en 900000000000013009 Respiratory sample 900000000000020002 +384800010 20170731 1 900000000000207008 258603007 en 900000000000013009 Respiratory sample 900000000000448009 +384801014 20020131 1 900000000000207008 258604001 en 900000000000013009 Upper respiratory sample 900000000000020002 +384801014 20170731 1 900000000000207008 258604001 en 900000000000013009 Upper respiratory sample 900000000000448009 +384803012 20020131 1 900000000000207008 258606004 en 900000000000013009 Lower respiratory sample 900000000000020002 +384803012 20170731 1 900000000000207008 258606004 en 900000000000013009 Lower respiratory sample 900000000000448009 +384804018 20020131 1 900000000000207008 258607008 en 900000000000013009 Bronchoalveolar lavage fluid sample 900000000000020002 +384804018 20170731 1 900000000000207008 258607008 en 900000000000013009 Bronchoalveolar lavage fluid sample 900000000000448009 +384805017 20020131 1 900000000000207008 258607008 en 900000000000013009 BALF - Bronchoalveolar lavage fluid 900000000000017005 +384806016 20020131 1 900000000000207008 258607008 en 900000000000013009 Bronchoalveolar lavage fluid 900000000000020002 +384806016 20170731 1 900000000000207008 258607008 en 900000000000013009 Bronchoalveolar lavage fluid 900000000000448009 +384807013 20020131 1 900000000000207008 258608003 en 900000000000013009 Sputum - aspirated sample 900000000000020002 +384807013 20080731 0 900000000000207008 258608003 en 900000000000013009 Sputum - aspirated sample 900000000000020002 +384808015 20020131 1 900000000000207008 258609006 en 900000000000013009 Sputum - tracheostomy aspirate sample 900000000000020002 +384808015 20080731 0 900000000000207008 258609006 en 900000000000013009 Sputum - tracheostomy aspirate sample 900000000000020002 +384809011 20020131 1 900000000000207008 258610001 en 900000000000013009 Sputum - induced sample 900000000000020002 +384809011 20080731 0 900000000000207008 258610001 en 900000000000013009 Sputum - induced sample 900000000000020002 +384810018 20020131 1 900000000000207008 258611002 en 900000000000013009 Sputum - trapped sample 900000000000020002 +384810018 20080731 0 900000000000207008 258611002 en 900000000000013009 Sputum - trapped sample 900000000000020002 +384812014 20020131 1 900000000000207008 258613004 en 900000000000013009 Living sample 900000000000020002 +384812014 20170731 1 900000000000207008 258613004 en 900000000000013009 Living sample 900000000000448009 +384813016 20020131 1 900000000000207008 258614005 en 900000000000013009 Insect sample 900000000000020002 +384813016 20170731 1 900000000000207008 258614005 en 900000000000013009 Insect sample 900000000000448009 +384814010 20020131 1 900000000000207008 258615006 en 900000000000013009 Larva sample 900000000000020002 +384814010 20170731 1 900000000000207008 258615006 en 900000000000013009 Larva sample 900000000000448009 +384815011 20020131 1 900000000000207008 258616007 en 900000000000013009 Maggot sample 900000000000020002 +384815011 20170731 1 900000000000207008 258616007 en 900000000000013009 Maggot sample 900000000000448009 +384816012 20020131 1 900000000000207008 258617003 en 900000000000013009 Parasite sample 900000000000020002 +384816012 20170731 1 900000000000207008 258617003 en 900000000000013009 Parasite sample 900000000000448009 +384817015 20020131 1 900000000000207008 258618008 en 900000000000013009 Helminth sample 900000000000020002 +384817015 20170731 1 900000000000207008 258618008 en 900000000000013009 Helminth sample 900000000000448009 +384828016 20020131 1 900000000000207008 258627009 en 900000000000013009 Cannula tip 900000000000020002 +384828016 20170731 1 900000000000207008 258627009 en 900000000000013009 Cannula tip 900000000000448009 +384828016 20210131 0 900000000000207008 258627009 en 900000000000013009 Cannula tip 900000000000448009 +384829012 20020131 1 900000000000207008 258628004 en 900000000000013009 Vascular cannula tip 900000000000020002 +384829012 20170731 1 900000000000207008 258628004 en 900000000000013009 Vascular cannula tip 900000000000448009 +384829012 20210131 0 900000000000207008 258628004 en 900000000000013009 Vascular cannula tip 900000000000448009 +384830019 20020131 1 900000000000207008 258629007 en 900000000000013009 Arterial cannula tip 900000000000020002 +384830019 20170731 1 900000000000207008 258629007 en 900000000000013009 Arterial cannula tip 900000000000448009 +384830019 20210131 0 900000000000207008 258629007 en 900000000000013009 Arterial cannula tip 900000000000448009 +384831015 20020131 1 900000000000207008 258630002 en 900000000000013009 Venous cannula tip 900000000000020002 +384831015 20170731 1 900000000000207008 258630002 en 900000000000013009 Venous cannula tip 900000000000448009 +384831015 20210131 0 900000000000207008 258630002 en 900000000000013009 Venous cannula tip 900000000000448009 +384832010 20020131 1 900000000000207008 258631003 en 900000000000013009 Arteriovenous shunt tip 900000000000020002 +384832010 20170731 1 900000000000207008 258631003 en 900000000000013009 Arteriovenous shunt tip 900000000000448009 +384832010 20210131 0 900000000000207008 258631003 en 900000000000013009 Arteriovenous shunt tip 900000000000448009 +384851016 20020131 1 900000000000207008 258649003 en 900000000000013009 Intravenous infusion fluid sample 900000000000020002 +384851016 20170731 1 900000000000207008 258649003 en 900000000000013009 Intravenous infusion fluid sample 900000000000448009 +384852011 20020131 1 900000000000207008 258650003 en 900000000000013009 Intravenous lipid infusion fluid sample 900000000000020002 +384852011 20170731 1 900000000000207008 258650003 en 900000000000013009 Intravenous lipid infusion fluid sample 900000000000448009 +384853018 20020131 1 900000000000207008 258651004 en 900000000000013009 Cream sample 900000000000020002 +384853018 20170731 1 900000000000207008 258651004 en 900000000000013009 Cream sample 900000000000448009 +384854012 20020131 1 900000000000207008 258652006 en 900000000000013009 Ice-cream sample 900000000000020002 +384854012 20170731 1 900000000000207008 258652006 en 900000000000013009 Ice-cream sample 900000000000448009 +384855013 20020131 1 900000000000207008 258653001 en 900000000000013009 Formula milk sample 900000000000020002 +384855013 20170731 1 900000000000207008 258653001 en 900000000000013009 Formula milk sample 900000000000448009 +384856014 20020131 1 900000000000207008 258654007 en 900000000000013009 Soya milk sample 900000000000020002 +384856014 20170731 1 900000000000207008 258654007 en 900000000000013009 Soya milk sample 900000000000448009 +384857017 20020131 1 900000000000207008 258655008 en 900000000000013009 Cow's milk sample 900000000000020002 +384857017 20170731 1 900000000000207008 258655008 en 900000000000013009 Cow's milk sample 900000000000448009 +384858010 20020131 1 900000000000207008 258656009 en 900000000000013009 Whole milk sample 900000000000020002 +384858010 20170731 1 900000000000207008 258656009 en 900000000000013009 Whole milk sample 900000000000448009 +384859019 20020131 1 900000000000207008 258657000 en 900000000000013009 Semi-skimmed milk sample 900000000000020002 +384859019 20170731 1 900000000000207008 258657000 en 900000000000013009 Semi-skimmed milk sample 900000000000448009 +384860012 20020131 1 900000000000207008 258658005 en 900000000000013009 Skimmed milk sample 900000000000020002 +384860012 20170731 1 900000000000207008 258658005 en 900000000000013009 Skimmed milk sample 900000000000448009 +384861011 20020131 1 900000000000207008 258659002 en 900000000000013009 Sheep's milk sample 900000000000020002 +384861011 20170731 1 900000000000207008 258659002 en 900000000000013009 Sheep's milk sample 900000000000448009 +384862016 20020131 1 900000000000207008 258660007 en 900000000000013009 Goat's milk sample 900000000000020002 +384862016 20170731 1 900000000000207008 258660007 en 900000000000013009 Goat's milk sample 900000000000448009 +384864015 20020131 1 900000000000207008 258662004 en 900000000000013009 Adhesive slide 900000000000020002 +384864015 20170731 1 900000000000207008 258662004 en 900000000000013009 Adhesive slide 900000000000448009 +384864015 20220131 0 900000000000207008 258662004 en 900000000000013009 Adhesive slide 900000000000448009 +384865019 20020131 1 900000000000207008 258663009 en 900000000000013009 Sellotape slide 900000000000017005 +384865019 20220131 0 900000000000207008 258663009 en 900000000000013009 Sellotape slide 900000000000017005 +384866018 20020131 1 900000000000207008 258664003 en 900000000000013009 Scotch tape slide 900000000000020002 +384866018 20070731 1 900000000000207008 258664003 en 900000000000013009 Scotch tape slide 900000000000017005 +384866018 20220131 0 900000000000207008 258664003 en 900000000000013009 Scotch tape slide 900000000000017005 +392812011 20020131 1 900000000000207008 264380007 en 900000000000013009 Synovial fluid cells 900000000000020002 +392812011 20170731 1 900000000000207008 264380007 en 900000000000013009 Synovial fluid cells 900000000000448009 +406317012 20020131 1 900000000000207008 271514008 en 900000000000013009 Sternal bone marrow sample 900000000000020002 +406317012 20170731 1 900000000000207008 271514008 en 900000000000013009 Sternal bone marrow sample 900000000000448009 +406318019 20020131 1 900000000000207008 271515009 en 900000000000013009 Iliac crest bone marrow sample 900000000000020002 +406318019 20170731 1 900000000000207008 271515009 en 900000000000013009 Iliac crest bone marrow sample 900000000000448009 +406319010 20020131 1 900000000000207008 271516005 en 900000000000013009 Vertebral spinous process bone marrow sample 900000000000020002 +406319010 20170731 1 900000000000207008 271516005 en 900000000000013009 Vertebral spinous process bone marrow sample 900000000000448009 +406322012 20020131 1 900000000000207008 271518006 en 900000000000013009 Rib bone marrow sample 900000000000020002 +406322012 20170731 1 900000000000207008 271518006 en 900000000000013009 Rib bone marrow sample 900000000000448009 +412583014 20020131 1 900000000000207008 276446009 en 900000000000013009 Cervical smear sample 900000000000020002 +412583014 20170731 1 900000000000207008 276446009 en 900000000000013009 Cervical smear sample 900000000000448009 +413151018 20020131 1 900000000000207008 276833005 en 900000000000013009 24 hour urine sample 900000000000017005 +413151018 20220630 1 900000000000207008 276833005 en 900000000000013009 24 hour urine sample 900000000000448009 +414784017 20020131 1 900000000000207008 278020009 en 900000000000013009 Spot urine sample 900000000000020002 +414784017 20170731 1 900000000000207008 278020009 en 900000000000013009 Spot urine sample 900000000000448009 +444683010 20020131 1 900000000000207008 302794003 en 900000000000013009 Nasogastric aspirate 900000000000020002 +444683010 20170731 1 900000000000207008 302794003 en 900000000000013009 Nasogastric aspirate 900000000000448009 +444684016 20020131 1 900000000000207008 302794003 en 900000000000013009 Nasogastric tube aspirate 900000000000020002 +444684016 20170731 1 900000000000207008 302794003 en 900000000000013009 Nasogastric tube aspirate 900000000000448009 +444685015 20020131 1 900000000000207008 302794003 en 900000000000013009 NGT - Nasogastric tube aspirate 900000000000017005 +444686019 20020131 1 900000000000207008 302795002 en 900000000000013009 Lymph node aspirate 900000000000020002 +444686019 20170731 1 900000000000207008 302795002 en 900000000000013009 Lymph node aspirate 900000000000448009 +445289012 20020131 1 900000000000207008 303247002 en 900000000000013009 Adrenal tissue 900000000000020002 +445289012 20170731 1 900000000000207008 303247002 en 900000000000013009 Adrenal tissue 900000000000448009 +445290015 20020131 1 900000000000207008 303247002 en 900000000000013009 Adrenal tissue sample 900000000000020002 +445290015 20170731 1 900000000000207008 303247002 en 900000000000013009 Adrenal tissue sample 900000000000448009 +445291016 20020131 1 900000000000207008 303248007 en 900000000000013009 Blood film sample 900000000000020002 +445291016 20170731 1 900000000000207008 303248007 en 900000000000013009 Blood film sample 900000000000448009 +452381011 20020131 1 900000000000207008 309048008 en 900000000000013009 Endocrine sample 900000000000020002 +452381011 20170731 1 900000000000207008 309048008 en 900000000000013009 Endocrine sample 900000000000448009 +452382016 20020131 1 900000000000207008 309049000 en 900000000000013009 Lesion sample 900000000000020002 +452382016 20170731 1 900000000000207008 309049000 en 900000000000013009 Lesion sample 900000000000448009 +452383014 20020131 1 900000000000207008 309050000 en 900000000000013009 Body substance sample 900000000000020002 +452383014 20170731 1 900000000000207008 309050000 en 900000000000013009 Body substance sample 900000000000448009 +452384015 20020131 1 900000000000207008 309051001 en 900000000000013009 Body fluid sample 900000000000020002 +452384015 20170731 1 900000000000207008 309051001 en 900000000000013009 Body fluid sample 900000000000448009 +452385019 20020131 1 900000000000207008 309052008 en 900000000000013009 Male genital sample 900000000000020002 +452385019 20170731 1 900000000000207008 309052008 en 900000000000013009 Male genital sample 900000000000448009 +452386018 20020131 1 900000000000207008 309053003 en 900000000000013009 Female genital sample 900000000000020002 +452386018 20170731 1 900000000000207008 309053003 en 900000000000013009 Female genital sample 900000000000448009 +452388017 20020131 1 900000000000207008 309055005 en 900000000000013009 Breast fluid sample 900000000000020002 +452388017 20170731 1 900000000000207008 309055005 en 900000000000013009 Breast fluid sample 900000000000448009 +452392012 20020131 1 900000000000207008 309057002 en 900000000000013009 Breast direct smear sample 900000000000020002 +452392012 20170731 1 900000000000207008 309057002 en 900000000000013009 Breast direct smear sample 900000000000448009 +452393019 20020131 1 900000000000207008 309058007 en 900000000000013009 Breast tru-cut biopsy sample 900000000000020002 +452393019 20170731 1 900000000000207008 309058007 en 900000000000013009 Breast tru-cut biopsy sample 900000000000448009 +452394013 20020131 1 900000000000207008 309059004 en 900000000000013009 Frozen section breast sample 900000000000020002 +452394013 20170731 1 900000000000207008 309059004 en 900000000000013009 Frozen section breast sample 900000000000448009 +452398011 20020131 1 900000000000207008 309061008 en 900000000000013009 Breast fine needle aspirate sample 900000000000020002 +452398011 20170731 1 900000000000207008 309061008 en 900000000000013009 Breast fine needle aspirate sample 900000000000448009 +452404018 20020131 1 900000000000207008 309066003 en 900000000000013009 Skin biopsy sample 900000000000020002 +452404018 20170731 1 900000000000207008 309066003 en 900000000000013009 Skin biopsy sample 900000000000448009 +452405017 20020131 1 900000000000207008 309067007 en 900000000000013009 Skin curettings sample 900000000000020002 +452405017 20170731 1 900000000000207008 309067007 en 900000000000013009 Skin curettings sample 900000000000448009 +452406016 20020131 1 900000000000207008 309068002 en 900000000000013009 Skin lesion sample 900000000000020002 +452406016 20170731 1 900000000000207008 309068002 en 900000000000013009 Skin lesion sample 900000000000448009 +452408015 20020131 1 900000000000207008 309070006 en 900000000000013009 Vulval skin biopsy sample 900000000000020002 +452408015 20170731 1 900000000000207008 309070006 en 900000000000013009 Vulval skin biopsy sample 900000000000448009 +452409011 20020131 1 900000000000207008 309071005 en 900000000000013009 Penis skin biopsy sample 900000000000020002 +452409011 20170731 1 900000000000207008 309071005 en 900000000000013009 Penis skin biopsy sample 900000000000448009 +452410018 20020131 1 900000000000207008 309072003 en 900000000000013009 Soft tissue sample 900000000000020002 +452410018 20170731 1 900000000000207008 309072003 en 900000000000013009 Soft tissue sample 900000000000448009 +452412014 20020131 1 900000000000207008 309073008 en 900000000000013009 Lipoma biopsy sample 900000000000020002 +452412014 20170731 1 900000000000207008 309073008 en 900000000000013009 Lipoma biopsy sample 900000000000448009 +452413016 20020131 1 900000000000207008 309074002 en 900000000000013009 Soft tissue biopsy sample 900000000000020002 +452413016 20170731 1 900000000000207008 309074002 en 900000000000013009 Soft tissue biopsy sample 900000000000448009 +452414010 20020131 1 900000000000207008 309075001 en 900000000000013009 Skin cyst sample 900000000000020002 +452414010 20170731 1 900000000000207008 309075001 en 900000000000013009 Skin cyst sample 900000000000448009 +452416012 20020131 1 900000000000207008 309077009 en 900000000000013009 Spleen resection sample 900000000000020002 +452416012 20170731 1 900000000000207008 309077009 en 900000000000013009 Spleen resection sample 900000000000448009 +452417015 20020131 1 900000000000207008 309078004 en 900000000000013009 Lymph node tissue sample 900000000000020002 +452417015 20170731 1 900000000000207008 309078004 en 900000000000013009 Lymph node tissue sample 900000000000448009 +452418013 20020131 1 900000000000207008 309079007 en 900000000000013009 Lymph node biopsy sample 900000000000020002 +452418013 20170731 1 900000000000207008 309079007 en 900000000000013009 Lymph node biopsy sample 900000000000448009 +452442012 20020131 1 900000000000207008 309101008 en 900000000000013009 Cartilage sample 900000000000020002 +452442012 20170731 1 900000000000207008 309101008 en 900000000000013009 Cartilage sample 900000000000448009 +452443019 20020131 1 900000000000207008 309102001 en 900000000000013009 Cartilage biopsy sample 900000000000020002 +452443019 20170731 1 900000000000207008 309102001 en 900000000000013009 Cartilage biopsy sample 900000000000448009 +452444013 20020131 1 900000000000207008 309103006 en 900000000000013009 Excised cartilage sample 900000000000020002 +452444013 20170731 1 900000000000207008 309103006 en 900000000000013009 Excised cartilage sample 900000000000448009 +452445014 20020131 1 900000000000207008 309104000 en 900000000000013009 Musculoskeletal sample 900000000000020002 +452445014 20170731 1 900000000000207008 309104000 en 900000000000013009 Musculoskeletal sample 900000000000448009 +452446010 20020131 1 900000000000207008 309105004 en 900000000000013009 Bone biopsy sample 900000000000020002 +452446010 20170731 1 900000000000207008 309105004 en 900000000000013009 Bone biopsy sample 900000000000448009 +452448011 20020131 1 900000000000207008 309107007 en 900000000000013009 Tendon sample 900000000000020002 +452448011 20170731 1 900000000000207008 309107007 en 900000000000013009 Tendon sample 900000000000448009 +452449015 20020131 1 900000000000207008 309108002 en 900000000000013009 Excised tendon sample 900000000000020002 +452449015 20170731 1 900000000000207008 309108002 en 900000000000013009 Excised tendon sample 900000000000448009 +452450015 20020131 1 900000000000207008 309109005 en 900000000000013009 Bursa sample 900000000000020002 +452450015 20170731 1 900000000000207008 309109005 en 900000000000013009 Bursa sample 900000000000448009 +452451016 20020131 1 900000000000207008 309110000 en 900000000000013009 Bursa tissue sample 900000000000020002 +452451016 20170731 1 900000000000207008 309110000 en 900000000000013009 Bursa tissue sample 900000000000448009 +452452011 20020131 1 900000000000207008 309111001 en 900000000000013009 Bursa biopsy sample 900000000000020002 +452452011 20170731 1 900000000000207008 309111001 en 900000000000013009 Bursa biopsy sample 900000000000448009 +452453018 20020131 1 900000000000207008 309112008 en 900000000000013009 Excised bursa sample 900000000000020002 +452453018 20170731 1 900000000000207008 309112008 en 900000000000013009 Excised bursa sample 900000000000448009 +452454012 20020131 1 900000000000207008 309113003 en 900000000000013009 Tendon biopsy sample 900000000000020002 +452454012 20170731 1 900000000000207008 309113003 en 900000000000013009 Tendon biopsy sample 900000000000448009 +452455013 20020131 1 900000000000207008 309114009 en 900000000000013009 Ligament sample 900000000000020002 +452455013 20170731 1 900000000000207008 309114009 en 900000000000013009 Ligament sample 900000000000448009 +452456014 20020131 1 900000000000207008 309115005 en 900000000000013009 Ligament biopsy sample 900000000000020002 +452456014 20170731 1 900000000000207008 309115005 en 900000000000013009 Ligament biopsy sample 900000000000448009 +452457017 20020131 1 900000000000207008 309116006 en 900000000000013009 Excised ligament sample 900000000000020002 +452457017 20170731 1 900000000000207008 309116006 en 900000000000013009 Excised ligament sample 900000000000448009 +452458010 20020131 1 900000000000207008 309117002 en 900000000000013009 Fascia sample 900000000000020002 +452458010 20170731 1 900000000000207008 309117002 en 900000000000013009 Fascia sample 900000000000448009 +452459019 20020131 1 900000000000207008 309118007 en 900000000000013009 Fascia biopsy sample 900000000000020002 +452459019 20170731 1 900000000000207008 309118007 en 900000000000013009 Fascia biopsy sample 900000000000448009 +452460012 20020131 1 900000000000207008 309119004 en 900000000000013009 Excised fascia sample 900000000000020002 +452460012 20170731 1 900000000000207008 309119004 en 900000000000013009 Excised fascia sample 900000000000448009 +452461011 20020131 1 900000000000207008 309120005 en 900000000000013009 Head of femur sample 900000000000020002 +452461011 20170731 1 900000000000207008 309120005 en 900000000000013009 Head of femur sample 900000000000448009 +452462016 20020131 1 900000000000207008 309121009 en 900000000000013009 Synovial tissue sample 900000000000020002 +452462016 20170731 1 900000000000207008 309121009 en 900000000000013009 Synovial tissue sample 900000000000448009 +452463014 20020131 1 900000000000207008 309121009 en 900000000000013009 Synovium sample 900000000000020002 +452463014 20170731 1 900000000000207008 309121009 en 900000000000013009 Synovium sample 900000000000448009 +452464015 20020131 1 900000000000207008 309122002 en 900000000000013009 Synovium biopsy sample 900000000000020002 +452464015 20170731 1 900000000000207008 309122002 en 900000000000013009 Synovium biopsy sample 900000000000448009 +452465019 20020131 1 900000000000207008 309123007 en 900000000000013009 Synovial sample 900000000000020002 +452465019 20170731 1 900000000000207008 309123007 en 900000000000013009 Synovial sample 900000000000448009 +452466018 20020131 1 900000000000207008 309124001 en 900000000000013009 Joint biopsy sample 900000000000020002 +452466018 20170731 1 900000000000207008 309124001 en 900000000000013009 Joint biopsy sample 900000000000448009 +452467010 20020131 1 900000000000207008 309125000 en 900000000000013009 Joint sample 900000000000020002 +452467010 20170731 1 900000000000207008 309125000 en 900000000000013009 Joint sample 900000000000448009 +452468017 20020131 1 900000000000207008 309126004 en 900000000000013009 Articular tissue sample 900000000000020002 +452468017 20170731 1 900000000000207008 309126004 en 900000000000013009 Articular tissue sample 900000000000448009 +452469013 20020131 1 900000000000207008 309127008 en 900000000000013009 Resected articular tissue sample 900000000000020002 +452469013 20170731 1 900000000000207008 309127008 en 900000000000013009 Resected articular tissue sample 900000000000448009 +452470014 20020131 1 900000000000207008 309128003 en 900000000000013009 Eye fluid sample 900000000000020002 +452470014 20170731 1 900000000000207008 309128003 en 900000000000013009 Eye fluid sample 900000000000448009 +452471013 20020131 1 900000000000207008 309129006 en 900000000000013009 Nerve tissue sample 900000000000020002 +452471013 20170731 1 900000000000207008 309129006 en 900000000000013009 Nerve tissue sample 900000000000448009 +452472018 20020131 1 900000000000207008 309130001 en 900000000000013009 Nerve biopsy sample 900000000000020002 +452472018 20170731 1 900000000000207008 309130001 en 900000000000013009 Nerve biopsy sample 900000000000448009 +452473011 20020131 1 900000000000207008 309131002 en 900000000000013009 Neuroma sample 900000000000020002 +452473011 20170731 1 900000000000207008 309131002 en 900000000000013009 Neuroma sample 900000000000448009 +452474017 20020131 1 900000000000207008 309132009 en 900000000000013009 Prostate biopsy sample 900000000000020002 +452474017 20170731 1 900000000000207008 309132009 en 900000000000013009 Prostate biopsy sample 900000000000448009 +452475016 20020131 1 900000000000207008 309133004 en 900000000000013009 Resected prostate sample 900000000000020002 +452475016 20170731 1 900000000000207008 309133004 en 900000000000013009 Resected prostate sample 900000000000448009 +452476015 20020131 1 900000000000207008 309134005 en 900000000000013009 Prostate tru-cut biopsy sample 900000000000020002 +452476015 20170731 1 900000000000207008 309134005 en 900000000000013009 Prostate tru-cut biopsy sample 900000000000448009 +452477012 20020131 1 900000000000207008 309135006 en 900000000000013009 Hydrocele sample 900000000000020002 +452477012 20170731 1 900000000000207008 309135006 en 900000000000013009 Hydrocele sample 900000000000448009 +452479010 20020131 1 900000000000207008 309137003 en 900000000000013009 Testes biopsy sample 900000000000020002 +452479010 20170731 1 900000000000207008 309137003 en 900000000000013009 Testes biopsy sample 900000000000448009 +452480013 20020131 1 900000000000207008 309138008 en 900000000000013009 Orchidectomy sample 900000000000020002 +452480013 20170731 1 900000000000207008 309138008 en 900000000000013009 Orchidectomy sample 900000000000448009 +452481012 20020131 1 900000000000207008 309138008 en 900000000000013009 Excised testes sample 900000000000020002 +452481012 20170731 1 900000000000207008 309138008 en 900000000000013009 Excised testes sample 900000000000448009 +452482017 20020131 1 900000000000207008 309138008 en 900000000000013009 Resected testes sample 900000000000020002 +452482017 20170731 1 900000000000207008 309138008 en 900000000000013009 Resected testes sample 900000000000448009 +452483010 20020131 1 900000000000207008 309139000 en 900000000000013009 Vas deferens sample 900000000000020002 +452483010 20170731 1 900000000000207008 309139000 en 900000000000013009 Vas deferens sample 900000000000448009 +452484016 20020131 1 900000000000207008 309140003 en 900000000000013009 Epididymis sample 900000000000020002 +452484016 20170731 1 900000000000207008 309140003 en 900000000000013009 Epididymis sample 900000000000448009 +452485015 20020131 1 900000000000207008 309141004 en 900000000000013009 Adrenal gland sample 900000000000020002 +452485015 20170731 1 900000000000207008 309141004 en 900000000000013009 Adrenal gland sample 900000000000448009 +452486019 20020131 1 900000000000207008 309142006 en 900000000000013009 Adrenal biopsy sample 900000000000020002 +452486019 20170731 1 900000000000207008 309142006 en 900000000000013009 Adrenal biopsy sample 900000000000448009 +452487011 20020131 1 900000000000207008 309143001 en 900000000000013009 Excised adrenal gland sample 900000000000020002 +452487011 20170731 1 900000000000207008 309143001 en 900000000000013009 Excised adrenal gland sample 900000000000448009 +452488018 20020131 1 900000000000207008 309143001 en 900000000000013009 Resected adrenal gland sample 900000000000020002 +452488018 20170731 1 900000000000207008 309143001 en 900000000000013009 Resected adrenal gland sample 900000000000448009 +452489014 20020131 1 900000000000207008 309144007 en 900000000000013009 Thyroid lobe sample 900000000000020002 +452489014 20170731 1 900000000000207008 309144007 en 900000000000013009 Thyroid lobe sample 900000000000448009 +452490017 20020131 1 900000000000207008 309145008 en 900000000000013009 Thyroid fluid sample 900000000000020002 +452490017 20170731 1 900000000000207008 309145008 en 900000000000013009 Thyroid fluid sample 900000000000448009 +452491018 20020131 1 900000000000207008 309146009 en 900000000000013009 Thyroid fine needle aspirate sample 900000000000020002 +452491018 20170731 1 900000000000207008 309146009 en 900000000000013009 Thyroid fine needle aspirate sample 900000000000448009 +452492013 20020131 1 900000000000207008 309147000 en 900000000000013009 Thyroid cyst fluid sample 900000000000020002 +452492013 20170731 1 900000000000207008 309147000 en 900000000000013009 Thyroid cyst fluid sample 900000000000448009 +452493015 20020131 1 900000000000207008 309148005 en 900000000000013009 Thyroid direct smear sample 900000000000020002 +452493015 20170731 1 900000000000207008 309148005 en 900000000000013009 Thyroid direct smear sample 900000000000448009 +452494014 20020131 1 900000000000207008 309149002 en 900000000000013009 Parathyroid sample 900000000000020002 +452494014 20170731 1 900000000000207008 309149002 en 900000000000013009 Parathyroid sample 900000000000448009 +452495010 20020131 1 900000000000207008 309150002 en 900000000000013009 Parathyroid tissue sample 900000000000020002 +452495010 20170731 1 900000000000207008 309150002 en 900000000000013009 Parathyroid tissue sample 900000000000448009 +452496011 20020131 1 900000000000207008 309151003 en 900000000000013009 Parathyroid biopsy sample 900000000000020002 +452496011 20170731 1 900000000000207008 309151003 en 900000000000013009 Parathyroid biopsy sample 900000000000448009 +452499016 20020131 1 900000000000207008 309153000 en 900000000000013009 Excised parathyroid sample 900000000000020002 +452499016 20170731 1 900000000000207008 309153000 en 900000000000013009 Excised parathyroid sample 900000000000448009 +452500013 20020131 1 900000000000207008 309154006 en 900000000000013009 Pituitary sample 900000000000020002 +452500013 20170731 1 900000000000207008 309154006 en 900000000000013009 Pituitary sample 900000000000448009 +452515014 20020131 1 900000000000207008 309164002 en 900000000000013009 Upper respiratory swab sample 900000000000020002 +452515014 20170731 1 900000000000207008 309164002 en 900000000000013009 Upper respiratory swab sample 900000000000448009 +452516010 20020131 1 900000000000207008 309165001 en 900000000000013009 Ear sample 900000000000020002 +452516010 20170731 1 900000000000207008 309165001 en 900000000000013009 Ear sample 900000000000448009 +452517018 20020131 1 900000000000207008 309166000 en 900000000000013009 Ear swab sample 900000000000020002 +452517018 20170731 1 900000000000207008 309166000 en 900000000000013009 Ear swab sample 900000000000448009 +452518011 20020131 1 900000000000207008 309167009 en 900000000000013009 Middle ear biopsy sample 900000000000020002 +452518011 20170731 1 900000000000207008 309167009 en 900000000000013009 Middle ear biopsy sample 900000000000448009 +452519015 20020131 1 900000000000207008 309168004 en 900000000000013009 Upper respiratory tissue sample 900000000000020002 +452519015 20170731 1 900000000000207008 309168004 en 900000000000013009 Upper respiratory tissue sample 900000000000448009 +452520014 20020131 1 900000000000207008 309169007 en 900000000000013009 Tracheal biopsy sample 900000000000020002 +452520014 20170731 1 900000000000207008 309169007 en 900000000000013009 Tracheal biopsy sample 900000000000448009 +452521013 20020131 1 900000000000207008 309170008 en 900000000000013009 Lower respiratory tissue sample 900000000000020002 +452521013 20170731 1 900000000000207008 309170008 en 900000000000013009 Lower respiratory tissue sample 900000000000448009 +452522018 20020131 1 900000000000207008 309171007 en 900000000000013009 Lower respiratory fluid sample 900000000000020002 +452522018 20170731 1 900000000000207008 309171007 en 900000000000013009 Lower respiratory fluid sample 900000000000448009 +452523011 20020131 1 900000000000207008 309172000 en 900000000000013009 Pleura biopsy sample 900000000000020002 +452523011 20170731 1 900000000000207008 309172000 en 900000000000013009 Pleura biopsy sample 900000000000448009 +452524017 20020131 1 900000000000207008 309173005 en 900000000000013009 Transbronchial lung biopsy sample 900000000000020002 +452524017 20170731 1 900000000000207008 309173005 en 900000000000013009 Transbronchial lung biopsy sample 900000000000448009 +452525016 20020131 1 900000000000207008 309174004 en 900000000000013009 Bronchial biopsy sample 900000000000020002 +452525016 20170731 1 900000000000207008 309174004 en 900000000000013009 Bronchial biopsy sample 900000000000448009 +452526015 20020131 1 900000000000207008 309175003 en 900000000000013009 Resected lung sample 900000000000020002 +452526015 20170731 1 900000000000207008 309175003 en 900000000000013009 Resected lung sample 900000000000448009 +452527012 20020131 1 900000000000207008 309175003 en 900000000000013009 Excised lung sample 900000000000020002 +452527012 20170731 1 900000000000207008 309175003 en 900000000000013009 Excised lung sample 900000000000448009 +452528019 20020131 1 900000000000207008 309176002 en 900000000000013009 Bronchial brushings sample 900000000000020002 +452528019 20170731 1 900000000000207008 309176002 en 900000000000013009 Bronchial brushings sample 900000000000448009 +452529010 20020131 1 900000000000207008 309177006 en 900000000000013009 Lung direct smear sample 900000000000020002 +452529010 20170731 1 900000000000207008 309177006 en 900000000000013009 Lung direct smear sample 900000000000448009 +452530017 20020131 1 900000000000207008 309178001 en 900000000000013009 Nasal biopsy sample 900000000000020002 +452530017 20170731 1 900000000000207008 309178001 en 900000000000013009 Nasal biopsy sample 900000000000448009 +452531018 20020131 1 900000000000207008 309179009 en 900000000000013009 Nasal polyp sample 900000000000020002 +452531018 20170731 1 900000000000207008 309179009 en 900000000000013009 Nasal polyp sample 900000000000448009 +452532013 20020131 1 900000000000207008 309180007 en 900000000000013009 Nasopharyngeal biopsy sample 900000000000020002 +452532013 20170731 1 900000000000207008 309180007 en 900000000000013009 Nasopharyngeal biopsy sample 900000000000448009 +452533015 20020131 1 900000000000207008 309181006 en 900000000000013009 Mastoid biopsy sample 900000000000020002 +452533015 20170731 1 900000000000207008 309181006 en 900000000000013009 Mastoid biopsy sample 900000000000448009 +452534014 20020131 1 900000000000207008 309182004 en 900000000000013009 Larynx biopsy sample 900000000000020002 +452534014 20170731 1 900000000000207008 309182004 en 900000000000013009 Larynx biopsy sample 900000000000448009 +452535010 20020131 1 900000000000207008 309183009 en 900000000000013009 Laryngectomy sample 900000000000020002 +452535010 20170731 1 900000000000207008 309183009 en 900000000000013009 Laryngectomy sample 900000000000448009 +452536011 20020131 1 900000000000207008 309183009 en 900000000000013009 Excised larynx sample 900000000000020002 +452536011 20170731 1 900000000000207008 309183009 en 900000000000013009 Excised larynx sample 900000000000448009 +452537019 20020131 1 900000000000207008 309184003 en 900000000000013009 Vocal cord biopsy sample 900000000000020002 +452537019 20170731 1 900000000000207008 309184003 en 900000000000013009 Vocal cord biopsy sample 900000000000448009 +452538012 20020131 1 900000000000207008 309185002 en 900000000000013009 Oral cavity sample 900000000000020002 +452538012 20170731 1 900000000000207008 309185002 en 900000000000013009 Oral cavity sample 900000000000448009 +452539016 20020131 1 900000000000207008 309186001 en 900000000000013009 Oral tissue sample 900000000000020002 +452539016 20170731 1 900000000000207008 309186001 en 900000000000013009 Oral tissue sample 900000000000448009 +452540019 20020131 1 900000000000207008 309187005 en 900000000000013009 Dental tissue sample 900000000000020002 +452540019 20170731 1 900000000000207008 309187005 en 900000000000013009 Dental tissue sample 900000000000448009 +452541015 20020131 1 900000000000207008 309188000 en 900000000000013009 Mouth biopsy sample 900000000000020002 +452541015 20170731 1 900000000000207008 309188000 en 900000000000013009 Mouth biopsy sample 900000000000448009 +452542010 20020131 1 900000000000207008 309189008 en 900000000000013009 Tongue biopsy sample 900000000000020002 +452542010 20170731 1 900000000000207008 309189008 en 900000000000013009 Tongue biopsy sample 900000000000448009 +452543017 20020131 1 900000000000207008 309190004 en 900000000000013009 Excised salivary gland sample 900000000000020002 +452543017 20170731 1 900000000000207008 309190004 en 900000000000013009 Excised salivary gland sample 900000000000448009 +452544011 20020131 1 900000000000207008 309190004 en 900000000000013009 Resected salivary gland sample 900000000000020002 +452544011 20170731 1 900000000000207008 309190004 en 900000000000013009 Resected salivary gland sample 900000000000448009 +452545012 20020131 1 900000000000207008 309191000 en 900000000000013009 Tonsil biopsy sample 900000000000020002 +452545012 20170731 1 900000000000207008 309191000 en 900000000000013009 Tonsil biopsy sample 900000000000448009 +452546013 20020131 1 900000000000207008 309192007 en 900000000000013009 Tonsillectomy sample 900000000000020002 +452546013 20170731 1 900000000000207008 309192007 en 900000000000013009 Tonsillectomy sample 900000000000448009 +452547016 20020131 1 900000000000207008 309192007 en 900000000000013009 Excised tonsil sample 900000000000020002 +452547016 20170731 1 900000000000207008 309192007 en 900000000000013009 Excised tonsil sample 900000000000448009 +452548014 20020131 1 900000000000207008 309193002 en 900000000000013009 Pharyngeal biopsy sample 900000000000020002 +452548014 20170731 1 900000000000207008 309193002 en 900000000000013009 Pharyngeal biopsy sample 900000000000448009 +452557015 20020131 1 900000000000207008 309199003 en 900000000000013009 Gastrointestinal fluid sample 900000000000020002 +452557015 20170731 1 900000000000207008 309199003 en 900000000000013009 Gastrointestinal fluid sample 900000000000448009 +452558013 20020131 1 900000000000207008 309200000 en 900000000000013009 Rectal tissue sample 900000000000020002 +452558013 20170731 1 900000000000207008 309200000 en 900000000000013009 Rectal tissue sample 900000000000448009 +452559017 20020131 1 900000000000207008 309201001 en 900000000000013009 Ascitic fluid sample 900000000000020002 +452559017 20170731 1 900000000000207008 309201001 en 900000000000013009 Ascitic fluid sample 900000000000448009 +452560010 20020131 1 900000000000207008 309202008 en 900000000000013009 Gastrointestinal direct smear 900000000000020002 +452560010 20170731 1 900000000000207008 309202008 en 900000000000013009 Gastrointestinal direct smear 900000000000448009 +452561014 20020131 1 900000000000207008 309203003 en 900000000000013009 Liver biopsy sample 900000000000020002 +452561014 20170731 1 900000000000207008 309203003 en 900000000000013009 Liver biopsy sample 900000000000448009 +452562019 20020131 1 900000000000207008 309204009 en 900000000000013009 Liver direct smear sample 900000000000020002 +452562019 20170731 1 900000000000207008 309204009 en 900000000000013009 Liver direct smear sample 900000000000448009 +452563012 20020131 1 900000000000207008 309205005 en 900000000000013009 Cholecystectomy sample 900000000000020002 +452563012 20170731 1 900000000000207008 309205005 en 900000000000013009 Cholecystectomy sample 900000000000448009 +452564018 20020131 1 900000000000207008 309205005 en 900000000000013009 Excised gallbladder sample 900000000000020002 +452564018 20170731 1 900000000000207008 309205005 en 900000000000013009 Excised gallbladder sample 900000000000448009 +452565017 20020131 1 900000000000207008 309206006 en 900000000000013009 Pancreas biopsy sample 900000000000020002 +452565017 20170731 1 900000000000207008 309206006 en 900000000000013009 Pancreas biopsy sample 900000000000448009 +452566016 20020131 1 900000000000207008 309207002 en 900000000000013009 Peritoneal biopsy sample 900000000000020002 +452566016 20170731 1 900000000000207008 309207002 en 900000000000013009 Peritoneal biopsy sample 900000000000448009 +452567013 20020131 1 900000000000207008 309208007 en 900000000000013009 Omentum biopsy sample 900000000000020002 +452567013 20170731 1 900000000000207008 309208007 en 900000000000013009 Omentum biopsy sample 900000000000448009 +452568015 20020131 1 900000000000207008 309209004 en 900000000000013009 Esophageal biopsy sample 900000000000020002 +452568015 20170731 1 900000000000207008 309209004 en 900000000000013009 Esophageal biopsy sample 900000000000448009 +452569011 20020131 1 900000000000207008 309209004 en 900000000000013009 Oesophageal biopsy sample 900000000000020002 +452569011 20170731 1 900000000000207008 309209004 en 900000000000013009 Oesophageal biopsy sample 900000000000448009 +452570012 20020131 1 900000000000207008 309210009 en 900000000000013009 Oesophageal brushings sample 900000000000020002 +452570012 20170731 1 900000000000207008 309210009 en 900000000000013009 Oesophageal brushings sample 900000000000448009 +452571011 20020131 1 900000000000207008 309210009 en 900000000000013009 Esophageal brushings sample 900000000000020002 +452571011 20170731 1 900000000000207008 309210009 en 900000000000013009 Esophageal brushings sample 900000000000448009 +452572016 20020131 1 900000000000207008 309211008 en 900000000000013009 Gastric biopsy sample 900000000000020002 +452572016 20170731 1 900000000000207008 309211008 en 900000000000013009 Gastric biopsy sample 900000000000448009 +452573014 20020131 1 900000000000207008 309212001 en 900000000000013009 Gastric antral biopsy sample 900000000000020002 +452573014 20170731 1 900000000000207008 309212001 en 900000000000013009 Gastric antral biopsy sample 900000000000448009 +452574015 20020131 1 900000000000207008 309213006 en 900000000000013009 Gastric brushings sample 900000000000020002 +452574015 20170731 1 900000000000207008 309213006 en 900000000000013009 Gastric brushings sample 900000000000448009 +452575019 20020131 1 900000000000207008 309214000 en 900000000000013009 Gastric fundus biopsy sample 900000000000020002 +452575019 20170731 1 900000000000207008 309214000 en 900000000000013009 Gastric fundus biopsy sample 900000000000448009 +452576018 20020131 1 900000000000207008 309215004 en 900000000000013009 Gastric ulcer sample 900000000000020002 +452576018 20170731 1 900000000000207008 309215004 en 900000000000013009 Gastric ulcer sample 900000000000448009 +452577010 20020131 1 900000000000207008 309216003 en 900000000000013009 Duodenal biopsy sample 900000000000020002 +452577010 20170731 1 900000000000207008 309216003 en 900000000000013009 Duodenal biopsy sample 900000000000448009 +452578017 20020131 1 900000000000207008 309217007 en 900000000000013009 Ileal biopsy sample 900000000000020002 +452578017 20170731 1 900000000000207008 309217007 en 900000000000013009 Ileal biopsy sample 900000000000448009 +452579013 20020131 1 900000000000207008 309218002 en 900000000000013009 Ileal resection sample 900000000000020002 +452579013 20170731 1 900000000000207008 309218002 en 900000000000013009 Ileal resection sample 900000000000448009 +452580011 20020131 1 900000000000207008 309219005 en 900000000000013009 Jejunal biopsy sample 900000000000020002 +452580011 20170731 1 900000000000207008 309219005 en 900000000000013009 Jejunal biopsy sample 900000000000448009 +452581010 20020131 1 900000000000207008 309220004 en 900000000000013009 Small bowel resection sample 900000000000020002 +452581010 20170731 1 900000000000207008 309220004 en 900000000000013009 Small bowel resection sample 900000000000448009 +452582015 20020131 1 900000000000207008 309221000 en 900000000000013009 Terminal ileum resection sample 900000000000020002 +452582015 20170731 1 900000000000207008 309221000 en 900000000000013009 Terminal ileum resection sample 900000000000448009 +452583013 20020131 1 900000000000207008 309222007 en 900000000000013009 Appendix sample 900000000000020002 +452583013 20170731 1 900000000000207008 309222007 en 900000000000013009 Appendix sample 900000000000448009 +452584019 20020131 1 900000000000207008 309223002 en 900000000000013009 Colectomy sample 900000000000020002 +452584019 20170731 1 900000000000207008 309223002 en 900000000000013009 Colectomy sample 900000000000448009 +452585018 20020131 1 900000000000207008 309224008 en 900000000000013009 Colon strip sample 900000000000020002 +452585018 20170731 1 900000000000207008 309224008 en 900000000000013009 Colon strip sample 900000000000448009 +452586017 20020131 1 900000000000207008 309225009 en 900000000000013009 Colonic biopsy sample 900000000000020002 +452586017 20170731 1 900000000000207008 309225009 en 900000000000013009 Colonic biopsy sample 900000000000448009 +452588016 20020131 1 900000000000207008 309226005 en 900000000000013009 Colonic polyp sample 900000000000020002 +452588016 20170731 1 900000000000207008 309226005 en 900000000000013009 Colonic polyp sample 900000000000448009 +452589012 20020131 1 900000000000207008 309227001 en 900000000000013009 Sigmoid colonic polyp sample 900000000000020002 +452589012 20170731 1 900000000000207008 309227001 en 900000000000013009 Sigmoid colonic polyp sample 900000000000448009 +452628010 20020131 1 900000000000207008 309260003 en 900000000000013009 Sigmoid colon biopsy sample 900000000000020002 +452628010 20170731 1 900000000000207008 309260003 en 900000000000013009 Sigmoid colon biopsy sample 900000000000448009 +452629019 20020131 1 900000000000207008 309261004 en 900000000000013009 Sigmoid colon brushings sample 900000000000020002 +452629019 20170731 1 900000000000207008 309261004 en 900000000000013009 Sigmoid colon brushings sample 900000000000448009 +452630012 20020131 1 900000000000207008 309262006 en 900000000000013009 Rectal biopsy sample 900000000000020002 +452630012 20170731 1 900000000000207008 309262006 en 900000000000013009 Rectal biopsy sample 900000000000448009 +452631011 20020131 1 900000000000207008 309263001 en 900000000000013009 Rectal polyp sample 900000000000020002 +452631011 20170731 1 900000000000207008 309263001 en 900000000000013009 Rectal polyp sample 900000000000448009 +452632016 20020131 1 900000000000207008 309264007 en 900000000000013009 Excised rectum sample 900000000000020002 +452632016 20170731 1 900000000000207008 309264007 en 900000000000013009 Excised rectum sample 900000000000448009 +452633014 20020131 1 900000000000207008 309264007 en 900000000000013009 Resected rectum sample 900000000000020002 +452633014 20170731 1 900000000000207008 309264007 en 900000000000013009 Resected rectum sample 900000000000448009 +452634015 20020131 1 900000000000207008 309265008 en 900000000000013009 Anal biopsy sample 900000000000020002 +452634015 20170731 1 900000000000207008 309265008 en 900000000000013009 Anal biopsy sample 900000000000448009 +452635019 20020131 1 900000000000207008 309266009 en 900000000000013009 Anal polyp sample 900000000000020002 +452635019 20170731 1 900000000000207008 309266009 en 900000000000013009 Anal polyp sample 900000000000448009 +452636018 20020131 1 900000000000207008 309267000 en 900000000000013009 Anal resection sample 900000000000020002 +452636018 20170731 1 900000000000207008 309267000 en 900000000000013009 Anal resection sample 900000000000448009 +452637010 20020131 1 900000000000207008 309268005 en 900000000000013009 Urological fluid sample 900000000000020002 +452637010 20170731 1 900000000000207008 309268005 en 900000000000013009 Urological fluid sample 900000000000448009 +452638017 20020131 1 900000000000207008 309269002 en 900000000000013009 Kidney biopsy sample 900000000000020002 +452638017 20170731 1 900000000000207008 309269002 en 900000000000013009 Kidney biopsy sample 900000000000448009 +452639013 20020131 1 900000000000207008 309269002 en 900000000000013009 Renal biopsy sample 900000000000020002 +452639013 20170731 1 900000000000207008 309269002 en 900000000000013009 Renal biopsy sample 900000000000448009 +452640010 20020131 1 900000000000207008 309270001 en 900000000000013009 Nephrectomy sample 900000000000020002 +452640010 20170731 1 900000000000207008 309270001 en 900000000000013009 Nephrectomy sample 900000000000448009 +452641014 20020131 1 900000000000207008 309271002 en 900000000000013009 Ureter biopsy sample 900000000000020002 +452641014 20170731 1 900000000000207008 309271002 en 900000000000013009 Ureter biopsy sample 900000000000448009 +452642019 20020131 1 900000000000207008 309272009 en 900000000000013009 Urinary bladder tissue sample 900000000000020002 +452642019 20170731 1 900000000000207008 309272009 en 900000000000013009 Urinary bladder tissue sample 900000000000448009 +452643012 20020131 1 900000000000207008 309273004 en 900000000000013009 Bladder biopsy sample 900000000000020002 +452643012 20170731 1 900000000000207008 309273004 en 900000000000013009 Bladder biopsy sample 900000000000448009 +452644018 20020131 1 900000000000207008 309274005 en 900000000000013009 Bladder curettings sample 900000000000020002 +452644018 20170731 1 900000000000207008 309274005 en 900000000000013009 Bladder curettings sample 900000000000448009 +452645017 20020131 1 900000000000207008 309275006 en 900000000000013009 Cystectomy sample 900000000000020002 +452645017 20170731 1 900000000000207008 309275006 en 900000000000013009 Cystectomy sample 900000000000448009 +452646016 20020131 1 900000000000207008 309275006 en 900000000000013009 Excised bladder sample 900000000000020002 +452646016 20170731 1 900000000000207008 309275006 en 900000000000013009 Excised bladder sample 900000000000448009 +452647013 20020131 1 900000000000207008 309276007 en 900000000000013009 Frozen section bladder sample 900000000000020002 +452647013 20170731 1 900000000000207008 309276007 en 900000000000013009 Frozen section bladder sample 900000000000448009 +452648015 20020131 1 900000000000207008 309277003 en 900000000000013009 Urethra biopsy sample 900000000000020002 +452648015 20170731 1 900000000000207008 309277003 en 900000000000013009 Urethra biopsy sample 900000000000448009 +452649011 20020131 1 900000000000207008 309278008 en 900000000000013009 Female genital tissue sample 900000000000020002 +452649011 20170731 1 900000000000207008 309278008 en 900000000000013009 Female genital tissue sample 900000000000448009 +452652015 20020131 1 900000000000207008 309280002 en 900000000000013009 Vaginal biopsy sample 900000000000020002 +452652015 20170731 1 900000000000207008 309280002 en 900000000000013009 Vaginal biopsy sample 900000000000448009 +452653013 20020131 1 900000000000207008 309281003 en 900000000000013009 Vaginal vault biopsy sample 900000000000020002 +452653013 20170731 1 900000000000207008 309281003 en 900000000000013009 Vaginal vault biopsy sample 900000000000448009 +452655018 20020131 1 900000000000207008 309283000 en 900000000000013009 Cervical biopsy sample 900000000000020002 +452655018 20170731 1 900000000000207008 309283000 en 900000000000013009 Cervical biopsy sample 900000000000448009 +452657014 20020131 1 900000000000207008 309285007 en 900000000000013009 Cervical loop excision sample 900000000000020002 +452657014 20170731 1 900000000000207008 309285007 en 900000000000013009 Cervical loop excision sample 900000000000448009 +452658016 20020131 1 900000000000207008 309286008 en 900000000000013009 Cervical polyp sample 900000000000020002 +452658016 20170731 1 900000000000207008 309286008 en 900000000000013009 Cervical polyp sample 900000000000448009 +452659012 20020131 1 900000000000207008 309287004 en 900000000000013009 Excised uterus, fallopian tubes and ovaries sample 900000000000020002 +452659012 20170731 1 900000000000207008 309287004 en 900000000000013009 Excised uterus, fallopian tubes and ovaries sample 900000000000448009 +452660019 20020131 1 900000000000207008 309287004 en 900000000000013009 Hysterectomy and bilateral salpingo-oophorectomy sample 900000000000020002 +452660019 20170731 1 900000000000207008 309287004 en 900000000000013009 Hysterectomy and bilateral salpingo-oophorectomy sample 900000000000448009 +452661015 20020131 1 900000000000207008 309288009 en 900000000000013009 Endometrial polyp sample 900000000000020002 +452661015 20170731 1 900000000000207008 309288009 en 900000000000013009 Endometrial polyp sample 900000000000448009 +452662010 20020131 1 900000000000207008 309289001 en 900000000000013009 Endometrial resection sample 900000000000020002 +452662010 20170731 1 900000000000207008 309289001 en 900000000000013009 Endometrial resection sample 900000000000448009 +452663017 20020131 1 900000000000207008 309290005 en 900000000000013009 Fallopian tube biopsy sample 900000000000020002 +452663017 20170731 1 900000000000207008 309290005 en 900000000000013009 Fallopian tube biopsy sample 900000000000448009 +452664011 20020131 1 900000000000207008 309291009 en 900000000000013009 Ovarian cyst sample 900000000000020002 +452664011 20170731 1 900000000000207008 309291009 en 900000000000013009 Ovarian cyst sample 900000000000448009 +452665012 20020131 1 900000000000207008 309292002 en 900000000000013009 Ovarian fluid sample 900000000000020002 +452665012 20170731 1 900000000000207008 309292002 en 900000000000013009 Ovarian fluid sample 900000000000448009 +452666013 20020131 1 900000000000207008 309293007 en 900000000000013009 Placenta biopsy sample 900000000000020002 +452666013 20170731 1 900000000000207008 309293007 en 900000000000013009 Placenta biopsy sample 900000000000448009 +452915018 20020131 1 900000000000207008 309476009 en 900000000000013009 Neck block dissection sample 900000000000020002 +452915018 20170731 1 900000000000207008 309476009 en 900000000000013009 Neck block dissection sample 900000000000448009 +452916017 20020131 1 900000000000207008 309476009 en 900000000000013009 Cervical block dissection sample 900000000000020002 +452916017 20170731 1 900000000000207008 309476009 en 900000000000013009 Cervical block dissection sample 900000000000448009 +452919012 20020131 1 900000000000207008 309478005 en 900000000000013009 Thrombus sample 900000000000020002 +452919012 20170731 1 900000000000207008 309478005 en 900000000000013009 Thrombus sample 900000000000448009 +452920018 20020131 1 900000000000207008 309479002 en 900000000000013009 Artery sample 900000000000020002 +452920018 20170731 1 900000000000207008 309479002 en 900000000000013009 Artery sample 900000000000448009 +452921019 20020131 1 900000000000207008 309480004 en 900000000000013009 Vein sample 900000000000020002 +452921019 20170731 1 900000000000207008 309480004 en 900000000000013009 Vein sample 900000000000448009 +452922014 20020131 1 900000000000207008 309481000 en 900000000000013009 Temporal artery sample 900000000000020002 +452922014 20170731 1 900000000000207008 309481000 en 900000000000013009 Temporal artery sample 900000000000448009 +452923016 20020131 1 900000000000207008 309482007 en 900000000000013009 Frozen section lymph node sample 900000000000020002 +452923016 20170731 1 900000000000207008 309482007 en 900000000000013009 Frozen section lymph node sample 900000000000448009 +452924010 20020131 1 900000000000207008 309483002 en 900000000000013009 Lip biopsy sample 900000000000020002 +452924010 20170731 1 900000000000207008 309483002 en 900000000000013009 Lip biopsy sample 900000000000448009 +452925011 20020131 1 900000000000207008 309484008 en 900000000000013009 Parotidectomy sample 900000000000020002 +452925011 20170731 1 900000000000207008 309484008 en 900000000000013009 Parotidectomy sample 900000000000448009 +452926012 20020131 1 900000000000207008 309485009 en 900000000000013009 Excised sublingual gland sample 900000000000020002 +452926012 20170731 1 900000000000207008 309485009 en 900000000000013009 Excised sublingual gland sample 900000000000448009 +452927015 20020131 1 900000000000207008 309486005 en 900000000000013009 Excised submandibular gland sample 900000000000020002 +452927015 20170731 1 900000000000207008 309486005 en 900000000000013009 Excised submandibular gland sample 900000000000448009 +452928013 20020131 1 900000000000207008 309487001 en 900000000000013009 Total colectomy sample 900000000000020002 +452928013 20170731 1 900000000000207008 309487001 en 900000000000013009 Total colectomy sample 900000000000448009 +452929017 20020131 1 900000000000207008 309488006 en 900000000000013009 Partial colectomy sample 900000000000020002 +452929017 20170731 1 900000000000207008 309488006 en 900000000000013009 Partial colectomy sample 900000000000448009 +452930010 20020131 1 900000000000207008 309489003 en 900000000000013009 Anterior resection of rectum sample 900000000000020002 +452930010 20170731 1 900000000000207008 309489003 en 900000000000013009 Anterior resection of rectum sample 900000000000448009 +452931014 20020131 1 900000000000207008 309490007 en 900000000000013009 Pancreatectomy sample 900000000000020002 +452931014 20170731 1 900000000000207008 309490007 en 900000000000013009 Pancreatectomy sample 900000000000448009 +452932019 20020131 1 900000000000207008 309491006 en 900000000000013009 Biliary tract tissue sample 900000000000020002 +452932019 20170731 1 900000000000207008 309491006 en 900000000000013009 Biliary tract tissue sample 900000000000448009 +452934018 20020131 1 900000000000207008 309493009 en 900000000000013009 Bile duct biopsy sample 900000000000020002 +452934018 20170731 1 900000000000207008 309493009 en 900000000000013009 Bile duct biopsy sample 900000000000448009 +452935017 20020131 1 900000000000207008 309494003 en 900000000000013009 Ampulla of Vater biopsy sample 900000000000020002 +452936016 20020131 1 900000000000207008 309495002 en 900000000000013009 Omentum tissue sample 900000000000020002 +452936016 20170731 1 900000000000207008 309495002 en 900000000000013009 Omentum tissue sample 900000000000448009 +452937013 20020131 1 900000000000207008 309496001 en 900000000000013009 Omentectomy sample 900000000000020002 +452937013 20170731 1 900000000000207008 309496001 en 900000000000013009 Omentectomy sample 900000000000448009 +452938015 20020131 1 900000000000207008 309496001 en 900000000000013009 Excised omentum sample 900000000000020002 +452938015 20170731 1 900000000000207008 309496001 en 900000000000013009 Excised omentum sample 900000000000448009 +452939011 20020131 1 900000000000207008 309497005 en 900000000000013009 Total nephrectomy sample 900000000000020002 +452939011 20170731 1 900000000000207008 309497005 en 900000000000013009 Total nephrectomy sample 900000000000448009 +452940013 20020131 1 900000000000207008 309498000 en 900000000000013009 Partial nephrectomy sample 900000000000020002 +452940013 20170731 1 900000000000207008 309498000 en 900000000000013009 Partial nephrectomy sample 900000000000448009 +452941012 20020131 1 900000000000207008 309499008 en 900000000000013009 Foreskin biopsy sample 900000000000020002 +452941012 20170731 1 900000000000207008 309499008 en 900000000000013009 Foreskin biopsy sample 900000000000448009 +452944016 20020131 1 900000000000207008 309501000 en 900000000000013009 Excised uterus sample 900000000000020002 +452944016 20170731 1 900000000000207008 309501000 en 900000000000013009 Excised uterus sample 900000000000448009 +452945015 20020131 1 900000000000207008 309501000 en 900000000000013009 Hysterectomy sample 900000000000020002 +452945015 20170731 1 900000000000207008 309501000 en 900000000000013009 Hysterectomy sample 900000000000448009 +452946019 20020131 1 900000000000207008 309502007 en 900000000000013009 Fetus specimen 900000000000020002 +452946019 20170731 1 900000000000207008 309502007 en 900000000000013009 Fetus specimen 900000000000448009 +452947011 20020131 1 900000000000207008 309503002 en 900000000000013009 Breast nipple discharge sample 900000000000020002 +452947011 20170731 1 900000000000207008 309503002 en 900000000000013009 Breast nipple discharge sample 900000000000448009 +452948018 20020131 1 900000000000207008 309504008 en 900000000000013009 Skin punch biopsy sample 900000000000020002 +452948018 20170731 1 900000000000207008 309504008 en 900000000000013009 Skin punch biopsy sample 900000000000448009 +452949014 20020131 1 900000000000207008 309505009 en 900000000000013009 Skin incision biopsy sample 900000000000020002 +452949014 20170731 1 900000000000207008 309505009 en 900000000000013009 Skin incision biopsy sample 900000000000448009 +452950014 20020131 1 900000000000207008 309506005 en 900000000000013009 Skin excision biopsy sample 900000000000020002 +452950014 20170731 1 900000000000207008 309506005 en 900000000000013009 Skin excision biopsy sample 900000000000448009 +452951013 20020131 1 900000000000207008 309507001 en 900000000000013009 Muscle biopsy sample 900000000000020002 +452951013 20170731 1 900000000000207008 309507001 en 900000000000013009 Muscle biopsy sample 900000000000448009 +452952018 20020131 1 900000000000207008 309508006 en 900000000000013009 Soft tissue lesion fine needle aspirate sample 900000000000020002 +452952018 20170731 1 900000000000207008 309508006 en 900000000000013009 Soft tissue lesion fine needle aspirate sample 900000000000448009 +452995019 20020131 1 900000000000207008 309546004 en 900000000000013009 Lumpectomy breast sample 900000000000020002 +452995019 20170731 1 900000000000207008 309546004 en 900000000000013009 Lumpectomy breast sample 900000000000448009 +452996018 20020131 1 900000000000207008 309547008 en 900000000000013009 Segmentectomy breast sample 900000000000020002 +452996018 20170731 1 900000000000207008 309547008 en 900000000000013009 Segmentectomy breast sample 900000000000448009 +452997010 20020131 1 900000000000207008 309548003 en 900000000000013009 Breast duct sample 900000000000020002 +452997010 20170731 1 900000000000207008 309548003 en 900000000000013009 Breast duct sample 900000000000448009 +452998017 20020131 1 900000000000207008 309548003 en 900000000000013009 Mammary duct sample 900000000000020002 +452998017 20170731 1 900000000000207008 309548003 en 900000000000013009 Mammary duct sample 900000000000448009 +452999013 20020131 1 900000000000207008 309549006 en 900000000000013009 Minor salivary gland sample 900000000000020002 +452999013 20170731 1 900000000000207008 309549006 en 900000000000013009 Minor salivary gland sample 900000000000448009 +453763016 20020131 1 900000000000207008 119332005 en 900000000000013009 Joint fluid sample 900000000000020002 +453763016 20080731 0 900000000000207008 119332005 en 900000000000013009 Joint fluid sample 900000000000020002 +453764010 20020131 1 900000000000207008 119332005 en 900000000000013009 Synovial fluid sample 900000000000020002 +453764010 20170731 1 900000000000207008 119332005 en 900000000000013009 Synovial fluid sample 900000000000448009 +453880011 20020131 1 900000000000207008 119344008 en 900000000000013009 Genital sample 900000000000020002 +453880011 20170731 1 900000000000207008 119344008 en 900000000000013009 Genital sample 900000000000448009 +456225017 20020131 1 900000000000207008 312494007 en 900000000000013009 Vaginal vault smear sample 900000000000020002 +456225017 20170731 1 900000000000207008 312494007 en 900000000000013009 Vaginal vault smear sample 900000000000448009 +470288011 20020131 1 900000000000207008 122584003 en 900000000000013009 Leucocyte specimen from patient 900000000000020002 +470288011 20170731 1 900000000000207008 122584003 en 900000000000013009 Leucocyte specimen from patient 900000000000448009 +470289015 20020131 1 900000000000207008 122585002 en 900000000000013009 Leucocyte specimen from control 900000000000020002 +470289015 20170731 1 900000000000207008 122585002 en 900000000000013009 Leucocyte specimen from control 900000000000448009 +470298017 20020131 1 900000000000207008 122611008 en 900000000000013009 Specimen from lung obtained by fibreoptic bronchoscopic biopsy 900000000000020002 +470298017 20170731 1 900000000000207008 122611008 en 900000000000013009 Specimen from lung obtained by fibreoptic bronchoscopic biopsy 900000000000448009 +470301018 20020131 1 900000000000207008 122628006 en 900000000000013009 Specimen from oesophagus obtained by incisional biopsy 900000000000020002 +470301018 20170731 1 900000000000207008 122628006 en 900000000000013009 Specimen from oesophagus obtained by incisional biopsy 900000000000448009 +470302013 20020131 1 900000000000207008 122629003 en 900000000000013009 Specimen from oesophagus obtained by excisional biopsy of lesion 900000000000020002 +470302013 20170731 1 900000000000207008 122629003 en 900000000000013009 Specimen from oesophagus obtained by excisional biopsy of lesion 900000000000448009 +470306011 20020131 1 900000000000207008 122630008 en 900000000000013009 Specimen from oesophagus obtained by oesophageal resection 900000000000020002 +470306011 20170731 1 900000000000207008 122630008 en 900000000000013009 Specimen from oesophagus obtained by oesophageal resection 900000000000448009 +470308012 20020131 1 900000000000207008 122631007 en 900000000000013009 Specimen from oesophagus obtained by oesophagogastrectomy 900000000000020002 +470308012 20170731 1 900000000000207008 122631007 en 900000000000013009 Specimen from oesophagus obtained by oesophagogastrectomy 900000000000448009 +470313011 20020131 1 900000000000207008 122638001 en 900000000000013009 Small bowel tissue sample 900000000000020002 +470313011 20170731 1 900000000000207008 122638001 en 900000000000013009 Small bowel tissue sample 900000000000448009 +470316015 20020131 1 900000000000207008 122643008 en 900000000000013009 Large bowel tissue sample 900000000000020002 +470316015 20170731 1 900000000000207008 122643008 en 900000000000013009 Large bowel tissue sample 900000000000448009 +470353014 20020131 1 900000000000207008 122711004 en 900000000000013009 Specimen from ovary obtained by removal of tumour in fragments 900000000000020002 +470353014 20170731 1 900000000000207008 122711004 en 900000000000013009 Specimen from ovary obtained by removal of tumour in fragments 900000000000448009 +470361016 20020131 1 900000000000207008 122736005 en 900000000000013009 Placental tissue 900000000000020002 +470361016 20170731 1 900000000000207008 122736005 en 900000000000013009 Placental tissue 900000000000448009 +470362011 20020131 1 900000000000207008 122736005 en 900000000000013009 Placental tissue sample 900000000000020002 +470362011 20170731 1 900000000000207008 122736005 en 900000000000013009 Placental tissue sample 900000000000448009 +474162012 20020131 1 900000000000207008 127456000 en 900000000000013009 Breast sample 900000000000020002 +474162012 20170731 1 900000000000207008 127456000 en 900000000000013009 Breast sample 900000000000448009 +474163019 20020131 1 900000000000207008 127463000 en 900000000000013009 Specimen from oesophagus 900000000000020002 +474163019 20170731 1 900000000000207008 127463000 en 900000000000013009 Specimen from oesophagus 900000000000448009 +474164013 20020131 1 900000000000207008 127464006 en 900000000000013009 Tissue specimen from oesophagus 900000000000020002 +474164013 20170731 1 900000000000207008 127464006 en 900000000000013009 Tissue specimen from oesophagus 900000000000448009 +474165014 20020131 1 900000000000207008 127466008 en 900000000000013009 Gastrointestinal tissue sample 900000000000020002 +474165014 20170731 1 900000000000207008 127466008 en 900000000000013009 Gastrointestinal tissue sample 900000000000448009 +474166010 20020131 1 900000000000207008 127470000 en 900000000000013009 Pancreas tissue sample 900000000000020002 +474166010 20170731 1 900000000000207008 127470000 en 900000000000013009 Pancreas tissue sample 900000000000448009 +474168011 20020131 1 900000000000207008 127475005 en 900000000000013009 Testes tissue sample 900000000000020002 +474168011 20170731 1 900000000000207008 127475005 en 900000000000013009 Testes tissue sample 900000000000448009 +474170019 20020131 1 900000000000207008 127480001 en 900000000000013009 Uterus tissue sample 900000000000020002 +474170019 20170731 1 900000000000207008 127480001 en 900000000000013009 Uterus tissue sample 900000000000448009 +474171015 20020131 1 900000000000207008 127481002 en 900000000000013009 Cervix tissue sample 900000000000020002 +474171015 20170731 1 900000000000207008 127481002 en 900000000000013009 Cervix tissue sample 900000000000448009 +474172010 20020131 1 900000000000207008 127482009 en 900000000000013009 Ovarian tissue sample 900000000000020002 +474172010 20170731 1 900000000000207008 127482009 en 900000000000013009 Ovarian tissue sample 900000000000448009 +474323010 20020131 1 900000000000207008 128156008 en 900000000000013009 Anal tissue sample 900000000000020002 +474323010 20170731 1 900000000000207008 128156008 en 900000000000013009 Anal tissue sample 900000000000448009 +474324016 20020131 1 900000000000207008 128159001 en 900000000000013009 Colon tissue sample 900000000000020002 +474324016 20170731 1 900000000000207008 128159001 en 900000000000013009 Colon tissue sample 900000000000448009 +474325015 20020131 1 900000000000207008 128162003 en 900000000000013009 Ear tissue sample 900000000000020002 +474325015 20170731 1 900000000000207008 128162003 en 900000000000013009 Ear tissue sample 900000000000448009 +474326019 20020131 1 900000000000207008 128164002 en 900000000000013009 Eye tissue sample 900000000000020002 +474326019 20170731 1 900000000000207008 128164002 en 900000000000013009 Eye tissue sample 900000000000448009 +474327011 20020131 1 900000000000207008 128169007 en 900000000000013009 Penis tissue sample 900000000000020002 +474327011 20170731 1 900000000000207008 128169007 en 900000000000013009 Penis tissue sample 900000000000448009 +474330016 20020131 1 900000000000207008 128175003 en 900000000000013009 Vaginal tissue sample 900000000000020002 +474330016 20170731 1 900000000000207008 128175003 en 900000000000013009 Vaginal tissue sample 900000000000448009 +482456017 20020131 1 900000000000207008 363311008 en 900000000000013009 Specimen from digestive system 900000000000020002 +482456017 20170731 1 900000000000207008 363311008 en 900000000000013009 Specimen from digestive system 900000000000448009 +482473015 20020131 1 900000000000207008 363328006 en 900000000000013009 Tissue specimen from digestive system 900000000000020002 +482473015 20170731 1 900000000000207008 363328006 en 900000000000013009 Tissue specimen from digestive system 900000000000448009 +482474014 20020131 1 900000000000207008 363329003 en 900000000000013009 Tissue specimen from respiratory system 900000000000020002 +482474014 20170731 1 900000000000207008 363329003 en 900000000000013009 Tissue specimen from respiratory system 900000000000448009 +491159015 20020131 1 900000000000207008 369611008 en 900000000000013009 Tissue specimen obtained from small intestine by biopsy 900000000000020002 +491159015 20170731 1 900000000000207008 369611008 en 900000000000013009 Tissue specimen obtained from small intestine by biopsy 900000000000448009 +491161012 20020131 1 900000000000207008 369613006 en 900000000000013009 Tissue specimen obtained for Hodgkin's disease by biopsy 900000000000020002 +491162017 20020131 1 900000000000207008 369614000 en 900000000000013009 Tissue specimen obtained from extrahepatic bile ducts by biopsy 900000000000020002 +491162017 20170731 1 900000000000207008 369614000 en 900000000000013009 Tissue specimen obtained from extrahepatic bile ducts by biopsy 900000000000448009 +491163010 20020131 1 900000000000207008 369615004 en 900000000000013009 Tissue specimen obtained from extrahepatic bile ducts by choledochal cyst resection 900000000000020002 +491163010 20170731 1 900000000000207008 369615004 en 900000000000013009 Tissue specimen obtained from extrahepatic bile ducts by choledochal cyst resection 900000000000448009 +491164016 20020131 1 900000000000207008 369616003 en 900000000000013009 Tissue specimen obtained from gallbladder by biopsy 900000000000020002 +491164016 20170731 1 900000000000207008 369616003 en 900000000000013009 Tissue specimen obtained from gallbladder by biopsy 900000000000448009 +491165015 20020131 1 900000000000207008 369617007 en 900000000000013009 Tissue specimen obtained from gallbladder by cholecystectomy with partial hepatectomy 900000000000020002 +491165015 20170731 1 900000000000207008 369617007 en 900000000000013009 Tissue specimen obtained from gallbladder by cholecystectomy with partial hepatectomy 900000000000448009 +491167011 20020131 1 900000000000207008 369618002 en 900000000000013009 Tissue specimen otained from vulva by biopsy 900000000000020002 +491167011 20030731 0 900000000000207008 369618002 en 900000000000013009 Tissue specimen otained from vulva by biopsy 900000000000020002 +491685015 20020131 1 900000000000207008 370108001 en 900000000000013009 Extrahepatic bile duct cytologic material 900000000000020002 +491685015 20170731 1 900000000000207008 370108001 en 900000000000013009 Extrahepatic bile duct cytologic material 900000000000448009 +549530019 20020131 1 900000000000207008 167867009 en 900000000000003001 Multiple joint synovial fluid (specimen) 900000000000020002 +549530019 20170731 1 900000000000207008 167867009 en 900000000000003001 Multiple joint synovial fluid (specimen) 900000000000448009 +549531015 20020131 1 900000000000207008 167868004 en 900000000000003001 Shoulder joint synovial fluid (specimen) 900000000000020002 +549531015 20170731 1 900000000000207008 167868004 en 900000000000003001 Shoulder joint synovial fluid (specimen) 900000000000448009 +549532010 20020131 1 900000000000207008 167869007 en 900000000000003001 Elbow joint synovial fluid (specimen) 900000000000020002 +549532010 20170731 1 900000000000207008 167869007 en 900000000000003001 Elbow joint synovial fluid (specimen) 900000000000448009 +549533017 20020131 1 900000000000207008 167870008 en 900000000000003001 Wrist joint synovial fluid (specimen) 900000000000020002 +549533017 20170731 1 900000000000207008 167870008 en 900000000000003001 Wrist joint synovial fluid (specimen) 900000000000448009 +549534011 20020131 1 900000000000207008 167871007 en 900000000000003001 Hand joint synovial fluid (specimen) 900000000000020002 +549534011 20170731 1 900000000000207008 167871007 en 900000000000003001 Hand joint synovial fluid (specimen) 900000000000448009 +549535012 20020131 1 900000000000207008 167872000 en 900000000000003001 Finger joint synovial fluid (specimen) 900000000000020002 +549535012 20170731 1 900000000000207008 167872000 en 900000000000003001 Finger joint synovial fluid (specimen) 900000000000448009 +549536013 20020131 1 900000000000207008 167873005 en 900000000000003001 Hip joint synovial fluid (specimen) 900000000000020002 +549536013 20170731 1 900000000000207008 167873005 en 900000000000003001 Hip joint synovial fluid (specimen) 900000000000448009 +549537016 20020131 1 900000000000207008 167874004 en 900000000000003001 Knee joint synovial fluid (specimen) 900000000000020002 +549537016 20170731 1 900000000000207008 167874004 en 900000000000003001 Knee joint synovial fluid (specimen) 900000000000448009 +549539018 20020131 1 900000000000207008 167875003 en 900000000000003001 Ankle joint synovial fluid (specimen) 900000000000020002 +549539018 20170731 1 900000000000207008 167875003 en 900000000000003001 Ankle joint synovial fluid (specimen) 900000000000448009 +549540016 20020131 1 900000000000207008 167876002 en 900000000000003001 Foot joint synovial fluid (specimen) 900000000000020002 +549540016 20170731 1 900000000000207008 167876002 en 900000000000003001 Foot joint synovial fluid (specimen) 900000000000448009 +549541017 20020131 1 900000000000207008 167877006 en 900000000000003001 Toe joint synovial fluid (specimen) 900000000000020002 +549541017 20170731 1 900000000000207008 167877006 en 900000000000003001 Toe joint synovial fluid (specimen) 900000000000448009 +549579010 20020131 1 900000000000207008 167913002 en 900000000000003001 Bone marrow source (specimen) 900000000000020002 +549579010 20170731 1 900000000000207008 167913002 en 900000000000003001 Bone marrow source (specimen) 900000000000448009 +549825012 20020131 1 900000000000207008 168136008 en 900000000000003001 Colostomy fluid sample (specimen) 900000000000020002 +549825012 20170731 1 900000000000207008 168136008 en 900000000000003001 Colostomy fluid sample (specimen) 900000000000448009 +549825012 20220630 0 900000000000207008 168136008 en 900000000000003001 Colostomy fluid sample (specimen) 900000000000448009 +549826013 20020131 1 900000000000207008 168137004 en 900000000000003001 Gastric aspirate sample (specimen) 900000000000020002 +549826013 20170731 1 900000000000207008 168137004 en 900000000000003001 Gastric aspirate sample (specimen) 900000000000448009 +549826013 20220630 0 900000000000207008 168137004 en 900000000000003001 Gastric aspirate sample (specimen) 900000000000448009 +549827016 20020131 1 900000000000207008 168138009 en 900000000000003001 Gastric lavage aspirate sample (specimen) 900000000000020002 +549827016 20170731 1 900000000000207008 168138009 en 900000000000003001 Gastric lavage aspirate sample (specimen) 900000000000448009 +549827016 20220630 0 900000000000207008 168138009 en 900000000000003001 Gastric lavage aspirate sample (specimen) 900000000000448009 +549828014 20020131 1 900000000000207008 168139001 en 900000000000003001 Peritoneal fluid sample (specimen) 900000000000020002 +549828014 20170731 1 900000000000207008 168139001 en 900000000000003001 Peritoneal fluid sample (specimen) 900000000000448009 +549828014 20220630 0 900000000000207008 168139001 en 900000000000003001 Peritoneal fluid sample (specimen) 900000000000448009 +549829018 20020131 1 900000000000207008 168140004 en 900000000000003001 Peritoneal dialysate sample (specimen) 900000000000020002 +549829018 20170731 1 900000000000207008 168140004 en 900000000000003001 Peritoneal dialysate sample (specimen) 900000000000448009 +549829018 20220630 0 900000000000207008 168140004 en 900000000000003001 Peritoneal dialysate sample (specimen) 900000000000448009 +549831010 20020131 1 900000000000207008 168141000 en 900000000000003001 Nasal fluid sample (specimen) 900000000000020002 +549831010 20170731 1 900000000000207008 168141000 en 900000000000003001 Nasal fluid sample (specimen) 900000000000448009 +549831010 20220630 0 900000000000207008 168141000 en 900000000000003001 Nasal fluid sample (specimen) 900000000000448009 +549835018 20020131 1 900000000000207008 168145009 en 900000000000003001 Lymph sample (specimen) 900000000000020002 +549835018 20170731 1 900000000000207008 168145009 en 900000000000003001 Lymph sample (specimen) 900000000000448009 +549835018 20220630 0 900000000000207008 168145009 en 900000000000003001 Lymph sample (specimen) 900000000000448009 +626388011 20020131 1 900000000000207008 110893002 en 900000000000003001 Cutaneous cytologic material (specimen) 900000000000020002 +626388011 20170731 1 900000000000207008 110893002 en 900000000000003001 Cutaneous cytologic material (specimen) 900000000000448009 +626397010 20020131 1 900000000000207008 110894008 en 900000000000003001 Mammary cytologic material (specimen) 900000000000020002 +626397010 20170731 1 900000000000207008 110894008 en 900000000000003001 Mammary cytologic material (specimen) 900000000000448009 +626413012 20020131 1 900000000000207008 110896005 en 900000000000003001 Subcutaneous cytologic material (specimen) 900000000000020002 +626413012 20170731 1 900000000000207008 110896005 en 900000000000003001 Subcutaneous cytologic material (specimen) 900000000000448009 +626422013 20020131 1 900000000000207008 110897001 en 900000000000003001 Bone marrow cytological material (cell) 900000000000020002 +626422013 20020731 0 900000000000207008 110897001 en 900000000000003001 Bone marrow cytological material (cell) 900000000000020002 +626432018 20020131 1 900000000000207008 110898006 en 900000000000003001 Lymph node cytologic material (specimen) 900000000000020002 +626432018 20170731 1 900000000000207008 110898006 en 900000000000003001 Lymph node cytologic material (specimen) 900000000000448009 +626443014 20020131 1 900000000000207008 110899003 en 900000000000003001 Breast nipple cytologic material (specimen) 900000000000020002 +626443014 20170731 1 900000000000207008 110899003 en 900000000000003001 Breast nipple cytologic material (specimen) 900000000000448009 +626454016 20020131 1 900000000000207008 110900008 en 900000000000003001 Skeletal muscle cytologic material (specimen) 900000000000020002 +626454016 20170731 1 900000000000207008 110900008 en 900000000000003001 Skeletal muscle cytologic material (specimen) 900000000000448009 +626463019 20020131 1 900000000000207008 110901007 en 900000000000003001 Bone cytologic material (specimen) 900000000000020002 +626463019 20170731 1 900000000000207008 110901007 en 900000000000003001 Bone cytologic material (specimen) 900000000000448009 +626472010 20020131 1 900000000000207008 110902000 en 900000000000003001 Upper respiratory tract cytologic material (specimen) 900000000000020002 +626472010 20170731 1 900000000000207008 110902000 en 900000000000003001 Upper respiratory tract cytologic material (specimen) 900000000000448009 +626482011 20020131 1 900000000000207008 110903005 en 900000000000003001 Nasal cytologic material (specimen) 900000000000020002 +626482011 20170731 1 900000000000207008 110903005 en 900000000000003001 Nasal cytologic material (specimen) 900000000000448009 +626493013 20020131 1 900000000000207008 110904004 en 900000000000003001 Accessory sinus cytologic material (specimen) 900000000000020002 +626493013 20170731 1 900000000000207008 110904004 en 900000000000003001 Accessory sinus cytologic material (specimen) 900000000000448009 +626502011 20020131 1 900000000000207008 110905003 en 900000000000003001 Nasopharyngeal cytologic material (specimen) 900000000000020002 +626502011 20170731 1 900000000000207008 110905003 en 900000000000003001 Nasopharyngeal cytologic material (specimen) 900000000000448009 +626509019 20020131 1 900000000000207008 110906002 en 900000000000003001 Lower respiratory tract cytologic material (specimen) 900000000000020002 +626509019 20170731 1 900000000000207008 110906002 en 900000000000003001 Lower respiratory tract cytologic material (specimen) 900000000000448009 +626520019 20020131 1 900000000000207008 110907006 en 900000000000003001 Epiglottic cytologic material (specimen) 900000000000020002 +626520019 20170731 1 900000000000207008 110907006 en 900000000000003001 Epiglottic cytologic material (specimen) 900000000000448009 +626529018 20020131 1 900000000000207008 110908001 en 900000000000003001 Laryngeal cytologic material (specimen) 900000000000020002 +626529018 20170731 1 900000000000207008 110908001 en 900000000000003001 Laryngeal cytologic material (specimen) 900000000000448009 +626538016 20020131 1 900000000000207008 110909009 en 900000000000003001 Vocal cord cytologic material (specimen) 900000000000020002 +626538016 20170731 1 900000000000207008 110909009 en 900000000000003001 Vocal cord cytologic material (specimen) 900000000000448009 +626549010 20020131 1 900000000000207008 110910004 en 900000000000003001 Lung cytologic material (specimen) 900000000000020002 +626549010 20170731 1 900000000000207008 110910004 en 900000000000003001 Lung cytologic material (specimen) 900000000000448009 +626568013 20020131 1 900000000000207008 110912007 en 900000000000003001 Bronchial cytologic material (specimen) 900000000000020002 +626568013 20170731 1 900000000000207008 110912007 en 900000000000003001 Bronchial cytologic material (specimen) 900000000000448009 +626578011 20020131 1 900000000000207008 110913002 en 900000000000003001 Pleural cytologic material (specimen) 900000000000020002 +626578011 20170731 1 900000000000207008 110913002 en 900000000000003001 Pleural cytologic material (specimen) 900000000000448009 +626585010 20020131 1 900000000000207008 110914008 en 900000000000003001 Right upper lobe bronchus cytologic material (specimen) 900000000000020002 +626585010 20170731 1 900000000000207008 110914008 en 900000000000003001 Right upper lobe bronchus cytologic material (specimen) 900000000000448009 +626591012 20020131 1 900000000000207008 110915009 en 900000000000003001 Right pleural cytologic material (specimen) 900000000000020002 +626591012 20170731 1 900000000000207008 110915009 en 900000000000003001 Right pleural cytologic material (specimen) 900000000000448009 +626600012 20020131 1 900000000000207008 110916005 en 900000000000003001 Right lower lobe bronchus cytologic material (specimen) 900000000000020002 +626600012 20170731 1 900000000000207008 110916005 en 900000000000003001 Right lower lobe bronchus cytologic material (specimen) 900000000000448009 +626609013 20020131 1 900000000000207008 110917001 en 900000000000003001 Left pleural cytologic material (specimen) 900000000000020002 +626609013 20170731 1 900000000000207008 110917001 en 900000000000003001 Left pleural cytologic material (specimen) 900000000000448009 +626615013 20020131 1 900000000000207008 110918006 en 900000000000003001 Left upper lobe bronchus cytologic material (specimen) 900000000000020002 +626615013 20170731 1 900000000000207008 110918006 en 900000000000003001 Left upper lobe bronchus cytologic material (specimen) 900000000000448009 +626623010 20020131 1 900000000000207008 110919003 en 900000000000003001 Pericardial cytologic material (specimen) 900000000000020002 +626623010 20170731 1 900000000000207008 110919003 en 900000000000003001 Pericardial cytologic material (specimen) 900000000000448009 +626631017 20020131 1 900000000000207008 110920009 en 900000000000003001 Tracheal cytologic material (specimen) 900000000000020002 +626631017 20170731 1 900000000000207008 110920009 en 900000000000003001 Tracheal cytologic material (specimen) 900000000000448009 +626640018 20020131 1 900000000000207008 110921008 en 900000000000003001 Right middle lobe bronchus cytologic material (specimen) 900000000000020002 +626640018 20170731 1 900000000000207008 110921008 en 900000000000003001 Right middle lobe bronchus cytologic material (specimen) 900000000000448009 +626646012 20020131 1 900000000000207008 110922001 en 900000000000003001 Cytologic material from left main bronchus (specimen) 900000000000020002 +626646012 20170731 1 900000000000207008 110922001 en 900000000000003001 Cytologic material from left main bronchus (specimen) 900000000000448009 +626653015 20020131 1 900000000000207008 110923006 en 900000000000003001 Left lower lobe bronchus cytologic material (specimen) 900000000000020002 +626653015 20170731 1 900000000000207008 110923006 en 900000000000003001 Left lower lobe bronchus cytologic material (specimen) 900000000000448009 +626659016 20020131 1 900000000000207008 110924000 en 900000000000003001 Cytologic material from right main bronchus (specimen) 900000000000020002 +626659016 20170731 1 900000000000207008 110924000 en 900000000000003001 Cytologic material from right main bronchus (specimen) 900000000000448009 +626669010 20020131 1 900000000000207008 110925004 en 900000000000003001 Cytologic material of mouth (cell) 900000000000020002 +626669010 20020731 0 900000000000207008 110925004 en 900000000000003001 Cytologic material of mouth (cell) 900000000000020002 +626676017 20020131 1 900000000000207008 110926003 en 900000000000003001 Gallbladder cytologic material (specimen) 900000000000020002 +626676017 20170731 1 900000000000207008 110926003 en 900000000000003001 Gallbladder cytologic material (specimen) 900000000000448009 +626680010 20020131 1 900000000000207008 110927007 en 900000000000003001 Liver cytologic material (specimen) 900000000000020002 +626680010 20170731 1 900000000000207008 110927007 en 900000000000003001 Liver cytologic material (specimen) 900000000000448009 +626686016 20020131 1 900000000000207008 110928002 en 900000000000003001 Bile duct cytologic material (specimen) 900000000000020002 +626686016 20170731 1 900000000000207008 110928002 en 900000000000003001 Bile duct cytologic material (specimen) 900000000000448009 +626695012 20020131 1 900000000000207008 110929005 en 900000000000003001 Pancreatic cytologic material (specimen) 900000000000020002 +626695012 20170731 1 900000000000207008 110929005 en 900000000000003001 Pancreatic cytologic material (specimen) 900000000000448009 +626703015 20020131 1 900000000000207008 110930000 en 900000000000003001 Salivary gland cytologic material (specimen) 900000000000020002 +626703015 20170731 1 900000000000207008 110930000 en 900000000000003001 Salivary gland cytologic material (specimen) 900000000000448009 +626709016 20020131 1 900000000000207008 110931001 en 900000000000003001 Penis cytologic material (specimen) 900000000000020002 +626709016 20170731 1 900000000000207008 110931001 en 900000000000003001 Penis cytologic material (specimen) 900000000000448009 +626714017 20020131 1 900000000000207008 110932008 en 900000000000003001 Parotid gland cytologic material (specimen) 900000000000020002 +626714017 20170731 1 900000000000207008 110932008 en 900000000000003001 Parotid gland cytologic material (specimen) 900000000000448009 +626720016 20020131 1 900000000000207008 110933003 en 900000000000003001 Prostate cytologic material (specimen) 900000000000020002 +626720016 20170731 1 900000000000207008 110933003 en 900000000000003001 Prostate cytologic material (specimen) 900000000000448009 +626723019 20020131 1 900000000000207008 110934009 en 900000000000003001 Pharyngeal cytologic material (specimen) 900000000000020002 +626723019 20170731 1 900000000000207008 110934009 en 900000000000003001 Pharyngeal cytologic material (specimen) 900000000000448009 +626729015 20020131 1 900000000000207008 110935005 en 900000000000003001 Testis cytologic material (specimen) 900000000000020002 +626729015 20170731 1 900000000000207008 110935005 en 900000000000003001 Testis cytologic material (specimen) 900000000000448009 +626733010 20020131 1 900000000000207008 110936006 en 900000000000003001 Gastric cytologic material (specimen) 900000000000020002 +626733010 20170731 1 900000000000207008 110936006 en 900000000000003001 Gastric cytologic material (specimen) 900000000000448009 +626743013 20020131 1 900000000000207008 110937002 en 900000000000003001 Seminal vesicle cytologic material (specimen) 900000000000020002 +626743013 20170731 1 900000000000207008 110937002 en 900000000000003001 Seminal vesicle cytologic material (specimen) 900000000000448009 +626749012 20020131 1 900000000000207008 110938007 en 900000000000003001 Duodenal cytologic material (specimen) 900000000000020002 +626749012 20170731 1 900000000000207008 110938007 en 900000000000003001 Duodenal cytologic material (specimen) 900000000000448009 +626752016 20020131 1 900000000000207008 110939004 en 900000000000003001 Vas deferens cytologic material (specimen) 900000000000020002 +626752016 20170731 1 900000000000207008 110939004 en 900000000000003001 Vas deferens cytologic material (specimen) 900000000000448009 +626758017 20020131 1 900000000000207008 110940002 en 900000000000003001 Ileal cytologic material (specimen) 900000000000020002 +626758017 20170731 1 900000000000207008 110940002 en 900000000000003001 Ileal cytologic material (specimen) 900000000000448009 +626765013 20020131 1 900000000000207008 110941003 en 900000000000003001 Epididymis cytologic material (specimen) 900000000000020002 +626765013 20170731 1 900000000000207008 110941003 en 900000000000003001 Epididymis cytologic material (specimen) 900000000000448009 +626773016 20020131 1 900000000000207008 110942005 en 900000000000003001 Rectal cytologic material (specimen) 900000000000020002 +626773016 20170731 1 900000000000207008 110942005 en 900000000000003001 Rectal cytologic material (specimen) 900000000000448009 +626782010 20020131 1 900000000000207008 110943000 en 900000000000003001 Renal pelvis cytologic material (specimen) 900000000000020002 +626782010 20170731 1 900000000000207008 110943000 en 900000000000003001 Renal pelvis cytologic material (specimen) 900000000000448009 +626789018 20020131 1 900000000000207008 110944006 en 900000000000003001 Peritoneal cytologic material (specimen) 900000000000020002 +626789018 20170731 1 900000000000207008 110944006 en 900000000000003001 Peritoneal cytologic material (specimen) 900000000000448009 +626795017 20020131 1 900000000000207008 110945007 en 900000000000003001 Vulva cytologic material (specimen) 900000000000020002 +626795017 20170731 1 900000000000207008 110945007 en 900000000000003001 Vulva cytologic material (specimen) 900000000000448009 +626804018 20020131 1 900000000000207008 110946008 en 900000000000003001 Upper urinary tract cytologic material (specimen) 900000000000020002 +626804018 20170731 1 900000000000207008 110946008 en 900000000000003001 Upper urinary tract cytologic material (specimen) 900000000000448009 +626812014 20020131 1 900000000000207008 110947004 en 900000000000003001 Vagina cytologic material (specimen) 900000000000020002 +626812014 20170731 1 900000000000207008 110947004 en 900000000000003001 Vagina cytologic material (specimen) 900000000000448009 +626821010 20020131 1 900000000000207008 110948009 en 900000000000003001 Kidney cytologic material (specimen) 900000000000020002 +626821010 20170731 1 900000000000207008 110948009 en 900000000000003001 Kidney cytologic material (specimen) 900000000000448009 +626826017 20020131 1 900000000000207008 110949001 en 900000000000003001 Cervix cytologic material (specimen) 900000000000020002 +626826017 20170731 1 900000000000207008 110949001 en 900000000000003001 Cervix cytologic material (specimen) 900000000000448009 +626834011 20020131 1 900000000000207008 110950001 en 900000000000003001 Urinary bladder cytologic material (specimen) 900000000000020002 +626834011 20170731 1 900000000000207008 110950001 en 900000000000003001 Urinary bladder cytologic material (specimen) 900000000000448009 +626841017 20020131 1 900000000000207008 110951002 en 900000000000003001 Endocervical cytologic material (specimen) 900000000000020002 +626841017 20170731 1 900000000000207008 110951002 en 900000000000003001 Endocervical cytologic material (specimen) 900000000000448009 +626849015 20020131 1 900000000000207008 110952009 en 900000000000003001 Submaxillary gland cytologic material (specimen) 900000000000020002 +626849015 20170731 1 900000000000207008 110952009 en 900000000000003001 Submaxillary gland cytologic material (specimen) 900000000000448009 +626854012 20020131 1 900000000000207008 110953004 en 900000000000003001 Vaginal-cervical cytologic material (specimen) 900000000000020002 +626854012 20090131 0 900000000000207008 110953004 en 900000000000003001 Vaginal-cervical cytologic material (specimen) 900000000000020002 +626856014 20020131 1 900000000000207008 110954005 en 900000000000003001 Small intestine cytologic material (specimen) 900000000000020002 +626856014 20170731 1 900000000000207008 110954005 en 900000000000003001 Small intestine cytologic material (specimen) 900000000000448009 +626863014 20020131 1 900000000000207008 110955006 en 900000000000003001 Endometrium cytologic material (specimen) 900000000000020002 +626863014 20170731 1 900000000000207008 110955006 en 900000000000003001 Endometrium cytologic material (specimen) 900000000000448009 +626868017 20020131 1 900000000000207008 110956007 en 900000000000003001 Colonic cytologic material (specimen) 900000000000020002 +626868017 20170731 1 900000000000207008 110956007 en 900000000000003001 Colonic cytologic material (specimen) 900000000000448009 +626870014 20020131 1 900000000000207008 110957003 en 900000000000003001 Fallopian tube cytologic material (specimen) 900000000000020002 +626870014 20170731 1 900000000000207008 110957003 en 900000000000003001 Fallopian tube cytologic material (specimen) 900000000000448009 +626874017 20020131 1 900000000000207008 110958008 en 900000000000003001 Urinary tract cytologic material (specimen) 900000000000020002 +626874017 20170731 1 900000000000207008 110958008 en 900000000000003001 Urinary tract cytologic material (specimen) 900000000000448009 +626880013 20020131 1 900000000000207008 110959000 en 900000000000003001 Placenta cytologic material (specimen) 900000000000020002 +626880013 20170731 1 900000000000207008 110959000 en 900000000000003001 Placenta cytologic material (specimen) 900000000000448009 +626888018 20020131 1 900000000000207008 110960005 en 900000000000003001 Ureter cytologic material (specimen) 900000000000020002 +626888018 20170731 1 900000000000207008 110960005 en 900000000000003001 Ureter cytologic material (specimen) 900000000000448009 +626898012 20020131 1 900000000000207008 110961009 en 900000000000003001 Chorion cytologic material (specimen) 900000000000020002 +626898012 20170731 1 900000000000207008 110961009 en 900000000000003001 Chorion cytologic material (specimen) 900000000000448009 +626908019 20020131 1 900000000000207008 110962002 en 900000000000003001 Esophageal cytologic material (specimen) 900000000000020002 +626908019 20170731 1 900000000000207008 110962002 en 900000000000003001 Esophageal cytologic material (specimen) 900000000000448009 +626918012 20020131 1 900000000000207008 110963007 en 900000000000003001 Anal cytologic material (specimen) 900000000000020002 +626918012 20170731 1 900000000000207008 110963007 en 900000000000003001 Anal cytologic material (specimen) 900000000000448009 +626929011 20020131 1 900000000000207008 110964001 en 900000000000003001 Lower urinary tract cytologic material (specimen) 900000000000020002 +626929011 20170731 1 900000000000207008 110964001 en 900000000000003001 Lower urinary tract cytologic material (specimen) 900000000000448009 +626940015 20020131 1 900000000000207008 110965000 en 900000000000003001 Urethra cytologic material (specimen) 900000000000020002 +626940015 20170731 1 900000000000207008 110965000 en 900000000000003001 Urethra cytologic material (specimen) 900000000000448009 +626949019 20020131 1 900000000000207008 110966004 en 900000000000003001 Jejunal cytologic material (specimen) 900000000000020002 +626949019 20170731 1 900000000000207008 110966004 en 900000000000003001 Jejunal cytologic material (specimen) 900000000000448009 +626958014 20020131 1 900000000000207008 110967008 en 900000000000003001 Amnion cytologic material (specimen) 900000000000020002 +626958014 20170731 1 900000000000207008 110967008 en 900000000000003001 Amnion cytologic material (specimen) 900000000000448009 +626963013 20020131 1 900000000000207008 110968003 en 900000000000003001 Fetal cytologic material (specimen) 900000000000020002 +626963013 20170731 1 900000000000207008 110968003 en 900000000000003001 Fetal cytologic material (specimen) 900000000000448009 +626971012 20020131 1 900000000000207008 110969006 en 900000000000003001 Cerebrospinal fluid cytologic material (specimen) 900000000000020002 +626971012 20170731 1 900000000000207008 110969006 en 900000000000003001 Cerebrospinal fluid cytologic material (specimen) 900000000000448009 +626981011 20020131 1 900000000000207008 110970007 en 900000000000003001 Cerebroventricular fluid cytologic material (specimen) 900000000000020002 +626981011 20170731 1 900000000000207008 110970007 en 900000000000003001 Cerebroventricular fluid cytologic material (specimen) 900000000000448009 +648116012 20020131 1 900000000000207008 256889002 en 900000000000003001 Breast cyst fluid sample (specimen) 900000000000020002 +648116012 20170731 1 900000000000207008 256889002 en 900000000000003001 Breast cyst fluid sample (specimen) 900000000000448009 +648116012 20220630 0 900000000000207008 256889002 en 900000000000003001 Breast cyst fluid sample (specimen) 900000000000448009 +648142012 20020131 1 900000000000207008 256912003 en 900000000000003001 Red blood cell fluid sample (specimen) 900000000000020002 +648142012 20170731 1 900000000000207008 256912003 en 900000000000003001 Red blood cell fluid sample (specimen) 900000000000448009 +648142012 20220630 0 900000000000207008 256912003 en 900000000000003001 Red blood cell fluid sample (specimen) 900000000000448009 +648532017 20020131 1 900000000000207008 257261003 en 900000000000003001 Swab (specimen) 900000000000020002 +648532017 20170731 1 900000000000207008 257261003 en 900000000000003001 Swab (specimen) 900000000000448009 +649817011 20020131 1 900000000000207008 258407001 en 900000000000003001 Abscess tissue (specimen) 900000000000020002 +649817011 20170731 1 900000000000207008 258407001 en 900000000000003001 Abscess tissue (specimen) 900000000000448009 +649823018 20020131 1 900000000000207008 258411007 en 900000000000003001 Nasopharyngeal aspirate (specimen) 900000000000020002 +649823018 20170731 1 900000000000207008 258411007 en 900000000000003001 Nasopharyngeal aspirate (specimen) 900000000000448009 +649824012 20020131 1 900000000000207008 258412000 en 900000000000003001 Oropharyngeal aspirate (specimen) 900000000000020002 +649824012 20170731 1 900000000000207008 258412000 en 900000000000003001 Oropharyngeal aspirate (specimen) 900000000000448009 +649826014 20020131 1 900000000000207008 258414004 en 900000000000003001 Adipose tissue sample (specimen) 900000000000020002 +649826014 20170731 1 900000000000207008 258414004 en 900000000000003001 Adipose tissue sample (specimen) 900000000000448009 +649826014 20220630 0 900000000000207008 258414004 en 900000000000003001 Adipose tissue sample (specimen) 900000000000448009 +649827017 20020131 1 900000000000207008 258415003 en 900000000000003001 Biopsy sample (specimen) 900000000000020002 +649827017 20170731 1 900000000000207008 258415003 en 900000000000003001 Biopsy sample (specimen) 900000000000448009 +649827017 20220531 0 900000000000207008 258415003 en 900000000000003001 Biopsy sample (specimen) 900000000000448009 +649829019 20020131 1 900000000000207008 258417006 en 900000000000003001 Bone tissue sample (specimen) 900000000000020002 +649829019 20170731 1 900000000000207008 258417006 en 900000000000003001 Bone tissue sample (specimen) 900000000000448009 +649829019 20220630 0 900000000000207008 258417006 en 900000000000003001 Bone tissue sample (specimen) 900000000000448009 +649830012 20020131 1 900000000000207008 258418001 en 900000000000003001 Burn tissue (specimen) 900000000000020002 +649830012 20170731 1 900000000000207008 258418001 en 900000000000003001 Burn tissue (specimen) 900000000000448009 +649831011 20020131 1 900000000000207008 258419009 en 900000000000003001 Curettings (specimen) 900000000000020002 +649831011 20170731 1 900000000000207008 258419009 en 900000000000003001 Curettings (specimen) 900000000000448009 +649833014 20020131 1 900000000000207008 258420003 en 900000000000003001 Cyst tissue (specimen) 900000000000020002 +649833014 20170731 1 900000000000207008 258420003 en 900000000000003001 Cyst tissue (specimen) 900000000000448009 +649834015 20020131 1 900000000000207008 258421004 en 900000000000003001 Embryo biopsy sample (specimen) 900000000000020002 +649834015 20170731 1 900000000000207008 258421004 en 900000000000003001 Embryo biopsy sample (specimen) 900000000000448009 +649834015 20220630 0 900000000000207008 258421004 en 900000000000003001 Embryo biopsy sample (specimen) 900000000000448009 +649835019 20020131 1 900000000000207008 258422006 en 900000000000003001 Gonad tissue (specimen) 900000000000020002 +649835019 20170731 1 900000000000207008 258422006 en 900000000000003001 Gonad tissue (specimen) 900000000000448009 +649836018 20020131 1 900000000000207008 258423001 en 900000000000003001 Hair bulb sample (specimen) 900000000000020002 +649836018 20170731 1 900000000000207008 258423001 en 900000000000003001 Hair bulb sample (specimen) 900000000000448009 +649836018 20220630 0 900000000000207008 258423001 en 900000000000003001 Hair bulb sample (specimen) 900000000000448009 +649837010 20020131 1 900000000000207008 258424007 en 900000000000003001 Heart valve tissue (specimen) 900000000000020002 +649837010 20170731 1 900000000000207008 258424007 en 900000000000003001 Heart valve tissue (specimen) 900000000000448009 +649838017 20020131 1 900000000000207008 258425008 en 900000000000003001 Natural lens tissue (specimen) 900000000000020002 +649838017 20170731 1 900000000000207008 258425008 en 900000000000003001 Natural lens tissue (specimen) 900000000000448009 +649839013 20020131 1 900000000000207008 258426009 en 900000000000003001 Placental membrane tissue sample (specimen) 900000000000020002 +649839013 20170731 1 900000000000207008 258426009 en 900000000000003001 Placental membrane tissue sample (specimen) 900000000000448009 +649839013 20220630 0 900000000000207008 258426009 en 900000000000003001 Placental membrane tissue sample (specimen) 900000000000448009 +649842019 20020131 1 900000000000207008 258428005 en 900000000000003001 Products of conception tissue sample (specimen) 900000000000020002 +649842019 20170731 1 900000000000207008 258428005 en 900000000000003001 Products of conception tissue sample (specimen) 900000000000448009 +649842019 20220630 0 900000000000207008 258428005 en 900000000000003001 Products of conception tissue sample (specimen) 900000000000448009 +649843012 20020131 1 900000000000207008 258429002 en 900000000000003001 Rectal scrape sample (specimen) 900000000000020002 +649843012 20170731 1 900000000000207008 258429002 en 900000000000003001 Rectal scrape sample (specimen) 900000000000448009 +649843012 20220630 0 900000000000207008 258429002 en 900000000000003001 Rectal scrape sample (specimen) 900000000000448009 +649844018 20020131 1 900000000000207008 258430007 en 900000000000003001 Rectal snip sample (specimen) 900000000000020002 +649844018 20170731 1 900000000000207008 258430007 en 900000000000003001 Rectal snip sample (specimen) 900000000000448009 +649844018 20220630 0 900000000000207008 258430007 en 900000000000003001 Rectal snip sample (specimen) 900000000000448009 +649845017 20020131 1 900000000000207008 258431006 en 900000000000003001 Scrapings (specimen) 900000000000020002 +649845017 20170731 1 900000000000207008 258431006 en 900000000000003001 Scrapings (specimen) 900000000000448009 +649846016 20020131 1 900000000000207008 258432004 en 900000000000003001 Sebum sample (specimen) 900000000000020002 +649846016 20170731 1 900000000000207008 258432004 en 900000000000003001 Sebum sample (specimen) 900000000000448009 +649846016 20220630 0 900000000000207008 258432004 en 900000000000003001 Sebum sample (specimen) 900000000000448009 +649847013 20020131 1 900000000000207008 258433009 en 900000000000003001 Smear sample (specimen) 900000000000020002 +649847013 20170731 1 900000000000207008 258433009 en 900000000000003001 Smear sample (specimen) 900000000000448009 +649847013 20220630 0 900000000000207008 258433009 en 900000000000003001 Smear sample (specimen) 900000000000448009 +649848015 20020131 1 900000000000207008 258434003 en 900000000000003001 Spun urinary sediment (specimen) 900000000000020002 +649848015 20170731 1 900000000000207008 258434003 en 900000000000003001 Spun urinary sediment (specimen) 900000000000448009 +649850011 20020131 1 900000000000207008 258435002 en 900000000000003001 Tumor tissue sample (specimen) 900000000000020002 +649850011 20170731 1 900000000000207008 258435002 en 900000000000003001 Tumor tissue sample (specimen) 900000000000448009 +649850011 20220630 0 900000000000207008 258435002 en 900000000000003001 Tumor tissue sample (specimen) 900000000000448009 +649851010 20020131 1 900000000000207008 258436001 en 900000000000003001 Umbilical cord tissue sample (specimen) 900000000000020002 +649851010 20170731 1 900000000000207008 258436001 en 900000000000003001 Umbilical cord tissue sample (specimen) 900000000000448009 +649851010 20220630 0 900000000000207008 258436001 en 900000000000003001 Umbilical cord tissue sample (specimen) 900000000000448009 +649852015 20020131 1 900000000000207008 258437005 en 900000000000003001 Vegetation from heart valve (specimen) 900000000000020002 +649852015 20170731 1 900000000000207008 258437005 en 900000000000003001 Vegetation from heart valve (specimen) 900000000000448009 +649853013 20020131 1 900000000000207008 258438000 en 900000000000003001 Vitreous humor sample (specimen) 900000000000020002 +649853013 20170731 1 900000000000207008 258438000 en 900000000000003001 Vitreous humor sample (specimen) 900000000000448009 +649853013 20220630 0 900000000000207008 258438000 en 900000000000003001 Vitreous humor sample (specimen) 900000000000448009 +649854019 20020131 1 900000000000207008 258439008 en 900000000000003001 Discharge - sample (specimen) 900000000000020002 +649854019 20080731 0 900000000000207008 258439008 en 900000000000003001 Discharge - sample (specimen) 900000000000020002 +649855018 20020131 1 900000000000207008 258440005 en 900000000000003001 Effusion sample (specimen) 900000000000020002 +649855018 20170731 1 900000000000207008 258440005 en 900000000000003001 Effusion sample (specimen) 900000000000448009 +649855018 20220630 0 900000000000207008 258440005 en 900000000000003001 Effusion sample (specimen) 900000000000448009 +649856017 20020131 1 900000000000207008 258441009 en 900000000000003001 Exudate sample (specimen) 900000000000020002 +649856017 20170731 1 900000000000207008 258441009 en 900000000000003001 Exudate sample (specimen) 900000000000448009 +649856017 20220630 0 900000000000207008 258441009 en 900000000000003001 Exudate sample (specimen) 900000000000448009 +649857014 20020131 1 900000000000207008 258442002 en 900000000000003001 Fluid sample (specimen) 900000000000020002 +649857014 20170731 1 900000000000207008 258442002 en 900000000000003001 Fluid sample (specimen) 900000000000448009 +649857014 20220630 0 900000000000207008 258442002 en 900000000000003001 Fluid sample (specimen) 900000000000448009 +649860019 20020131 1 900000000000207008 258444001 en 900000000000003001 Aqueous humor sample (specimen) 900000000000020002 +649860019 20170731 1 900000000000207008 258444001 en 900000000000003001 Aqueous humor sample (specimen) 900000000000448009 +649860019 20220630 0 900000000000207008 258444001 en 900000000000003001 Aqueous humor sample (specimen) 900000000000448009 +649862010 20020131 1 900000000000207008 258446004 en 900000000000003001 Bronchial fluid sample (specimen) 900000000000020002 +649862010 20170731 1 900000000000207008 258446004 en 900000000000003001 Bronchial fluid sample (specimen) 900000000000448009 +649862010 20220630 0 900000000000207008 258446004 en 900000000000003001 Bronchial fluid sample (specimen) 900000000000448009 +649864011 20020131 1 900000000000207008 258448003 en 900000000000003001 Bursa fluid sample (specimen) 900000000000020002 +649864011 20170731 1 900000000000207008 258448003 en 900000000000003001 Bursa fluid sample (specimen) 900000000000448009 +649864011 20220630 0 900000000000207008 258448003 en 900000000000003001 Bursa fluid sample (specimen) 900000000000448009 +649866013 20020131 1 900000000000207008 258450006 en 900000000000003001 Cerebrospinal fluid sample (specimen) 900000000000020002 +649866013 20170731 1 900000000000207008 258450006 en 900000000000003001 Cerebrospinal fluid sample (specimen) 900000000000448009 +649866013 20220630 0 900000000000207008 258450006 en 900000000000003001 Cerebrospinal fluid sample (specimen) 900000000000448009 +649869018 20020131 1 900000000000207008 258452003 en 900000000000003001 Chylous fluid sample (specimen) 900000000000020002 +649869018 20170731 1 900000000000207008 258452003 en 900000000000003001 Chylous fluid sample (specimen) 900000000000448009 +649869018 20220630 0 900000000000207008 258452003 en 900000000000003001 Chylous fluid sample (specimen) 900000000000448009 +649870017 20020131 1 900000000000207008 258453008 en 900000000000003001 Cyst fluid sample (specimen) 900000000000020002 +649870017 20170731 1 900000000000207008 258453008 en 900000000000003001 Cyst fluid sample (specimen) 900000000000448009 +649870017 20220630 0 900000000000207008 258453008 en 900000000000003001 Cyst fluid sample (specimen) 900000000000448009 +649871018 20020131 1 900000000000207008 258454002 en 900000000000003001 Dialysate sample (specimen) 900000000000020002 +649871018 20170731 1 900000000000207008 258454002 en 900000000000003001 Dialysate sample (specimen) 900000000000448009 +649871018 20220630 0 900000000000207008 258454002 en 900000000000003001 Dialysate sample (specimen) 900000000000448009 +649872013 20020131 1 900000000000207008 258455001 en 900000000000003001 Drainage fluid sample (specimen) 900000000000020002 +649872013 20170731 1 900000000000207008 258455001 en 900000000000003001 Drainage fluid sample (specimen) 900000000000448009 +649872013 20220630 0 900000000000207008 258455001 en 900000000000003001 Drainage fluid sample (specimen) 900000000000448009 +649873015 20020131 1 900000000000207008 258456000 en 900000000000003001 Empyema fluid sample (specimen) 900000000000020002 +649873015 20170731 1 900000000000207008 258456000 en 900000000000003001 Empyema fluid sample (specimen) 900000000000448009 +649873015 20220630 0 900000000000207008 258456000 en 900000000000003001 Empyema fluid sample (specimen) 900000000000448009 +649874014 20020131 1 900000000000207008 258457009 en 900000000000003001 Fecal fluid sample (specimen) 900000000000020002 +649874014 20170731 1 900000000000207008 258457009 en 900000000000003001 Fecal fluid sample (specimen) 900000000000448009 +649874014 20220630 0 900000000000207008 258457009 en 900000000000003001 Fecal fluid sample (specimen) 900000000000448009 +649875010 20020131 1 900000000000207008 258458004 en 900000000000003001 Fistula fluid sample (specimen) 900000000000020002 +649875010 20170731 1 900000000000207008 258458004 en 900000000000003001 Fistula fluid sample (specimen) 900000000000448009 +649875010 20220630 0 900000000000207008 258458004 en 900000000000003001 Fistula fluid sample (specimen) 900000000000448009 +649876011 20020131 1 900000000000207008 258459007 en 900000000000003001 Gastric fluid sample (specimen) 900000000000020002 +649876011 20170731 1 900000000000207008 258459007 en 900000000000003001 Gastric fluid sample (specimen) 900000000000448009 +649876011 20220630 0 900000000000207008 258459007 en 900000000000003001 Gastric fluid sample (specimen) 900000000000448009 +649879016 20020131 1 900000000000207008 258461003 en 900000000000003001 Hydrocele fluid sample (specimen) 900000000000020002 +649879016 20170731 1 900000000000207008 258461003 en 900000000000003001 Hydrocele fluid sample (specimen) 900000000000448009 +649879016 20220630 0 900000000000207008 258461003 en 900000000000003001 Hydrocele fluid sample (specimen) 900000000000448009 +649880018 20020131 1 900000000000207008 258462005 en 900000000000003001 Ileostomy fluid sample (specimen) 900000000000020002 +649880018 20170731 1 900000000000207008 258462005 en 900000000000003001 Ileostomy fluid sample (specimen) 900000000000448009 +649880018 20220630 0 900000000000207008 258462005 en 900000000000003001 Ileostomy fluid sample (specimen) 900000000000448009 +649881019 20020131 1 900000000000207008 258463000 en 900000000000003001 Jejunal fluid sample (specimen) 900000000000020002 +649881019 20170731 1 900000000000207008 258463000 en 900000000000003001 Jejunal fluid sample (specimen) 900000000000448009 +649881019 20220630 0 900000000000207008 258463000 en 900000000000003001 Jejunal fluid sample (specimen) 900000000000448009 +649883016 20020131 1 900000000000207008 258465007 en 900000000000003001 Lacrimal fluid sample (specimen) 900000000000020002 +649883016 20170731 1 900000000000207008 258465007 en 900000000000003001 Lacrimal fluid sample (specimen) 900000000000448009 +649883016 20220531 0 900000000000207008 258465007 en 900000000000003001 Lacrimal fluid sample (specimen) 900000000000448009 +649884010 20020131 1 900000000000207008 258466008 en 900000000000003001 Middle ear fluid sample (specimen) 900000000000020002 +649884010 20170731 1 900000000000207008 258466008 en 900000000000003001 Middle ear fluid sample (specimen) 900000000000448009 +649884010 20220630 0 900000000000207008 258466008 en 900000000000003001 Middle ear fluid sample (specimen) 900000000000448009 +649885011 20020131 1 900000000000207008 258467004 en 900000000000003001 Nasopharyngeal washings (specimen) 900000000000020002 +649885011 20170731 1 900000000000207008 258467004 en 900000000000003001 Nasopharyngeal washings (specimen) 900000000000448009 +649886012 20020131 1 900000000000207008 258468009 en 900000000000003001 Edema fluid sample (specimen) 900000000000020002 +649886012 20170731 1 900000000000207008 258468009 en 900000000000003001 Edema fluid sample (specimen) 900000000000448009 +649886012 20220630 0 900000000000207008 258468009 en 900000000000003001 Edema fluid sample (specimen) 900000000000448009 +649888013 20020131 1 900000000000207008 258469001 en 900000000000003001 Pharyngeal washings (specimen) 900000000000020002 +649888013 20170731 1 900000000000207008 258469001 en 900000000000003001 Pharyngeal washings (specimen) 900000000000448009 +649889017 20020131 1 900000000000207008 258470000 en 900000000000003001 Prostatic fluid sample (specimen) 900000000000020002 +649889017 20170731 1 900000000000207008 258470000 en 900000000000003001 Prostatic fluid sample (specimen) 900000000000448009 +649889017 20220630 0 900000000000207008 258470000 en 900000000000003001 Prostatic fluid sample (specimen) 900000000000448009 +649890014 20020131 1 900000000000207008 258471001 en 900000000000003001 Prostatic massage fluid sample (specimen) 900000000000020002 +649890014 20170731 1 900000000000207008 258471001 en 900000000000003001 Prostatic massage fluid sample (specimen) 900000000000448009 +649890014 20220630 0 900000000000207008 258471001 en 900000000000003001 Prostatic massage fluid sample (specimen) 900000000000448009 +649891013 20020131 1 900000000000207008 258472008 en 900000000000003001 Renal pelvis fluid sample (specimen) 900000000000020002 +649891013 20170731 1 900000000000207008 258472008 en 900000000000003001 Renal pelvis fluid sample (specimen) 900000000000448009 +649891013 20220630 0 900000000000207008 258472008 en 900000000000003001 Renal pelvis fluid sample (specimen) 900000000000448009 +649893011 20020131 1 900000000000207008 258474009 en 900000000000003001 Sinus fluid sample (specimen) 900000000000020002 +649893011 20170731 1 900000000000207008 258474009 en 900000000000003001 Sinus fluid sample (specimen) 900000000000448009 +649893011 20220630 0 900000000000207008 258474009 en 900000000000003001 Sinus fluid sample (specimen) 900000000000448009 +649894017 20020131 1 900000000000207008 258475005 en 900000000000003001 Sinus washings (specimen) 900000000000020002 +649894017 20170731 1 900000000000207008 258475005 en 900000000000003001 Sinus washings (specimen) 900000000000448009 +649896015 20020131 1 900000000000207008 258476006 en 900000000000003001 Subretinal fluid sample (specimen) 900000000000020002 +649896015 20170731 1 900000000000207008 258476006 en 900000000000003001 Subretinal fluid sample (specimen) 900000000000448009 +649896015 20220630 0 900000000000207008 258476006 en 900000000000003001 Subretinal fluid sample (specimen) 900000000000448009 +649899010 20020131 1 900000000000207008 258479004 en 900000000000003001 Tissue fluid sample (specimen) 900000000000020002 +649899010 20080731 0 900000000000207008 258479004 en 900000000000003001 Tissue fluid sample (specimen) 900000000000020002 +649900017 20020131 1 900000000000207008 258480001 en 900000000000003001 Transtracheal aspirate sample (specimen) 900000000000020002 +649900017 20170731 1 900000000000207008 258480001 en 900000000000003001 Transtracheal aspirate sample (specimen) 900000000000448009 +649900017 20220630 0 900000000000207008 258480001 en 900000000000003001 Transtracheal aspirate sample (specimen) 900000000000448009 +649901018 20020131 1 900000000000207008 258481002 en 900000000000003001 Vaginal washout fluid sample (specimen) 900000000000020002 +649901018 20170731 1 900000000000207008 258481002 en 900000000000003001 Vaginal washout fluid sample (specimen) 900000000000448009 +649901018 20220630 0 900000000000207008 258481002 en 900000000000003001 Vaginal washout fluid sample (specimen) 900000000000448009 +649902013 20020131 1 900000000000207008 258482009 en 900000000000003001 Vesicle fluid sample (specimen) 900000000000020002 +649902013 20170731 1 900000000000207008 258482009 en 900000000000003001 Vesicle fluid sample (specimen) 900000000000448009 +649902013 20220630 0 900000000000207008 258482009 en 900000000000003001 Vesicle fluid sample (specimen) 900000000000448009 +649904014 20020131 1 900000000000207008 258483004 en 900000000000003001 Mucus sample (specimen) 900000000000020002 +649904014 20170731 1 900000000000207008 258483004 en 900000000000003001 Mucus sample (specimen) 900000000000448009 +649904014 20220630 0 900000000000207008 258483004 en 900000000000003001 Mucus sample (specimen) 900000000000448009 +649905010 20020131 1 900000000000207008 258484005 en 900000000000003001 Postmortem tissue sample (specimen) 900000000000020002 +649905010 20170731 1 900000000000207008 258484005 en 900000000000003001 Postmortem tissue sample (specimen) 900000000000448009 +649905010 20220630 0 900000000000207008 258484005 en 900000000000003001 Postmortem tissue sample (specimen) 900000000000448009 +649906011 20020131 1 900000000000207008 258485006 en 900000000000003001 Corneal scraping sample (specimen) 900000000000020002 +649906011 20170731 1 900000000000207008 258485006 en 900000000000003001 Corneal scraping sample (specimen) 900000000000448009 +649906011 20220630 0 900000000000207008 258485006 en 900000000000003001 Corneal scraping sample (specimen) 900000000000448009 +649908012 20020131 1 900000000000207008 258487003 en 900000000000003001 Fecal smear (specimen) 900000000000020002 +649908012 20170731 1 900000000000207008 258487003 en 900000000000003001 Fecal smear (specimen) 900000000000448009 +649909016 20020131 1 900000000000207008 258488008 en 900000000000003001 Lymph node smear (specimen) 900000000000020002 +649909016 20170731 1 900000000000207008 258488008 en 900000000000003001 Lymph node smear (specimen) 900000000000448009 +649910014 20020131 1 900000000000207008 258489000 en 900000000000003001 Slit skin smear (specimen) 900000000000020002 +649910014 20170731 1 900000000000207008 258489000 en 900000000000003001 Slit skin smear (specimen) 900000000000448009 +649911013 20020131 1 900000000000207008 258490009 en 900000000000003001 Biliary stone sample (specimen) 900000000000020002 +649911013 20170731 1 900000000000207008 258490009 en 900000000000003001 Biliary stone sample (specimen) 900000000000448009 +649911013 20220630 0 900000000000207008 258490009 en 900000000000003001 Biliary stone sample (specimen) 900000000000448009 +649914017 20020131 1 900000000000207008 258492001 en 900000000000003001 Gallstone sample (specimen) 900000000000020002 +649914017 20170731 1 900000000000207008 258492001 en 900000000000003001 Gallstone sample (specimen) 900000000000448009 +649914017 20220630 0 900000000000207008 258492001 en 900000000000003001 Gallstone sample (specimen) 900000000000448009 +649916015 20020131 1 900000000000207008 258493006 en 900000000000003001 Bladder stone sample (specimen) 900000000000020002 +649916015 20170731 1 900000000000207008 258493006 en 900000000000003001 Bladder stone sample (specimen) 900000000000448009 +649916015 20220630 0 900000000000207008 258493006 en 900000000000003001 Bladder stone sample (specimen) 900000000000448009 +649917012 20020131 1 900000000000207008 258494000 en 900000000000003001 Pancreatic stone sample (specimen) 900000000000020002 +649917012 20170731 1 900000000000207008 258494000 en 900000000000003001 Pancreatic stone sample (specimen) 900000000000448009 +649917012 20220630 0 900000000000207008 258494000 en 900000000000003001 Pancreatic stone sample (specimen) 900000000000448009 +649918019 20020131 1 900000000000207008 258495004 en 900000000000003001 Renal stone sample (specimen) 900000000000020002 +649918019 20170731 1 900000000000207008 258495004 en 900000000000003001 Renal stone sample (specimen) 900000000000448009 +649918019 20220630 0 900000000000207008 258495004 en 900000000000003001 Renal stone sample (specimen) 900000000000448009 +649919010 20020131 1 900000000000207008 258496003 en 900000000000003001 Ureteric stone sample (specimen) 900000000000020002 +649919010 20170731 1 900000000000207008 258496003 en 900000000000003001 Ureteric stone sample (specimen) 900000000000448009 +649919010 20220630 0 900000000000207008 258496003 en 900000000000003001 Ureteric stone sample (specimen) 900000000000448009 +649920016 20020131 1 900000000000207008 258497007 en 900000000000003001 Abscess swab (specimen) 900000000000020002 +649920016 20170731 1 900000000000207008 258497007 en 900000000000003001 Abscess swab (specimen) 900000000000448009 +649921017 20020131 1 900000000000207008 258498002 en 900000000000003001 Conjunctival swab (specimen) 900000000000020002 +649921017 20170731 1 900000000000207008 258498002 en 900000000000003001 Conjunctival swab (specimen) 900000000000448009 +649922012 20020131 1 900000000000207008 258499005 en 900000000000003001 Cough swab (specimen) 900000000000020002 +649922012 20170731 1 900000000000207008 258499005 en 900000000000003001 Cough swab (specimen) 900000000000448009 +649923019 20020131 1 900000000000207008 258500001 en 900000000000003001 Nasopharyngeal swab (specimen) 900000000000020002 +649923019 20170731 1 900000000000207008 258500001 en 900000000000003001 Nasopharyngeal swab (specimen) 900000000000448009 +649926010 20020131 1 900000000000207008 258502009 en 900000000000003001 Pus swab (specimen) 900000000000020002 +649926010 20170731 1 900000000000207008 258502009 en 900000000000003001 Pus swab (specimen) 900000000000448009 +649927018 20020131 1 900000000000207008 258503004 en 900000000000003001 Skin swab (specimen) 900000000000020002 +649927018 20170731 1 900000000000207008 258503004 en 900000000000003001 Skin swab (specimen) 900000000000448009 +649928011 20020131 1 900000000000207008 258504005 en 900000000000003001 BCG site swab (specimen) 900000000000020002 +649928011 20030731 1 900000000000207008 258504005 en 900000000000003001 BCG site swab (specimen) 900000000000017005 +649928011 20060731 0 900000000000207008 258504005 en 900000000000003001 BCG site swab (specimen) 900000000000017005 +649929015 20020131 1 900000000000207008 258505006 en 900000000000003001 Skin ulcer swab (specimen) 900000000000020002 +649929015 20170731 1 900000000000207008 258505006 en 900000000000003001 Skin ulcer swab (specimen) 900000000000448009 +649930013 20020131 1 900000000000207008 258506007 en 900000000000003001 Swab of drain insertion site (specimen) 900000000000020002 +649930013 20170731 1 900000000000207008 258506007 en 900000000000003001 Swab of drain insertion site (specimen) 900000000000448009 +649931012 20020131 1 900000000000207008 258507003 en 900000000000003001 Swab of line insertion site (specimen) 900000000000020002 +649931012 20170731 1 900000000000207008 258507003 en 900000000000003001 Swab of line insertion site (specimen) 900000000000448009 +649932017 20020131 1 900000000000207008 258508008 en 900000000000003001 Genital swab (specimen) 900000000000020002 +649932017 20170731 1 900000000000207008 258508008 en 900000000000003001 Genital swab (specimen) 900000000000448009 +649933010 20020131 1 900000000000207008 258509000 en 900000000000003001 Male genital swab (specimen) 900000000000020002 +649933010 20170731 1 900000000000207008 258509000 en 900000000000003001 Male genital swab (specimen) 900000000000448009 +649934016 20020131 1 900000000000207008 258510005 en 900000000000003001 Penis swab (specimen) 900000000000020002 +649934016 20170731 1 900000000000207008 258510005 en 900000000000003001 Penis swab (specimen) 900000000000448009 +649935015 20020131 1 900000000000207008 258511009 en 900000000000003001 Penile urethral swab (specimen) 900000000000020002 +649935015 20170731 1 900000000000207008 258511009 en 900000000000003001 Penile urethral swab (specimen) 900000000000448009 +649937011 20020131 1 900000000000207008 258512002 en 900000000000003001 Glans penis swab (specimen) 900000000000020002 +649937011 20170731 1 900000000000207008 258512002 en 900000000000003001 Glans penis swab (specimen) 900000000000448009 +649938018 20020131 1 900000000000207008 258513007 en 900000000000003001 Prepuce swab (specimen) 900000000000020002 +649938018 20170731 1 900000000000207008 258513007 en 900000000000003001 Prepuce swab (specimen) 900000000000448009 +649939014 20020131 1 900000000000207008 258514001 en 900000000000003001 Subpreputial swab (specimen) 900000000000020002 +649939014 20170731 1 900000000000207008 258514001 en 900000000000003001 Subpreputial swab (specimen) 900000000000448009 +649940011 20020131 1 900000000000207008 258515000 en 900000000000003001 Coronal sulcus of penis swab (specimen) 900000000000020002 +649940011 20170731 1 900000000000207008 258515000 en 900000000000003001 Coronal sulcus of penis swab (specimen) 900000000000448009 +649941010 20020131 1 900000000000207008 258516004 en 900000000000003001 Frenulum of penis swab (specimen) 900000000000020002 +649941010 20170731 1 900000000000207008 258516004 en 900000000000003001 Frenulum of penis swab (specimen) 900000000000448009 +649942015 20020131 1 900000000000207008 258517008 en 900000000000003001 Shaft of penis swab (specimen) 900000000000020002 +649942015 20170731 1 900000000000207008 258517008 en 900000000000003001 Shaft of penis swab (specimen) 900000000000448009 +649943013 20020131 1 900000000000207008 258518003 en 900000000000003001 Scrotal swab (specimen) 900000000000020002 +649943013 20170731 1 900000000000207008 258518003 en 900000000000003001 Scrotal swab (specimen) 900000000000448009 +649944019 20020131 1 900000000000207008 258519006 en 900000000000003001 Female genital swab (specimen) 900000000000020002 +649944019 20170731 1 900000000000207008 258519006 en 900000000000003001 Female genital swab (specimen) 900000000000448009 +649945018 20020131 1 900000000000207008 258520000 en 900000000000003001 Vaginal swab (specimen) 900000000000020002 +649945018 20170731 1 900000000000207008 258520000 en 900000000000003001 Vaginal swab (specimen) 900000000000448009 +649946017 20020131 1 900000000000207008 258521001 en 900000000000003001 High vaginal swab (specimen) 900000000000020002 +649946017 20170731 1 900000000000207008 258521001 en 900000000000003001 High vaginal swab (specimen) 900000000000448009 +649948016 20020131 1 900000000000207008 258522008 en 900000000000003001 Low vaginal swab (specimen) 900000000000020002 +649948016 20170731 1 900000000000207008 258522008 en 900000000000003001 Low vaginal swab (specimen) 900000000000448009 +649949012 20020131 1 900000000000207008 258523003 en 900000000000003001 Vulval swab (specimen) 900000000000020002 +649949012 20170731 1 900000000000207008 258523003 en 900000000000003001 Vulval swab (specimen) 900000000000448009 +649950012 20020131 1 900000000000207008 258524009 en 900000000000003001 Cervical swab (specimen) 900000000000020002 +649950012 20170731 1 900000000000207008 258524009 en 900000000000003001 Cervical swab (specimen) 900000000000448009 +649951011 20020131 1 900000000000207008 258525005 en 900000000000003001 Perineal swab (specimen) 900000000000020002 +649951011 20170731 1 900000000000207008 258525005 en 900000000000003001 Perineal swab (specimen) 900000000000448009 +649952016 20020131 1 900000000000207008 258526006 en 900000000000003001 Perianal swab (specimen) 900000000000020002 +649952016 20170731 1 900000000000207008 258526006 en 900000000000003001 Perianal swab (specimen) 900000000000448009 +649953014 20020131 1 900000000000207008 258527002 en 900000000000003001 Anal swab (specimen) 900000000000020002 +649953014 20170731 1 900000000000207008 258527002 en 900000000000003001 Anal swab (specimen) 900000000000448009 +649954015 20020131 1 900000000000207008 258528007 en 900000000000003001 Rectal swab (specimen) 900000000000020002 +649954015 20170731 1 900000000000207008 258528007 en 900000000000003001 Rectal swab (specimen) 900000000000448009 +649955019 20020131 1 900000000000207008 258529004 en 900000000000003001 Throat swab (specimen) 900000000000020002 +649955019 20170731 1 900000000000207008 258529004 en 900000000000003001 Throat swab (specimen) 900000000000448009 +649956018 20020131 1 900000000000207008 258530009 en 900000000000003001 Urethral swab (specimen) 900000000000020002 +649956018 20170731 1 900000000000207008 258530009 en 900000000000003001 Urethral swab (specimen) 900000000000448009 +649957010 20020131 1 900000000000207008 258531008 en 900000000000003001 Wound swab (specimen) 900000000000020002 +649957010 20170731 1 900000000000207008 258531008 en 900000000000003001 Wound swab (specimen) 900000000000448009 +649959013 20020131 1 900000000000207008 258532001 en 900000000000003001 Swab of inanimate object (specimen) 900000000000020002 +649959013 20170731 1 900000000000207008 258532001 en 900000000000003001 Swab of inanimate object (specimen) 900000000000448009 +649962011 20020131 1 900000000000207008 258535004 en 900000000000003001 Floor swab (specimen) 900000000000020002 +649962011 20170731 1 900000000000207008 258535004 en 900000000000003001 Floor swab (specimen) 900000000000448009 +649963018 20020131 1 900000000000207008 258536003 en 900000000000003001 Incubator swab (specimen) 900000000000020002 +649963018 20170731 1 900000000000207008 258536003 en 900000000000003001 Incubator swab (specimen) 900000000000448009 +649964012 20020131 1 900000000000207008 258537007 en 900000000000003001 Surface swab (specimen) 900000000000020002 +649964012 20170731 1 900000000000207008 258537007 en 900000000000003001 Surface swab (specimen) 900000000000448009 +649965013 20020131 1 900000000000207008 258538002 en 900000000000003001 Transudate sample (specimen) 900000000000020002 +649965013 20170731 1 900000000000207008 258538002 en 900000000000003001 Transudate sample (specimen) 900000000000448009 +649965013 20220630 0 900000000000207008 258538002 en 900000000000003001 Transudate sample (specimen) 900000000000448009 +649966014 20020131 1 900000000000207008 258539005 en 900000000000003001 Bone and joint sample (specimen) 900000000000020002 +649966014 20170731 1 900000000000207008 258539005 en 900000000000003001 Bone and joint sample (specimen) 900000000000448009 +649966014 20220630 0 900000000000207008 258539005 en 900000000000003001 Bone and joint sample (specimen) 900000000000448009 +649968010 20020131 1 900000000000207008 258541006 en 900000000000003001 Cardiovascular sample (specimen) 900000000000020002 +649968010 20170731 1 900000000000207008 258541006 en 900000000000003001 Cardiovascular sample (specimen) 900000000000448009 +649968010 20220531 0 900000000000207008 258541006 en 900000000000003001 Cardiovascular sample (specimen) 900000000000448009 +649970018 20020131 1 900000000000207008 258542004 en 900000000000003001 Heart valve sample (specimen) 900000000000020002 +649970018 20170731 1 900000000000207008 258542004 en 900000000000003001 Heart valve sample (specimen) 900000000000448009 +649970018 20220630 0 900000000000207008 258542004 en 900000000000003001 Heart valve sample (specimen) 900000000000448009 +649972014 20020131 1 900000000000207008 258544003 en 900000000000003001 Native heart valve sample (specimen) 900000000000020002 +649972014 20170731 1 900000000000207008 258544003 en 900000000000003001 Native heart valve sample (specimen) 900000000000448009 +649972014 20220630 0 900000000000207008 258544003 en 900000000000003001 Native heart valve sample (specimen) 900000000000448009 +649973016 20020131 1 900000000000207008 258545002 en 900000000000003001 Vegetation from prosthetic heart valve (specimen) 900000000000020002 +649973016 20170731 1 900000000000207008 258545002 en 900000000000003001 Vegetation from prosthetic heart valve (specimen) 900000000000448009 +649974010 20020131 1 900000000000207008 258546001 en 900000000000003001 Vegetation from native heart valve (specimen) 900000000000020002 +649974010 20170731 1 900000000000207008 258546001 en 900000000000003001 Vegetation from native heart valve (specimen) 900000000000448009 +649975011 20020131 1 900000000000207008 258547005 en 900000000000003001 Cardiac bypass pump fluid sample (specimen) 900000000000020002 +649975011 20170731 1 900000000000207008 258547005 en 900000000000003001 Cardiac bypass pump fluid sample (specimen) 900000000000448009 +649975011 20220430 0 900000000000207008 258547005 en 900000000000003001 Cardiac bypass pump fluid sample (specimen) 900000000000448009 +649976012 20020131 1 900000000000207008 258548000 en 900000000000003001 Dermatological sample (specimen) 900000000000020002 +649976012 20170731 1 900000000000207008 258548000 en 900000000000003001 Dermatological sample (specimen) 900000000000448009 +649976012 20220630 0 900000000000207008 258548000 en 900000000000003001 Dermatological sample (specimen) 900000000000448009 +649977015 20020131 1 900000000000207008 258549008 en 900000000000003001 Skin scale sample (specimen) 900000000000020002 +649977015 20170731 1 900000000000207008 258549008 en 900000000000003001 Skin scale sample (specimen) 900000000000448009 +649977015 20220630 0 900000000000207008 258549008 en 900000000000003001 Skin scale sample (specimen) 900000000000448009 +649982010 20020131 1 900000000000207008 258553005 en 900000000000003001 Duodenal string (specimen) 900000000000020002 +649982010 20170731 1 900000000000207008 258553005 en 900000000000003001 Duodenal string (specimen) 900000000000448009 +649983017 20020131 1 900000000000207008 258554004 en 900000000000003001 Fecal concretion sample (specimen) 900000000000020002 +649983017 20170731 1 900000000000207008 258554004 en 900000000000003001 Fecal concretion sample (specimen) 900000000000448009 +649983017 20220630 0 900000000000207008 258554004 en 900000000000003001 Fecal concretion sample (specimen) 900000000000448009 +649984011 20020131 1 900000000000207008 258555003 en 900000000000003001 Hot stool sample (specimen) 900000000000020002 +649984011 20170731 1 900000000000207008 258555003 en 900000000000003001 Hot stool sample (specimen) 900000000000448009 +649984011 20220630 0 900000000000207008 258555003 en 900000000000003001 Hot stool sample (specimen) 900000000000448009 +649987016 20020131 1 900000000000207008 258558001 en 900000000000003001 Oral secretion sample (specimen) 900000000000020002 +649987016 20170731 1 900000000000207008 258558001 en 900000000000003001 Oral secretion sample (specimen) 900000000000448009 +649987016 20220630 0 900000000000207008 258558001 en 900000000000003001 Oral secretion sample (specimen) 900000000000448009 +649988014 20020131 1 900000000000207008 258559009 en 900000000000003001 Gingivocrevicular fluid sample (specimen) 900000000000020002 +649988014 20030731 1 900000000000207008 258559009 en 900000000000003001 Gingivocrevicular fluid sample (specimen) 900000000000017005 +649988014 20200131 1 900000000000207008 258559009 en 900000000000003001 Gingivocrevicular fluid sample (specimen) 900000000000448009 +649988014 20220630 0 900000000000207008 258559009 en 900000000000003001 Gingivocrevicular fluid sample (specimen) 900000000000448009 +649989018 20020131 1 900000000000207008 258560004 en 900000000000003001 Oral saliva sample (specimen) 900000000000020002 +649989018 20170731 1 900000000000207008 258560004 en 900000000000003001 Oral saliva sample (specimen) 900000000000448009 +649989018 20220630 0 900000000000207008 258560004 en 900000000000003001 Oral saliva sample (specimen) 900000000000448009 +649991014 20020131 1 900000000000207008 258561000 en 900000000000003001 Parotid gland saliva sample (specimen) 900000000000020002 +649991014 20170731 1 900000000000207008 258561000 en 900000000000003001 Parotid gland saliva sample (specimen) 900000000000448009 +649991014 20220630 0 900000000000207008 258561000 en 900000000000003001 Parotid gland saliva sample (specimen) 900000000000448009 +649992019 20020131 1 900000000000207008 258562007 en 900000000000003001 Genetic sample (specimen) 900000000000020002 +649992019 20170731 1 900000000000207008 258562007 en 900000000000003001 Genetic sample (specimen) 900000000000448009 +649992019 20220630 0 900000000000207008 258562007 en 900000000000003001 Genetic sample (specimen) 900000000000448009 +649993012 20020131 1 900000000000207008 258563002 en 900000000000003001 Amniotic cell sample (specimen) 900000000000020002 +649993012 20170731 1 900000000000207008 258563002 en 900000000000003001 Amniotic cell sample (specimen) 900000000000448009 +649993012 20220630 0 900000000000207008 258563002 en 900000000000003001 Amniotic cell sample (specimen) 900000000000448009 +649994018 20020131 1 900000000000207008 258564008 en 900000000000003001 Buccal smear sample (specimen) 900000000000020002 +649994018 20170731 1 900000000000207008 258564008 en 900000000000003001 Buccal smear sample (specimen) 900000000000448009 +649994018 20220630 0 900000000000207008 258564008 en 900000000000003001 Buccal smear sample (specimen) 900000000000448009 +649995017 20020131 1 900000000000207008 258565009 en 900000000000003001 Chorionic villi sample (specimen) 900000000000020002 +649995017 20170731 1 900000000000207008 258565009 en 900000000000003001 Chorionic villi sample (specimen) 900000000000448009 +649995017 20220630 0 900000000000207008 258565009 en 900000000000003001 Chorionic villi sample (specimen) 900000000000448009 +649996016 20020131 1 900000000000207008 258566005 en 900000000000003001 Deoxyribonucleic acid sample (specimen) 900000000000020002 +649996016 20170731 1 900000000000207008 258566005 en 900000000000003001 Deoxyribonucleic acid sample (specimen) 900000000000448009 +649996016 20220630 0 900000000000207008 258566005 en 900000000000003001 Deoxyribonucleic acid sample (specimen) 900000000000448009 +649997013 20020131 1 900000000000207008 258567001 en 900000000000003001 Gonad sample (specimen) 900000000000020002 +649997013 20170731 1 900000000000207008 258567001 en 900000000000003001 Gonad sample (specimen) 900000000000448009 +649997013 20220531 0 900000000000207008 258567001 en 900000000000003001 Gonad sample (specimen) 900000000000448009 +649998015 20020131 1 900000000000207008 258568006 en 900000000000003001 Polar body sample (specimen) 900000000000020002 +649998015 20170731 1 900000000000207008 258568006 en 900000000000003001 Polar body sample (specimen) 900000000000448009 +649998015 20220630 0 900000000000207008 258568006 en 900000000000003001 Polar body sample (specimen) 900000000000448009 +649999011 20020131 1 900000000000207008 258569003 en 900000000000003001 Skin fibroblast sample (specimen) 900000000000020002 +649999011 20170731 1 900000000000207008 258569003 en 900000000000003001 Skin fibroblast sample (specimen) 900000000000448009 +649999011 20220630 0 900000000000207008 258569003 en 900000000000003001 Skin fibroblast sample (specimen) 900000000000448009 +650001018 20020131 1 900000000000207008 258570002 en 900000000000003001 Genitourinary sample (specimen) 900000000000020002 +650001018 20170731 1 900000000000207008 258570002 en 900000000000003001 Genitourinary sample (specimen) 900000000000448009 +650001018 20220630 0 900000000000207008 258570002 en 900000000000003001 Genitourinary sample (specimen) 900000000000448009 +650002013 20020131 1 900000000000207008 258571003 en 900000000000003001 Machine hemodialysate sample (specimen) 900000000000020002 +650002013 20170731 1 900000000000207008 258571003 en 900000000000003001 Machine hemodialysate sample (specimen) 900000000000448009 +650002013 20220630 0 900000000000207008 258571003 en 900000000000003001 Machine hemodialysate sample (specimen) 900000000000448009 +650003015 20020131 1 900000000000207008 258572005 en 900000000000003001 Ultrafiltrate sample (specimen) 900000000000020002 +650003015 20170731 1 900000000000207008 258572005 en 900000000000003001 Ultrafiltrate sample (specimen) 900000000000448009 +650003015 20220630 0 900000000000207008 258572005 en 900000000000003001 Ultrafiltrate sample (specimen) 900000000000448009 +650005010 20020131 1 900000000000207008 258574006 en 900000000000003001 Mid-stream urine sample (specimen) 900000000000020002 +650005010 20170731 1 900000000000207008 258574006 en 900000000000003001 Mid-stream urine sample (specimen) 900000000000448009 +650005010 20220630 0 900000000000207008 258574006 en 900000000000003001 Mid-stream urine sample (specimen) 900000000000448009 +650006011 20020131 1 900000000000207008 258575007 en 900000000000003001 Early morning urine sample (specimen) 900000000000020002 +650006011 20170731 1 900000000000207008 258575007 en 900000000000003001 Early morning urine sample (specimen) 900000000000448009 +650006011 20220630 0 900000000000207008 258575007 en 900000000000003001 Early morning urine sample (specimen) 900000000000448009 +650007019 20020131 1 900000000000207008 258576008 en 900000000000003001 Suprapubic aspirate sample (specimen) 900000000000020002 +650007019 20170731 1 900000000000207008 258576008 en 900000000000003001 Suprapubic aspirate sample (specimen) 900000000000448009 +650007019 20220630 0 900000000000207008 258576008 en 900000000000003001 Suprapubic aspirate sample (specimen) 900000000000448009 +650008012 20020131 1 900000000000207008 258577004 en 900000000000003001 Vaginal secretion sample (specimen) 900000000000020002 +650008012 20170731 1 900000000000207008 258577004 en 900000000000003001 Vaginal secretion sample (specimen) 900000000000448009 +650008012 20220630 0 900000000000207008 258577004 en 900000000000003001 Vaginal secretion sample (specimen) 900000000000448009 +650012018 20020131 1 900000000000207008 258580003 en 900000000000003001 Whole blood sample (specimen) 900000000000020002 +650012018 20170731 1 900000000000207008 258580003 en 900000000000003001 Whole blood sample (specimen) 900000000000448009 +650012018 20220630 0 900000000000207008 258580003 en 900000000000003001 Whole blood sample (specimen) 900000000000448009 +650013011 20020131 1 900000000000207008 258581004 en 900000000000003001 Clotted blood sample (specimen) 900000000000020002 +650013011 20170731 1 900000000000207008 258581004 en 900000000000003001 Clotted blood sample (specimen) 900000000000448009 +650013011 20220630 0 900000000000207008 258581004 en 900000000000003001 Clotted blood sample (specimen) 900000000000448009 +650014017 20020131 1 900000000000207008 258582006 en 900000000000003001 Blood clot sample (specimen) 900000000000020002 +650014017 20090131 1 900000000000207008 258582006 en 900000000000003001 Blood clot sample (specimen) 900000000000017005 +650014017 20200131 1 900000000000207008 258582006 en 900000000000003001 Blood clot sample (specimen) 900000000000448009 +650014017 20220630 0 900000000000207008 258582006 en 900000000000003001 Blood clot sample (specimen) 900000000000448009 +650015016 20020131 1 900000000000207008 258583001 en 900000000000003001 Bone marrow clot sample (specimen) 900000000000020002 +650015016 20170731 1 900000000000207008 258583001 en 900000000000003001 Bone marrow clot sample (specimen) 900000000000448009 +650015016 20220630 0 900000000000207008 258583001 en 900000000000003001 Bone marrow clot sample (specimen) 900000000000448009 +650016015 20020131 1 900000000000207008 258584007 en 900000000000003001 Bone marrow fragment sample (specimen) 900000000000020002 +650016015 20170731 1 900000000000207008 258584007 en 900000000000003001 Bone marrow fragment sample (specimen) 900000000000448009 +650016015 20220630 0 900000000000207008 258584007 en 900000000000003001 Bone marrow fragment sample (specimen) 900000000000448009 +650017012 20020131 1 900000000000207008 258585008 en 900000000000003001 Bone marrow trephine sample (specimen) 900000000000020002 +650017012 20170731 1 900000000000207008 258585008 en 900000000000003001 Bone marrow trephine sample (specimen) 900000000000448009 +650017012 20220630 0 900000000000207008 258585008 en 900000000000003001 Bone marrow trephine sample (specimen) 900000000000448009 +650020016 20020131 1 900000000000207008 258587000 en 900000000000003001 Buffy coat (specimen) 900000000000020002 +650020016 20170731 1 900000000000207008 258587000 en 900000000000003001 Buffy coat (specimen) 900000000000448009 +650022012 20020131 1 900000000000207008 258588005 en 900000000000003001 Hematoma sample (specimen) 900000000000020002 +650022012 20170731 1 900000000000207008 258588005 en 900000000000003001 Hematoma sample (specimen) 900000000000448009 +650022012 20220630 0 900000000000207008 258588005 en 900000000000003001 Hematoma sample (specimen) 900000000000448009 +650023019 20020131 1 900000000000207008 258589002 en 900000000000003001 Lymph node sample (specimen) 900000000000020002 +650023019 20170731 1 900000000000207008 258589002 en 900000000000003001 Lymph node sample (specimen) 900000000000448009 +650023019 20220630 0 900000000000207008 258589002 en 900000000000003001 Lymph node sample (specimen) 900000000000448009 +650024013 20020131 1 900000000000207008 258590006 en 900000000000003001 Acidified serum sample (specimen) 900000000000020002 +650024013 20170731 1 900000000000207008 258590006 en 900000000000003001 Acidified serum sample (specimen) 900000000000448009 +650024013 20220630 0 900000000000207008 258590006 en 900000000000003001 Acidified serum sample (specimen) 900000000000448009 +650025014 20020131 1 900000000000207008 258591005 en 900000000000003001 White blood cell sample (specimen) 900000000000020002 +650025014 20170731 1 900000000000207008 258591005 en 900000000000003001 White blood cell sample (specimen) 900000000000448009 +650025014 20220630 0 900000000000207008 258591005 en 900000000000003001 White blood cell sample (specimen) 900000000000448009 +650034016 20020131 1 900000000000207008 258599007 en 900000000000003001 Contact lens solution sample (specimen) 900000000000020002 +650034016 20170731 1 900000000000207008 258599007 en 900000000000003001 Contact lens solution sample (specimen) 900000000000448009 +650034016 20220630 0 900000000000207008 258599007 en 900000000000003001 Contact lens solution sample (specimen) 900000000000448009 +650036019 20020131 1 900000000000207008 258601009 en 900000000000003001 Lens sample (specimen) 900000000000020002 +650036019 20170731 1 900000000000207008 258601009 en 900000000000003001 Lens sample (specimen) 900000000000448009 +650036019 20220531 0 900000000000207008 258601009 en 900000000000003001 Lens sample (specimen) 900000000000448009 +650038018 20020131 1 900000000000207008 258602002 en 900000000000003001 Intraocular lens sample (specimen) 900000000000020002 +650038018 20170731 1 900000000000207008 258602002 en 900000000000003001 Intraocular lens sample (specimen) 900000000000448009 +650038018 20220630 0 900000000000207008 258602002 en 900000000000003001 Intraocular lens sample (specimen) 900000000000448009 +650039014 20020131 1 900000000000207008 258603007 en 900000000000003001 Respiratory sample (specimen) 900000000000020002 +650039014 20170731 1 900000000000207008 258603007 en 900000000000003001 Respiratory sample (specimen) 900000000000448009 +650039014 20220630 0 900000000000207008 258603007 en 900000000000003001 Respiratory sample (specimen) 900000000000448009 +650040011 20020131 1 900000000000207008 258604001 en 900000000000003001 Upper respiratory sample (specimen) 900000000000020002 +650040011 20170731 1 900000000000207008 258604001 en 900000000000003001 Upper respiratory sample (specimen) 900000000000448009 +650040011 20220630 0 900000000000207008 258604001 en 900000000000003001 Upper respiratory sample (specimen) 900000000000448009 +650042015 20020131 1 900000000000207008 258606004 en 900000000000003001 Lower respiratory sample (specimen) 900000000000020002 +650042015 20170731 1 900000000000207008 258606004 en 900000000000003001 Lower respiratory sample (specimen) 900000000000448009 +650042015 20220630 0 900000000000207008 258606004 en 900000000000003001 Lower respiratory sample (specimen) 900000000000448009 +650043013 20020131 1 900000000000207008 258607008 en 900000000000003001 Bronchoalveolar lavage fluid sample (specimen) 900000000000020002 +650043013 20170731 1 900000000000207008 258607008 en 900000000000003001 Bronchoalveolar lavage fluid sample (specimen) 900000000000448009 +650043013 20220630 0 900000000000207008 258607008 en 900000000000003001 Bronchoalveolar lavage fluid sample (specimen) 900000000000448009 +650044019 20020131 1 900000000000207008 258608003 en 900000000000003001 Sputum - aspirated sample (specimen) 900000000000020002 +650044019 20080731 0 900000000000207008 258608003 en 900000000000003001 Sputum - aspirated sample (specimen) 900000000000020002 +650046017 20020131 1 900000000000207008 258609006 en 900000000000003001 Sputum - tracheostomy aspirate sample (specimen) 900000000000020002 +650046017 20080731 0 900000000000207008 258609006 en 900000000000003001 Sputum - tracheostomy aspirate sample (specimen) 900000000000020002 +650047014 20020131 1 900000000000207008 258610001 en 900000000000003001 Sputum - induced sample (specimen) 900000000000020002 +650047014 20080731 0 900000000000207008 258610001 en 900000000000003001 Sputum - induced sample (specimen) 900000000000020002 +650048016 20020131 1 900000000000207008 258611002 en 900000000000003001 Sputum - trapped sample (specimen) 900000000000020002 +650048016 20080731 0 900000000000207008 258611002 en 900000000000003001 Sputum - trapped sample (specimen) 900000000000020002 +650050012 20020131 1 900000000000207008 258613004 en 900000000000003001 Living sample (specimen) 900000000000020002 +650050012 20170731 1 900000000000207008 258613004 en 900000000000003001 Living sample (specimen) 900000000000448009 +650050012 20220630 0 900000000000207008 258613004 en 900000000000003001 Living sample (specimen) 900000000000448009 +650051011 20020131 1 900000000000207008 258614005 en 900000000000003001 Insect sample (specimen) 900000000000020002 +650051011 20170731 1 900000000000207008 258614005 en 900000000000003001 Insect sample (specimen) 900000000000448009 +650051011 20220630 0 900000000000207008 258614005 en 900000000000003001 Insect sample (specimen) 900000000000448009 +650052016 20020131 1 900000000000207008 258615006 en 900000000000003001 Larva sample (specimen) 900000000000020002 +650052016 20170731 1 900000000000207008 258615006 en 900000000000003001 Larva sample (specimen) 900000000000448009 +650052016 20220531 0 900000000000207008 258615006 en 900000000000003001 Larva sample (specimen) 900000000000448009 +650053014 20020131 1 900000000000207008 258616007 en 900000000000003001 Maggot sample (specimen) 900000000000020002 +650053014 20170731 1 900000000000207008 258616007 en 900000000000003001 Maggot sample (specimen) 900000000000448009 +650053014 20220630 0 900000000000207008 258616007 en 900000000000003001 Maggot sample (specimen) 900000000000448009 +650054015 20020131 1 900000000000207008 258617003 en 900000000000003001 Parasite sample (specimen) 900000000000020002 +650054015 20170731 1 900000000000207008 258617003 en 900000000000003001 Parasite sample (specimen) 900000000000448009 +650054015 20220630 0 900000000000207008 258617003 en 900000000000003001 Parasite sample (specimen) 900000000000448009 +650056018 20020131 1 900000000000207008 258618008 en 900000000000003001 Helminth sample (specimen) 900000000000020002 +650056018 20170731 1 900000000000207008 258618008 en 900000000000003001 Helminth sample (specimen) 900000000000448009 +650056018 20220630 0 900000000000207008 258618008 en 900000000000003001 Helminth sample (specimen) 900000000000448009 +650066014 20020131 1 900000000000207008 258627009 en 900000000000003001 Cannula tip (specimen) 900000000000020002 +650066014 20170731 1 900000000000207008 258627009 en 900000000000003001 Cannula tip (specimen) 900000000000448009 +650066014 20210131 0 900000000000207008 258627009 en 900000000000003001 Cannula tip (specimen) 900000000000448009 +650067017 20020131 1 900000000000207008 258628004 en 900000000000003001 Vascular cannula tip (specimen) 900000000000020002 +650067017 20170731 1 900000000000207008 258628004 en 900000000000003001 Vascular cannula tip (specimen) 900000000000448009 +650067017 20210131 0 900000000000207008 258628004 en 900000000000003001 Vascular cannula tip (specimen) 900000000000448009 +650068010 20020131 1 900000000000207008 258629007 en 900000000000003001 Arterial cannula tip (specimen) 900000000000020002 +650068010 20170731 1 900000000000207008 258629007 en 900000000000003001 Arterial cannula tip (specimen) 900000000000448009 +650068010 20210131 0 900000000000207008 258629007 en 900000000000003001 Arterial cannula tip (specimen) 900000000000448009 +650069019 20020131 1 900000000000207008 258630002 en 900000000000003001 Venous cannula tip (specimen) 900000000000020002 +650069019 20170731 1 900000000000207008 258630002 en 900000000000003001 Venous cannula tip (specimen) 900000000000448009 +650069019 20210131 0 900000000000207008 258630002 en 900000000000003001 Venous cannula tip (specimen) 900000000000448009 +650071019 20020131 1 900000000000207008 258631003 en 900000000000003001 Arteriovenous shunt tip (specimen) 900000000000020002 +650071019 20170731 1 900000000000207008 258631003 en 900000000000003001 Arteriovenous shunt tip (specimen) 900000000000448009 +650071019 20210131 0 900000000000207008 258631003 en 900000000000003001 Arteriovenous shunt tip (specimen) 900000000000448009 +650091014 20020131 1 900000000000207008 258649003 en 900000000000003001 Intravenous infusion fluid sample (specimen) 900000000000020002 +650091014 20170731 1 900000000000207008 258649003 en 900000000000003001 Intravenous infusion fluid sample (specimen) 900000000000448009 +650091014 20220630 0 900000000000207008 258649003 en 900000000000003001 Intravenous infusion fluid sample (specimen) 900000000000448009 +650092019 20020131 1 900000000000207008 258650003 en 900000000000003001 Intravenous lipid infusion fluid sample (specimen) 900000000000020002 +650092019 20170731 1 900000000000207008 258650003 en 900000000000003001 Intravenous lipid infusion fluid sample (specimen) 900000000000448009 +650092019 20220630 0 900000000000207008 258650003 en 900000000000003001 Intravenous lipid infusion fluid sample (specimen) 900000000000448009 +650093012 20020131 1 900000000000207008 258651004 en 900000000000003001 Cream sample (specimen) 900000000000020002 +650093012 20170731 1 900000000000207008 258651004 en 900000000000003001 Cream sample (specimen) 900000000000448009 +650093012 20220531 0 900000000000207008 258651004 en 900000000000003001 Cream sample (specimen) 900000000000448009 +650094018 20020131 1 900000000000207008 258652006 en 900000000000003001 Ice-cream sample (specimen) 900000000000020002 +650094018 20170731 1 900000000000207008 258652006 en 900000000000003001 Ice-cream sample (specimen) 900000000000448009 +650094018 20220630 0 900000000000207008 258652006 en 900000000000003001 Ice-cream sample (specimen) 900000000000448009 +650095017 20020131 1 900000000000207008 258653001 en 900000000000003001 Formula milk sample (specimen) 900000000000020002 +650095017 20170731 1 900000000000207008 258653001 en 900000000000003001 Formula milk sample (specimen) 900000000000448009 +650095017 20220630 0 900000000000207008 258653001 en 900000000000003001 Formula milk sample (specimen) 900000000000448009 +650096016 20020131 1 900000000000207008 258654007 en 900000000000003001 Soya milk sample (specimen) 900000000000020002 +650096016 20160731 0 900000000000207008 258654007 en 900000000000003001 Soya milk sample (specimen) 900000000000020002 +650097013 20020131 1 900000000000207008 258655008 en 900000000000003001 Cow's milk sample (specimen) 900000000000020002 +650097013 20170731 1 900000000000207008 258655008 en 900000000000003001 Cow's milk sample (specimen) 900000000000448009 +650097013 20220630 0 900000000000207008 258655008 en 900000000000003001 Cow's milk sample (specimen) 900000000000448009 +650099011 20020131 1 900000000000207008 258656009 en 900000000000003001 Whole milk sample (specimen) 900000000000020002 +650099011 20170731 1 900000000000207008 258656009 en 900000000000003001 Whole milk sample (specimen) 900000000000448009 +650099011 20220630 0 900000000000207008 258656009 en 900000000000003001 Whole milk sample (specimen) 900000000000448009 +650100015 20020131 1 900000000000207008 258657000 en 900000000000003001 Semi-skimmed milk sample (specimen) 900000000000020002 +650100015 20170731 1 900000000000207008 258657000 en 900000000000003001 Semi-skimmed milk sample (specimen) 900000000000448009 +650100015 20220630 0 900000000000207008 258657000 en 900000000000003001 Semi-skimmed milk sample (specimen) 900000000000448009 +650101016 20020131 1 900000000000207008 258658005 en 900000000000003001 Skimmed milk sample (specimen) 900000000000020002 +650101016 20170731 1 900000000000207008 258658005 en 900000000000003001 Skimmed milk sample (specimen) 900000000000448009 +650101016 20220630 0 900000000000207008 258658005 en 900000000000003001 Skimmed milk sample (specimen) 900000000000448009 +650102011 20020131 1 900000000000207008 258659002 en 900000000000003001 Sheep's milk sample (specimen) 900000000000020002 +650102011 20170731 1 900000000000207008 258659002 en 900000000000003001 Sheep's milk sample (specimen) 900000000000448009 +650102011 20220630 0 900000000000207008 258659002 en 900000000000003001 Sheep's milk sample (specimen) 900000000000448009 +650103018 20020131 1 900000000000207008 258660007 en 900000000000003001 Goat's milk sample (specimen) 900000000000020002 +650103018 20170731 1 900000000000207008 258660007 en 900000000000003001 Goat's milk sample (specimen) 900000000000448009 +650103018 20220630 0 900000000000207008 258660007 en 900000000000003001 Goat's milk sample (specimen) 900000000000448009 +650105013 20020131 1 900000000000207008 258662004 en 900000000000003001 Adhesive slide (specimen) 900000000000020002 +650105013 20170731 1 900000000000207008 258662004 en 900000000000003001 Adhesive slide (specimen) 900000000000448009 +650105013 20220131 0 900000000000207008 258662004 en 900000000000003001 Adhesive slide (specimen) 900000000000448009 +650106014 20020131 1 900000000000207008 258663009 en 900000000000003001 Sellotape slide (specimen) 900000000000020002 +650106014 20030731 1 900000000000207008 258663009 en 900000000000003001 Sellotape slide (specimen) 900000000000017005 +650106014 20220131 0 900000000000207008 258663009 en 900000000000003001 Sellotape slide (specimen) 900000000000017005 +650107017 20020131 1 900000000000207008 258664003 en 900000000000003001 Scotch tape slide (specimen) 900000000000020002 +650107017 20070731 1 900000000000207008 258664003 en 900000000000003001 Scotch tape slide (specimen) 900000000000017005 +650107017 20220131 0 900000000000207008 258664003 en 900000000000003001 Scotch tape slide (specimen) 900000000000017005 +656618012 20020131 1 900000000000207008 264380007 en 900000000000003001 Synovial fluid cells (specimen) 900000000000020002 +656618012 20170731 1 900000000000207008 264380007 en 900000000000003001 Synovial fluid cells (specimen) 900000000000448009 +663912018 20020131 1 900000000000207008 271514008 en 900000000000003001 Sternal bone marrow sample (specimen) 900000000000020002 +663912018 20170731 1 900000000000207008 271514008 en 900000000000003001 Sternal bone marrow sample (specimen) 900000000000448009 +663912018 20220630 0 900000000000207008 271514008 en 900000000000003001 Sternal bone marrow sample (specimen) 900000000000448009 +663913011 20020131 1 900000000000207008 271515009 en 900000000000003001 Iliac crest bone marrow sample (specimen) 900000000000020002 +663913011 20170731 1 900000000000207008 271515009 en 900000000000003001 Iliac crest bone marrow sample (specimen) 900000000000448009 +663913011 20220630 0 900000000000207008 271515009 en 900000000000003001 Iliac crest bone marrow sample (specimen) 900000000000448009 +663914017 20020131 1 900000000000207008 271516005 en 900000000000003001 Vertebral spinous process bone marrow sample (specimen) 900000000000020002 +663914017 20170731 1 900000000000207008 271516005 en 900000000000003001 Vertebral spinous process bone marrow sample (specimen) 900000000000448009 +663914017 20220630 0 900000000000207008 271516005 en 900000000000003001 Vertebral spinous process bone marrow sample (specimen) 900000000000448009 +663917012 20020131 1 900000000000207008 271518006 en 900000000000003001 Rib bone marrow sample (specimen) 900000000000020002 +663917012 20170731 1 900000000000207008 271518006 en 900000000000003001 Rib bone marrow sample (specimen) 900000000000448009 +663917012 20220630 0 900000000000207008 271518006 en 900000000000003001 Rib bone marrow sample (specimen) 900000000000448009 +669362013 20020131 1 900000000000207008 276446009 en 900000000000003001 Cervical smear sample (specimen) 900000000000020002 +669362013 20170731 1 900000000000207008 276446009 en 900000000000003001 Cervical smear sample (specimen) 900000000000448009 +669362013 20220630 0 900000000000207008 276446009 en 900000000000003001 Cervical smear sample (specimen) 900000000000448009 +669796016 20020131 1 900000000000207008 276833005 en 900000000000003001 24 hour urine sample (specimen) 900000000000020002 +669796016 20030731 1 900000000000207008 276833005 en 900000000000003001 24 hour urine sample (specimen) 900000000000017005 +669796016 20220630 0 900000000000207008 276833005 en 900000000000003001 24 hour urine sample (specimen) 900000000000017005 +671127014 20020131 1 900000000000207008 278020009 en 900000000000003001 Spot urine sample (specimen) 900000000000020002 +671127014 20170731 1 900000000000207008 278020009 en 900000000000003001 Spot urine sample (specimen) 900000000000448009 +671127014 20220630 0 900000000000207008 278020009 en 900000000000003001 Spot urine sample (specimen) 900000000000448009 +675482016 20020131 1 900000000000207008 116155002 en 900000000000003001 Ampulla of Vater cytologic material (specimen) 900000000000020002 +675493019 20020131 1 900000000000207008 116156001 en 900000000000003001 Gastrointestinal tract cytologic material (specimen) 900000000000020002 +675493019 20170731 1 900000000000207008 116156001 en 900000000000003001 Gastrointestinal tract cytologic material (specimen) 900000000000448009 +675501011 20020131 1 900000000000207008 116157005 en 900000000000003001 Heart cytologic material (specimen) 900000000000020002 +675501011 20170731 1 900000000000207008 116157005 en 900000000000003001 Heart cytologic material (specimen) 900000000000448009 +675512011 20020131 1 900000000000207008 116158000 en 900000000000003001 Large intestine cytologic material (specimen) 900000000000020002 +675512011 20170731 1 900000000000207008 116158000 en 900000000000003001 Large intestine cytologic material (specimen) 900000000000448009 +675523010 20020131 1 900000000000207008 116159008 en 900000000000003001 Upper aerodigestive tract cytologic material (specimen) 900000000000020002 +675523010 20170731 1 900000000000207008 116159008 en 900000000000003001 Upper aerodigestive tract cytologic material (specimen) 900000000000448009 +675535014 20020131 1 900000000000207008 116160003 en 900000000000003001 Thyroid cytologic material (specimen) 900000000000020002 +675535014 20170731 1 900000000000207008 116160003 en 900000000000003001 Thyroid cytologic material (specimen) 900000000000448009 +675547015 20020131 1 900000000000207008 116161004 en 900000000000003001 Fine needle aspirate of thyroid, cytologic material (specimen) 900000000000020002 +675547015 20170731 1 900000000000207008 116161004 en 900000000000003001 Fine needle aspirate of thyroid, cytologic material (specimen) 900000000000448009 +675557019 20020131 1 900000000000207008 116162006 en 900000000000003001 Thyroid cytologic material, processed intraoperatively (specimen) 900000000000020002 +675557019 20170731 1 900000000000207008 116162006 en 900000000000003001 Thyroid cytologic material, processed intraoperatively (specimen) 900000000000448009 +676100011 20020131 1 900000000000207008 116213003 en 900000000000003001 Ovary cytologic material (specimen) 900000000000020002 +676100011 20170731 1 900000000000207008 116213003 en 900000000000003001 Ovary cytologic material (specimen) 900000000000448009 +698939015 20020131 1 900000000000207008 302794003 en 900000000000003001 Nasogastric aspirate (specimen) 900000000000020002 +698939015 20170731 1 900000000000207008 302794003 en 900000000000003001 Nasogastric aspirate (specimen) 900000000000448009 +698940018 20020131 1 900000000000207008 302795002 en 900000000000003001 Lymph node aspirate (specimen) 900000000000020002 +698940018 20170731 1 900000000000207008 302795002 en 900000000000003001 Lymph node aspirate (specimen) 900000000000448009 +699392011 20020131 1 900000000000207008 303247002 en 900000000000003001 Adrenal tissue sample (specimen) 900000000000020002 +699392011 20170731 1 900000000000207008 303247002 en 900000000000003001 Adrenal tissue sample (specimen) 900000000000448009 +699392011 20220630 0 900000000000207008 303247002 en 900000000000003001 Adrenal tissue sample (specimen) 900000000000448009 +699393018 20020131 1 900000000000207008 303248007 en 900000000000003001 Blood film sample (specimen) 900000000000020002 +699393018 20170731 1 900000000000207008 303248007 en 900000000000003001 Blood film sample (specimen) 900000000000448009 +699393018 20220630 0 900000000000207008 303248007 en 900000000000003001 Blood film sample (specimen) 900000000000448009 +705513010 20020131 1 900000000000207008 309048008 en 900000000000003001 Endocrine sample (specimen) 900000000000020002 +705513010 20170731 1 900000000000207008 309048008 en 900000000000003001 Endocrine sample (specimen) 900000000000448009 +705513010 20220630 0 900000000000207008 309048008 en 900000000000003001 Endocrine sample (specimen) 900000000000448009 +705514016 20020131 1 900000000000207008 309049000 en 900000000000003001 Lesion sample (specimen) 900000000000020002 +705514016 20170731 1 900000000000207008 309049000 en 900000000000003001 Lesion sample (specimen) 900000000000448009 +705514016 20220630 0 900000000000207008 309049000 en 900000000000003001 Lesion sample (specimen) 900000000000448009 +705515015 20020131 1 900000000000207008 309050000 en 900000000000003001 Body substance sample (specimen) 900000000000020002 +705515015 20170731 1 900000000000207008 309050000 en 900000000000003001 Body substance sample (specimen) 900000000000448009 +705515015 20220630 0 900000000000207008 309050000 en 900000000000003001 Body substance sample (specimen) 900000000000448009 +705516019 20020131 1 900000000000207008 309051001 en 900000000000003001 Body fluid sample (specimen) 900000000000020002 +705516019 20170731 1 900000000000207008 309051001 en 900000000000003001 Body fluid sample (specimen) 900000000000448009 +705516019 20220630 0 900000000000207008 309051001 en 900000000000003001 Body fluid sample (specimen) 900000000000448009 +705517011 20020131 1 900000000000207008 309052008 en 900000000000003001 Male genital sample (specimen) 900000000000020002 +705517011 20170731 1 900000000000207008 309052008 en 900000000000003001 Male genital sample (specimen) 900000000000448009 +705517011 20220630 0 900000000000207008 309052008 en 900000000000003001 Male genital sample (specimen) 900000000000448009 +705518018 20020131 1 900000000000207008 309053003 en 900000000000003001 Female genital sample (specimen) 900000000000020002 +705518018 20170731 1 900000000000207008 309053003 en 900000000000003001 Female genital sample (specimen) 900000000000448009 +705518018 20220630 0 900000000000207008 309053003 en 900000000000003001 Female genital sample (specimen) 900000000000448009 +705521016 20020131 1 900000000000207008 309055005 en 900000000000003001 Breast fluid sample (specimen) 900000000000020002 +705521016 20170731 1 900000000000207008 309055005 en 900000000000003001 Breast fluid sample (specimen) 900000000000448009 +705521016 20220630 0 900000000000207008 309055005 en 900000000000003001 Breast fluid sample (specimen) 900000000000448009 +705523018 20020131 1 900000000000207008 309057002 en 900000000000003001 Breast direct smear sample (specimen) 900000000000020002 +705523018 20170731 1 900000000000207008 309057002 en 900000000000003001 Breast direct smear sample (specimen) 900000000000448009 +705523018 20220630 0 900000000000207008 309057002 en 900000000000003001 Breast direct smear sample (specimen) 900000000000448009 +705524012 20020131 1 900000000000207008 309058007 en 900000000000003001 Breast tru-cut biopsy sample (specimen) 900000000000020002 +705524012 20170731 1 900000000000207008 309058007 en 900000000000003001 Breast tru-cut biopsy sample (specimen) 900000000000448009 +705524012 20220630 0 900000000000207008 309058007 en 900000000000003001 Breast tru-cut biopsy sample (specimen) 900000000000448009 +705525013 20020131 1 900000000000207008 309059004 en 900000000000003001 Frozen section breast sample (specimen) 900000000000020002 +705525013 20170731 1 900000000000207008 309059004 en 900000000000003001 Frozen section breast sample (specimen) 900000000000448009 +705525013 20220630 0 900000000000207008 309059004 en 900000000000003001 Frozen section breast sample (specimen) 900000000000448009 +705527017 20020131 1 900000000000207008 309061008 en 900000000000003001 Breast fine needle aspirate sample (specimen) 900000000000020002 +705527017 20170731 1 900000000000207008 309061008 en 900000000000003001 Breast fine needle aspirate sample (specimen) 900000000000448009 +705527017 20220630 0 900000000000207008 309061008 en 900000000000003001 Breast fine needle aspirate sample (specimen) 900000000000448009 +705534015 20020131 1 900000000000207008 309066003 en 900000000000003001 Skin biopsy sample (specimen) 900000000000020002 +705534015 20170731 1 900000000000207008 309066003 en 900000000000003001 Skin biopsy sample (specimen) 900000000000448009 +705534015 20220630 0 900000000000207008 309066003 en 900000000000003001 Skin biopsy sample (specimen) 900000000000448009 +705535019 20020131 1 900000000000207008 309067007 en 900000000000003001 Skin curettings sample (specimen) 900000000000020002 +705535019 20030731 0 900000000000207008 309067007 en 900000000000003001 Skin curettings sample (specimen) 900000000000020002 +705536018 20020131 1 900000000000207008 309068002 en 900000000000003001 Skin lesion sample (specimen) 900000000000020002 +705536018 20170731 1 900000000000207008 309068002 en 900000000000003001 Skin lesion sample (specimen) 900000000000448009 +705536018 20220630 0 900000000000207008 309068002 en 900000000000003001 Skin lesion sample (specimen) 900000000000448009 +705538017 20020131 1 900000000000207008 309070006 en 900000000000003001 Vulval skin biopsy sample (specimen) 900000000000020002 +705538017 20170731 1 900000000000207008 309070006 en 900000000000003001 Vulval skin biopsy sample (specimen) 900000000000448009 +705538017 20220630 0 900000000000207008 309070006 en 900000000000003001 Vulval skin biopsy sample (specimen) 900000000000448009 +705539013 20020131 1 900000000000207008 309071005 en 900000000000003001 Penis skin biopsy sample (specimen) 900000000000020002 +705539013 20170731 1 900000000000207008 309071005 en 900000000000003001 Penis skin biopsy sample (specimen) 900000000000448009 +705539013 20220630 0 900000000000207008 309071005 en 900000000000003001 Penis skin biopsy sample (specimen) 900000000000448009 +705540010 20020131 1 900000000000207008 309072003 en 900000000000003001 Soft tissue sample (specimen) 900000000000020002 +705540010 20170731 1 900000000000207008 309072003 en 900000000000003001 Soft tissue sample (specimen) 900000000000448009 +705540010 20220630 0 900000000000207008 309072003 en 900000000000003001 Soft tissue sample (specimen) 900000000000448009 +705542019 20020131 1 900000000000207008 309073008 en 900000000000003001 Lipoma biopsy sample (specimen) 900000000000020002 +705542019 20170731 1 900000000000207008 309073008 en 900000000000003001 Lipoma biopsy sample (specimen) 900000000000448009 +705542019 20220630 0 900000000000207008 309073008 en 900000000000003001 Lipoma biopsy sample (specimen) 900000000000448009 +705543012 20020131 1 900000000000207008 309074002 en 900000000000003001 Soft tissue biopsy sample (specimen) 900000000000020002 +705543012 20170731 1 900000000000207008 309074002 en 900000000000003001 Soft tissue biopsy sample (specimen) 900000000000448009 +705543012 20220630 0 900000000000207008 309074002 en 900000000000003001 Soft tissue biopsy sample (specimen) 900000000000448009 +705544018 20020131 1 900000000000207008 309075001 en 900000000000003001 Skin cyst sample (specimen) 900000000000020002 +705544018 20170731 1 900000000000207008 309075001 en 900000000000003001 Skin cyst sample (specimen) 900000000000448009 +705544018 20220630 0 900000000000207008 309075001 en 900000000000003001 Skin cyst sample (specimen) 900000000000448009 +705546016 20020131 1 900000000000207008 309077009 en 900000000000003001 Spleen resection sample (specimen) 900000000000020002 +705546016 20170731 1 900000000000207008 309077009 en 900000000000003001 Spleen resection sample (specimen) 900000000000448009 +705546016 20220630 0 900000000000207008 309077009 en 900000000000003001 Spleen resection sample (specimen) 900000000000448009 +705547013 20020131 1 900000000000207008 309078004 en 900000000000003001 Lymph node tissue sample (specimen) 900000000000020002 +705547013 20170731 1 900000000000207008 309078004 en 900000000000003001 Lymph node tissue sample (specimen) 900000000000448009 +705547013 20220630 0 900000000000207008 309078004 en 900000000000003001 Lymph node tissue sample (specimen) 900000000000448009 +705548015 20020131 1 900000000000207008 309079007 en 900000000000003001 Lymph node biopsy sample (specimen) 900000000000020002 +705548015 20170731 1 900000000000207008 309079007 en 900000000000003001 Lymph node biopsy sample (specimen) 900000000000448009 +705548015 20220630 0 900000000000207008 309079007 en 900000000000003001 Lymph node biopsy sample (specimen) 900000000000448009 +705569018 20020131 1 900000000000207008 309101008 en 900000000000003001 Cartilage sample (specimen) 900000000000020002 +705569018 20170731 1 900000000000207008 309101008 en 900000000000003001 Cartilage sample (specimen) 900000000000448009 +705569018 20220630 0 900000000000207008 309101008 en 900000000000003001 Cartilage sample (specimen) 900000000000448009 +705570017 20020131 1 900000000000207008 309102001 en 900000000000003001 Cartilage biopsy sample (specimen) 900000000000020002 +705570017 20170731 1 900000000000207008 309102001 en 900000000000003001 Cartilage biopsy sample (specimen) 900000000000448009 +705570017 20220630 0 900000000000207008 309102001 en 900000000000003001 Cartilage biopsy sample (specimen) 900000000000448009 +705571018 20020131 1 900000000000207008 309103006 en 900000000000003001 Excised cartilage sample (specimen) 900000000000020002 +705571018 20170731 1 900000000000207008 309103006 en 900000000000003001 Excised cartilage sample (specimen) 900000000000448009 +705571018 20220630 0 900000000000207008 309103006 en 900000000000003001 Excised cartilage sample (specimen) 900000000000448009 +705572013 20020131 1 900000000000207008 309104000 en 900000000000003001 Musculoskeletal sample (specimen) 900000000000020002 +705572013 20170731 1 900000000000207008 309104000 en 900000000000003001 Musculoskeletal sample (specimen) 900000000000448009 +705572013 20220630 0 900000000000207008 309104000 en 900000000000003001 Musculoskeletal sample (specimen) 900000000000448009 +705573015 20020131 1 900000000000207008 309105004 en 900000000000003001 Bone biopsy sample (specimen) 900000000000020002 +705573015 20170731 1 900000000000207008 309105004 en 900000000000003001 Bone biopsy sample (specimen) 900000000000448009 +705573015 20220531 0 900000000000207008 309105004 en 900000000000003001 Bone biopsy sample (specimen) 900000000000448009 +705575010 20020131 1 900000000000207008 309107007 en 900000000000003001 Tendon sample (specimen) 900000000000020002 +705575010 20170731 1 900000000000207008 309107007 en 900000000000003001 Tendon sample (specimen) 900000000000448009 +705575010 20220630 0 900000000000207008 309107007 en 900000000000003001 Tendon sample (specimen) 900000000000448009 +705576011 20020131 1 900000000000207008 309108002 en 900000000000003001 Excised tendon sample (specimen) 900000000000020002 +705576011 20170731 1 900000000000207008 309108002 en 900000000000003001 Excised tendon sample (specimen) 900000000000448009 +705576011 20220630 0 900000000000207008 309108002 en 900000000000003001 Excised tendon sample (specimen) 900000000000448009 +705578012 20020131 1 900000000000207008 309109005 en 900000000000003001 Bursa sample (specimen) 900000000000020002 +705578012 20170731 1 900000000000207008 309109005 en 900000000000003001 Bursa sample (specimen) 900000000000448009 +705578012 20220531 0 900000000000207008 309109005 en 900000000000003001 Bursa sample (specimen) 900000000000448009 +705579016 20020131 1 900000000000207008 309110000 en 900000000000003001 Bursa tissue sample (specimen) 900000000000020002 +705579016 20170731 1 900000000000207008 309110000 en 900000000000003001 Bursa tissue sample (specimen) 900000000000448009 +705579016 20220630 0 900000000000207008 309110000 en 900000000000003001 Bursa tissue sample (specimen) 900000000000448009 +705580018 20020131 1 900000000000207008 309111001 en 900000000000003001 Bursa biopsy sample (specimen) 900000000000020002 +705580018 20170731 1 900000000000207008 309111001 en 900000000000003001 Bursa biopsy sample (specimen) 900000000000448009 +705580018 20220630 0 900000000000207008 309111001 en 900000000000003001 Bursa biopsy sample (specimen) 900000000000448009 +705581019 20020131 1 900000000000207008 309112008 en 900000000000003001 Excised bursa sample (specimen) 900000000000020002 +705581019 20170731 1 900000000000207008 309112008 en 900000000000003001 Excised bursa sample (specimen) 900000000000448009 +705581019 20220630 0 900000000000207008 309112008 en 900000000000003001 Excised bursa sample (specimen) 900000000000448009 +705582014 20020131 1 900000000000207008 309113003 en 900000000000003001 Tendon biopsy sample (specimen) 900000000000020002 +705582014 20170731 1 900000000000207008 309113003 en 900000000000003001 Tendon biopsy sample (specimen) 900000000000448009 +705582014 20220630 0 900000000000207008 309113003 en 900000000000003001 Tendon biopsy sample (specimen) 900000000000448009 +705583016 20020131 1 900000000000207008 309114009 en 900000000000003001 Ligament sample (specimen) 900000000000020002 +705583016 20170731 1 900000000000207008 309114009 en 900000000000003001 Ligament sample (specimen) 900000000000448009 +705583016 20220630 0 900000000000207008 309114009 en 900000000000003001 Ligament sample (specimen) 900000000000448009 +705584010 20020131 1 900000000000207008 309115005 en 900000000000003001 Ligament biopsy sample (specimen) 900000000000020002 +705584010 20170731 1 900000000000207008 309115005 en 900000000000003001 Ligament biopsy sample (specimen) 900000000000448009 +705584010 20220630 0 900000000000207008 309115005 en 900000000000003001 Ligament biopsy sample (specimen) 900000000000448009 +705585011 20020131 1 900000000000207008 309116006 en 900000000000003001 Excised ligament sample (specimen) 900000000000020002 +705585011 20170731 1 900000000000207008 309116006 en 900000000000003001 Excised ligament sample (specimen) 900000000000448009 +705585011 20220630 0 900000000000207008 309116006 en 900000000000003001 Excised ligament sample (specimen) 900000000000448009 +705586012 20020131 1 900000000000207008 309117002 en 900000000000003001 Fascia sample (specimen) 900000000000020002 +705586012 20170731 1 900000000000207008 309117002 en 900000000000003001 Fascia sample (specimen) 900000000000448009 +705586012 20220630 0 900000000000207008 309117002 en 900000000000003001 Fascia sample (specimen) 900000000000448009 +705587015 20020131 1 900000000000207008 309118007 en 900000000000003001 Fascia biopsy sample (specimen) 900000000000020002 +705587015 20170731 1 900000000000207008 309118007 en 900000000000003001 Fascia biopsy sample (specimen) 900000000000448009 +705587015 20220630 0 900000000000207008 309118007 en 900000000000003001 Fascia biopsy sample (specimen) 900000000000448009 +705589017 20020131 1 900000000000207008 309119004 en 900000000000003001 Excised fascia sample (specimen) 900000000000020002 +705589017 20170731 1 900000000000207008 309119004 en 900000000000003001 Excised fascia sample (specimen) 900000000000448009 +705589017 20220630 0 900000000000207008 309119004 en 900000000000003001 Excised fascia sample (specimen) 900000000000448009 +705590014 20020131 1 900000000000207008 309120005 en 900000000000003001 Head of femur sample (specimen) 900000000000020002 +705590014 20170731 1 900000000000207008 309120005 en 900000000000003001 Head of femur sample (specimen) 900000000000448009 +705590014 20220630 0 900000000000207008 309120005 en 900000000000003001 Head of femur sample (specimen) 900000000000448009 +705591013 20020131 1 900000000000207008 309121009 en 900000000000003001 Synovial tissue sample (specimen) 900000000000020002 +705591013 20170731 1 900000000000207008 309121009 en 900000000000003001 Synovial tissue sample (specimen) 900000000000448009 +705591013 20220630 0 900000000000207008 309121009 en 900000000000003001 Synovial tissue sample (specimen) 900000000000448009 +705592018 20020131 1 900000000000207008 309122002 en 900000000000003001 Synovium biopsy sample (specimen) 900000000000020002 +705592018 20170731 1 900000000000207008 309122002 en 900000000000003001 Synovium biopsy sample (specimen) 900000000000448009 +705592018 20220630 0 900000000000207008 309122002 en 900000000000003001 Synovium biopsy sample (specimen) 900000000000448009 +705593011 20020131 1 900000000000207008 309123007 en 900000000000003001 Synovial sample (specimen) 900000000000020002 +705593011 20170731 1 900000000000207008 309123007 en 900000000000003001 Synovial sample (specimen) 900000000000448009 +705593011 20220630 0 900000000000207008 309123007 en 900000000000003001 Synovial sample (specimen) 900000000000448009 +705594017 20020131 1 900000000000207008 309124001 en 900000000000003001 Joint biopsy sample (specimen) 900000000000020002 +705594017 20170731 1 900000000000207008 309124001 en 900000000000003001 Joint biopsy sample (specimen) 900000000000448009 +705594017 20220630 0 900000000000207008 309124001 en 900000000000003001 Joint biopsy sample (specimen) 900000000000448009 +705595016 20020131 1 900000000000207008 309125000 en 900000000000003001 Joint sample (specimen) 900000000000020002 +705595016 20170731 1 900000000000207008 309125000 en 900000000000003001 Joint sample (specimen) 900000000000448009 +705595016 20220630 0 900000000000207008 309125000 en 900000000000003001 Joint sample (specimen) 900000000000448009 +705596015 20020131 1 900000000000207008 309126004 en 900000000000003001 Articular tissue sample (specimen) 900000000000020002 +705596015 20170731 1 900000000000207008 309126004 en 900000000000003001 Articular tissue sample (specimen) 900000000000448009 +705596015 20220630 0 900000000000207008 309126004 en 900000000000003001 Articular tissue sample (specimen) 900000000000448009 +705597012 20020131 1 900000000000207008 309127008 en 900000000000003001 Resected articular tissue sample (specimen) 900000000000020002 +705597012 20170731 1 900000000000207008 309127008 en 900000000000003001 Resected articular tissue sample (specimen) 900000000000448009 +705597012 20220630 0 900000000000207008 309127008 en 900000000000003001 Resected articular tissue sample (specimen) 900000000000448009 +705598019 20020131 1 900000000000207008 309128003 en 900000000000003001 Eye fluid sample (specimen) 900000000000020002 +705598019 20170731 1 900000000000207008 309128003 en 900000000000003001 Eye fluid sample (specimen) 900000000000448009 +705598019 20220630 0 900000000000207008 309128003 en 900000000000003001 Eye fluid sample (specimen) 900000000000448009 +705599010 20020131 1 900000000000207008 309129006 en 900000000000003001 Nerve tissue sample (specimen) 900000000000020002 +705599010 20170731 1 900000000000207008 309129006 en 900000000000003001 Nerve tissue sample (specimen) 900000000000448009 +705599010 20220630 0 900000000000207008 309129006 en 900000000000003001 Nerve tissue sample (specimen) 900000000000448009 +705600013 20020131 1 900000000000207008 309130001 en 900000000000003001 Nerve biopsy sample (specimen) 900000000000020002 +705600013 20170731 1 900000000000207008 309130001 en 900000000000003001 Nerve biopsy sample (specimen) 900000000000448009 +705600013 20220630 0 900000000000207008 309130001 en 900000000000003001 Nerve biopsy sample (specimen) 900000000000448009 +705601012 20020131 1 900000000000207008 309131002 en 900000000000003001 Neuroma sample (specimen) 900000000000020002 +705601012 20170731 1 900000000000207008 309131002 en 900000000000003001 Neuroma sample (specimen) 900000000000448009 +705601012 20220630 0 900000000000207008 309131002 en 900000000000003001 Neuroma sample (specimen) 900000000000448009 +705602017 20020131 1 900000000000207008 309132009 en 900000000000003001 Prostate biopsy sample (specimen) 900000000000020002 +705602017 20170731 1 900000000000207008 309132009 en 900000000000003001 Prostate biopsy sample (specimen) 900000000000448009 +705602017 20220630 0 900000000000207008 309132009 en 900000000000003001 Prostate biopsy sample (specimen) 900000000000448009 +705603010 20020131 1 900000000000207008 309133004 en 900000000000003001 Resected prostate sample (specimen) 900000000000020002 +705603010 20170731 1 900000000000207008 309133004 en 900000000000003001 Resected prostate sample (specimen) 900000000000448009 +705603010 20220630 0 900000000000207008 309133004 en 900000000000003001 Resected prostate sample (specimen) 900000000000448009 +705604016 20020131 1 900000000000207008 309134005 en 900000000000003001 Prostate tru-cut biopsy sample (specimen) 900000000000020002 +705604016 20170731 1 900000000000207008 309134005 en 900000000000003001 Prostate tru-cut biopsy sample (specimen) 900000000000448009 +705604016 20220630 0 900000000000207008 309134005 en 900000000000003001 Prostate tru-cut biopsy sample (specimen) 900000000000448009 +705605015 20020131 1 900000000000207008 309135006 en 900000000000003001 Hydrocele sample (specimen) 900000000000020002 +705605015 20170731 1 900000000000207008 309135006 en 900000000000003001 Hydrocele sample (specimen) 900000000000448009 +705605015 20220630 0 900000000000207008 309135006 en 900000000000003001 Hydrocele sample (specimen) 900000000000448009 +705608018 20020131 1 900000000000207008 309137003 en 900000000000003001 Testes biopsy sample (specimen) 900000000000020002 +705608018 20170731 1 900000000000207008 309137003 en 900000000000003001 Testes biopsy sample (specimen) 900000000000448009 +705608018 20220630 0 900000000000207008 309137003 en 900000000000003001 Testes biopsy sample (specimen) 900000000000448009 +705609014 20020131 1 900000000000207008 309138008 en 900000000000003001 Orchidectomy sample (specimen) 900000000000020002 +705609014 20170731 1 900000000000207008 309138008 en 900000000000003001 Orchidectomy sample (specimen) 900000000000448009 +705609014 20220630 0 900000000000207008 309138008 en 900000000000003001 Orchidectomy sample (specimen) 900000000000448009 +705610016 20020131 1 900000000000207008 309139000 en 900000000000003001 Vas deferens sample (specimen) 900000000000020002 +705610016 20170731 1 900000000000207008 309139000 en 900000000000003001 Vas deferens sample (specimen) 900000000000448009 +705610016 20220630 0 900000000000207008 309139000 en 900000000000003001 Vas deferens sample (specimen) 900000000000448009 +705611017 20020131 1 900000000000207008 309140003 en 900000000000003001 Epididymis sample (specimen) 900000000000020002 +705611017 20170731 1 900000000000207008 309140003 en 900000000000003001 Epididymis sample (specimen) 900000000000448009 +705611017 20220630 0 900000000000207008 309140003 en 900000000000003001 Epididymis sample (specimen) 900000000000448009 +705612012 20020131 1 900000000000207008 309141004 en 900000000000003001 Adrenal gland sample (specimen) 900000000000020002 +705612012 20170731 1 900000000000207008 309141004 en 900000000000003001 Adrenal gland sample (specimen) 900000000000448009 +705612012 20220630 0 900000000000207008 309141004 en 900000000000003001 Adrenal gland sample (specimen) 900000000000448009 +705613019 20020131 1 900000000000207008 309142006 en 900000000000003001 Adrenal biopsy sample (specimen) 900000000000020002 +705613019 20170731 1 900000000000207008 309142006 en 900000000000003001 Adrenal biopsy sample (specimen) 900000000000448009 +705613019 20220630 0 900000000000207008 309142006 en 900000000000003001 Adrenal biopsy sample (specimen) 900000000000448009 +705614013 20020131 1 900000000000207008 309143001 en 900000000000003001 Excised adrenal gland sample (specimen) 900000000000020002 +705614013 20170731 1 900000000000207008 309143001 en 900000000000003001 Excised adrenal gland sample (specimen) 900000000000448009 +705614013 20220630 0 900000000000207008 309143001 en 900000000000003001 Excised adrenal gland sample (specimen) 900000000000448009 +705616010 20020131 1 900000000000207008 309144007 en 900000000000003001 Thyroid lobe sample (specimen) 900000000000020002 +705616010 20170731 1 900000000000207008 309144007 en 900000000000003001 Thyroid lobe sample (specimen) 900000000000448009 +705616010 20220630 0 900000000000207008 309144007 en 900000000000003001 Thyroid lobe sample (specimen) 900000000000448009 +705617018 20020131 1 900000000000207008 309145008 en 900000000000003001 Thyroid fluid sample (specimen) 900000000000020002 +705617018 20170731 1 900000000000207008 309145008 en 900000000000003001 Thyroid fluid sample (specimen) 900000000000448009 +705617018 20220630 0 900000000000207008 309145008 en 900000000000003001 Thyroid fluid sample (specimen) 900000000000448009 +705618011 20020131 1 900000000000207008 309146009 en 900000000000003001 Thyroid fine needle aspirate sample (specimen) 900000000000020002 +705618011 20170731 1 900000000000207008 309146009 en 900000000000003001 Thyroid fine needle aspirate sample (specimen) 900000000000448009 +705618011 20220630 0 900000000000207008 309146009 en 900000000000003001 Thyroid fine needle aspirate sample (specimen) 900000000000448009 +705619015 20020131 1 900000000000207008 309147000 en 900000000000003001 Thyroid cyst fluid sample (specimen) 900000000000020002 +705619015 20170731 1 900000000000207008 309147000 en 900000000000003001 Thyroid cyst fluid sample (specimen) 900000000000448009 +705619015 20220630 0 900000000000207008 309147000 en 900000000000003001 Thyroid cyst fluid sample (specimen) 900000000000448009 +705620014 20020131 1 900000000000207008 309148005 en 900000000000003001 Thyroid direct smear sample (specimen) 900000000000020002 +705620014 20170731 1 900000000000207008 309148005 en 900000000000003001 Thyroid direct smear sample (specimen) 900000000000448009 +705620014 20220630 0 900000000000207008 309148005 en 900000000000003001 Thyroid direct smear sample (specimen) 900000000000448009 +705621013 20020131 1 900000000000207008 309149002 en 900000000000003001 Parathyroid sample (specimen) 900000000000020002 +705621013 20170731 1 900000000000207008 309149002 en 900000000000003001 Parathyroid sample (specimen) 900000000000448009 +705621013 20220630 0 900000000000207008 309149002 en 900000000000003001 Parathyroid sample (specimen) 900000000000448009 +705622018 20020131 1 900000000000207008 309150002 en 900000000000003001 Parathyroid tissue sample (specimen) 900000000000020002 +705622018 20170731 1 900000000000207008 309150002 en 900000000000003001 Parathyroid tissue sample (specimen) 900000000000448009 +705622018 20220630 0 900000000000207008 309150002 en 900000000000003001 Parathyroid tissue sample (specimen) 900000000000448009 +705623011 20020131 1 900000000000207008 309151003 en 900000000000003001 Parathyroid biopsy sample (specimen) 900000000000020002 +705623011 20170731 1 900000000000207008 309151003 en 900000000000003001 Parathyroid biopsy sample (specimen) 900000000000448009 +705623011 20220630 0 900000000000207008 309151003 en 900000000000003001 Parathyroid biopsy sample (specimen) 900000000000448009 +705626015 20020131 1 900000000000207008 309153000 en 900000000000003001 Excised parathyroid sample (specimen) 900000000000020002 +705626015 20170731 1 900000000000207008 309153000 en 900000000000003001 Excised parathyroid sample (specimen) 900000000000448009 +705626015 20220630 0 900000000000207008 309153000 en 900000000000003001 Excised parathyroid sample (specimen) 900000000000448009 +705628019 20020131 1 900000000000207008 309154006 en 900000000000003001 Pituitary sample (specimen) 900000000000020002 +705628019 20170731 1 900000000000207008 309154006 en 900000000000003001 Pituitary sample (specimen) 900000000000448009 +705628019 20220630 0 900000000000207008 309154006 en 900000000000003001 Pituitary sample (specimen) 900000000000448009 +705639016 20020131 1 900000000000207008 309164002 en 900000000000003001 Upper respiratory swab sample (specimen) 900000000000020002 +705639016 20170731 1 900000000000207008 309164002 en 900000000000003001 Upper respiratory swab sample (specimen) 900000000000448009 +705639016 20220630 0 900000000000207008 309164002 en 900000000000003001 Upper respiratory swab sample (specimen) 900000000000448009 +705640019 20020131 1 900000000000207008 309165001 en 900000000000003001 Ear sample (specimen) 900000000000020002 +705640019 20170731 1 900000000000207008 309165001 en 900000000000003001 Ear sample (specimen) 900000000000448009 +705640019 20220531 0 900000000000207008 309165001 en 900000000000003001 Ear sample (specimen) 900000000000448009 +705641015 20020131 1 900000000000207008 309166000 en 900000000000003001 Ear swab sample (specimen) 900000000000020002 +705641015 20170731 1 900000000000207008 309166000 en 900000000000003001 Ear swab sample (specimen) 900000000000448009 +705641015 20220630 0 900000000000207008 309166000 en 900000000000003001 Ear swab sample (specimen) 900000000000448009 +705643017 20020131 1 900000000000207008 309167009 en 900000000000003001 Middle ear biopsy sample (specimen) 900000000000020002 +705643017 20170731 1 900000000000207008 309167009 en 900000000000003001 Middle ear biopsy sample (specimen) 900000000000448009 +705643017 20220630 0 900000000000207008 309167009 en 900000000000003001 Middle ear biopsy sample (specimen) 900000000000448009 +705644011 20020131 1 900000000000207008 309168004 en 900000000000003001 Upper respiratory tissue sample (specimen) 900000000000020002 +705644011 20170731 1 900000000000207008 309168004 en 900000000000003001 Upper respiratory tissue sample (specimen) 900000000000448009 +705644011 20220630 0 900000000000207008 309168004 en 900000000000003001 Upper respiratory tissue sample (specimen) 900000000000448009 +705645012 20020131 1 900000000000207008 309169007 en 900000000000003001 Tracheal biopsy sample (specimen) 900000000000020002 +705645012 20170731 1 900000000000207008 309169007 en 900000000000003001 Tracheal biopsy sample (specimen) 900000000000448009 +705645012 20220630 0 900000000000207008 309169007 en 900000000000003001 Tracheal biopsy sample (specimen) 900000000000448009 +705646013 20020131 1 900000000000207008 309170008 en 900000000000003001 Lower respiratory tissue sample (specimen) 900000000000020002 +705646013 20170731 1 900000000000207008 309170008 en 900000000000003001 Lower respiratory tissue sample (specimen) 900000000000448009 +705646013 20220630 0 900000000000207008 309170008 en 900000000000003001 Lower respiratory tissue sample (specimen) 900000000000448009 +705647016 20020131 1 900000000000207008 309171007 en 900000000000003001 Lower respiratory fluid sample (specimen) 900000000000020002 +705647016 20170731 1 900000000000207008 309171007 en 900000000000003001 Lower respiratory fluid sample (specimen) 900000000000448009 +705647016 20220630 0 900000000000207008 309171007 en 900000000000003001 Lower respiratory fluid sample (specimen) 900000000000448009 +705648014 20020131 1 900000000000207008 309172000 en 900000000000003001 Pleura biopsy sample (specimen) 900000000000020002 +705648014 20170731 1 900000000000207008 309172000 en 900000000000003001 Pleura biopsy sample (specimen) 900000000000448009 +705648014 20220630 0 900000000000207008 309172000 en 900000000000003001 Pleura biopsy sample (specimen) 900000000000448009 +705649018 20020131 1 900000000000207008 309173005 en 900000000000003001 Transbronchial lung biopsy sample (specimen) 900000000000020002 +705649018 20170731 1 900000000000207008 309173005 en 900000000000003001 Transbronchial lung biopsy sample (specimen) 900000000000448009 +705649018 20220630 0 900000000000207008 309173005 en 900000000000003001 Transbronchial lung biopsy sample (specimen) 900000000000448009 +705650018 20020131 1 900000000000207008 309174004 en 900000000000003001 Bronchial biopsy sample (specimen) 900000000000020002 +705650018 20170731 1 900000000000207008 309174004 en 900000000000003001 Bronchial biopsy sample (specimen) 900000000000448009 +705650018 20220630 0 900000000000207008 309174004 en 900000000000003001 Bronchial biopsy sample (specimen) 900000000000448009 +705652014 20020131 1 900000000000207008 309175003 en 900000000000003001 Resected lung sample (specimen) 900000000000020002 +705652014 20170731 1 900000000000207008 309175003 en 900000000000003001 Resected lung sample (specimen) 900000000000448009 +705652014 20220630 0 900000000000207008 309175003 en 900000000000003001 Resected lung sample (specimen) 900000000000448009 +705653016 20020131 1 900000000000207008 309176002 en 900000000000003001 Bronchial brushings sample (specimen) 900000000000020002 +705653016 20170731 1 900000000000207008 309176002 en 900000000000003001 Bronchial brushings sample (specimen) 900000000000448009 +705653016 20220630 0 900000000000207008 309176002 en 900000000000003001 Bronchial brushings sample (specimen) 900000000000448009 +705654010 20020131 1 900000000000207008 309177006 en 900000000000003001 Lung direct smear sample (specimen) 900000000000020002 +705654010 20170731 1 900000000000207008 309177006 en 900000000000003001 Lung direct smear sample (specimen) 900000000000448009 +705654010 20220630 0 900000000000207008 309177006 en 900000000000003001 Lung direct smear sample (specimen) 900000000000448009 +705655011 20020131 1 900000000000207008 309178001 en 900000000000003001 Nasal biopsy sample (specimen) 900000000000020002 +705655011 20170731 1 900000000000207008 309178001 en 900000000000003001 Nasal biopsy sample (specimen) 900000000000448009 +705655011 20220630 0 900000000000207008 309178001 en 900000000000003001 Nasal biopsy sample (specimen) 900000000000448009 +705656012 20020131 1 900000000000207008 309179009 en 900000000000003001 Nasal polyp sample (specimen) 900000000000020002 +705656012 20170731 1 900000000000207008 309179009 en 900000000000003001 Nasal polyp sample (specimen) 900000000000448009 +705656012 20220630 0 900000000000207008 309179009 en 900000000000003001 Nasal polyp sample (specimen) 900000000000448009 +705657015 20020131 1 900000000000207008 309180007 en 900000000000003001 Nasopharyngeal biopsy sample (specimen) 900000000000020002 +705657015 20170731 1 900000000000207008 309180007 en 900000000000003001 Nasopharyngeal biopsy sample (specimen) 900000000000448009 +705657015 20220630 0 900000000000207008 309180007 en 900000000000003001 Nasopharyngeal biopsy sample (specimen) 900000000000448009 +705658013 20020131 1 900000000000207008 309181006 en 900000000000003001 Mastoid biopsy sample (specimen) 900000000000020002 +705658013 20170731 1 900000000000207008 309181006 en 900000000000003001 Mastoid biopsy sample (specimen) 900000000000448009 +705658013 20220531 0 900000000000207008 309181006 en 900000000000003001 Mastoid biopsy sample (specimen) 900000000000448009 +705659017 20020131 1 900000000000207008 309182004 en 900000000000003001 Larynx biopsy sample (specimen) 900000000000020002 +705659017 20170731 1 900000000000207008 309182004 en 900000000000003001 Larynx biopsy sample (specimen) 900000000000448009 +705659017 20220630 0 900000000000207008 309182004 en 900000000000003001 Larynx biopsy sample (specimen) 900000000000448009 +705660010 20020131 1 900000000000207008 309183009 en 900000000000003001 Laryngectomy sample (specimen) 900000000000020002 +705660010 20170731 1 900000000000207008 309183009 en 900000000000003001 Laryngectomy sample (specimen) 900000000000448009 +705660010 20220630 0 900000000000207008 309183009 en 900000000000003001 Laryngectomy sample (specimen) 900000000000448009 +705662019 20020131 1 900000000000207008 309184003 en 900000000000003001 Vocal cord biopsy sample (specimen) 900000000000020002 +705662019 20170731 1 900000000000207008 309184003 en 900000000000003001 Vocal cord biopsy sample (specimen) 900000000000448009 +705662019 20220630 0 900000000000207008 309184003 en 900000000000003001 Vocal cord biopsy sample (specimen) 900000000000448009 +705663012 20020131 1 900000000000207008 309185002 en 900000000000003001 Oral cavity sample (specimen) 900000000000020002 +705663012 20170731 1 900000000000207008 309185002 en 900000000000003001 Oral cavity sample (specimen) 900000000000448009 +705663012 20220630 0 900000000000207008 309185002 en 900000000000003001 Oral cavity sample (specimen) 900000000000448009 +705664018 20020131 1 900000000000207008 309186001 en 900000000000003001 Oral tissue sample (specimen) 900000000000020002 +705664018 20170731 1 900000000000207008 309186001 en 900000000000003001 Oral tissue sample (specimen) 900000000000448009 +705664018 20220630 0 900000000000207008 309186001 en 900000000000003001 Oral tissue sample (specimen) 900000000000448009 +705665017 20020131 1 900000000000207008 309187005 en 900000000000003001 Dental tissue sample (specimen) 900000000000020002 +705665017 20170731 1 900000000000207008 309187005 en 900000000000003001 Dental tissue sample (specimen) 900000000000448009 +705665017 20220630 0 900000000000207008 309187005 en 900000000000003001 Dental tissue sample (specimen) 900000000000448009 +705666016 20020131 1 900000000000207008 309188000 en 900000000000003001 Mouth biopsy sample (specimen) 900000000000020002 +705666016 20170731 1 900000000000207008 309188000 en 900000000000003001 Mouth biopsy sample (specimen) 900000000000448009 +705666016 20220630 0 900000000000207008 309188000 en 900000000000003001 Mouth biopsy sample (specimen) 900000000000448009 +705667013 20020131 1 900000000000207008 309189008 en 900000000000003001 Tongue biopsy sample (specimen) 900000000000020002 +705667013 20170731 1 900000000000207008 309189008 en 900000000000003001 Tongue biopsy sample (specimen) 900000000000448009 +705667013 20220630 0 900000000000207008 309189008 en 900000000000003001 Tongue biopsy sample (specimen) 900000000000448009 +705668015 20020131 1 900000000000207008 309190004 en 900000000000003001 Excised salivary gland sample (specimen) 900000000000020002 +705668015 20170731 1 900000000000207008 309190004 en 900000000000003001 Excised salivary gland sample (specimen) 900000000000448009 +705668015 20220630 0 900000000000207008 309190004 en 900000000000003001 Excised salivary gland sample (specimen) 900000000000448009 +705669011 20020131 1 900000000000207008 309191000 en 900000000000003001 Tonsil biopsy sample (specimen) 900000000000020002 +705669011 20170731 1 900000000000207008 309191000 en 900000000000003001 Tonsil biopsy sample (specimen) 900000000000448009 +705669011 20220630 0 900000000000207008 309191000 en 900000000000003001 Tonsil biopsy sample (specimen) 900000000000448009 +705670012 20020131 1 900000000000207008 309192007 en 900000000000003001 Tonsillectomy sample (specimen) 900000000000020002 +705670012 20170731 1 900000000000207008 309192007 en 900000000000003001 Tonsillectomy sample (specimen) 900000000000448009 +705670012 20220630 0 900000000000207008 309192007 en 900000000000003001 Tonsillectomy sample (specimen) 900000000000448009 +705671011 20020131 1 900000000000207008 309193002 en 900000000000003001 Pharyngeal biopsy sample (specimen) 900000000000020002 +705671011 20170731 1 900000000000207008 309193002 en 900000000000003001 Pharyngeal biopsy sample (specimen) 900000000000448009 +705671011 20220630 0 900000000000207008 309193002 en 900000000000003001 Pharyngeal biopsy sample (specimen) 900000000000448009 +705678017 20020131 1 900000000000207008 309199003 en 900000000000003001 Gastrointestinal fluid sample (specimen) 900000000000020002 +705678017 20170731 1 900000000000207008 309199003 en 900000000000003001 Gastrointestinal fluid sample (specimen) 900000000000448009 +705678017 20220630 0 900000000000207008 309199003 en 900000000000003001 Gastrointestinal fluid sample (specimen) 900000000000448009 +705679013 20020131 1 900000000000207008 309200000 en 900000000000003001 Rectal tissue sample (specimen) 900000000000020002 +705679013 20170731 1 900000000000207008 309200000 en 900000000000003001 Rectal tissue sample (specimen) 900000000000448009 +705679013 20220630 0 900000000000207008 309200000 en 900000000000003001 Rectal tissue sample (specimen) 900000000000448009 +705680011 20020131 1 900000000000207008 309201001 en 900000000000003001 Ascitic fluid sample (specimen) 900000000000020002 +705680011 20170731 1 900000000000207008 309201001 en 900000000000003001 Ascitic fluid sample (specimen) 900000000000448009 +705680011 20220630 0 900000000000207008 309201001 en 900000000000003001 Ascitic fluid sample (specimen) 900000000000448009 +705681010 20020131 1 900000000000207008 309202008 en 900000000000003001 Gastrointestinal direct smear (specimen) 900000000000020002 +705681010 20170731 1 900000000000207008 309202008 en 900000000000003001 Gastrointestinal direct smear (specimen) 900000000000448009 +705683013 20020131 1 900000000000207008 309203003 en 900000000000003001 Liver biopsy sample (specimen) 900000000000020002 +705683013 20170731 1 900000000000207008 309203003 en 900000000000003001 Liver biopsy sample (specimen) 900000000000448009 +705683013 20220630 0 900000000000207008 309203003 en 900000000000003001 Liver biopsy sample (specimen) 900000000000448009 +705684019 20020131 1 900000000000207008 309204009 en 900000000000003001 Liver direct smear sample (specimen) 900000000000020002 +705684019 20170731 1 900000000000207008 309204009 en 900000000000003001 Liver direct smear sample (specimen) 900000000000448009 +705684019 20220630 0 900000000000207008 309204009 en 900000000000003001 Liver direct smear sample (specimen) 900000000000448009 +705685018 20020131 1 900000000000207008 309205005 en 900000000000003001 Cholecystectomy sample (specimen) 900000000000020002 +705685018 20170731 1 900000000000207008 309205005 en 900000000000003001 Cholecystectomy sample (specimen) 900000000000448009 +705685018 20220630 0 900000000000207008 309205005 en 900000000000003001 Cholecystectomy sample (specimen) 900000000000448009 +705686017 20020131 1 900000000000207008 309206006 en 900000000000003001 Pancreas biopsy sample (specimen) 900000000000020002 +705686017 20170731 1 900000000000207008 309206006 en 900000000000003001 Pancreas biopsy sample (specimen) 900000000000448009 +705686017 20220630 0 900000000000207008 309206006 en 900000000000003001 Pancreas biopsy sample (specimen) 900000000000448009 +705687014 20020131 1 900000000000207008 309207002 en 900000000000003001 Peritoneal biopsy sample (specimen) 900000000000020002 +705687014 20170731 1 900000000000207008 309207002 en 900000000000003001 Peritoneal biopsy sample (specimen) 900000000000448009 +705687014 20220630 0 900000000000207008 309207002 en 900000000000003001 Peritoneal biopsy sample (specimen) 900000000000448009 +705688016 20020131 1 900000000000207008 309208007 en 900000000000003001 Omentum biopsy sample (specimen) 900000000000020002 +705688016 20170731 1 900000000000207008 309208007 en 900000000000003001 Omentum biopsy sample (specimen) 900000000000448009 +705688016 20220630 0 900000000000207008 309208007 en 900000000000003001 Omentum biopsy sample (specimen) 900000000000448009 +705689012 20020131 1 900000000000207008 309209004 en 900000000000003001 Esophageal biopsy sample (specimen) 900000000000020002 +705689012 20170731 1 900000000000207008 309209004 en 900000000000003001 Esophageal biopsy sample (specimen) 900000000000448009 +705689012 20220630 0 900000000000207008 309209004 en 900000000000003001 Esophageal biopsy sample (specimen) 900000000000448009 +705690015 20020131 1 900000000000207008 309210009 en 900000000000003001 Esophageal brushings sample (specimen) 900000000000020002 +705690015 20170731 1 900000000000207008 309210009 en 900000000000003001 Esophageal brushings sample (specimen) 900000000000448009 +705690015 20220630 0 900000000000207008 309210009 en 900000000000003001 Esophageal brushings sample (specimen) 900000000000448009 +705692011 20020131 1 900000000000207008 309211008 en 900000000000003001 Gastric biopsy sample (specimen) 900000000000020002 +705692011 20170731 1 900000000000207008 309211008 en 900000000000003001 Gastric biopsy sample (specimen) 900000000000448009 +705692011 20220630 0 900000000000207008 309211008 en 900000000000003001 Gastric biopsy sample (specimen) 900000000000448009 +705693018 20020131 1 900000000000207008 309212001 en 900000000000003001 Gastric antral biopsy sample (specimen) 900000000000020002 +705693018 20170731 1 900000000000207008 309212001 en 900000000000003001 Gastric antral biopsy sample (specimen) 900000000000448009 +705693018 20220630 0 900000000000207008 309212001 en 900000000000003001 Gastric antral biopsy sample (specimen) 900000000000448009 +705694012 20020131 1 900000000000207008 309213006 en 900000000000003001 Gastric brushings sample (specimen) 900000000000020002 +705694012 20170731 1 900000000000207008 309213006 en 900000000000003001 Gastric brushings sample (specimen) 900000000000448009 +705694012 20220630 0 900000000000207008 309213006 en 900000000000003001 Gastric brushings sample (specimen) 900000000000448009 +705695013 20020131 1 900000000000207008 309214000 en 900000000000003001 Gastric fundus biopsy sample (specimen) 900000000000020002 +705695013 20170731 1 900000000000207008 309214000 en 900000000000003001 Gastric fundus biopsy sample (specimen) 900000000000448009 +705695013 20220630 0 900000000000207008 309214000 en 900000000000003001 Gastric fundus biopsy sample (specimen) 900000000000448009 +705696014 20020131 1 900000000000207008 309215004 en 900000000000003001 Gastric ulcer sample (specimen) 900000000000020002 +705696014 20170731 1 900000000000207008 309215004 en 900000000000003001 Gastric ulcer sample (specimen) 900000000000448009 +705696014 20220630 0 900000000000207008 309215004 en 900000000000003001 Gastric ulcer sample (specimen) 900000000000448009 +705697017 20020131 1 900000000000207008 309216003 en 900000000000003001 Duodenal biopsy sample (specimen) 900000000000020002 +705697017 20170731 1 900000000000207008 309216003 en 900000000000003001 Duodenal biopsy sample (specimen) 900000000000448009 +705697017 20220630 0 900000000000207008 309216003 en 900000000000003001 Duodenal biopsy sample (specimen) 900000000000448009 +705698010 20020131 1 900000000000207008 309217007 en 900000000000003001 Ileal biopsy sample (specimen) 900000000000020002 +705698010 20170731 1 900000000000207008 309217007 en 900000000000003001 Ileal biopsy sample (specimen) 900000000000448009 +705698010 20220630 0 900000000000207008 309217007 en 900000000000003001 Ileal biopsy sample (specimen) 900000000000448009 +705700018 20020131 1 900000000000207008 309218002 en 900000000000003001 Ileal resection sample (specimen) 900000000000020002 +705700018 20170731 1 900000000000207008 309218002 en 900000000000003001 Ileal resection sample (specimen) 900000000000448009 +705700018 20220630 0 900000000000207008 309218002 en 900000000000003001 Ileal resection sample (specimen) 900000000000448009 +705701019 20020131 1 900000000000207008 309219005 en 900000000000003001 Jejunal biopsy sample (specimen) 900000000000020002 +705701019 20170731 1 900000000000207008 309219005 en 900000000000003001 Jejunal biopsy sample (specimen) 900000000000448009 +705701019 20220630 0 900000000000207008 309219005 en 900000000000003001 Jejunal biopsy sample (specimen) 900000000000448009 +705702014 20020131 1 900000000000207008 309220004 en 900000000000003001 Small bowel resection sample (specimen) 900000000000020002 +705702014 20170731 1 900000000000207008 309220004 en 900000000000003001 Small bowel resection sample (specimen) 900000000000448009 +705702014 20220630 0 900000000000207008 309220004 en 900000000000003001 Small bowel resection sample (specimen) 900000000000448009 +705703016 20020131 1 900000000000207008 309221000 en 900000000000003001 Terminal ileum resection sample (specimen) 900000000000020002 +705703016 20170731 1 900000000000207008 309221000 en 900000000000003001 Terminal ileum resection sample (specimen) 900000000000448009 +705703016 20220630 0 900000000000207008 309221000 en 900000000000003001 Terminal ileum resection sample (specimen) 900000000000448009 +705704010 20020131 1 900000000000207008 309222007 en 900000000000003001 Appendix sample (specimen) 900000000000020002 +705704010 20170731 1 900000000000207008 309222007 en 900000000000003001 Appendix sample (specimen) 900000000000448009 +705704010 20220630 0 900000000000207008 309222007 en 900000000000003001 Appendix sample (specimen) 900000000000448009 +705705011 20020131 1 900000000000207008 309223002 en 900000000000003001 Colectomy sample (specimen) 900000000000020002 +705705011 20170731 1 900000000000207008 309223002 en 900000000000003001 Colectomy sample (specimen) 900000000000448009 +705705011 20220630 0 900000000000207008 309223002 en 900000000000003001 Colectomy sample (specimen) 900000000000448009 +705706012 20020131 1 900000000000207008 309224008 en 900000000000003001 Colon strip sample (specimen) 900000000000020002 +705706012 20170731 1 900000000000207008 309224008 en 900000000000003001 Colon strip sample (specimen) 900000000000448009 +705706012 20220630 0 900000000000207008 309224008 en 900000000000003001 Colon strip sample (specimen) 900000000000448009 +705707015 20020131 1 900000000000207008 309225009 en 900000000000003001 Colonic biopsy sample (specimen) 900000000000020002 +705707015 20170731 1 900000000000207008 309225009 en 900000000000003001 Colonic biopsy sample (specimen) 900000000000448009 +705707015 20220630 0 900000000000207008 309225009 en 900000000000003001 Colonic biopsy sample (specimen) 900000000000448009 +705709017 20020131 1 900000000000207008 309226005 en 900000000000003001 Colonic polyp sample (specimen) 900000000000020002 +705709017 20170731 1 900000000000207008 309226005 en 900000000000003001 Colonic polyp sample (specimen) 900000000000448009 +705709017 20220630 0 900000000000207008 309226005 en 900000000000003001 Colonic polyp sample (specimen) 900000000000448009 +705710010 20020131 1 900000000000207008 309227001 en 900000000000003001 Sigmoid colonic polyp sample (specimen) 900000000000020002 +705710010 20170731 1 900000000000207008 309227001 en 900000000000003001 Sigmoid colonic polyp sample (specimen) 900000000000448009 +705710010 20220630 0 900000000000207008 309227001 en 900000000000003001 Sigmoid colonic polyp sample (specimen) 900000000000448009 +705747010 20020131 1 900000000000207008 309260003 en 900000000000003001 Sigmoid colon biopsy sample (specimen) 900000000000020002 +705747010 20170731 1 900000000000207008 309260003 en 900000000000003001 Sigmoid colon biopsy sample (specimen) 900000000000448009 +705747010 20220630 0 900000000000207008 309260003 en 900000000000003001 Sigmoid colon biopsy sample (specimen) 900000000000448009 +705748017 20020131 1 900000000000207008 309261004 en 900000000000003001 Sigmoid colon brushings sample (specimen) 900000000000020002 +705748017 20170731 1 900000000000207008 309261004 en 900000000000003001 Sigmoid colon brushings sample (specimen) 900000000000448009 +705748017 20220630 0 900000000000207008 309261004 en 900000000000003001 Sigmoid colon brushings sample (specimen) 900000000000448009 +705750013 20020131 1 900000000000207008 309262006 en 900000000000003001 Rectal biopsy sample (specimen) 900000000000020002 +705750013 20170731 1 900000000000207008 309262006 en 900000000000003001 Rectal biopsy sample (specimen) 900000000000448009 +705750013 20220630 0 900000000000207008 309262006 en 900000000000003001 Rectal biopsy sample (specimen) 900000000000448009 +705751012 20020131 1 900000000000207008 309263001 en 900000000000003001 Rectal polyp sample (specimen) 900000000000020002 +705751012 20170731 1 900000000000207008 309263001 en 900000000000003001 Rectal polyp sample (specimen) 900000000000448009 +705751012 20220630 0 900000000000207008 309263001 en 900000000000003001 Rectal polyp sample (specimen) 900000000000448009 +705752017 20020131 1 900000000000207008 309264007 en 900000000000003001 Excised rectum sample (specimen) 900000000000020002 +705752017 20170731 1 900000000000207008 309264007 en 900000000000003001 Excised rectum sample (specimen) 900000000000448009 +705752017 20220630 0 900000000000207008 309264007 en 900000000000003001 Excised rectum sample (specimen) 900000000000448009 +705753010 20020131 1 900000000000207008 309265008 en 900000000000003001 Anal biopsy sample (specimen) 900000000000020002 +705753010 20170731 1 900000000000207008 309265008 en 900000000000003001 Anal biopsy sample (specimen) 900000000000448009 +705753010 20220630 0 900000000000207008 309265008 en 900000000000003001 Anal biopsy sample (specimen) 900000000000448009 +705754016 20020131 1 900000000000207008 309266009 en 900000000000003001 Anal polyp sample (specimen) 900000000000020002 +705754016 20170731 1 900000000000207008 309266009 en 900000000000003001 Anal polyp sample (specimen) 900000000000448009 +705754016 20220630 0 900000000000207008 309266009 en 900000000000003001 Anal polyp sample (specimen) 900000000000448009 +705755015 20020131 1 900000000000207008 309267000 en 900000000000003001 Anal resection sample (specimen) 900000000000020002 +705755015 20170731 1 900000000000207008 309267000 en 900000000000003001 Anal resection sample (specimen) 900000000000448009 +705755015 20220630 0 900000000000207008 309267000 en 900000000000003001 Anal resection sample (specimen) 900000000000448009 +705756019 20020131 1 900000000000207008 309268005 en 900000000000003001 Urological fluid sample (specimen) 900000000000020002 +705756019 20170731 1 900000000000207008 309268005 en 900000000000003001 Urological fluid sample (specimen) 900000000000448009 +705756019 20220630 0 900000000000207008 309268005 en 900000000000003001 Urological fluid sample (specimen) 900000000000448009 +705758018 20020131 1 900000000000207008 309269002 en 900000000000003001 Kidney biopsy sample (specimen) 900000000000020002 +705758018 20170731 1 900000000000207008 309269002 en 900000000000003001 Kidney biopsy sample (specimen) 900000000000448009 +705758018 20220630 0 900000000000207008 309269002 en 900000000000003001 Kidney biopsy sample (specimen) 900000000000448009 +705759014 20020131 1 900000000000207008 309270001 en 900000000000003001 Nephrectomy sample (specimen) 900000000000020002 +705759014 20090131 0 900000000000207008 309270001 en 900000000000003001 Nephrectomy sample (specimen) 900000000000020002 +705760016 20020131 1 900000000000207008 309271002 en 900000000000003001 Ureter biopsy sample (specimen) 900000000000020002 +705760016 20170731 1 900000000000207008 309271002 en 900000000000003001 Ureter biopsy sample (specimen) 900000000000448009 +705760016 20220630 0 900000000000207008 309271002 en 900000000000003001 Ureter biopsy sample (specimen) 900000000000448009 +705761017 20020131 1 900000000000207008 309272009 en 900000000000003001 Urinary bladder tissue sample (specimen) 900000000000020002 +705761017 20170731 1 900000000000207008 309272009 en 900000000000003001 Urinary bladder tissue sample (specimen) 900000000000448009 +705761017 20220630 0 900000000000207008 309272009 en 900000000000003001 Urinary bladder tissue sample (specimen) 900000000000448009 +705762012 20020131 1 900000000000207008 309273004 en 900000000000003001 Bladder biopsy sample (specimen) 900000000000020002 +705762012 20170731 1 900000000000207008 309273004 en 900000000000003001 Bladder biopsy sample (specimen) 900000000000448009 +705762012 20220630 0 900000000000207008 309273004 en 900000000000003001 Bladder biopsy sample (specimen) 900000000000448009 +705763019 20020131 1 900000000000207008 309274005 en 900000000000003001 Bladder curettings sample (specimen) 900000000000020002 +705763019 20170731 1 900000000000207008 309274005 en 900000000000003001 Bladder curettings sample (specimen) 900000000000448009 +705763019 20220630 0 900000000000207008 309274005 en 900000000000003001 Bladder curettings sample (specimen) 900000000000448009 +705764013 20020131 1 900000000000207008 309275006 en 900000000000003001 Cystectomy sample (specimen) 900000000000020002 +705764013 20170731 1 900000000000207008 309275006 en 900000000000003001 Cystectomy sample (specimen) 900000000000448009 +705764013 20220630 0 900000000000207008 309275006 en 900000000000003001 Cystectomy sample (specimen) 900000000000448009 +705765014 20020131 1 900000000000207008 309276007 en 900000000000003001 Frozen section bladder sample (specimen) 900000000000020002 +705765014 20170731 1 900000000000207008 309276007 en 900000000000003001 Frozen section bladder sample (specimen) 900000000000448009 +705765014 20220630 0 900000000000207008 309276007 en 900000000000003001 Frozen section bladder sample (specimen) 900000000000448009 +705766010 20020131 1 900000000000207008 309277003 en 900000000000003001 Urethra biopsy sample (specimen) 900000000000020002 +705766010 20170731 1 900000000000207008 309277003 en 900000000000003001 Urethra biopsy sample (specimen) 900000000000448009 +705766010 20220630 0 900000000000207008 309277003 en 900000000000003001 Urethra biopsy sample (specimen) 900000000000448009 +705767018 20020131 1 900000000000207008 309278008 en 900000000000003001 Female genital tissue sample (specimen) 900000000000020002 +705767018 20170731 1 900000000000207008 309278008 en 900000000000003001 Female genital tissue sample (specimen) 900000000000448009 +705767018 20220630 0 900000000000207008 309278008 en 900000000000003001 Female genital tissue sample (specimen) 900000000000448009 +705770019 20020131 1 900000000000207008 309280002 en 900000000000003001 Vaginal biopsy sample (specimen) 900000000000020002 +705770019 20170731 1 900000000000207008 309280002 en 900000000000003001 Vaginal biopsy sample (specimen) 900000000000448009 +705770019 20220630 0 900000000000207008 309280002 en 900000000000003001 Vaginal biopsy sample (specimen) 900000000000448009 +705771015 20020131 1 900000000000207008 309281003 en 900000000000003001 Vaginal vault biopsy sample (specimen) 900000000000020002 +705771015 20170731 1 900000000000207008 309281003 en 900000000000003001 Vaginal vault biopsy sample (specimen) 900000000000448009 +705771015 20220630 0 900000000000207008 309281003 en 900000000000003001 Vaginal vault biopsy sample (specimen) 900000000000448009 +705773017 20020131 1 900000000000207008 309283000 en 900000000000003001 Cervical biopsy sample (specimen) 900000000000020002 +705773017 20170731 1 900000000000207008 309283000 en 900000000000003001 Cervical biopsy sample (specimen) 900000000000448009 +705773017 20220630 0 900000000000207008 309283000 en 900000000000003001 Cervical biopsy sample (specimen) 900000000000448009 +705775012 20020131 1 900000000000207008 309285007 en 900000000000003001 Cervical loop excision sample (specimen) 900000000000020002 +705775012 20170731 1 900000000000207008 309285007 en 900000000000003001 Cervical loop excision sample (specimen) 900000000000448009 +705775012 20220630 0 900000000000207008 309285007 en 900000000000003001 Cervical loop excision sample (specimen) 900000000000448009 +705776013 20020131 1 900000000000207008 309286008 en 900000000000003001 Cervical polyp sample (specimen) 900000000000020002 +705776013 20170731 1 900000000000207008 309286008 en 900000000000003001 Cervical polyp sample (specimen) 900000000000448009 +705776013 20220630 0 900000000000207008 309286008 en 900000000000003001 Cervical polyp sample (specimen) 900000000000448009 +705778014 20020131 1 900000000000207008 309287004 en 900000000000003001 Hysterectomy and bilateral salpingo-oophorectomy sample (specimen) 900000000000020002 +705778014 20170731 1 900000000000207008 309287004 en 900000000000003001 Hysterectomy and bilateral salpingo-oophorectomy sample (specimen) 900000000000448009 +705778014 20220630 0 900000000000207008 309287004 en 900000000000003001 Hysterectomy and bilateral salpingo-oophorectomy sample (specimen) 900000000000448009 +705779018 20020131 1 900000000000207008 309288009 en 900000000000003001 Endometrial polyp sample (specimen) 900000000000020002 +705779018 20170731 1 900000000000207008 309288009 en 900000000000003001 Endometrial polyp sample (specimen) 900000000000448009 +705779018 20220630 0 900000000000207008 309288009 en 900000000000003001 Endometrial polyp sample (specimen) 900000000000448009 +705780015 20020131 1 900000000000207008 309289001 en 900000000000003001 Endometrial resection sample (specimen) 900000000000020002 +705780015 20170731 1 900000000000207008 309289001 en 900000000000003001 Endometrial resection sample (specimen) 900000000000448009 +705780015 20220630 0 900000000000207008 309289001 en 900000000000003001 Endometrial resection sample (specimen) 900000000000448009 +705781016 20020131 1 900000000000207008 309290005 en 900000000000003001 Fallopian tube biopsy sample (specimen) 900000000000020002 +705781016 20170731 1 900000000000207008 309290005 en 900000000000003001 Fallopian tube biopsy sample (specimen) 900000000000448009 +705781016 20220630 0 900000000000207008 309290005 en 900000000000003001 Fallopian tube biopsy sample (specimen) 900000000000448009 +705782011 20020131 1 900000000000207008 309291009 en 900000000000003001 Ovarian cyst sample (specimen) 900000000000020002 +705782011 20170731 1 900000000000207008 309291009 en 900000000000003001 Ovarian cyst sample (specimen) 900000000000448009 +705782011 20220630 0 900000000000207008 309291009 en 900000000000003001 Ovarian cyst sample (specimen) 900000000000448009 +705783018 20020131 1 900000000000207008 309292002 en 900000000000003001 Ovarian fluid sample (specimen) 900000000000020002 +705783018 20170731 1 900000000000207008 309292002 en 900000000000003001 Ovarian fluid sample (specimen) 900000000000448009 +705783018 20220630 0 900000000000207008 309292002 en 900000000000003001 Ovarian fluid sample (specimen) 900000000000448009 +705785013 20020131 1 900000000000207008 309293007 en 900000000000003001 Placenta biopsy sample (specimen) 900000000000020002 +705785013 20170731 1 900000000000207008 309293007 en 900000000000003001 Placenta biopsy sample (specimen) 900000000000448009 +705785013 20220630 0 900000000000207008 309293007 en 900000000000003001 Placenta biopsy sample (specimen) 900000000000448009 +705992013 20020131 1 900000000000207008 309476009 en 900000000000003001 Neck block dissection sample (specimen) 900000000000020002 +705992013 20170731 1 900000000000207008 309476009 en 900000000000003001 Neck block dissection sample (specimen) 900000000000448009 +705992013 20220630 0 900000000000207008 309476009 en 900000000000003001 Neck block dissection sample (specimen) 900000000000448009 +705995010 20020131 1 900000000000207008 309478005 en 900000000000003001 Thrombus sample (specimen) 900000000000020002 +705995010 20170731 1 900000000000207008 309478005 en 900000000000003001 Thrombus sample (specimen) 900000000000448009 +705995010 20220630 0 900000000000207008 309478005 en 900000000000003001 Thrombus sample (specimen) 900000000000448009 +705997019 20020131 1 900000000000207008 309479002 en 900000000000003001 Artery sample (specimen) 900000000000020002 +705997019 20170731 1 900000000000207008 309479002 en 900000000000003001 Artery sample (specimen) 900000000000448009 +705997019 20220630 0 900000000000207008 309479002 en 900000000000003001 Artery sample (specimen) 900000000000448009 +705998012 20020131 1 900000000000207008 309480004 en 900000000000003001 Vein sample (specimen) 900000000000020002 +705998012 20170731 1 900000000000207008 309480004 en 900000000000003001 Vein sample (specimen) 900000000000448009 +705998012 20220531 0 900000000000207008 309480004 en 900000000000003001 Vein sample (specimen) 900000000000448009 +705999016 20020131 1 900000000000207008 309481000 en 900000000000003001 Temporal artery sample (specimen) 900000000000020002 +705999016 20170731 1 900000000000207008 309481000 en 900000000000003001 Temporal artery sample (specimen) 900000000000448009 +705999016 20220630 0 900000000000207008 309481000 en 900000000000003001 Temporal artery sample (specimen) 900000000000448009 +706000019 20020131 1 900000000000207008 309482007 en 900000000000003001 Frozen section lymph node sample (specimen) 900000000000020002 +706000019 20170731 1 900000000000207008 309482007 en 900000000000003001 Frozen section lymph node sample (specimen) 900000000000448009 +706000019 20220630 0 900000000000207008 309482007 en 900000000000003001 Frozen section lymph node sample (specimen) 900000000000448009 +706001015 20020131 1 900000000000207008 309483002 en 900000000000003001 Lip biopsy sample (specimen) 900000000000020002 +706001015 20170731 1 900000000000207008 309483002 en 900000000000003001 Lip biopsy sample (specimen) 900000000000448009 +706001015 20220630 0 900000000000207008 309483002 en 900000000000003001 Lip biopsy sample (specimen) 900000000000448009 +706002010 20020131 1 900000000000207008 309484008 en 900000000000003001 Parotidectomy sample (specimen) 900000000000020002 +706002010 20170731 1 900000000000207008 309484008 en 900000000000003001 Parotidectomy sample (specimen) 900000000000448009 +706002010 20220630 0 900000000000207008 309484008 en 900000000000003001 Parotidectomy sample (specimen) 900000000000448009 +706003017 20020131 1 900000000000207008 309485009 en 900000000000003001 Excised sublingual gland sample (specimen) 900000000000020002 +706003017 20170731 1 900000000000207008 309485009 en 900000000000003001 Excised sublingual gland sample (specimen) 900000000000448009 +706003017 20220630 0 900000000000207008 309485009 en 900000000000003001 Excised sublingual gland sample (specimen) 900000000000448009 +706004011 20020131 1 900000000000207008 309486005 en 900000000000003001 Excised submandibular gland sample (specimen) 900000000000020002 +706004011 20170731 1 900000000000207008 309486005 en 900000000000003001 Excised submandibular gland sample (specimen) 900000000000448009 +706004011 20220630 0 900000000000207008 309486005 en 900000000000003001 Excised submandibular gland sample (specimen) 900000000000448009 +706005012 20020131 1 900000000000207008 309487001 en 900000000000003001 Total colectomy sample (specimen) 900000000000020002 +706005012 20170731 1 900000000000207008 309487001 en 900000000000003001 Total colectomy sample (specimen) 900000000000448009 +706005012 20220630 0 900000000000207008 309487001 en 900000000000003001 Total colectomy sample (specimen) 900000000000448009 +706007016 20020131 1 900000000000207008 309488006 en 900000000000003001 Partial colectomy sample (specimen) 900000000000020002 +706007016 20170731 1 900000000000207008 309488006 en 900000000000003001 Partial colectomy sample (specimen) 900000000000448009 +706007016 20220630 0 900000000000207008 309488006 en 900000000000003001 Partial colectomy sample (specimen) 900000000000448009 +706008014 20020131 1 900000000000207008 309489003 en 900000000000003001 Anterior resection of rectum sample (specimen) 900000000000020002 +706008014 20170731 1 900000000000207008 309489003 en 900000000000003001 Anterior resection of rectum sample (specimen) 900000000000448009 +706008014 20220630 0 900000000000207008 309489003 en 900000000000003001 Anterior resection of rectum sample (specimen) 900000000000448009 +706009018 20020131 1 900000000000207008 309490007 en 900000000000003001 Pancreatectomy sample (specimen) 900000000000020002 +706009018 20090131 0 900000000000207008 309490007 en 900000000000003001 Pancreatectomy sample (specimen) 900000000000020002 +706010011 20020131 1 900000000000207008 309491006 en 900000000000003001 Biliary tract tissue sample (specimen) 900000000000020002 +706010011 20170731 1 900000000000207008 309491006 en 900000000000003001 Biliary tract tissue sample (specimen) 900000000000448009 +706010011 20220630 0 900000000000207008 309491006 en 900000000000003001 Biliary tract tissue sample (specimen) 900000000000448009 +706012015 20020131 1 900000000000207008 309493009 en 900000000000003001 Bile duct biopsy sample (specimen) 900000000000020002 +706012015 20170731 1 900000000000207008 309493009 en 900000000000003001 Bile duct biopsy sample (specimen) 900000000000448009 +706012015 20220630 0 900000000000207008 309493009 en 900000000000003001 Bile duct biopsy sample (specimen) 900000000000448009 +706013013 20020131 1 900000000000207008 309494003 en 900000000000003001 Ampulla of Vater biopsy sample (specimen) 900000000000020002 +706013013 20220630 0 900000000000207008 309494003 en 900000000000003001 Ampulla of Vater biopsy sample (specimen) 900000000000020002 +706014019 20020131 1 900000000000207008 309495002 en 900000000000003001 Omentum tissue sample (specimen) 900000000000020002 +706014019 20170731 1 900000000000207008 309495002 en 900000000000003001 Omentum tissue sample (specimen) 900000000000448009 +706014019 20220630 0 900000000000207008 309495002 en 900000000000003001 Omentum tissue sample (specimen) 900000000000448009 +706016017 20020131 1 900000000000207008 309496001 en 900000000000003001 Omentectomy sample (specimen) 900000000000020002 +706016017 20170731 1 900000000000207008 309496001 en 900000000000003001 Omentectomy sample (specimen) 900000000000448009 +706016017 20220630 0 900000000000207008 309496001 en 900000000000003001 Omentectomy sample (specimen) 900000000000448009 +706017014 20020131 1 900000000000207008 309497005 en 900000000000003001 Total nephrectomy sample (specimen) 900000000000020002 +706017014 20170731 1 900000000000207008 309497005 en 900000000000003001 Total nephrectomy sample (specimen) 900000000000448009 +706017014 20220630 0 900000000000207008 309497005 en 900000000000003001 Total nephrectomy sample (specimen) 900000000000448009 +706018016 20020131 1 900000000000207008 309498000 en 900000000000003001 Partial nephrectomy sample (specimen) 900000000000020002 +706018016 20170731 1 900000000000207008 309498000 en 900000000000003001 Partial nephrectomy sample (specimen) 900000000000448009 +706018016 20220630 0 900000000000207008 309498000 en 900000000000003001 Partial nephrectomy sample (specimen) 900000000000448009 +706019012 20020131 1 900000000000207008 309499008 en 900000000000003001 Foreskin biopsy sample (specimen) 900000000000020002 +706019012 20170731 1 900000000000207008 309499008 en 900000000000003001 Foreskin biopsy sample (specimen) 900000000000448009 +706019012 20220630 0 900000000000207008 309499008 en 900000000000003001 Foreskin biopsy sample (specimen) 900000000000448009 +706021019 20020131 1 900000000000207008 309501000 en 900000000000003001 Hysterectomy sample (specimen) 900000000000020002 +706021019 20170731 1 900000000000207008 309501000 en 900000000000003001 Hysterectomy sample (specimen) 900000000000448009 +706021019 20220630 0 900000000000207008 309501000 en 900000000000003001 Hysterectomy sample (specimen) 900000000000448009 +706022014 20020131 1 900000000000207008 309502007 en 900000000000003001 Fetus specimen (specimen) 900000000000020002 +706022014 20170731 1 900000000000207008 309502007 en 900000000000003001 Fetus specimen (specimen) 900000000000448009 +706023016 20020131 1 900000000000207008 309503002 en 900000000000003001 Breast nipple discharge sample (specimen) 900000000000020002 +706023016 20170731 1 900000000000207008 309503002 en 900000000000003001 Breast nipple discharge sample (specimen) 900000000000448009 +706023016 20220630 0 900000000000207008 309503002 en 900000000000003001 Breast nipple discharge sample (specimen) 900000000000448009 +706024010 20020131 1 900000000000207008 309504008 en 900000000000003001 Skin punch biopsy sample (specimen) 900000000000020002 +706024010 20170731 1 900000000000207008 309504008 en 900000000000003001 Skin punch biopsy sample (specimen) 900000000000448009 +706024010 20220630 0 900000000000207008 309504008 en 900000000000003001 Skin punch biopsy sample (specimen) 900000000000448009 +706026012 20020131 1 900000000000207008 309505009 en 900000000000003001 Skin incision biopsy sample (specimen) 900000000000020002 +706026012 20170731 1 900000000000207008 309505009 en 900000000000003001 Skin incision biopsy sample (specimen) 900000000000448009 +706026012 20220630 0 900000000000207008 309505009 en 900000000000003001 Skin incision biopsy sample (specimen) 900000000000448009 +706027015 20020131 1 900000000000207008 309506005 en 900000000000003001 Skin excision biopsy sample (specimen) 900000000000020002 +706027015 20170731 1 900000000000207008 309506005 en 900000000000003001 Skin excision biopsy sample (specimen) 900000000000448009 +706027015 20220630 0 900000000000207008 309506005 en 900000000000003001 Skin excision biopsy sample (specimen) 900000000000448009 +706028013 20020131 1 900000000000207008 309507001 en 900000000000003001 Muscle biopsy sample (specimen) 900000000000020002 +706028013 20170731 1 900000000000207008 309507001 en 900000000000003001 Muscle biopsy sample (specimen) 900000000000448009 +706028013 20220630 0 900000000000207008 309507001 en 900000000000003001 Muscle biopsy sample (specimen) 900000000000448009 +706029017 20020131 1 900000000000207008 309508006 en 900000000000003001 Soft tissue lesion fine needle aspirate sample (specimen) 900000000000020002 +706029017 20170731 1 900000000000207008 309508006 en 900000000000003001 Soft tissue lesion fine needle aspirate sample (specimen) 900000000000448009 +706029017 20220630 0 900000000000207008 309508006 en 900000000000003001 Soft tissue lesion fine needle aspirate sample (specimen) 900000000000448009 +706071016 20020131 1 900000000000207008 309546004 en 900000000000003001 Lumpectomy breast sample (specimen) 900000000000020002 +706071016 20170731 1 900000000000207008 309546004 en 900000000000003001 Lumpectomy breast sample (specimen) 900000000000448009 +706071016 20220630 0 900000000000207008 309546004 en 900000000000003001 Lumpectomy breast sample (specimen) 900000000000448009 +706072011 20020131 1 900000000000207008 309547008 en 900000000000003001 Segmentectomy breast sample (specimen) 900000000000020002 +706072011 20170731 1 900000000000207008 309547008 en 900000000000003001 Segmentectomy breast sample (specimen) 900000000000448009 +706072011 20220630 0 900000000000207008 309547008 en 900000000000003001 Segmentectomy breast sample (specimen) 900000000000448009 +706073018 20020131 1 900000000000207008 309548003 en 900000000000003001 Breast duct sample (specimen) 900000000000020002 +706073018 20170731 1 900000000000207008 309548003 en 900000000000003001 Breast duct sample (specimen) 900000000000448009 +706073018 20220630 0 900000000000207008 309548003 en 900000000000003001 Breast duct sample (specimen) 900000000000448009 +706074012 20020131 1 900000000000207008 309549006 en 900000000000003001 Minor salivary gland sample (specimen) 900000000000020002 +706074012 20170731 1 900000000000207008 309549006 en 900000000000003001 Minor salivary gland sample (specimen) 900000000000448009 +706074012 20220630 0 900000000000207008 309549006 en 900000000000003001 Minor salivary gland sample (specimen) 900000000000448009 +706357018 20020131 1 900000000000207008 119294007 en 900000000000003001 Dried blood specimen (specimen) 900000000000020002 +706357018 20170731 1 900000000000207008 119294007 en 900000000000003001 Dried blood specimen (specimen) 900000000000448009 +706367011 20020131 1 900000000000207008 119295008 en 900000000000003001 Specimen obtained by aspiration (specimen) 900000000000020002 +706367011 20170731 1 900000000000207008 119295008 en 900000000000003001 Specimen obtained by aspiration (specimen) 900000000000448009 +706385016 20020131 1 900000000000207008 119297000 en 900000000000003001 Blood specimen (specimen) 900000000000020002 +706385016 20170731 1 900000000000207008 119297000 en 900000000000003001 Blood specimen (specimen) 900000000000448009 +706394010 20020131 1 900000000000207008 119298005 en 900000000000003001 Mixed venous blood specimen (specimen) 900000000000020002 +706394010 20170731 1 900000000000207008 119298005 en 900000000000003001 Mixed venous blood specimen (specimen) 900000000000448009 +706405019 20020131 1 900000000000207008 119299002 en 900000000000003001 Specimen from patient (specimen) 900000000000020002 +706405019 20170731 1 900000000000207008 119299002 en 900000000000003001 Specimen from patient (specimen) 900000000000448009 +706417017 20020131 1 900000000000207008 119300005 en 900000000000003001 Specimen from blood product (specimen) 900000000000020002 +706417017 20170731 1 900000000000207008 119300005 en 900000000000003001 Specimen from blood product (specimen) 900000000000448009 +706426019 20020131 1 900000000000207008 119301009 en 900000000000003001 Plant specimen (specimen) 900000000000020002 +706426019 20170731 1 900000000000207008 119301009 en 900000000000003001 Plant specimen (specimen) 900000000000448009 +706434013 20020131 1 900000000000207008 119302002 en 900000000000003001 Mushroom specimen (specimen) 900000000000020002 +706434013 20170731 1 900000000000207008 119302002 en 900000000000003001 Mushroom specimen (specimen) 900000000000448009 +706443016 20020131 1 900000000000207008 119303007 en 900000000000003001 Microbial isolate specimen (specimen) 900000000000020002 +706443016 20170731 1 900000000000207008 119303007 en 900000000000003001 Microbial isolate specimen (specimen) 900000000000448009 +706450017 20020131 1 900000000000207008 119304001 en 900000000000003001 Blood bag specimen (specimen) 900000000000020002 +706450017 20170731 1 900000000000207008 119304001 en 900000000000003001 Blood bag specimen (specimen) 900000000000448009 +706450017 20210131 0 900000000000207008 119304001 en 900000000000003001 Blood bag specimen (specimen) 900000000000448009 +706461013 20020131 1 900000000000207008 119305000 en 900000000000003001 Plasma bag specimen (specimen) 900000000000020002 +706461013 20170731 1 900000000000207008 119305000 en 900000000000003001 Plasma bag specimen (specimen) 900000000000448009 +706461013 20210131 0 900000000000207008 119305000 en 900000000000003001 Plasma bag specimen (specimen) 900000000000448009 +706483012 20020131 1 900000000000207008 119307008 en 900000000000003001 Endotracheal tube specimen (specimen) 900000000000020002 +706483012 20080731 0 900000000000207008 119307008 en 900000000000003001 Endotracheal tube specimen (specimen) 900000000000020002 +706494011 20020131 1 900000000000207008 119308003 en 900000000000003001 Cannula specimen (specimen) 900000000000020002 +706494011 20170731 1 900000000000207008 119308003 en 900000000000003001 Cannula specimen (specimen) 900000000000448009 +706494011 20210131 0 900000000000207008 119308003 en 900000000000003001 Cannula specimen (specimen) 900000000000448009 +706505017 20020131 1 900000000000207008 119309006 en 900000000000003001 Arterial line specimen (specimen) 900000000000020002 +706505017 20170731 1 900000000000207008 119309006 en 900000000000003001 Arterial line specimen (specimen) 900000000000448009 +706505017 20210131 0 900000000000207008 119309006 en 900000000000003001 Arterial line specimen (specimen) 900000000000448009 +706529012 20020131 1 900000000000207008 119311002 en 900000000000003001 Catheter specimen (specimen) 900000000000020002 +706529012 20170731 1 900000000000207008 119311002 en 900000000000003001 Catheter specimen (specimen) 900000000000448009 +706529012 20210131 0 900000000000207008 119311002 en 900000000000003001 Catheter specimen (specimen) 900000000000448009 +706540016 20020131 1 900000000000207008 119312009 en 900000000000003001 Catheter tip specimen (specimen) 900000000000020002 +706540016 20170731 1 900000000000207008 119312009 en 900000000000003001 Catheter tip specimen (specimen) 900000000000448009 +706540016 20210131 0 900000000000207008 119312009 en 900000000000003001 Catheter tip specimen (specimen) 900000000000448009 +706551016 20020131 1 900000000000207008 119313004 en 900000000000003001 Implantable venous catheter specimen (specimen) 900000000000020002 +706551016 20170731 1 900000000000207008 119313004 en 900000000000003001 Implantable venous catheter specimen (specimen) 900000000000448009 +706551016 20210131 0 900000000000207008 119313004 en 900000000000003001 Implantable venous catheter specimen (specimen) 900000000000448009 +706562016 20020131 1 900000000000207008 119314005 en 900000000000003001 Electrode specimen (specimen) 900000000000020002 +706562016 20170731 1 900000000000207008 119314005 en 900000000000003001 Electrode specimen (specimen) 900000000000448009 +706562016 20210131 0 900000000000207008 119314005 en 900000000000003001 Electrode specimen (specimen) 900000000000448009 +706584016 20020131 1 900000000000207008 119316007 en 900000000000003001 Non-biological fluid specimen (specimen) 900000000000020002 +706584016 20170731 1 900000000000207008 119316007 en 900000000000003001 Non-biological fluid specimen (specimen) 900000000000448009 +706595010 20020131 1 900000000000207008 119317003 en 900000000000003001 Gaseous material specimen (specimen) 900000000000020002 +706595010 20170731 1 900000000000207008 119317003 en 900000000000003001 Gaseous material specimen (specimen) 900000000000448009 +706605011 20020131 1 900000000000207008 119318008 en 900000000000003001 Water specimen (specimen) 900000000000020002 +706605011 20170731 1 900000000000207008 119318008 en 900000000000003001 Water specimen (specimen) 900000000000448009 +706616016 20020131 1 900000000000207008 119319000 en 900000000000003001 Drug specimen (specimen) 900000000000020002 +706616016 20170731 1 900000000000207008 119319000 en 900000000000003001 Drug specimen (specimen) 900000000000448009 +706628012 20020131 1 900000000000207008 119320006 en 900000000000003001 Food specimen (specimen) 900000000000020002 +706628012 20170731 1 900000000000207008 119320006 en 900000000000003001 Food specimen (specimen) 900000000000448009 +706640012 20020131 1 900000000000207008 119321005 en 900000000000003001 Milk specimen (specimen) 900000000000020002 +706640012 20170731 1 900000000000207008 119321005 en 900000000000003001 Milk specimen (specimen) 900000000000448009 +706660016 20020131 1 900000000000207008 119323008 en 900000000000003001 Pus specimen (specimen) 900000000000020002 +706660016 20170731 1 900000000000207008 119323008 en 900000000000003001 Pus specimen (specimen) 900000000000448009 +706671015 20020131 1 900000000000207008 119324002 en 900000000000003001 Specimen of unknown material (specimen) 900000000000020002 +706671015 20170731 1 900000000000207008 119324002 en 900000000000003001 Specimen of unknown material (specimen) 900000000000448009 +706681016 20020131 1 900000000000207008 119325001 en 900000000000003001 Skin (tissue) specimen (specimen) 900000000000020002 +706681016 20170731 1 900000000000207008 119325001 en 900000000000003001 Skin (tissue) specimen (specimen) 900000000000448009 +706692015 20020131 1 900000000000207008 119326000 en 900000000000003001 Hair specimen (specimen) 900000000000020002 +706692015 20170731 1 900000000000207008 119326000 en 900000000000003001 Hair specimen (specimen) 900000000000448009 +706703010 20020131 1 900000000000207008 119327009 en 900000000000003001 Nail specimen (specimen) 900000000000020002 +706703010 20170731 1 900000000000207008 119327009 en 900000000000003001 Nail specimen (specimen) 900000000000448009 +706714013 20020131 1 900000000000207008 119328004 en 900000000000003001 Mother's milk specimen (specimen) 900000000000020002 +706714013 20170731 1 900000000000207008 119328004 en 900000000000003001 Mother's milk specimen (specimen) 900000000000448009 +706725016 20020131 1 900000000000207008 119329007 en 900000000000003001 Colostrum specimen (specimen) 900000000000020002 +706725016 20170731 1 900000000000207008 119329007 en 900000000000003001 Colostrum specimen (specimen) 900000000000448009 +706749018 20020131 1 900000000000207008 119331003 en 900000000000003001 Skeletal muscle specimen (specimen) 900000000000020002 +706749018 20170731 1 900000000000207008 119331003 en 900000000000003001 Skeletal muscle specimen (specimen) 900000000000448009 +706759017 20020131 1 900000000000207008 119332005 en 900000000000003001 Synovial fluid specimen (specimen) 900000000000020002 +706759017 20170731 1 900000000000207008 119332005 en 900000000000003001 Synovial fluid specimen (specimen) 900000000000448009 +706768015 20020131 1 900000000000207008 119333000 en 900000000000003001 Fibroblast specimen (specimen) 900000000000020002 +706768015 20170731 1 900000000000207008 119333000 en 900000000000003001 Fibroblast specimen (specimen) 900000000000448009 +706779013 20020131 1 900000000000207008 119334006 en 900000000000003001 Sputum specimen (specimen) 900000000000020002 +706779013 20170731 1 900000000000207008 119334006 en 900000000000003001 Sputum specimen (specimen) 900000000000448009 +706789012 20020131 1 900000000000207008 119335007 en 900000000000003001 Coughed sputum specimen (specimen) 900000000000020002 +706789012 20170731 1 900000000000207008 119335007 en 900000000000003001 Coughed sputum specimen (specimen) 900000000000448009 +706801016 20020131 1 900000000000207008 119336008 en 900000000000003001 Exhaled air specimen (specimen) 900000000000020002 +706801016 20170731 1 900000000000207008 119336008 en 900000000000003001 Exhaled air specimen (specimen) 900000000000448009 +706809019 20020131 1 900000000000207008 119337004 en 900000000000003001 Inhaled gas specimen (specimen) 900000000000020002 +706809019 20170731 1 900000000000207008 119337004 en 900000000000003001 Inhaled gas specimen (specimen) 900000000000448009 +706818017 20020131 1 900000000000207008 119338009 en 900000000000003001 Dentin specimen (specimen) 900000000000020002 +706818017 20170731 1 900000000000207008 119338009 en 900000000000003001 Dentin specimen (specimen) 900000000000448009 +706828014 20020131 1 900000000000207008 119339001 en 900000000000003001 Stool specimen (specimen) 900000000000020002 +706828014 20170731 1 900000000000207008 119339001 en 900000000000003001 Stool specimen (specimen) 900000000000448009 +706840014 20020131 1 900000000000207008 119340004 en 900000000000003001 Meconium specimen (specimen) 900000000000020002 +706840014 20170731 1 900000000000207008 119340004 en 900000000000003001 Meconium specimen (specimen) 900000000000448009 +706851014 20020131 1 900000000000207008 119341000 en 900000000000003001 Bile specimen (specimen) 900000000000020002 +706851014 20170731 1 900000000000207008 119341000 en 900000000000003001 Bile specimen (specimen) 900000000000448009 +706861019 20020131 1 900000000000207008 119342007 en 900000000000003001 Saliva specimen (specimen) 900000000000020002 +706861019 20170731 1 900000000000207008 119342007 en 900000000000003001 Saliva specimen (specimen) 900000000000448009 +706865011 20020131 1 900000000000207008 119343002 en 900000000000003001 Pancreatic fluid specimen (specimen) 900000000000020002 +706865011 20170731 1 900000000000207008 119343002 en 900000000000003001 Pancreatic fluid specimen (specimen) 900000000000448009 +706870016 20020131 1 900000000000207008 119344008 en 900000000000003001 Specimen from genital system (specimen) 900000000000020002 +706870016 20170731 1 900000000000207008 119344008 en 900000000000003001 Specimen from genital system (specimen) 900000000000448009 +706881018 20020131 1 900000000000207008 119345009 en 900000000000003001 Menstrual blood specimen (specimen) 900000000000020002 +706881018 20170731 1 900000000000207008 119345009 en 900000000000003001 Menstrual blood specimen (specimen) 900000000000448009 +706891012 20020131 1 900000000000207008 119346005 en 900000000000003001 Egg yolk specimen (specimen) 900000000000020002 +706891012 20170731 1 900000000000207008 119346005 en 900000000000003001 Egg yolk specimen (specimen) 900000000000448009 +706898018 20020131 1 900000000000207008 119347001 en 900000000000003001 Seminal fluid specimen (specimen) 900000000000020002 +706898018 20170731 1 900000000000207008 119347001 en 900000000000003001 Seminal fluid specimen (specimen) 900000000000448009 +706899014 20020131 1 900000000000207008 119348006 en 900000000000003001 Seminal plasma specimen (specimen) 900000000000020002 +706899014 20170731 1 900000000000207008 119348006 en 900000000000003001 Seminal plasma specimen (specimen) 900000000000448009 +706901017 20020131 1 900000000000207008 119349003 en 900000000000003001 Spermatozoa specimen (specimen) 900000000000020002 +706901017 20170731 1 900000000000207008 119349003 en 900000000000003001 Spermatozoa specimen (specimen) 900000000000448009 +706909015 20020131 1 900000000000207008 119350003 en 900000000000003001 Calculus specimen (specimen) 900000000000020002 +706909015 20170731 1 900000000000207008 119350003 en 900000000000003001 Calculus specimen (specimen) 900000000000448009 +706921016 20020131 1 900000000000207008 119351004 en 900000000000003001 Erythrocyte specimen (specimen) 900000000000020002 +706921016 20170731 1 900000000000207008 119351004 en 900000000000003001 Erythrocyte specimen (specimen) 900000000000448009 +706930012 20020131 1 900000000000207008 119352006 en 900000000000003001 Macrophage specimen (specimen) 900000000000020002 +706930012 20170731 1 900000000000207008 119352006 en 900000000000003001 Macrophage specimen (specimen) 900000000000448009 +706940010 20020131 1 900000000000207008 119353001 en 900000000000003001 Lymphocyte specimen (specimen) 900000000000020002 +706940010 20170731 1 900000000000207008 119353001 en 900000000000003001 Lymphocyte specimen (specimen) 900000000000448009 +706954019 20020131 1 900000000000207008 119355008 en 900000000000003001 Polymorphonuclear neutrophil specimen (specimen) 900000000000020002 +706954019 20170731 1 900000000000207008 119355008 en 900000000000003001 Polymorphonuclear neutrophil specimen (specimen) 900000000000448009 +706964011 20020131 1 900000000000207008 119356009 en 900000000000003001 Eosinophil specimen (specimen) 900000000000020002 +706964011 20170731 1 900000000000207008 119356009 en 900000000000003001 Eosinophil specimen (specimen) 900000000000448009 +706974014 20020131 1 900000000000207008 119357000 en 900000000000003001 Basophil specimen (specimen) 900000000000020002 +706974014 20170731 1 900000000000207008 119357000 en 900000000000003001 Basophil specimen (specimen) 900000000000448009 +706985011 20020131 1 900000000000207008 119358005 en 900000000000003001 Platelet specimen (specimen) 900000000000020002 +706985011 20170731 1 900000000000207008 119358005 en 900000000000003001 Platelet specimen (specimen) 900000000000448009 +706996015 20020131 1 900000000000207008 119359002 en 900000000000003001 Bone marrow specimen (specimen) 900000000000020002 +706996015 20170731 1 900000000000207008 119359002 en 900000000000003001 Bone marrow specimen (specimen) 900000000000448009 +707016010 20020131 1 900000000000207008 119361006 en 900000000000003001 Plasma specimen (specimen) 900000000000020002 +707016010 20170731 1 900000000000207008 119361006 en 900000000000003001 Plasma specimen (specimen) 900000000000448009 +707027012 20020131 1 900000000000207008 119362004 en 900000000000003001 Platelet poor plasma specimen (specimen) 900000000000020002 +707027012 20170731 1 900000000000207008 119362004 en 900000000000003001 Platelet poor plasma specimen (specimen) 900000000000448009 +707038012 20020131 1 900000000000207008 119363009 en 900000000000003001 Platelet rich plasma specimen (specimen) 900000000000020002 +707038012 20170731 1 900000000000207008 119363009 en 900000000000003001 Platelet rich plasma specimen (specimen) 900000000000448009 +707049018 20020131 1 900000000000207008 119364003 en 900000000000003001 Serum specimen (specimen) 900000000000020002 +707049018 20170731 1 900000000000207008 119364003 en 900000000000003001 Serum specimen (specimen) 900000000000448009 +707060010 20020131 1 900000000000207008 119365002 en 900000000000003001 Specimen from wound (specimen) 900000000000020002 +707060010 20170731 1 900000000000207008 119365002 en 900000000000003001 Specimen from wound (specimen) 900000000000448009 +707071011 20020131 1 900000000000207008 119366001 en 900000000000003001 Specimen from wound abscess (specimen) 900000000000020002 +707071011 20170731 1 900000000000207008 119366001 en 900000000000003001 Specimen from wound abscess (specimen) 900000000000448009 +707081010 20020131 1 900000000000207008 119367005 en 900000000000003001 Specimen from burn injury (specimen) 900000000000020002 +707081010 20170731 1 900000000000207008 119367005 en 900000000000003001 Specimen from burn injury (specimen) 900000000000448009 +707092011 20020131 1 900000000000207008 119368000 en 900000000000003001 Specimen from cyst (specimen) 900000000000020002 +707092011 20170731 1 900000000000207008 119368000 en 900000000000003001 Specimen from cyst (specimen) 900000000000448009 +707103012 20020131 1 900000000000207008 119369008 en 900000000000003001 Specimen from ulcer (specimen) 900000000000020002 +707103012 20170731 1 900000000000207008 119369008 en 900000000000003001 Specimen from ulcer (specimen) 900000000000448009 +707114010 20020131 1 900000000000207008 119370009 en 900000000000003001 Specimen from fistula (specimen) 900000000000020002 +707114010 20170731 1 900000000000207008 119370009 en 900000000000003001 Specimen from fistula (specimen) 900000000000448009 +707122015 20020131 1 900000000000207008 119371008 en 900000000000003001 Specimen from abscess (specimen) 900000000000020002 +707122015 20170731 1 900000000000207008 119371008 en 900000000000003001 Specimen from abscess (specimen) 900000000000448009 +707144013 20020131 1 900000000000207008 119373006 en 900000000000003001 Amniotic fluid specimen (specimen) 900000000000020002 +707144013 20170731 1 900000000000207008 119373006 en 900000000000003001 Amniotic fluid specimen (specimen) 900000000000448009 +707178019 20020131 1 900000000000207008 119376003 en 900000000000003001 Tissue specimen (specimen) 900000000000020002 +707178019 20170731 1 900000000000207008 119376003 en 900000000000003001 Tissue specimen (specimen) 900000000000448009 +707188018 20020131 1 900000000000207008 119377007 en 900000000000003001 Myocardial specimen (specimen) 900000000000020002 +707188018 20170731 1 900000000000207008 119377007 en 900000000000003001 Myocardial specimen (specimen) 900000000000448009 +707199016 20020131 1 900000000000207008 119378002 en 900000000000003001 Endocardial specimen (specimen) 900000000000020002 +707199016 20170731 1 900000000000207008 119378002 en 900000000000003001 Endocardial specimen (specimen) 900000000000448009 +707210010 20020131 1 900000000000207008 119379005 en 900000000000003001 Specimen from stomach (specimen) 900000000000020002 +707210010 20170731 1 900000000000207008 119379005 en 900000000000003001 Specimen from stomach (specimen) 900000000000448009 +707222013 20020131 1 900000000000207008 119380008 en 900000000000003001 Specimen from small intestine (specimen) 900000000000020002 +707222013 20170731 1 900000000000207008 119380008 en 900000000000003001 Specimen from small intestine (specimen) 900000000000448009 +707233011 20020131 1 900000000000207008 119381007 en 900000000000003001 Specimen from large intestine (specimen) 900000000000020002 +707233011 20170731 1 900000000000207008 119381007 en 900000000000003001 Specimen from large intestine (specimen) 900000000000448009 +707236015 20020131 1 900000000000207008 119382000 en 900000000000003001 Specimen from colon (specimen) 900000000000020002 +707236015 20170731 1 900000000000207008 119382000 en 900000000000003001 Specimen from colon (specimen) 900000000000448009 +707240012 20020131 1 900000000000207008 119383005 en 900000000000003001 Specimen from liver (specimen) 900000000000020002 +707240012 20170731 1 900000000000207008 119383005 en 900000000000003001 Specimen from liver (specimen) 900000000000448009 +707250013 20020131 1 900000000000207008 119384004 en 900000000000003001 Specimen from right fallopian tube (specimen) 900000000000020002 +707250013 20170731 1 900000000000207008 119384004 en 900000000000003001 Specimen from right fallopian tube (specimen) 900000000000448009 +707257011 20020131 1 900000000000207008 119385003 en 900000000000003001 Specimen from left fallopian tube (specimen) 900000000000020002 +707257011 20170731 1 900000000000207008 119385003 en 900000000000003001 Specimen from left fallopian tube (specimen) 900000000000448009 +707258018 20020131 1 900000000000207008 119386002 en 900000000000003001 Specimen from prostate (specimen) 900000000000020002 +707258018 20170731 1 900000000000207008 119386002 en 900000000000003001 Specimen from prostate (specimen) 900000000000448009 +707261017 20020131 1 900000000000207008 119388001 en 900000000000003001 Specimen from internal nose (specimen) 900000000000020002 +707261017 20170731 1 900000000000207008 119388001 en 900000000000003001 Specimen from internal nose (specimen) 900000000000448009 +707262012 20020131 1 900000000000207008 119389009 en 900000000000003001 Specimen from throat (specimen) 900000000000020002 +707262012 20170731 1 900000000000207008 119389009 en 900000000000003001 Specimen from throat (specimen) 900000000000448009 +707264013 20020131 1 900000000000207008 119390000 en 900000000000003001 Specimen from trachea (specimen) 900000000000020002 +707264013 20170731 1 900000000000207008 119390000 en 900000000000003001 Specimen from trachea (specimen) 900000000000448009 +707266010 20020131 1 900000000000207008 119391001 en 900000000000003001 Specimen from bronchus (specimen) 900000000000020002 +707266010 20170731 1 900000000000207008 119391001 en 900000000000003001 Specimen from bronchus (specimen) 900000000000448009 +707267018 20020131 1 900000000000207008 119392008 en 900000000000003001 Specimen from anus (specimen) 900000000000020002 +707267018 20170731 1 900000000000207008 119392008 en 900000000000003001 Specimen from anus (specimen) 900000000000448009 +707268011 20020131 1 900000000000207008 119393003 en 900000000000003001 Specimen from urethra (specimen) 900000000000020002 +707268011 20170731 1 900000000000207008 119393003 en 900000000000003001 Specimen from urethra (specimen) 900000000000448009 +707269015 20020131 1 900000000000207008 119394009 en 900000000000003001 Specimen from vagina (specimen) 900000000000020002 +707269015 20170731 1 900000000000207008 119394009 en 900000000000003001 Specimen from vagina (specimen) 900000000000448009 +707270019 20020131 1 900000000000207008 119395005 en 900000000000003001 Specimen from uterine cervix (specimen) 900000000000020002 +707270019 20170731 1 900000000000207008 119395005 en 900000000000003001 Specimen from uterine cervix (specimen) 900000000000448009 +707275012 20020131 1 900000000000207008 119396006 en 900000000000003001 Specimen from endometrium (specimen) 900000000000020002 +707275012 20170731 1 900000000000207008 119396006 en 900000000000003001 Specimen from endometrium (specimen) 900000000000448009 +707285013 20020131 1 900000000000207008 119397002 en 900000000000003001 Specimen from penis (specimen) 900000000000020002 +707285013 20170731 1 900000000000207008 119397002 en 900000000000003001 Specimen from penis (specimen) 900000000000448009 +707295018 20020131 1 900000000000207008 119398007 en 900000000000003001 Specimen from brain (specimen) 900000000000020002 +707295018 20170731 1 900000000000207008 119398007 en 900000000000003001 Specimen from brain (specimen) 900000000000448009 +707305014 20020131 1 900000000000207008 119399004 en 900000000000003001 Specimen from eye (specimen) 900000000000020002 +707305014 20170731 1 900000000000207008 119399004 en 900000000000003001 Specimen from eye (specimen) 900000000000448009 +707317011 20020131 1 900000000000207008 119400006 en 900000000000003001 Specimen from cornea (specimen) 900000000000020002 +707317011 20170731 1 900000000000207008 119400006 en 900000000000003001 Specimen from cornea (specimen) 900000000000448009 +707328010 20020131 1 900000000000207008 119401005 en 900000000000003001 Specimen from conjunctiva (specimen) 900000000000020002 +707328010 20170731 1 900000000000207008 119401005 en 900000000000003001 Specimen from conjunctiva (specimen) 900000000000448009 +707345017 20020131 1 900000000000207008 119403008 en 900000000000003001 Specimen from placenta (specimen) 900000000000020002 +707345017 20170731 1 900000000000207008 119403008 en 900000000000003001 Specimen from placenta (specimen) 900000000000448009 +709169018 20020131 1 900000000000207008 312494007 en 900000000000003001 Vaginal vault smear sample (specimen) 900000000000020002 +709169018 20170731 1 900000000000207008 312494007 en 900000000000003001 Vaginal vault smear sample (specimen) 900000000000448009 +709169018 20220630 0 900000000000207008 312494007 en 900000000000003001 Vaginal vault smear sample (specimen) 900000000000448009 +723843014 20020131 1 900000000000207008 122550002 en 900000000000003001 Specimen obtained by fine needle aspiration procedure (specimen) 900000000000020002 +723843014 20170731 1 900000000000207008 122550002 en 900000000000003001 Specimen obtained by fine needle aspiration procedure (specimen) 900000000000448009 +723845019 20020131 1 900000000000207008 122551003 en 900000000000003001 Peripheral blood specimen (specimen) 900000000000020002 +723845019 20170731 1 900000000000207008 122551003 en 900000000000003001 Peripheral blood specimen (specimen) 900000000000448009 +723846018 20020131 1 900000000000207008 122552005 en 900000000000003001 Arterial blood specimen (specimen) 900000000000020002 +723846018 20170731 1 900000000000207008 122552005 en 900000000000003001 Arterial blood specimen (specimen) 900000000000448009 +723847010 20020131 1 900000000000207008 122553000 en 900000000000003001 Blood specimen obtained from umbilicus (specimen) 900000000000020002 +723847010 20170731 1 900000000000207008 122553000 en 900000000000003001 Blood specimen obtained from umbilicus (specimen) 900000000000448009 +723848017 20020131 1 900000000000207008 122554006 en 900000000000003001 Capillary blood specimen (specimen) 900000000000020002 +723848017 20170731 1 900000000000207008 122554006 en 900000000000003001 Capillary blood specimen (specimen) 900000000000448009 +723850013 20020131 1 900000000000207008 122555007 en 900000000000003001 Venous blood specimen (specimen) 900000000000020002 +723850013 20170731 1 900000000000207008 122555007 en 900000000000003001 Venous blood specimen (specimen) 900000000000448009 +723851012 20020131 1 900000000000207008 122556008 en 900000000000003001 Cord blood specimen (specimen) 900000000000020002 +723851012 20170731 1 900000000000207008 122556008 en 900000000000003001 Cord blood specimen (specimen) 900000000000448009 +723852017 20020131 1 900000000000207008 122557004 en 900000000000003001 Cord blood specimen from fetus (specimen) 900000000000020002 +723852017 20170731 1 900000000000207008 122557004 en 900000000000003001 Cord blood specimen from fetus (specimen) 900000000000448009 +723853010 20020131 1 900000000000207008 122558009 en 900000000000003001 Blood specimen from blood product (specimen) 900000000000020002 +723853010 20170731 1 900000000000207008 122558009 en 900000000000003001 Blood specimen from blood product (specimen) 900000000000448009 +723854016 20020131 1 900000000000207008 122559001 en 900000000000003001 Blood specimen from control (specimen) 900000000000020002 +723854016 20170731 1 900000000000207008 122559001 en 900000000000003001 Blood specimen from control (specimen) 900000000000448009 +723856019 20020131 1 900000000000207008 122560006 en 900000000000003001 Blood specimen from blood donor (specimen) 900000000000020002 +723856019 20170731 1 900000000000207008 122560006 en 900000000000003001 Blood specimen from blood donor (specimen) 900000000000448009 +723858018 20020131 1 900000000000207008 122561005 en 900000000000003001 Blood specimen from patient (specimen) 900000000000020002 +723858018 20170731 1 900000000000207008 122561005 en 900000000000003001 Blood specimen from patient (specimen) 900000000000448009 +723859014 20020131 1 900000000000207008 122562003 en 900000000000003001 Blood specimen from newborn (specimen) 900000000000020002 +723859014 20170731 1 900000000000207008 122562003 en 900000000000003001 Blood specimen from newborn (specimen) 900000000000448009 +723860016 20020131 1 900000000000207008 122563008 en 900000000000003001 Blood bag specimen, from patient (specimen) 900000000000020002 +723860016 20170731 1 900000000000207008 122563008 en 900000000000003001 Blood bag specimen, from patient (specimen) 900000000000448009 +723860016 20210131 0 900000000000207008 122563008 en 900000000000003001 Blood bag specimen, from patient (specimen) 900000000000448009 +723861017 20020131 1 900000000000207008 122564002 en 900000000000003001 Blood bag specimen, from blood product (specimen) 900000000000020002 +723861017 20170731 1 900000000000207008 122564002 en 900000000000003001 Blood bag specimen, from blood product (specimen) 900000000000448009 +723861017 20210131 0 900000000000207008 122564002 en 900000000000003001 Blood bag specimen, from blood product (specimen) 900000000000448009 +723862012 20020131 1 900000000000207008 122565001 en 900000000000003001 Urinary catheter specimen (specimen) 900000000000020002 +723862012 20170731 1 900000000000207008 122565001 en 900000000000003001 Urinary catheter specimen (specimen) 900000000000448009 +723863019 20020131 1 900000000000207008 122566000 en 900000000000003001 Fluid specimen from wound (specimen) 900000000000020002 +723863019 20170731 1 900000000000207008 122566000 en 900000000000003001 Fluid specimen from wound (specimen) 900000000000448009 +723864013 20020131 1 900000000000207008 122567009 en 900000000000003001 Urine sediment specimen (specimen) 900000000000020002 +723864013 20170731 1 900000000000207008 122567009 en 900000000000003001 Urine sediment specimen (specimen) 900000000000448009 +723865014 20020131 1 900000000000207008 122568004 en 900000000000003001 Exudate specimen from wound (specimen) 900000000000020002 +723865014 20170731 1 900000000000207008 122568004 en 900000000000003001 Exudate specimen from wound (specimen) 900000000000448009 +723866010 20020131 1 900000000000207008 122569007 en 900000000000003001 Sweat specimen (specimen) 900000000000020002 +723866010 20170731 1 900000000000207008 122569007 en 900000000000003001 Sweat specimen (specimen) 900000000000448009 +723870019 20020131 1 900000000000207008 122571007 en 900000000000003001 Pericardial fluid specimen (specimen) 900000000000020002 +723870019 20170731 1 900000000000207008 122571007 en 900000000000003001 Pericardial fluid specimen (specimen) 900000000000448009 +723871015 20020131 1 900000000000207008 122572000 en 900000000000003001 Vomitus specimen (specimen) 900000000000020002 +723871015 20170731 1 900000000000207008 122572000 en 900000000000003001 Vomitus specimen (specimen) 900000000000448009 +723872010 20020131 1 900000000000207008 122573005 en 900000000000003001 Gastric contents specimen (specimen) 900000000000020002 +723872010 20170731 1 900000000000207008 122573005 en 900000000000003001 Gastric contents specimen (specimen) 900000000000448009 +723873017 20020131 1 900000000000207008 122574004 en 900000000000003001 Duodenal fluid specimen (specimen) 900000000000020002 +723873017 20170731 1 900000000000207008 122574004 en 900000000000003001 Duodenal fluid specimen (specimen) 900000000000448009 +723875012 20020131 1 900000000000207008 122575003 en 900000000000003001 Urine specimen (specimen) 900000000000020002 +723875012 20170731 1 900000000000207008 122575003 en 900000000000003001 Urine specimen (specimen) 900000000000448009 +723877016 20020131 1 900000000000207008 122576002 en 900000000000003001 Genital mucus specimen (specimen) 900000000000020002 +723877016 20170731 1 900000000000207008 122576002 en 900000000000003001 Genital mucus specimen (specimen) 900000000000448009 +723882011 20020131 1 900000000000207008 122577006 en 900000000000003001 Cervical mucus specimen (specimen) 900000000000020002 +723882011 20170731 1 900000000000207008 122577006 en 900000000000003001 Cervical mucus specimen (specimen) 900000000000448009 +723883018 20020131 1 900000000000207008 122578001 en 900000000000003001 Female genital fluid specimen (specimen) 900000000000020002 +723883018 20170731 1 900000000000207008 122578001 en 900000000000003001 Female genital fluid specimen (specimen) 900000000000448009 +723885013 20020131 1 900000000000207008 122579009 en 900000000000003001 Genital lochia specimen (specimen) 900000000000020002 +723885013 20170731 1 900000000000207008 122579009 en 900000000000003001 Genital lochia specimen (specimen) 900000000000448009 +723887017 20020131 1 900000000000207008 122580007 en 900000000000003001 Cerumen specimen (specimen) 900000000000020002 +723887017 20170731 1 900000000000207008 122580007 en 900000000000003001 Cerumen specimen (specimen) 900000000000448009 +723889019 20020131 1 900000000000207008 122581006 en 900000000000003001 Erythrocyte specimen from blood donor (specimen) 900000000000020002 +723889019 20170731 1 900000000000207008 122581006 en 900000000000003001 Erythrocyte specimen from blood donor (specimen) 900000000000448009 +723890011 20020131 1 900000000000207008 122582004 en 900000000000003001 Erythrocyte specimen from blood product (specimen) 900000000000020002 +723890011 20170731 1 900000000000207008 122582004 en 900000000000003001 Erythrocyte specimen from blood product (specimen) 900000000000448009 +723891010 20020131 1 900000000000207008 122583009 en 900000000000003001 Erythrocyte specimen from patient (specimen) 900000000000020002 +723891010 20170731 1 900000000000207008 122583009 en 900000000000003001 Erythrocyte specimen from patient (specimen) 900000000000448009 +723892015 20020131 1 900000000000207008 122584003 en 900000000000003001 Leukocyte specimen from patient (specimen) 900000000000020002 +723892015 20170731 1 900000000000207008 122584003 en 900000000000003001 Leukocyte specimen from patient (specimen) 900000000000448009 +723893013 20020131 1 900000000000207008 122585002 en 900000000000003001 Leukocyte specimen from control (specimen) 900000000000020002 +723893013 20170731 1 900000000000207008 122585002 en 900000000000003001 Leukocyte specimen from control (specimen) 900000000000448009 +723895018 20020131 1 900000000000207008 122587005 en 900000000000003001 Platelet poor plasma specimen from control (specimen) 900000000000020002 +723895018 20170731 1 900000000000207008 122587005 en 900000000000003001 Platelet poor plasma specimen from control (specimen) 900000000000448009 +723897014 20020131 1 900000000000207008 122588000 en 900000000000003001 Platelet poor plasma specimen from patient (specimen) 900000000000020002 +723897014 20170731 1 900000000000207008 122588000 en 900000000000003001 Platelet poor plasma specimen from patient (specimen) 900000000000448009 +723898016 20020131 1 900000000000207008 122589008 en 900000000000003001 Serum specimen from blood donor (specimen) 900000000000020002 +723898016 20170731 1 900000000000207008 122589008 en 900000000000003001 Serum specimen from blood donor (specimen) 900000000000448009 +723901015 20020131 1 900000000000207008 122590004 en 900000000000003001 Serum specimen from patient (specimen) 900000000000020002 +723901015 20170731 1 900000000000207008 122590004 en 900000000000003001 Serum specimen from patient (specimen) 900000000000448009 +723902010 20020131 1 900000000000207008 122591000 en 900000000000003001 Serum specimen from blood product (specimen) 900000000000020002 +723902010 20170731 1 900000000000207008 122591000 en 900000000000003001 Serum specimen from blood product (specimen) 900000000000448009 +723903017 20020131 1 900000000000207008 122592007 en 900000000000003001 Acellular blood (serum or plasma) specimen (specimen) 900000000000020002 +723903017 20170731 1 900000000000207008 122592007 en 900000000000003001 Acellular blood (serum or plasma) specimen (specimen) 900000000000448009 +723904011 20020131 1 900000000000207008 122593002 en 900000000000003001 Tissue specimen obtained from ulcer (specimen) 900000000000020002 +723904011 20170731 1 900000000000207008 122593002 en 900000000000003001 Tissue specimen obtained from ulcer (specimen) 900000000000448009 +723905012 20020131 1 900000000000207008 122594008 en 900000000000003001 Tears specimen (specimen) 900000000000020002 +723905012 20170731 1 900000000000207008 122594008 en 900000000000003001 Tears specimen (specimen) 900000000000448009 +723906013 20020131 1 900000000000207008 122595009 en 900000000000003001 Specimen from breast obtained by total mastectomy (specimen) 900000000000020002 +723906013 20170731 1 900000000000207008 122595009 en 900000000000003001 Specimen from breast obtained by total mastectomy (specimen) 900000000000448009 +723908014 20020131 1 900000000000207008 122596005 en 900000000000003001 Specimen from breast obtained by complete excision of lesion, less than total mastectomy (specimen) 900000000000020002 +723908014 20170731 1 900000000000207008 122596005 en 900000000000003001 Specimen from breast obtained by complete excision of lesion, less than total mastectomy (specimen) 900000000000448009 +723909018 20020131 1 900000000000207008 122597001 en 900000000000003001 Specimen from breast obtained by complete excision, less than total mastectomy, with axillary contents (specimen) 900000000000020002 +723909018 20170731 1 900000000000207008 122597001 en 900000000000003001 Specimen from breast obtained by complete excision, less than total mastectomy, with axillary contents (specimen) 900000000000448009 +723910011 20020131 1 900000000000207008 122598006 en 900000000000003001 Specimen from breast obtained by complete excision, less than total mastectomy, without axillary contents (specimen) 900000000000020002 +723910011 20170731 1 900000000000207008 122598006 en 900000000000003001 Specimen from breast obtained by complete excision, less than total mastectomy, without axillary contents (specimen) 900000000000448009 +723911010 20020131 1 900000000000207008 122599003 en 900000000000003001 Specimen from breast obtained by radical mastectomy (specimen) 900000000000020002 +723911010 20170731 1 900000000000207008 122599003 en 900000000000003001 Specimen from breast obtained by radical mastectomy (specimen) 900000000000448009 +723913013 20020131 1 900000000000207008 122600000 en 900000000000003001 Specimen from breast obtained by modified radical mastectomy (specimen) 900000000000020002 +723913013 20170731 1 900000000000207008 122600000 en 900000000000003001 Specimen from breast obtained by modified radical mastectomy (specimen) 900000000000448009 +723916017 20020131 1 900000000000207008 122601001 en 900000000000003001 Specimen from breast obtained by biopsy (specimen) 900000000000020002 +723916017 20170731 1 900000000000207008 122601001 en 900000000000003001 Specimen from breast obtained by biopsy (specimen) 900000000000448009 +723917014 20020131 1 900000000000207008 122602008 en 900000000000003001 Tissue specimen from biopsy of upper aerodigestive tract (specimen) 900000000000020002 +723917014 20170731 1 900000000000207008 122602008 en 900000000000003001 Tissue specimen from biopsy of upper aerodigestive tract (specimen) 900000000000448009 +723919012 20020131 1 900000000000207008 122604009 en 900000000000003001 Specimen from lung obtained by wedge resection (specimen) 900000000000020002 +723919012 20170731 1 900000000000207008 122604009 en 900000000000003001 Specimen from lung obtained by wedge resection (specimen) 900000000000448009 +723920018 20020131 1 900000000000207008 122605005 en 900000000000003001 Specimen from lung obtained by segmentectomy (specimen) 900000000000020002 +723920018 20170731 1 900000000000207008 122605005 en 900000000000003001 Specimen from lung obtained by segmentectomy (specimen) 900000000000448009 +723921019 20020131 1 900000000000207008 122606006 en 900000000000003001 Specimen from lung obtained by lobectomy (specimen) 900000000000020002 +723921019 20170731 1 900000000000207008 122606006 en 900000000000003001 Specimen from lung obtained by lobectomy (specimen) 900000000000448009 +723922014 20020131 1 900000000000207008 122607002 en 900000000000003001 Specimen from lung obtained by pneumonectomy (specimen) 900000000000020002 +723922014 20170731 1 900000000000207008 122607002 en 900000000000003001 Specimen from lung obtained by pneumonectomy (specimen) 900000000000448009 +723923016 20020131 1 900000000000207008 122608007 en 900000000000003001 Specimen from lung obtained by major airway resection (specimen) 900000000000020002 +723923016 20170731 1 900000000000207008 122608007 en 900000000000003001 Specimen from lung obtained by major airway resection (specimen) 900000000000448009 +723924010 20020131 1 900000000000207008 122609004 en 900000000000003001 Specimen from lung obtained by bronchial washing procedure (specimen) 900000000000020002 +723924010 20170731 1 900000000000207008 122609004 en 900000000000003001 Specimen from lung obtained by bronchial washing procedure (specimen) 900000000000448009 +723926012 20020131 1 900000000000207008 122610009 en 900000000000003001 Specimen from lung obtained by biopsy (specimen) 900000000000020002 +723926012 20170731 1 900000000000207008 122610009 en 900000000000003001 Specimen from lung obtained by biopsy (specimen) 900000000000448009 +723928013 20020131 1 900000000000207008 122611008 en 900000000000003001 Specimen from lung obtained by fiberoptic bronchoscopic biopsy (specimen) 900000000000020002 +723928013 20170731 1 900000000000207008 122611008 en 900000000000003001 Specimen from lung obtained by fiberoptic bronchoscopic biopsy (specimen) 900000000000448009 +723930010 20020131 1 900000000000207008 122613006 en 900000000000003001 Specimen from lung obtained by mediastinoscopic biopsy (specimen) 900000000000020002 +723930010 20170731 1 900000000000207008 122613006 en 900000000000003001 Specimen from lung obtained by mediastinoscopic biopsy (specimen) 900000000000448009 +723931014 20020131 1 900000000000207008 122614000 en 900000000000003001 Specimen from lung obtained by fine needle aspiration procedure (specimen) 900000000000020002 +723931014 20170731 1 900000000000207008 122614000 en 900000000000003001 Specimen from lung obtained by fine needle aspiration procedure (specimen) 900000000000448009 +723933012 20020131 1 900000000000207008 122616003 en 900000000000003001 Specimen from pleura obtained by open thoracotomy and biopsy (specimen) 900000000000020002 +723933012 20170731 1 900000000000207008 122616003 en 900000000000003001 Specimen from pleura obtained by open thoracotomy and biopsy (specimen) 900000000000448009 +723934018 20020131 1 900000000000207008 122617007 en 900000000000003001 Specimen from pleura obtained by percutaneous needle biopsy (specimen) 900000000000020002 +723934018 20170731 1 900000000000207008 122617007 en 900000000000003001 Specimen from pleura obtained by percutaneous needle biopsy (specimen) 900000000000448009 +723935017 20020131 1 900000000000207008 122618002 en 900000000000003001 Specimen from pleura obtained by fine needle aspiration procedure (specimen) 900000000000020002 +723935017 20170731 1 900000000000207008 122618002 en 900000000000003001 Specimen from pleura obtained by fine needle aspiration procedure (specimen) 900000000000448009 +723936016 20020131 1 900000000000207008 122619005 en 900000000000003001 Specimen from pleura obtained by thoracentesis (specimen) 900000000000020002 +723936016 20170731 1 900000000000207008 122619005 en 900000000000003001 Specimen from pleura obtained by thoracentesis (specimen) 900000000000448009 +723938015 20020131 1 900000000000207008 122620004 en 900000000000003001 Specimen from pleura obtained by thoracoscopic procedure (specimen) 900000000000020002 +723938015 20170731 1 900000000000207008 122620004 en 900000000000003001 Specimen from pleura obtained by thoracoscopic procedure (specimen) 900000000000448009 +723940013 20020131 1 900000000000207008 122621000 en 900000000000003001 Specimen from pleura obtained by thoracoscopic biopsy (specimen) 900000000000020002 +723940013 20170731 1 900000000000207008 122621000 en 900000000000003001 Specimen from pleura obtained by thoracoscopic biopsy (specimen) 900000000000448009 +723941012 20020131 1 900000000000207008 122622007 en 900000000000003001 Specimen from pleura obtained by lymph node biopsy (specimen) 900000000000020002 +723941012 20170731 1 900000000000207008 122622007 en 900000000000003001 Specimen from pleura obtained by lymph node biopsy (specimen) 900000000000448009 +723942017 20020131 1 900000000000207008 122623002 en 900000000000003001 Specimen from heart obtained by biopsy (specimen) 900000000000020002 +723942017 20170731 1 900000000000207008 122623002 en 900000000000003001 Specimen from heart obtained by biopsy (specimen) 900000000000448009 +723943010 20020131 1 900000000000207008 122624008 en 900000000000003001 Specimen from heart obtained by excisional biopsy of lesion (specimen) 900000000000020002 +723943010 20170731 1 900000000000207008 122624008 en 900000000000003001 Specimen from heart obtained by excisional biopsy of lesion (specimen) 900000000000448009 +723944016 20020131 1 900000000000207008 122625009 en 900000000000003001 Specimen from heart obtained by incisional biopsy (specimen) 900000000000020002 +723944016 20170731 1 900000000000207008 122625009 en 900000000000003001 Specimen from heart obtained by incisional biopsy (specimen) 900000000000448009 +723945015 20020131 1 900000000000207008 122626005 en 900000000000003001 Specimen from heart obtained by fine needle aspiration procedure (specimen) 900000000000020002 +723945015 20170731 1 900000000000207008 122626005 en 900000000000003001 Specimen from heart obtained by fine needle aspiration procedure (specimen) 900000000000448009 +723946019 20020131 1 900000000000207008 122627001 en 900000000000003001 Specimen from gastrointestinal tract obtained by incisional biopsy (specimen) 900000000000020002 +723946019 20170731 1 900000000000207008 122627001 en 900000000000003001 Specimen from gastrointestinal tract obtained by incisional biopsy (specimen) 900000000000448009 +723947011 20020131 1 900000000000207008 122628006 en 900000000000003001 Specimen from esophagus obtained by incisional biopsy (specimen) 900000000000020002 +723947011 20170731 1 900000000000207008 122628006 en 900000000000003001 Specimen from esophagus obtained by incisional biopsy (specimen) 900000000000448009 +723948018 20020131 1 900000000000207008 122629003 en 900000000000003001 Specimen from esophagus obtained by excisional biopsy of lesion (specimen) 900000000000020002 +723948018 20170731 1 900000000000207008 122629003 en 900000000000003001 Specimen from esophagus obtained by excisional biopsy of lesion (specimen) 900000000000448009 +723951013 20020131 1 900000000000207008 122630008 en 900000000000003001 Specimen from esophagus obtained by esophageal resection (specimen) 900000000000020002 +723951013 20170731 1 900000000000207008 122630008 en 900000000000003001 Specimen from esophagus obtained by esophageal resection (specimen) 900000000000448009 +723953011 20020131 1 900000000000207008 122631007 en 900000000000003001 Specimen from esophagus obtained by esophagogastrectomy (specimen) 900000000000020002 +723953011 20170731 1 900000000000207008 122631007 en 900000000000003001 Specimen from esophagus obtained by esophagogastrectomy (specimen) 900000000000448009 +723954017 20020131 1 900000000000207008 122632000 en 900000000000003001 Specimen from stomach obtained by incisional biopsy (specimen) 900000000000020002 +723954017 20170731 1 900000000000207008 122632000 en 900000000000003001 Specimen from stomach obtained by incisional biopsy (specimen) 900000000000448009 +723955016 20020131 1 900000000000207008 122633005 en 900000000000003001 Specimen from stomach obtained by excisional biopsy (polypectomy) of lesion (specimen) 900000000000020002 +723955016 20080731 0 900000000000207008 122633005 en 900000000000003001 Specimen from stomach obtained by excisional biopsy (polypectomy) of lesion (specimen) 900000000000020002 +723956015 20020131 1 900000000000207008 122634004 en 900000000000003001 Specimen from stomach obtained by total gastrectomy (specimen) 900000000000020002 +723956015 20170731 1 900000000000207008 122634004 en 900000000000003001 Specimen from stomach obtained by total gastrectomy (specimen) 900000000000448009 +723957012 20020131 1 900000000000207008 122635003 en 900000000000003001 Specimen from stomach obtained by partial gastrectomy (specimen) 900000000000020002 +723957012 20170731 1 900000000000207008 122635003 en 900000000000003001 Specimen from stomach obtained by partial gastrectomy (specimen) 900000000000448009 +723959010 20020131 1 900000000000207008 122636002 en 900000000000003001 Specimen from proximal stomach obtained by partial gastrectomy (specimen) 900000000000020002 +723959010 20170731 1 900000000000207008 122636002 en 900000000000003001 Specimen from proximal stomach obtained by partial gastrectomy (specimen) 900000000000448009 +723960017 20020131 1 900000000000207008 122637006 en 900000000000003001 Specimen from distal stomach obtained by partial gastrectomy (specimen) 900000000000020002 +723960017 20170731 1 900000000000207008 122637006 en 900000000000003001 Specimen from distal stomach obtained by partial gastrectomy (specimen) 900000000000448009 +723961018 20020131 1 900000000000207008 122638001 en 900000000000003001 Tissue specimen from small intestine (specimen) 900000000000020002 +723961018 20170731 1 900000000000207008 122638001 en 900000000000003001 Tissue specimen from small intestine (specimen) 900000000000448009 +723962013 20020131 1 900000000000207008 122639009 en 900000000000003001 Specimen from duodenum obtained by Whipple resection (specimen) 900000000000020002 +723964014 20020131 1 900000000000207008 122640006 en 900000000000003001 Specimen from jejunum obtained by segmental resection (specimen) 900000000000020002 +723964014 20170731 1 900000000000207008 122640006 en 900000000000003001 Specimen from jejunum obtained by segmental resection (specimen) 900000000000448009 +723966011 20020131 1 900000000000207008 122641005 en 900000000000003001 Specimen from ileum obtained by segmental resection (specimen) 900000000000020002 +723966011 20170731 1 900000000000207008 122641005 en 900000000000003001 Specimen from ileum obtained by segmental resection (specimen) 900000000000448009 +723967019 20020131 1 900000000000207008 122642003 en 900000000000003001 Specimen from distal ileum obtained by right hemicolectomy (specimen) 900000000000020002 +723967019 20170731 1 900000000000207008 122642003 en 900000000000003001 Specimen from distal ileum obtained by right hemicolectomy (specimen) 900000000000448009 +723968012 20020131 1 900000000000207008 122643008 en 900000000000003001 Tissue specimen from large intestine (specimen) 900000000000020002 +723968012 20170731 1 900000000000207008 122643008 en 900000000000003001 Tissue specimen from large intestine (specimen) 900000000000448009 +723969016 20020131 1 900000000000207008 122644002 en 900000000000003001 Specimen from large intestine obtained by incisional biopsy (specimen) 900000000000020002 +723969016 20170731 1 900000000000207008 122644002 en 900000000000003001 Specimen from large intestine obtained by incisional biopsy (specimen) 900000000000448009 +723970015 20020131 1 900000000000207008 122645001 en 900000000000003001 Specimen from large intestine obtained by excisional biopsy (polypectomy) of lesion (specimen) 900000000000020002 +723970015 20080731 0 900000000000207008 122645001 en 900000000000003001 Specimen from large intestine obtained by excisional biopsy (polypectomy) of lesion (specimen) 900000000000020002 +723971016 20020131 1 900000000000207008 122646000 en 900000000000003001 Specimen from large intestine obtained by abdominoperineal resection (specimen) 900000000000020002 +723971016 20170731 1 900000000000207008 122646000 en 900000000000003001 Specimen from large intestine obtained by abdominoperineal resection (specimen) 900000000000448009 +723972011 20020131 1 900000000000207008 122647009 en 900000000000003001 Specimen from large intestine obtained by total abdominal colectomy (specimen) 900000000000020002 +723972011 20170731 1 900000000000207008 122647009 en 900000000000003001 Specimen from large intestine obtained by total abdominal colectomy (specimen) 900000000000448009 +723973018 20020131 1 900000000000207008 122648004 en 900000000000003001 Specimen from colon obtained by right hemicolectomy (specimen) 900000000000020002 +723973018 20170731 1 900000000000207008 122648004 en 900000000000003001 Specimen from colon obtained by right hemicolectomy (specimen) 900000000000448009 +723974012 20020131 1 900000000000207008 122649007 en 900000000000003001 Specimen from colon obtained by transverse colectomy (specimen) 900000000000020002 +723974012 20170731 1 900000000000207008 122649007 en 900000000000003001 Specimen from colon obtained by transverse colectomy (specimen) 900000000000448009 +723977017 20020131 1 900000000000207008 122650007 en 900000000000003001 Specimen from colon obtained by left hemicolectomy (specimen) 900000000000020002 +723977017 20170731 1 900000000000207008 122650007 en 900000000000003001 Specimen from colon obtained by left hemicolectomy (specimen) 900000000000448009 +723979019 20020131 1 900000000000207008 122651006 en 900000000000003001 Specimen from colon obtained by sigmoidectomy (specimen) 900000000000020002 +723979019 20170731 1 900000000000207008 122651006 en 900000000000003001 Specimen from colon obtained by sigmoidectomy (specimen) 900000000000448009 +723980016 20020131 1 900000000000207008 122652004 en 900000000000003001 Specimen from colon obtained by rectal (low anterior) resection (specimen) 900000000000020002 +723980016 20030131 0 900000000000207008 122652004 en 900000000000003001 Specimen from colon obtained by rectal (low anterior) resection (specimen) 900000000000020002 +723981017 20020131 1 900000000000207008 122653009 en 900000000000003001 Specimen from rectum obtained by transanal disk excision (specimen) 900000000000020002 +723981017 20170731 1 900000000000207008 122653009 en 900000000000003001 Specimen from rectum obtained by transanal disk excision (specimen) 900000000000448009 +723982012 20020131 1 900000000000207008 122654003 en 900000000000003001 Specimen from rectum obtained by transanal disk excision, intact (specimen) 900000000000020002 +723982012 20170731 1 900000000000207008 122654003 en 900000000000003001 Specimen from rectum obtained by transanal disk excision, intact (specimen) 900000000000448009 +723985014 20020131 1 900000000000207008 122655002 en 900000000000003001 Specimen from rectum obtained by transanal disk excision, fragmented (specimen) 900000000000020002 +723985014 20170731 1 900000000000207008 122655002 en 900000000000003001 Specimen from rectum obtained by transanal disk excision, fragmented (specimen) 900000000000448009 +723986010 20020131 1 900000000000207008 122656001 en 900000000000003001 Tissue specimen from gall bladder (specimen) 900000000000020002 +723986010 20170731 1 900000000000207008 122656001 en 900000000000003001 Tissue specimen from gall bladder (specimen) 900000000000448009 +723986010 20180131 0 900000000000207008 122656001 en 900000000000003001 Tissue specimen from gall bladder (specimen) 900000000000448009 +723987018 20020131 1 900000000000207008 122657005 en 900000000000003001 Specimen from ampulla of Vater obtained by incisional biopsy (specimen) 900000000000020002 +723988011 20020131 1 900000000000207008 122658000 en 900000000000003001 Specimen from ampulla of Vater obtained by ampullectomy (specimen) 900000000000020002 +723989015 20020131 1 900000000000207008 122659008 en 900000000000003001 Specimen from ampulla of Vater obtained by pancreaticoduodenectomy (specimen) 900000000000020002 +723992016 20020131 1 900000000000207008 122660003 en 900000000000003001 Specimen from ampulla of Vater obtained by pylorus-sparing pancreaticoduodenectomy (specimen) 900000000000020002 +723994015 20020131 1 900000000000207008 122661004 en 900000000000003001 Specimen from pancreas obtained by partial pancreatectomy (specimen) 900000000000020002 +723994015 20170731 1 900000000000207008 122661004 en 900000000000003001 Specimen from pancreas obtained by partial pancreatectomy (specimen) 900000000000448009 +723995019 20020131 1 900000000000207008 122662006 en 900000000000003001 Specimen from pancreatic body obtained by partial resection (specimen) 900000000000020002 +723995019 20170731 1 900000000000207008 122662006 en 900000000000003001 Specimen from pancreatic body obtained by partial resection (specimen) 900000000000448009 +723996018 20020131 1 900000000000207008 122663001 en 900000000000003001 Specimen from pancreatic tail obtained by partial resection (specimen) 900000000000020002 +723996018 20170731 1 900000000000207008 122663001 en 900000000000003001 Specimen from pancreatic tail obtained by partial resection (specimen) 900000000000448009 +723997010 20020131 1 900000000000207008 122664007 en 900000000000003001 Specimen from pancreas obtained by total pancreatectomy (specimen) 900000000000020002 +723997010 20170731 1 900000000000207008 122664007 en 900000000000003001 Specimen from pancreas obtained by total pancreatectomy (specimen) 900000000000448009 +723998017 20020131 1 900000000000207008 122665008 en 900000000000003001 Specimen from pancreas obtained by pancreaticoduodenectomy (Whipple resection) (specimen) 900000000000020002 +723999013 20020131 1 900000000000207008 122666009 en 900000000000003001 Specimen from pancreas obtained by pylorus sparing pancreaticoduodenectomy (specimen) 900000000000020002 +723999013 20170731 1 900000000000207008 122666009 en 900000000000003001 Specimen from pancreas obtained by pylorus sparing pancreaticoduodenectomy (specimen) 900000000000448009 +724000010 20020131 1 900000000000207008 122667000 en 900000000000003001 Specimen from pancreas obtained by incisional biopsy (specimen) 900000000000020002 +724000010 20170731 1 900000000000207008 122667000 en 900000000000003001 Specimen from pancreas obtained by incisional biopsy (specimen) 900000000000448009 +724002019 20020131 1 900000000000207008 122668005 en 900000000000003001 Specimen from urinary tract obtained by transurethral excision (specimen) 900000000000020002 +724002019 20170731 1 900000000000207008 122668005 en 900000000000003001 Specimen from urinary tract obtained by transurethral excision (specimen) 900000000000448009 +724003012 20020131 1 900000000000207008 122669002 en 900000000000003001 Specimen from urinary tract obtained by anterior exenteration (specimen) 900000000000020002 +724003012 20030731 0 900000000000207008 122669002 en 900000000000003001 Specimen from urinary tract obtained by anterior exenteration (specimen) 900000000000020002 +724006016 20020131 1 900000000000207008 122670001 en 900000000000003001 Specimen from kidney obtained by (core) needle biopsy (specimen) 900000000000020002 +724006016 20170731 1 900000000000207008 122670001 en 900000000000003001 Specimen from kidney obtained by (core) needle biopsy (specimen) 900000000000448009 +724008015 20020131 1 900000000000207008 122671002 en 900000000000003001 Specimen from kidney obtained by fine needle aspiration procedure (specimen) 900000000000020002 +724008015 20170731 1 900000000000207008 122671002 en 900000000000003001 Specimen from kidney obtained by fine needle aspiration procedure (specimen) 900000000000448009 +724009011 20020131 1 900000000000207008 122672009 en 900000000000003001 Specimen from kidney obtained by incisional biopsy (specimen) 900000000000020002 +724009011 20170731 1 900000000000207008 122672009 en 900000000000003001 Specimen from kidney obtained by incisional biopsy (specimen) 900000000000448009 +724010018 20020131 1 900000000000207008 122673004 en 900000000000003001 Specimen from kidney obtained by wedge biopsy (specimen) 900000000000020002 +724010018 20170731 1 900000000000207008 122673004 en 900000000000003001 Specimen from kidney obtained by wedge biopsy (specimen) 900000000000448009 +724012014 20020131 1 900000000000207008 122674005 en 900000000000003001 Specimen from right kidney obtained by radical nephrectomy (specimen) 900000000000020002 +724012014 20170731 1 900000000000207008 122674005 en 900000000000003001 Specimen from right kidney obtained by radical nephrectomy (specimen) 900000000000448009 +724014010 20020131 1 900000000000207008 122675006 en 900000000000003001 Specimen from right kidney obtained by radical nephrectomy, without adrenal (specimen) 900000000000020002 +724014010 20100131 0 900000000000207008 122675006 en 900000000000003001 Specimen from right kidney obtained by radical nephrectomy, without adrenal (specimen) 900000000000020002 +724016012 20020131 1 900000000000207008 122676007 en 900000000000003001 Specimen from right kidney obtained by partial nephrectomy (specimen) 900000000000020002 +724016012 20170731 1 900000000000207008 122676007 en 900000000000003001 Specimen from right kidney obtained by partial nephrectomy (specimen) 900000000000448009 +724019017 20020131 1 900000000000207008 122677003 en 900000000000003001 Specimen from right kidney, inferior pole obtained by partial nephrectomy (specimen) 900000000000020002 +724019017 20170731 1 900000000000207008 122677003 en 900000000000003001 Specimen from right kidney, inferior pole obtained by partial nephrectomy (specimen) 900000000000448009 +724020011 20020131 1 900000000000207008 122678008 en 900000000000003001 Specimen from right kidney, middle pole obtained by partial nephrectomy (specimen) 900000000000020002 +724020011 20170731 1 900000000000207008 122678008 en 900000000000003001 Specimen from right kidney, middle pole obtained by partial nephrectomy (specimen) 900000000000448009 +724022015 20020131 1 900000000000207008 122679000 en 900000000000003001 Specimen from right kidney, superior pole obtained by partial nephrectomy (specimen) 900000000000020002 +724022015 20170731 1 900000000000207008 122679000 en 900000000000003001 Specimen from right kidney, superior pole obtained by partial nephrectomy (specimen) 900000000000448009 +724024019 20020131 1 900000000000207008 122680002 en 900000000000003001 Specimen from left kidney obtained by radical nephrectomy (specimen) 900000000000020002 +724024019 20170731 1 900000000000207008 122680002 en 900000000000003001 Specimen from left kidney obtained by radical nephrectomy (specimen) 900000000000448009 +724026017 20020131 1 900000000000207008 122681003 en 900000000000003001 Specimen from left kidney obtained by radical nephrectomy, without adrenal (specimen) 900000000000020002 +724026017 20100131 0 900000000000207008 122681003 en 900000000000003001 Specimen from left kidney obtained by radical nephrectomy, without adrenal (specimen) 900000000000020002 +724027014 20020131 1 900000000000207008 122682005 en 900000000000003001 Specimen from left kidney obtained by partial nephrectomy (specimen) 900000000000020002 +724027014 20170731 1 900000000000207008 122682005 en 900000000000003001 Specimen from left kidney obtained by partial nephrectomy (specimen) 900000000000448009 +724028016 20020131 1 900000000000207008 122683000 en 900000000000003001 Specimen from left kidney, inferior pole obtained by partial nephrectomy (specimen) 900000000000020002 +724028016 20170731 1 900000000000207008 122683000 en 900000000000003001 Specimen from left kidney, inferior pole obtained by partial nephrectomy (specimen) 900000000000448009 +724029012 20020131 1 900000000000207008 122684006 en 900000000000003001 Specimen from left kidney, middle pole obtained by partial nephrectomy (specimen) 900000000000020002 +724029012 20170731 1 900000000000207008 122684006 en 900000000000003001 Specimen from left kidney, middle pole obtained by partial nephrectomy (specimen) 900000000000448009 +724030019 20020131 1 900000000000207008 122685007 en 900000000000003001 Specimen from left kidney, superior pole obtained by partial nephrectomy (specimen) 900000000000020002 +724030019 20170731 1 900000000000207008 122685007 en 900000000000003001 Specimen from left kidney, superior pole obtained by partial nephrectomy (specimen) 900000000000448009 +724031015 20020131 1 900000000000207008 122686008 en 900000000000003001 Specimen from urinary tract obtained by partial cystectomy (specimen) 900000000000020002 +724031015 20030731 0 900000000000207008 122686008 en 900000000000003001 Specimen from urinary tract obtained by partial cystectomy (specimen) 900000000000020002 +724032010 20020131 1 900000000000207008 122687004 en 900000000000003001 Specimen from urinary tract obtained by total cystectomy (specimen) 900000000000020002 +724032010 20030731 0 900000000000207008 122687004 en 900000000000003001 Specimen from urinary tract obtained by total cystectomy (specimen) 900000000000020002 +724034011 20020131 1 900000000000207008 122688009 en 900000000000003001 Specimen from urinary tract obtained by radical cystoprostatectomy (specimen) 900000000000020002 +724034011 20030731 0 900000000000207008 122688009 en 900000000000003001 Specimen from urinary tract obtained by radical cystoprostatectomy (specimen) 900000000000020002 +724035012 20020131 1 900000000000207008 122689001 en 900000000000003001 Specimen from right kidney obtained by radical nephrectomy and adrenalectomy (specimen) 900000000000020002 +724035012 20170731 1 900000000000207008 122689001 en 900000000000003001 Specimen from right kidney obtained by radical nephrectomy and adrenalectomy (specimen) 900000000000448009 +724037016 20020131 1 900000000000207008 122690005 en 900000000000003001 Specimen from left kidney obtained by radical nephrectomy and adrenalectomy (specimen) 900000000000020002 +724037016 20170731 1 900000000000207008 122690005 en 900000000000003001 Specimen from left kidney obtained by radical nephrectomy and adrenalectomy (specimen) 900000000000448009 +724039018 20020131 1 900000000000207008 122691009 en 900000000000003001 Specimen from vagina obtained by incisional biopsy (specimen) 900000000000020002 +724039018 20170731 1 900000000000207008 122691009 en 900000000000003001 Specimen from vagina obtained by incisional biopsy (specimen) 900000000000448009 +724040016 20020131 1 900000000000207008 122692002 en 900000000000003001 Specimen from vagina obtained by excisional biopsy of lesion (specimen) 900000000000020002 +724040016 20170731 1 900000000000207008 122692002 en 900000000000003001 Specimen from vagina obtained by excisional biopsy of lesion (specimen) 900000000000448009 +724042012 20020131 1 900000000000207008 122693007 en 900000000000003001 Specimen from vagina obtained by vaginectomy (specimen) 900000000000020002 +724042012 20170731 1 900000000000207008 122693007 en 900000000000003001 Specimen from vagina obtained by vaginectomy (specimen) 900000000000448009 +724043019 20020131 1 900000000000207008 122694001 en 900000000000003001 Specimen from vagina obtained by radical vaginectomy (specimen) 900000000000020002 +724043019 20170731 1 900000000000207008 122694001 en 900000000000003001 Specimen from vagina obtained by radical vaginectomy (specimen) 900000000000448009 +724045014 20020131 1 900000000000207008 122696004 en 900000000000003001 Specimen from uterus obtained by radical hysterectomy (specimen) 900000000000020002 +724045014 20170731 1 900000000000207008 122696004 en 900000000000003001 Specimen from uterus obtained by radical hysterectomy (specimen) 900000000000448009 +724046010 20020131 1 900000000000207008 122697008 en 900000000000003001 Specimen from uterus obtained by pelvic exenteration (specimen) 900000000000020002 +724046010 20170731 1 900000000000207008 122697008 en 900000000000003001 Specimen from uterus obtained by pelvic exenteration (specimen) 900000000000448009 +724047018 20020131 1 900000000000207008 122698003 en 900000000000003001 Specimen from uterine cervix obtained by incisional biopsy (specimen) 900000000000020002 +724047018 20170731 1 900000000000207008 122698003 en 900000000000003001 Specimen from uterine cervix obtained by incisional biopsy (specimen) 900000000000448009 +724048011 20020131 1 900000000000207008 122699006 en 900000000000003001 Specimen from uterine cervix obtained by excisional biopsy (cone biopsy) of lesion (specimen) 900000000000020002 +724048011 20080731 0 900000000000207008 122699006 en 900000000000003001 Specimen from uterine cervix obtained by excisional biopsy (cone biopsy) of lesion (specimen) 900000000000020002 +724051016 20020131 1 900000000000207008 122700007 en 900000000000003001 Specimen from uterine cervix obtained by hysterectomy (specimen) 900000000000020002 +724051016 20170731 1 900000000000207008 122700007 en 900000000000003001 Specimen from uterine cervix obtained by hysterectomy (specimen) 900000000000448009 +724054012 20020131 1 900000000000207008 122701006 en 900000000000003001 Specimen from uterine cervix obtained by radical hysterectomy (specimen) 900000000000020002 +724054012 20170731 1 900000000000207008 122701006 en 900000000000003001 Specimen from uterine cervix obtained by radical hysterectomy (specimen) 900000000000448009 +724056014 20020131 1 900000000000207008 122702004 en 900000000000003001 Specimen from uterine cervix obtained by pelvic exenteration (specimen) 900000000000020002 +724056014 20170731 1 900000000000207008 122702004 en 900000000000003001 Specimen from uterine cervix obtained by pelvic exenteration (specimen) 900000000000448009 +724057017 20020131 1 900000000000207008 122703009 en 900000000000003001 Specimen from endometrium obtained by curettage (specimen) 900000000000020002 +724057017 20170731 1 900000000000207008 122703009 en 900000000000003001 Specimen from endometrium obtained by curettage (specimen) 900000000000448009 +724058010 20020131 1 900000000000207008 122704003 en 900000000000003001 Specimen from endometrium obtained by biopsy (specimen) 900000000000020002 +724058010 20170731 1 900000000000207008 122704003 en 900000000000003001 Specimen from endometrium obtained by biopsy (specimen) 900000000000448009 +724059019 20020131 1 900000000000207008 122705002 en 900000000000003001 Specimen from endometrium obtained by hysterectomy (specimen) 900000000000020002 +724059019 20170731 1 900000000000207008 122705002 en 900000000000003001 Specimen from endometrium obtained by hysterectomy (specimen) 900000000000448009 +724060012 20020131 1 900000000000207008 122706001 en 900000000000003001 Specimen from endometrium obtained by radical hysterectomy (specimen) 900000000000020002 +724060012 20170731 1 900000000000207008 122706001 en 900000000000003001 Specimen from endometrium obtained by radical hysterectomy (specimen) 900000000000448009 +724061011 20020131 1 900000000000207008 122707005 en 900000000000003001 Specimen from endometrium obtained by pelvic exenteration (specimen) 900000000000020002 +724061011 20170731 1 900000000000207008 122707005 en 900000000000003001 Specimen from endometrium obtained by pelvic exenteration (specimen) 900000000000448009 +724062016 20020131 1 900000000000207008 122708000 en 900000000000003001 Specimen from ovary obtained by biopsy (specimen) 900000000000020002 +724062016 20170731 1 900000000000207008 122708000 en 900000000000003001 Specimen from ovary obtained by biopsy (specimen) 900000000000448009 +724063014 20020131 1 900000000000207008 122709008 en 900000000000003001 Specimen from ovary obtained by incisional biopsy (specimen) 900000000000020002 +724063014 20170731 1 900000000000207008 122709008 en 900000000000003001 Specimen from ovary obtained by incisional biopsy (specimen) 900000000000448009 +724065019 20020131 1 900000000000207008 122710003 en 900000000000003001 Specimen from ovary obtained by resection (specimen) 900000000000020002 +724065019 20170731 1 900000000000207008 122710003 en 900000000000003001 Specimen from ovary obtained by resection (specimen) 900000000000448009 +724067010 20020131 1 900000000000207008 122711004 en 900000000000003001 Specimen from ovary obtained by removal of tumor in fragments (specimen) 900000000000020002 +724067010 20170731 1 900000000000207008 122711004 en 900000000000003001 Specimen from ovary obtained by removal of tumor in fragments (specimen) 900000000000448009 +724068017 20020131 1 900000000000207008 122712006 en 900000000000003001 Specimen from ovary obtained by hysterectomy with salpingo-oophorectomy (specimen) 900000000000020002 +724068017 20170731 1 900000000000207008 122712006 en 900000000000003001 Specimen from ovary obtained by hysterectomy with salpingo-oophorectomy (specimen) 900000000000448009 +724069013 20020131 1 900000000000207008 122713001 en 900000000000003001 Specimen from ovary obtained by subtotal right oophorectomy (specimen) 900000000000020002 +724069013 20170731 1 900000000000207008 122713001 en 900000000000003001 Specimen from ovary obtained by subtotal right oophorectomy (specimen) 900000000000448009 +724070014 20020131 1 900000000000207008 122714007 en 900000000000003001 Specimen from right ovary obtained by oophorectomy (specimen) 900000000000020002 +724070014 20170731 1 900000000000207008 122714007 en 900000000000003001 Specimen from right ovary obtained by oophorectomy (specimen) 900000000000448009 +724071013 20020131 1 900000000000207008 122715008 en 900000000000003001 Specimen from right ovary obtained by salpingo-oophorectomy (specimen) 900000000000020002 +724071013 20170731 1 900000000000207008 122715008 en 900000000000003001 Specimen from right ovary obtained by salpingo-oophorectomy (specimen) 900000000000448009 +724072018 20020131 1 900000000000207008 122716009 en 900000000000003001 Specimen from left ovary obtained by oophorectomy (specimen) 900000000000020002 +724072018 20170731 1 900000000000207008 122716009 en 900000000000003001 Specimen from left ovary obtained by oophorectomy (specimen) 900000000000448009 +724073011 20020131 1 900000000000207008 122717000 en 900000000000003001 Specimen from ovary obtained by subtotal left oophorectomy (specimen) 900000000000020002 +724073011 20170731 1 900000000000207008 122717000 en 900000000000003001 Specimen from ovary obtained by subtotal left oophorectomy (specimen) 900000000000448009 +724074017 20020131 1 900000000000207008 122718005 en 900000000000003001 Specimen from left ovary obtained by salpingo-oophorectomy (specimen) 900000000000020002 +724074017 20170731 1 900000000000207008 122718005 en 900000000000003001 Specimen from left ovary obtained by salpingo-oophorectomy (specimen) 900000000000448009 +724075016 20020131 1 900000000000207008 122719002 en 900000000000003001 Specimen from fallopian tube obtained by hysterectomy with salpingo-oophorectomy (specimen) 900000000000020002 +724075016 20170731 1 900000000000207008 122719002 en 900000000000003001 Specimen from fallopian tube obtained by hysterectomy with salpingo-oophorectomy (specimen) 900000000000448009 +724077012 20020131 1 900000000000207008 122720008 en 900000000000003001 Specimen from fallopian tube obtained by excision of tubal fragments (specimen) 900000000000020002 +724077012 20170731 1 900000000000207008 122720008 en 900000000000003001 Specimen from fallopian tube obtained by excision of tubal fragments (specimen) 900000000000448009 +724079010 20020131 1 900000000000207008 122721007 en 900000000000003001 Specimen from fallopian tube obtained by pelvic exenteration (specimen) 900000000000020002 +724079010 20170731 1 900000000000207008 122721007 en 900000000000003001 Specimen from fallopian tube obtained by pelvic exenteration (specimen) 900000000000448009 +724080013 20020131 1 900000000000207008 122722000 en 900000000000003001 Specimen from right fallopian tube obtained by salpingo-oophorectomy (specimen) 900000000000020002 +724080013 20170731 1 900000000000207008 122722000 en 900000000000003001 Specimen from right fallopian tube obtained by salpingo-oophorectomy (specimen) 900000000000448009 +724081012 20020131 1 900000000000207008 122723005 en 900000000000003001 Specimen from left fallopian tube obtained by salpingo-oophorectomy (specimen) 900000000000020002 +724081012 20170731 1 900000000000207008 122723005 en 900000000000003001 Specimen from left fallopian tube obtained by salpingo-oophorectomy (specimen) 900000000000448009 +724082017 20020131 1 900000000000207008 122724004 en 900000000000003001 Specimen from prostate obtained by enucleation (specimen) 900000000000020002 +724082017 20170731 1 900000000000207008 122724004 en 900000000000003001 Specimen from prostate obtained by enucleation (specimen) 900000000000448009 +724083010 20020131 1 900000000000207008 122725003 en 900000000000003001 Specimen from prostate obtained by radical prostatectomy (specimen) 900000000000020002 +724083010 20170731 1 900000000000207008 122725003 en 900000000000003001 Specimen from prostate obtained by radical prostatectomy (specimen) 900000000000448009 +724084016 20020131 1 900000000000207008 122726002 en 900000000000003001 Specimen from prostate obtained by retropubic resection (specimen) 900000000000020002 +724084016 20170731 1 900000000000207008 122726002 en 900000000000003001 Specimen from prostate obtained by retropubic resection (specimen) 900000000000448009 +724085015 20020131 1 900000000000207008 122727006 en 900000000000003001 Specimen from prostate obtained by suprapubic resection (specimen) 900000000000020002 +724085015 20170731 1 900000000000207008 122727006 en 900000000000003001 Specimen from prostate obtained by suprapubic resection (specimen) 900000000000448009 +724086019 20020131 1 900000000000207008 122728001 en 900000000000003001 Specimen from testis obtained by inguinal exposure with testicular isolation and biopsy (specimen) 900000000000020002 +724086019 20170731 1 900000000000207008 122728001 en 900000000000003001 Specimen from testis obtained by inguinal exposure with testicular isolation and biopsy (specimen) 900000000000448009 +724087011 20020131 1 900000000000207008 122729009 en 900000000000003001 Specimen from testis obtained by transscrotal needle biopsy (specimen) 900000000000020002 +724087011 20170731 1 900000000000207008 122729009 en 900000000000003001 Specimen from testis obtained by transscrotal needle biopsy (specimen) 900000000000448009 +724090017 20020131 1 900000000000207008 122730004 en 900000000000003001 Specimen from testis obtained by transcrotal open biopsy (specimen) 900000000000020002 +724090017 20170731 1 900000000000207008 122730004 en 900000000000003001 Specimen from testis obtained by transcrotal open biopsy (specimen) 900000000000448009 +724093015 20020131 1 900000000000207008 122732007 en 900000000000003001 Specimen from thyroid obtained by lobectomy (specimen) 900000000000020002 +724093015 20170731 1 900000000000207008 122732007 en 900000000000003001 Specimen from thyroid obtained by lobectomy (specimen) 900000000000448009 +724094014 20020131 1 900000000000207008 122733002 en 900000000000003001 Specimen from right lobe of thyroid obtained by lobe resection (specimen) 900000000000020002 +724094014 20170731 1 900000000000207008 122733002 en 900000000000003001 Specimen from right lobe of thyroid obtained by lobe resection (specimen) 900000000000448009 +724095010 20020131 1 900000000000207008 122734008 en 900000000000003001 Specimen from left lobe of thyroid obtained by lobe resection (specimen) 900000000000020002 +724095010 20170731 1 900000000000207008 122734008 en 900000000000003001 Specimen from left lobe of thyroid obtained by lobe resection (specimen) 900000000000448009 +724096011 20020131 1 900000000000207008 122735009 en 900000000000003001 Specimen from thyroid obtained by isthmectomy (specimen) 900000000000020002 +724096011 20170731 1 900000000000207008 122735009 en 900000000000003001 Specimen from thyroid obtained by isthmectomy (specimen) 900000000000448009 +724098012 20020131 1 900000000000207008 122736005 en 900000000000003001 Tissue specimen from placenta (specimen) 900000000000020002 +724098012 20170731 1 900000000000207008 122736005 en 900000000000003001 Tissue specimen from placenta (specimen) 900000000000448009 +724099016 20020131 1 900000000000207008 122737001 en 900000000000003001 Specimen from breast obtained by core needle biopsy (specimen) 900000000000020002 +724099016 20170731 1 900000000000207008 122737001 en 900000000000003001 Specimen from breast obtained by core needle biopsy (specimen) 900000000000448009 +724100012 20020131 1 900000000000207008 122738006 en 900000000000003001 Specimen obtained from breast by stereotactically guided core needle biopsy (specimen) 900000000000020002 +724100012 20170731 1 900000000000207008 122738006 en 900000000000003001 Specimen obtained from breast by stereotactically guided core needle biopsy (specimen) 900000000000448009 +724101011 20020131 1 900000000000207008 122739003 en 900000000000003001 Specimen from breast obtained by incisional biopsy of breast mass (specimen) 900000000000020002 +724101011 20170731 1 900000000000207008 122739003 en 900000000000003001 Specimen from breast obtained by incisional biopsy of breast mass (specimen) 900000000000448009 +724283015 20020131 1 900000000000207008 122877000 en 900000000000003001 Upper respiratory fluid specimen obtained by tracheal aspiration (specimen) 900000000000020002 +724283015 20170731 1 900000000000207008 122877000 en 900000000000003001 Upper respiratory fluid specimen obtained by tracheal aspiration (specimen) 900000000000448009 +724286011 20020131 1 900000000000207008 122879002 en 900000000000003001 Upper gastrointestinal contents specimen (specimen) 900000000000020002 +724286011 20170731 1 900000000000207008 122879002 en 900000000000003001 Upper gastrointestinal contents specimen (specimen) 900000000000448009 +724288012 20020131 1 900000000000207008 122880004 en 900000000000003001 Urine specimen obtained by clean catch procedure (specimen) 900000000000020002 +724288012 20170731 1 900000000000207008 122880004 en 900000000000003001 Urine specimen obtained by clean catch procedure (specimen) 900000000000448009 +724710013 20020131 1 900000000000207008 123038009 en 900000000000003001 Specimen (specimen) 900000000000020002 +724710013 20170731 1 900000000000207008 123038009 en 900000000000003001 Specimen (specimen) 900000000000448009 +731549017 20020131 1 900000000000207008 127456000 en 900000000000003001 Specimen from breast (specimen) 900000000000020002 +731549017 20170731 1 900000000000207008 127456000 en 900000000000003001 Specimen from breast (specimen) 900000000000448009 +731550017 20020131 1 900000000000207008 127457009 en 900000000000003001 Tissue specimen from breast (specimen) 900000000000020002 +731550017 20170731 1 900000000000207008 127457009 en 900000000000003001 Tissue specimen from breast (specimen) 900000000000448009 +731551018 20020131 1 900000000000207008 127458004 en 900000000000003001 Specimen from lung (specimen) 900000000000020002 +731551018 20170731 1 900000000000207008 127458004 en 900000000000003001 Specimen from lung (specimen) 900000000000448009 +731552013 20020131 1 900000000000207008 127459007 en 900000000000003001 Specimen from pleura (specimen) 900000000000020002 +731552013 20170731 1 900000000000207008 127459007 en 900000000000003001 Specimen from pleura (specimen) 900000000000448009 +731553015 20020131 1 900000000000207008 127460002 en 900000000000003001 Tissue specimen from pleura (specimen) 900000000000020002 +731553015 20170731 1 900000000000207008 127460002 en 900000000000003001 Tissue specimen from pleura (specimen) 900000000000448009 +731555010 20020131 1 900000000000207008 127461003 en 900000000000003001 Specimen from pleura obtained by pleurectomy (specimen) 900000000000020002 +731555010 20170731 1 900000000000207008 127461003 en 900000000000003001 Specimen from pleura obtained by pleurectomy (specimen) 900000000000448009 +731556011 20020131 1 900000000000207008 127462005 en 900000000000003001 Specimen from heart (specimen) 900000000000020002 +731556011 20170731 1 900000000000207008 127462005 en 900000000000003001 Specimen from heart (specimen) 900000000000448009 +731557019 20020131 1 900000000000207008 127463000 en 900000000000003001 Specimen from esophagus (specimen) 900000000000020002 +731557019 20170731 1 900000000000207008 127463000 en 900000000000003001 Specimen from esophagus (specimen) 900000000000448009 +731558012 20020131 1 900000000000207008 127464006 en 900000000000003001 Tissue specimen from esophagus (specimen) 900000000000020002 +731558012 20170731 1 900000000000207008 127464006 en 900000000000003001 Tissue specimen from esophagus (specimen) 900000000000448009 +731559016 20020131 1 900000000000207008 127465007 en 900000000000003001 Specimen from gastrointestinal tract (specimen) 900000000000020002 +731559016 20170731 1 900000000000207008 127465007 en 900000000000003001 Specimen from gastrointestinal tract (specimen) 900000000000448009 +731560014 20020131 1 900000000000207008 127466008 en 900000000000003001 Tissue specimen from gastrointestinal tract (specimen) 900000000000020002 +731560014 20170731 1 900000000000207008 127466008 en 900000000000003001 Tissue specimen from gastrointestinal tract (specimen) 900000000000448009 +731561013 20020131 1 900000000000207008 127467004 en 900000000000003001 Specimen from ampulla of Vater (specimen) 900000000000020002 +731562018 20020131 1 900000000000207008 127468009 en 900000000000003001 Tissue specimen from ampulla of Vater (specimen) 900000000000020002 +731563011 20020131 1 900000000000207008 127469001 en 900000000000003001 Specimen from pancreas (specimen) 900000000000020002 +731563011 20170731 1 900000000000207008 127469001 en 900000000000003001 Specimen from pancreas (specimen) 900000000000448009 +731564017 20020131 1 900000000000207008 127470000 en 900000000000003001 Tissue specimen from pancreas (specimen) 900000000000020002 +731564017 20170731 1 900000000000207008 127470000 en 900000000000003001 Tissue specimen from pancreas (specimen) 900000000000448009 +731566015 20020131 1 900000000000207008 127471001 en 900000000000003001 Specimen from urinary tract (specimen) 900000000000020002 +731566015 20170731 1 900000000000207008 127471001 en 900000000000003001 Specimen from urinary tract (specimen) 900000000000448009 +731567012 20020131 1 900000000000207008 127472008 en 900000000000003001 Tissue specimen from urinary tract (specimen) 900000000000020002 +731567012 20170731 1 900000000000207008 127472008 en 900000000000003001 Tissue specimen from urinary tract (specimen) 900000000000448009 +731568019 20020131 1 900000000000207008 127473003 en 900000000000003001 Specimen from kidney (specimen) 900000000000020002 +731568019 20170731 1 900000000000207008 127473003 en 900000000000003001 Specimen from kidney (specimen) 900000000000448009 +731569010 20020131 1 900000000000207008 127474009 en 900000000000003001 Tissue specimen from kidney (specimen) 900000000000020002 +731569010 20170731 1 900000000000207008 127474009 en 900000000000003001 Tissue specimen from kidney (specimen) 900000000000448009 +731571010 20020131 1 900000000000207008 127475005 en 900000000000003001 Tissue specimen from testis (specimen) 900000000000020002 +731571010 20170731 1 900000000000207008 127475005 en 900000000000003001 Tissue specimen from testis (specimen) 900000000000448009 +731573013 20020131 1 900000000000207008 127476006 en 900000000000003001 Specimen from fallopian tube (specimen) 900000000000020002 +731573013 20170731 1 900000000000207008 127476006 en 900000000000003001 Specimen from fallopian tube (specimen) 900000000000448009 +731575018 20020131 1 900000000000207008 127478007 en 900000000000003001 Tissue specimen from thyroid gland (specimen) 900000000000020002 +731575018 20170731 1 900000000000207008 127478007 en 900000000000003001 Tissue specimen from thyroid gland (specimen) 900000000000448009 +731576017 20020131 1 900000000000207008 127479004 en 900000000000003001 Specimen from uterus (specimen) 900000000000020002 +731576017 20170731 1 900000000000207008 127479004 en 900000000000003001 Specimen from uterus (specimen) 900000000000448009 +731577014 20020131 1 900000000000207008 127480001 en 900000000000003001 Tissue specimen from uterus (specimen) 900000000000020002 +731577014 20170731 1 900000000000207008 127480001 en 900000000000003001 Tissue specimen from uterus (specimen) 900000000000448009 +731579012 20020131 1 900000000000207008 127481002 en 900000000000003001 Tissue specimen from uterine cervix (specimen) 900000000000020002 +731579012 20170731 1 900000000000207008 127481002 en 900000000000003001 Tissue specimen from uterine cervix (specimen) 900000000000448009 +731580010 20020131 1 900000000000207008 127482009 en 900000000000003001 Tissue specimen from ovary (specimen) 900000000000020002 +731580010 20170731 1 900000000000207008 127482009 en 900000000000003001 Tissue specimen from ovary (specimen) 900000000000448009 +731581014 20020131 1 900000000000207008 127483004 en 900000000000003001 Tissue specimen from fallopian tube (specimen) 900000000000020002 +731581014 20170731 1 900000000000207008 127483004 en 900000000000003001 Tissue specimen from fallopian tube (specimen) 900000000000448009 +732116019 20020131 1 900000000000207008 128154006 en 900000000000003001 Specimen from testis (specimen) 900000000000020002 +732116019 20170731 1 900000000000207008 128154006 en 900000000000003001 Specimen from testis (specimen) 900000000000448009 +732118018 20020131 1 900000000000207008 128155007 en 900000000000003001 Specimen from ovary (specimen) 900000000000020002 +732118018 20170731 1 900000000000207008 128155007 en 900000000000003001 Specimen from ovary (specimen) 900000000000448009 +732119014 20020131 1 900000000000207008 128156008 en 900000000000003001 Tissue specimen from anus (specimen) 900000000000020002 +732119014 20170731 1 900000000000207008 128156008 en 900000000000003001 Tissue specimen from anus (specimen) 900000000000448009 +732120015 20020131 1 900000000000207008 128157004 en 900000000000003001 Tissue specimen from brain (specimen) 900000000000020002 +732120015 20170731 1 900000000000207008 128157004 en 900000000000003001 Tissue specimen from brain (specimen) 900000000000448009 +732121016 20020131 1 900000000000207008 128158009 en 900000000000003001 Tissue specimen from bronchus (specimen) 900000000000020002 +732121016 20170731 1 900000000000207008 128158009 en 900000000000003001 Tissue specimen from bronchus (specimen) 900000000000448009 +732122011 20020131 1 900000000000207008 128159001 en 900000000000003001 Tissue specimen from colon (specimen) 900000000000020002 +732122011 20170731 1 900000000000207008 128159001 en 900000000000003001 Tissue specimen from colon (specimen) 900000000000448009 +732124012 20020131 1 900000000000207008 128160006 en 900000000000003001 Tissue specimen from conjunctiva (specimen) 900000000000020002 +732124012 20170731 1 900000000000207008 128160006 en 900000000000003001 Tissue specimen from conjunctiva (specimen) 900000000000448009 +732125013 20020131 1 900000000000207008 128161005 en 900000000000003001 Tissue specimen from cornea (specimen) 900000000000020002 +732125013 20170731 1 900000000000207008 128161005 en 900000000000003001 Tissue specimen from cornea (specimen) 900000000000448009 +732126014 20020131 1 900000000000207008 128162003 en 900000000000003001 Tissue specimen from ear (specimen) 900000000000020002 +732126014 20170731 1 900000000000207008 128162003 en 900000000000003001 Tissue specimen from ear (specimen) 900000000000448009 +732127017 20020131 1 900000000000207008 128163008 en 900000000000003001 Tissue specimen from endometrium (specimen) 900000000000020002 +732127017 20170731 1 900000000000207008 128163008 en 900000000000003001 Tissue specimen from endometrium (specimen) 900000000000448009 +732128010 20020131 1 900000000000207008 128164002 en 900000000000003001 Tissue specimen from eye (specimen) 900000000000020002 +732128010 20170731 1 900000000000207008 128164002 en 900000000000003001 Tissue specimen from eye (specimen) 900000000000448009 +732129019 20020131 1 900000000000207008 128165001 en 900000000000003001 Tissue specimen from genital system (specimen) 900000000000020002 +732129019 20170731 1 900000000000207008 128165001 en 900000000000003001 Tissue specimen from genital system (specimen) 900000000000448009 +732130012 20020131 1 900000000000207008 128166000 en 900000000000003001 Tissue specimen from heart (specimen) 900000000000020002 +732130012 20170731 1 900000000000207008 128166000 en 900000000000003001 Tissue specimen from heart (specimen) 900000000000448009 +732131011 20020131 1 900000000000207008 128167009 en 900000000000003001 Tissue specimen from internal nose (specimen) 900000000000020002 +732131011 20170731 1 900000000000207008 128167009 en 900000000000003001 Tissue specimen from internal nose (specimen) 900000000000448009 +732132016 20020131 1 900000000000207008 128168004 en 900000000000003001 Tissue specimen from liver (specimen) 900000000000020002 +732132016 20170731 1 900000000000207008 128168004 en 900000000000003001 Tissue specimen from liver (specimen) 900000000000448009 +732133014 20020131 1 900000000000207008 128169007 en 900000000000003001 Tissue specimen from penis (specimen) 900000000000020002 +732133014 20170731 1 900000000000207008 128169007 en 900000000000003001 Tissue specimen from penis (specimen) 900000000000448009 +732134015 20020131 1 900000000000207008 128170008 en 900000000000003001 Tissue specimen from prostate (specimen) 900000000000020002 +732134015 20170731 1 900000000000207008 128170008 en 900000000000003001 Tissue specimen from prostate (specimen) 900000000000448009 +732136018 20020131 1 900000000000207008 128171007 en 900000000000003001 Tissue specimen from stomach (specimen) 900000000000020002 +732136018 20170731 1 900000000000207008 128171007 en 900000000000003001 Tissue specimen from stomach (specimen) 900000000000448009 +732137010 20020131 1 900000000000207008 128172000 en 900000000000003001 Tissue specimen from throat (specimen) 900000000000020002 +732137010 20170731 1 900000000000207008 128172000 en 900000000000003001 Tissue specimen from throat (specimen) 900000000000448009 +732138017 20020131 1 900000000000207008 128173005 en 900000000000003001 Tissue specimen from trachea (specimen) 900000000000020002 +732138017 20170731 1 900000000000207008 128173005 en 900000000000003001 Tissue specimen from trachea (specimen) 900000000000448009 +732139013 20020131 1 900000000000207008 128174004 en 900000000000003001 Tissue specimen from urethra (specimen) 900000000000020002 +732139013 20170731 1 900000000000207008 128174004 en 900000000000003001 Tissue specimen from urethra (specimen) 900000000000448009 +732141014 20020131 1 900000000000207008 128175003 en 900000000000003001 Tissue specimen from vagina (specimen) 900000000000020002 +732141014 20170731 1 900000000000207008 128175003 en 900000000000003001 Tissue specimen from vagina (specimen) 900000000000448009 +755120018 20020131 1 900000000000207008 363311008 en 900000000000003001 Specimen from digestive system (specimen) 900000000000020002 +755120018 20170731 1 900000000000207008 363311008 en 900000000000003001 Specimen from digestive system (specimen) 900000000000448009 +755139011 20020131 1 900000000000207008 363328006 en 900000000000003001 Tissue specimen from digestive system (specimen) 900000000000020002 +755139011 20170731 1 900000000000207008 363328006 en 900000000000003001 Tissue specimen from digestive system (specimen) 900000000000448009 +755140013 20020131 1 900000000000207008 363329003 en 900000000000003001 Tissue specimen from respiratory system (specimen) 900000000000020002 +755140013 20170731 1 900000000000207008 363329003 en 900000000000003001 Tissue specimen from respiratory system (specimen) 900000000000448009 +774336018 20020131 1 900000000000207008 369611008 en 900000000000003001 Tissue specimen obtained from small intestine by biopsy (specimen) 900000000000020002 +774336018 20170731 1 900000000000207008 369611008 en 900000000000003001 Tissue specimen obtained from small intestine by biopsy (specimen) 900000000000448009 +774338017 20020131 1 900000000000207008 369613006 en 900000000000003001 Tissue specimen obtained for Hodgkin's disease by biopsy (specimen) 900000000000020002 +774339013 20020131 1 900000000000207008 369614000 en 900000000000003001 Tissue specimen obtained from extrahepatic bile ducts by biopsy (specimen) 900000000000020002 +774339013 20170731 1 900000000000207008 369614000 en 900000000000003001 Tissue specimen obtained from extrahepatic bile ducts by biopsy (specimen) 900000000000448009 +774340010 20020131 1 900000000000207008 369615004 en 900000000000003001 Tissue specimen obtained from extrahepatic bile ducts by choledochal cyst resection (specimen) 900000000000020002 +774340010 20170731 1 900000000000207008 369615004 en 900000000000003001 Tissue specimen obtained from extrahepatic bile ducts by choledochal cyst resection (specimen) 900000000000448009 +774341014 20020131 1 900000000000207008 369616003 en 900000000000003001 Tissue specimen obtained from gallbladder by biopsy (specimen) 900000000000020002 +774341014 20170731 1 900000000000207008 369616003 en 900000000000003001 Tissue specimen obtained from gallbladder by biopsy (specimen) 900000000000448009 +774342019 20020131 1 900000000000207008 369617007 en 900000000000003001 Tissue specimen obtained from gallbladder by cholecystectomy with partial hepatectomy (specimen) 900000000000020002 +774342019 20170731 1 900000000000207008 369617007 en 900000000000003001 Tissue specimen obtained from gallbladder by cholecystectomy with partial hepatectomy (specimen) 900000000000448009 +774344018 20020131 1 900000000000207008 369618002 en 900000000000003001 Tissue specimen otained from vulva by biopsy (specimen) 900000000000020002 +774344018 20030731 0 900000000000207008 369618002 en 900000000000003001 Tissue specimen otained from vulva by biopsy (specimen) 900000000000020002 +774894011 20020131 1 900000000000207008 370108001 en 900000000000003001 Extrahepatic bile duct cytologic material (specimen) 900000000000020002 +774894011 20170731 1 900000000000207008 370108001 en 900000000000003001 Extrahepatic bile duct cytologic material (specimen) 900000000000448009 +777171016 20020131 1 900000000000207008 40511003 en 900000000000003001 Eluate (specimen) 900000000000020002 +777171016 20170731 1 900000000000207008 40511003 en 900000000000003001 Eluate (specimen) 900000000000448009 +786040010 20020131 1 900000000000207008 48469005 en 900000000000003001 Cytologic material (specimen) 900000000000020002 +786040010 20170731 1 900000000000207008 48469005 en 900000000000003001 Cytologic material (specimen) 900000000000448009 +1185659018 20020731 1 900000000000207008 110897001 en 900000000000003001 Bone marrow cytological material (cell structure) 900000000000020002 +1185659018 20070731 0 900000000000207008 110897001 en 900000000000003001 Bone marrow cytological material (cell structure) 900000000000020002 +1185660011 20020731 1 900000000000207008 110925004 en 900000000000003001 Cytologic material of mouth (cell structure) 900000000000020002 +1185660011 20070731 0 900000000000207008 110925004 en 900000000000003001 Cytologic material of mouth (cell structure) 900000000000020002 +1197075017 20020731 1 900000000000207008 371780008 en 900000000000003001 Specimen for identification (specimen) 900000000000020002 +1197075017 20170731 1 900000000000207008 371780008 en 900000000000003001 Specimen for identification (specimen) 900000000000448009 +1197077013 20020731 1 900000000000207008 371782000 en 900000000000003001 Human bone for identification (specimen) 900000000000020002 +1197077013 20170731 1 900000000000207008 371782000 en 900000000000003001 Human bone for identification (specimen) 900000000000448009 +1197078015 20020731 1 900000000000207008 371783005 en 900000000000003001 Human tissue for identification (specimen) 900000000000020002 +1197078015 20170731 1 900000000000207008 371783005 en 900000000000003001 Human tissue for identification (specimen) 900000000000448009 +1197079011 20020731 1 900000000000207008 371784004 en 900000000000003001 Body parts for identification (specimen) 900000000000020002 +1197079011 20170731 1 900000000000207008 371784004 en 900000000000003001 Body parts for identification (specimen) 900000000000448009 +1198398015 20020731 1 900000000000207008 373101006 en 900000000000003001 Breast cytologic material obtained by percutaneous core biopsy (specimen) 900000000000020002 +1198398015 20170731 1 900000000000207008 373101006 en 900000000000003001 Breast cytologic material obtained by percutaneous core biopsy (specimen) 900000000000448009 +1198399011 20020731 1 900000000000207008 373102004 en 900000000000003001 Breast tissue obtained by image guided core biopsy (specimen) 900000000000020002 +1198399011 20030131 0 900000000000207008 373102004 en 900000000000003001 Breast tissue obtained by image guided core biopsy (specimen) 900000000000020002 +1198400016 20020731 1 900000000000207008 373103009 en 900000000000003001 Breast cytologic material obtained by incisional biopsy (specimen) 900000000000020002 +1198400016 20170731 1 900000000000207008 373103009 en 900000000000003001 Breast cytologic material obtained by incisional biopsy (specimen) 900000000000448009 +1198489017 20020731 1 900000000000207008 373192005 en 900000000000003001 Lymph node from axillary dissection (specimen) 900000000000020002 +1198489017 20170731 1 900000000000207008 373192005 en 900000000000003001 Lymph node from axillary dissection (specimen) 900000000000448009 +1198490014 20020731 1 900000000000207008 373193000 en 900000000000003001 Lymph node from sentinel lymph node dissection (specimen) 900000000000020002 +1198490014 20170731 1 900000000000207008 373193000 en 900000000000003001 Lymph node from sentinel lymph node dissection (specimen) 900000000000448009 +1199126012 20020731 1 900000000000207008 373826004 en 900000000000003001 Surgical excision sample (specimen) 900000000000020002 +1199126012 20170731 1 900000000000207008 373826004 en 900000000000003001 Surgical excision sample (specimen) 900000000000448009 +1199126012 20220630 0 900000000000207008 373826004 en 900000000000003001 Surgical excision sample (specimen) 900000000000448009 +1210376019 20020731 1 900000000000207008 371780008 en 900000000000013009 Specimen for identification 900000000000020002 +1210376019 20170731 1 900000000000207008 371780008 en 900000000000013009 Specimen for identification 900000000000448009 +1210378018 20020731 1 900000000000207008 371782000 en 900000000000013009 Human bone for identification 900000000000020002 +1210378018 20170731 1 900000000000207008 371782000 en 900000000000013009 Human bone for identification 900000000000448009 +1210379014 20020731 1 900000000000207008 371783005 en 900000000000013009 Human tissue for identification 900000000000020002 +1210379014 20170731 1 900000000000207008 371783005 en 900000000000013009 Human tissue for identification 900000000000448009 +1210380012 20020731 1 900000000000207008 371784004 en 900000000000013009 Body parts for identification 900000000000020002 +1210380012 20170731 1 900000000000207008 371784004 en 900000000000013009 Body parts for identification 900000000000448009 +1211618011 20020731 1 900000000000207008 373101006 en 900000000000013009 Breast cytologic material obtained by percutaneous core biopsy 900000000000020002 +1211618011 20170731 1 900000000000207008 373101006 en 900000000000013009 Breast cytologic material obtained by percutaneous core biopsy 900000000000448009 +1211619015 20020731 1 900000000000207008 373102004 en 900000000000013009 Breast tissue obtained by image guided core biopsy 900000000000020002 +1211619015 20170731 1 900000000000207008 373102004 en 900000000000013009 Breast tissue obtained by image guided core biopsy 900000000000448009 +1211620014 20020731 1 900000000000207008 373103009 en 900000000000013009 Breast cytologic material obtained by incisional biopsy 900000000000020002 +1211620014 20170731 1 900000000000207008 373103009 en 900000000000013009 Breast cytologic material obtained by incisional biopsy 900000000000448009 +1211692011 20020731 1 900000000000207008 373192005 en 900000000000013009 Lymph node from axillary dissection 900000000000020002 +1211692011 20170731 1 900000000000207008 373192005 en 900000000000013009 Lymph node from axillary dissection 900000000000448009 +1211693018 20020731 1 900000000000207008 373193000 en 900000000000013009 Lymph node from sentinel lymph node dissection 900000000000020002 +1211693018 20170731 1 900000000000207008 373193000 en 900000000000013009 Lymph node from sentinel lymph node dissection 900000000000448009 +1212276010 20020731 1 900000000000207008 373826004 en 900000000000013009 Surgical excision sample 900000000000020002 +1212276010 20170731 1 900000000000207008 373826004 en 900000000000013009 Surgical excision sample 900000000000448009 +1215907019 20020731 1 900000000000207008 119339001 en 900000000000013009 Faeces sample 900000000000020002 +1215907019 20170731 1 900000000000207008 119339001 en 900000000000013009 Faeces sample 900000000000448009 +1216000013 20020731 1 900000000000207008 127464006 en 900000000000013009 Oesophageal tissue sample 900000000000020002 +1216000013 20170731 1 900000000000207008 127464006 en 900000000000013009 Oesophageal tissue sample 900000000000448009 +1217410015 20020731 1 900000000000207008 119339001 en 900000000000013009 Feces sample 900000000000020002 +1217410015 20170731 1 900000000000207008 119339001 en 900000000000013009 Feces sample 900000000000448009 +1217503012 20020731 1 900000000000207008 127464006 en 900000000000013009 Esophageal tissue sample 900000000000020002 +1217503012 20170731 1 900000000000207008 127464006 en 900000000000013009 Esophageal tissue sample 900000000000448009 +1220436012 20020731 1 900000000000207008 119297000 en 900000000000013009 Blood sample 900000000000020002 +1220436012 20170731 1 900000000000207008 119297000 en 900000000000013009 Blood sample 900000000000448009 +1220437015 20020731 1 900000000000207008 119307008 en 900000000000013009 Endotracheal secretion sample 900000000000020002 +1220437015 20170731 1 900000000000207008 119307008 en 900000000000013009 Endotracheal secretion sample 900000000000448009 +1220438013 20020731 1 900000000000207008 119307008 en 900000000000013009 Endotracheal fluid sample 900000000000020002 +1220438013 20170731 1 900000000000207008 119307008 en 900000000000013009 Endotracheal fluid sample 900000000000448009 +1220439017 20020731 1 900000000000207008 119307008 en 900000000000013009 Endotracheal aspirate 900000000000020002 +1220439017 20170731 1 900000000000207008 119307008 en 900000000000013009 Endotracheal aspirate 900000000000448009 +1220440015 20020731 1 900000000000207008 119318008 en 900000000000013009 Water sample 900000000000020002 +1220440015 20170731 1 900000000000207008 119318008 en 900000000000013009 Water sample 900000000000448009 +1220441016 20020731 1 900000000000207008 119320006 en 900000000000013009 Foodstuff sample 900000000000020002 +1220441016 20170731 1 900000000000207008 119320006 en 900000000000013009 Foodstuff sample 900000000000448009 +1220442011 20020731 1 900000000000207008 119321005 en 900000000000013009 Milk sample 900000000000020002 +1220442011 20170731 1 900000000000207008 119321005 en 900000000000013009 Milk sample 900000000000448009 +1220443018 20020731 1 900000000000207008 119323008 en 900000000000013009 Pus sample 900000000000020002 +1220443018 20170731 1 900000000000207008 119323008 en 900000000000013009 Pus sample 900000000000448009 +1220444012 20020731 1 900000000000207008 119325001 en 900000000000013009 Skin sample 900000000000020002 +1220444012 20170731 1 900000000000207008 119325001 en 900000000000013009 Skin sample 900000000000448009 +1220445013 20020731 1 900000000000207008 119326000 en 900000000000013009 Hair sample 900000000000020002 +1220445013 20170731 1 900000000000207008 119326000 en 900000000000013009 Hair sample 900000000000448009 +1220446014 20020731 1 900000000000207008 119327009 en 900000000000013009 Nail sample 900000000000020002 +1220446014 20170731 1 900000000000207008 119327009 en 900000000000013009 Nail sample 900000000000448009 +1220447017 20020731 1 900000000000207008 119328004 en 900000000000013009 Maternal milk sample 900000000000020002 +1220447017 20170731 1 900000000000207008 119328004 en 900000000000013009 Maternal milk sample 900000000000448009 +1220448010 20020731 1 900000000000207008 119329007 en 900000000000013009 Colostrum sample 900000000000020002 +1220448010 20170731 1 900000000000207008 119329007 en 900000000000013009 Colostrum sample 900000000000448009 +1220450019 20020731 1 900000000000207008 119333000 en 900000000000013009 Fibroblast sample 900000000000020002 +1220450019 20170731 1 900000000000207008 119333000 en 900000000000013009 Fibroblast sample 900000000000448009 +1220451015 20020731 1 900000000000207008 119334006 en 900000000000013009 Sputum sample 900000000000020002 +1220451015 20170731 1 900000000000207008 119334006 en 900000000000013009 Sputum sample 900000000000448009 +1220452010 20020731 1 900000000000207008 119335007 en 900000000000013009 Sputum - coughed sample 900000000000020002 +1220452010 20170731 1 900000000000207008 119335007 en 900000000000013009 Sputum - coughed sample 900000000000448009 +1220453017 20020731 1 900000000000207008 119339001 en 900000000000013009 Stool sample 900000000000020002 +1220453017 20170731 1 900000000000207008 119339001 en 900000000000013009 Stool sample 900000000000448009 +1220455012 20020731 1 900000000000207008 119340004 en 900000000000013009 Meconium sample 900000000000020002 +1220455012 20170731 1 900000000000207008 119340004 en 900000000000013009 Meconium sample 900000000000448009 +1220456013 20020731 1 900000000000207008 119341000 en 900000000000013009 Bile sample 900000000000020002 +1220456013 20170731 1 900000000000207008 119341000 en 900000000000013009 Bile sample 900000000000448009 +1220457016 20020731 1 900000000000207008 119343002 en 900000000000013009 Pancreatic fluid sample 900000000000020002 +1220457016 20170731 1 900000000000207008 119343002 en 900000000000013009 Pancreatic fluid sample 900000000000448009 +1220458014 20020731 1 900000000000207008 119347001 en 900000000000013009 Sperm sample 900000000000020002 +1220458014 20170731 1 900000000000207008 119347001 en 900000000000013009 Sperm sample 900000000000448009 +1220459018 20020731 1 900000000000207008 119347001 en 900000000000013009 Seminal fluid sample 900000000000020002 +1220459018 20170731 1 900000000000207008 119347001 en 900000000000013009 Seminal fluid sample 900000000000448009 +1220460011 20020731 1 900000000000207008 119350003 en 900000000000013009 Calculus sample 900000000000020002 +1220460011 20170731 1 900000000000207008 119350003 en 900000000000013009 Calculus sample 900000000000448009 +1220461010 20020731 1 900000000000207008 119350003 en 900000000000013009 Stone sample 900000000000020002 +1220461010 20170731 1 900000000000207008 119350003 en 900000000000013009 Stone sample 900000000000448009 +1220462015 20020731 1 900000000000207008 119351004 en 900000000000013009 Red blood cell sample 900000000000020002 +1220462015 20170731 1 900000000000207008 119351004 en 900000000000013009 Red blood cell sample 900000000000448009 +1220463013 20020731 1 900000000000207008 119358005 en 900000000000013009 Platelet sample 900000000000020002 +1220463013 20170731 1 900000000000207008 119358005 en 900000000000013009 Platelet sample 900000000000448009 +1220464019 20020731 1 900000000000207008 119359002 en 900000000000013009 Bone marrow sample 900000000000020002 +1220464019 20170731 1 900000000000207008 119359002 en 900000000000013009 Bone marrow sample 900000000000448009 +1220466017 20020731 1 900000000000207008 119361006 en 900000000000013009 Plasma sample 900000000000020002 +1220466017 20170731 1 900000000000207008 119361006 en 900000000000013009 Plasma sample 900000000000448009 +1220467014 20020731 1 900000000000207008 119364003 en 900000000000013009 Serum sample 900000000000020002 +1220467014 20170731 1 900000000000207008 119364003 en 900000000000013009 Serum sample 900000000000448009 +1220468016 20020731 1 900000000000207008 119386002 en 900000000000013009 Prostate sample 900000000000020002 +1220468016 20170731 1 900000000000207008 119386002 en 900000000000013009 Prostate sample 900000000000448009 +1220616018 20020731 1 900000000000207008 122552005 en 900000000000013009 Arterial blood sample 900000000000020002 +1220616018 20170731 1 900000000000207008 122552005 en 900000000000013009 Arterial blood sample 900000000000448009 +1220617010 20020731 1 900000000000207008 122554006 en 900000000000013009 Capillary blood sample 900000000000020002 +1220617010 20170731 1 900000000000207008 122554006 en 900000000000013009 Capillary blood sample 900000000000448009 +1220618017 20020731 1 900000000000207008 122555007 en 900000000000013009 Venous blood sample 900000000000020002 +1220618017 20170731 1 900000000000207008 122555007 en 900000000000013009 Venous blood sample 900000000000448009 +1220619013 20020731 1 900000000000207008 122556008 en 900000000000013009 Cord blood sample 900000000000020002 +1220619013 20170731 1 900000000000207008 122556008 en 900000000000013009 Cord blood sample 900000000000448009 +1220620019 20020731 1 900000000000207008 122566000 en 900000000000013009 Wound fluid sample 900000000000020002 +1220620019 20170731 1 900000000000207008 122566000 en 900000000000013009 Wound fluid sample 900000000000448009 +1220623017 20020731 1 900000000000207008 122571007 en 900000000000013009 Heart sac fluid sample 900000000000020002 +1220623017 20170731 1 900000000000207008 122571007 en 900000000000013009 Heart sac fluid sample 900000000000448009 +1220624011 20020731 1 900000000000207008 122572000 en 900000000000013009 Vomit sample 900000000000020002 +1220624011 20170731 1 900000000000207008 122572000 en 900000000000013009 Vomit sample 900000000000448009 +1220625012 20020731 1 900000000000207008 122574004 en 900000000000013009 Duodenal fluid sample 900000000000020002 +1220625012 20170731 1 900000000000207008 122574004 en 900000000000013009 Duodenal fluid sample 900000000000448009 +1220626013 20020731 1 900000000000207008 122575003 en 900000000000013009 Urine sample 900000000000020002 +1220626013 20170731 1 900000000000207008 122575003 en 900000000000013009 Urine sample 900000000000448009 +1220627016 20020731 1 900000000000207008 122578001 en 900000000000013009 Female genital fluid sample 900000000000020002 +1220627016 20170731 1 900000000000207008 122578001 en 900000000000013009 Female genital fluid sample 900000000000448009 +1220628014 20020731 1 900000000000207008 122579009 en 900000000000013009 Lochia sample 900000000000020002 +1220628014 20170731 1 900000000000207008 122579009 en 900000000000013009 Lochia sample 900000000000448009 +1220629018 20020731 1 900000000000207008 122601001 en 900000000000013009 Breast biopsy sample 900000000000020002 +1220629018 20170731 1 900000000000207008 122601001 en 900000000000013009 Breast biopsy sample 900000000000448009 +1220631010 20020731 1 900000000000207008 122609004 en 900000000000013009 Bronchial washings 900000000000020002 +1220631010 20170731 1 900000000000207008 122609004 en 900000000000013009 Bronchial washings 900000000000448009 +1220631010 20190731 0 900000000000207008 122609004 en 900000000000013009 Bronchial washings 900000000000448009 +1220632015 20020731 1 900000000000207008 122614000 en 900000000000013009 Lung fine needle aspirate sample 900000000000020002 +1220632015 20170731 1 900000000000207008 122614000 en 900000000000013009 Lung fine needle aspirate sample 900000000000448009 +1220634019 20020731 1 900000000000207008 122634004 en 900000000000013009 Gastric resection sample 900000000000020002 +1220634019 20170731 1 900000000000207008 122634004 en 900000000000013009 Gastric resection sample 900000000000448009 +1220634019 20210731 0 900000000000207008 122634004 en 900000000000013009 Gastric resection sample 900000000000448009 +1220635018 20020731 1 900000000000207008 122634004 en 900000000000013009 Gastrectomy sample 900000000000020002 +1220635018 20170731 1 900000000000207008 122634004 en 900000000000013009 Gastrectomy sample 900000000000448009 +1220635018 20210731 0 900000000000207008 122634004 en 900000000000013009 Gastrectomy sample 900000000000448009 +1220637014 20020731 1 900000000000207008 122648004 en 900000000000013009 Terminal ileum and ascending colon specimen 900000000000020002 +1220637014 20170731 1 900000000000207008 122648004 en 900000000000013009 Terminal ileum and ascending colon specimen 900000000000448009 +1220638016 20020731 1 900000000000207008 122648004 en 900000000000013009 Right hemicolectomy sample 900000000000020002 +1220638016 20170731 1 900000000000207008 122648004 en 900000000000013009 Right hemicolectomy sample 900000000000448009 +1220639012 20020731 1 900000000000207008 122665008 en 900000000000013009 Pancreaticoduodenectomy sample 900000000000020002 +1220639012 20170731 1 900000000000207008 122665008 en 900000000000013009 Pancreaticoduodenectomy sample 900000000000448009 +1220641013 20020731 1 900000000000207008 122703009 en 900000000000013009 Endometrial curettings sample 900000000000020002 +1220641013 20170731 1 900000000000207008 122703009 en 900000000000013009 Endometrial curettings sample 900000000000448009 +1220642018 20020731 1 900000000000207008 122703009 en 900000000000013009 Endometrial curettings 900000000000020002 +1220642018 20170731 1 900000000000207008 122703009 en 900000000000013009 Endometrial curettings 900000000000448009 +1220643011 20020731 1 900000000000207008 122704003 en 900000000000013009 Endometrial biopsy sample 900000000000020002 +1220643011 20170731 1 900000000000207008 122704003 en 900000000000013009 Endometrial biopsy sample 900000000000448009 +1220644017 20020731 1 900000000000207008 122708000 en 900000000000013009 Ovarian biopsy sample 900000000000020002 +1220644017 20170731 1 900000000000207008 122708000 en 900000000000013009 Ovarian biopsy sample 900000000000448009 +1220763014 20020731 1 900000000000207008 127471001 en 900000000000013009 Urological sample 900000000000020002 +1220763014 20170731 1 900000000000207008 127471001 en 900000000000013009 Urological sample 900000000000448009 +1220764015 20020731 1 900000000000207008 127472008 en 900000000000013009 Urological tissue sample 900000000000020002 +1220764015 20170731 1 900000000000207008 127472008 en 900000000000013009 Urological tissue sample 900000000000448009 +1220765019 20020731 1 900000000000207008 127474009 en 900000000000013009 Kidney tissue sample 900000000000020002 +1220765019 20170731 1 900000000000207008 127474009 en 900000000000013009 Kidney tissue sample 900000000000448009 +1220767010 20020731 1 900000000000207008 127478007 en 900000000000013009 Thyroid gland sample 900000000000020002 +1220767010 20170731 1 900000000000207008 127478007 en 900000000000013009 Thyroid gland sample 900000000000448009 +1220781012 20020731 1 900000000000207008 128168004 en 900000000000013009 Liver tissue sample 900000000000020002 +1220781012 20170731 1 900000000000207008 128168004 en 900000000000013009 Liver tissue sample 900000000000448009 +1220782017 20020731 1 900000000000207008 128170008 en 900000000000013009 Prostate tissue sample 900000000000020002 +1220782017 20170731 1 900000000000207008 128170008 en 900000000000013009 Prostate tissue sample 900000000000448009 +1220783010 20020731 1 900000000000207008 128171007 en 900000000000013009 Gastric tissue sample 900000000000020002 +1220783010 20170731 1 900000000000207008 128171007 en 900000000000013009 Gastric tissue sample 900000000000448009 +1458232014 20030131 1 900000000000207008 373102004 en 900000000000003001 Specimen from breast obtained by image guided core biopsy (specimen) 900000000000020002 +1458232014 20170731 1 900000000000207008 373102004 en 900000000000003001 Specimen from breast obtained by image guided core biopsy (specimen) 900000000000448009 +1458922011 20030131 1 900000000000207008 384744003 en 900000000000003001 Lymph node from sentinel lymph node dissection and axillary dissection (specimen) 900000000000020002 +1458922011 20170731 1 900000000000207008 384744003 en 900000000000003001 Lymph node from sentinel lymph node dissection and axillary dissection (specimen) 900000000000448009 +1458924012 20030131 1 900000000000207008 384746001 en 900000000000003001 Specimen from lung obtained by wedge biopsy (specimen) 900000000000020002 +1458924012 20170731 1 900000000000207008 384746001 en 900000000000003001 Specimen from lung obtained by wedge biopsy (specimen) 900000000000448009 +1458925013 20030131 1 900000000000207008 384747005 en 900000000000003001 Specimen from lung obtained by CT guided needle biopsy (specimen) 900000000000020002 +1458925013 20100131 0 900000000000207008 384747005 en 900000000000003001 Specimen from lung obtained by CT guided needle biopsy (specimen) 900000000000020002 +1458997012 20030131 1 900000000000207008 384819001 en 900000000000003001 Specimen from prostate obtained by needle biopsy (specimen) 900000000000020002 +1458997012 20170731 1 900000000000207008 384819001 en 900000000000003001 Specimen from prostate obtained by needle biopsy (specimen) 900000000000448009 +1458998019 20030131 1 900000000000207008 384820007 en 900000000000003001 Specimen from prostate obtained by transurethral resection (specimen) 900000000000020002 +1458998019 20170731 1 900000000000207008 384820007 en 900000000000003001 Specimen from prostate obtained by transurethral resection (specimen) 900000000000448009 +1459517011 20030131 1 900000000000207008 385338007 en 900000000000003001 Specimen from anus obtained by transanal disk excision (specimen) 900000000000020002 +1459517011 20170731 1 900000000000207008 385338007 en 900000000000003001 Specimen from anus obtained by transanal disk excision (specimen) 900000000000448009 +1459518018 20030131 1 900000000000207008 385339004 en 900000000000003001 Specimen from anus obtained by transanal disk excision, intact (specimen) 900000000000020002 +1459518018 20170731 1 900000000000207008 385339004 en 900000000000003001 Specimen from anus obtained by transanal disk excision, intact (specimen) 900000000000448009 +1459519014 20030131 1 900000000000207008 385340002 en 900000000000003001 Specimen from anus obtained by transanal disk excision, fragmented (specimen) 900000000000020002 +1459519014 20170731 1 900000000000207008 385340002 en 900000000000003001 Specimen from anus obtained by transanal disk excision, fragmented (specimen) 900000000000448009 +1475395011 20030131 1 900000000000207008 122652004 en 900000000000003001 Specimen from colon obtained by rectal/rectosigmoid (low anterior) resection (specimen) 900000000000020002 +1475395011 20170731 1 900000000000207008 122652004 en 900000000000003001 Specimen from colon obtained by rectal/rectosigmoid (low anterior) resection (specimen) 900000000000448009 +1478191010 20030131 1 900000000000207008 373102004 en 900000000000013009 Specimen from breast obtained by image guided core biopsy 900000000000020002 +1478191010 20170731 1 900000000000207008 373102004 en 900000000000013009 Specimen from breast obtained by image guided core biopsy 900000000000448009 +1479066016 20030131 1 900000000000207008 384744003 en 900000000000013009 Lymph node from sentinel lymph node dissection and axillary dissection 900000000000020002 +1479066016 20170731 1 900000000000207008 384744003 en 900000000000013009 Lymph node from sentinel lymph node dissection and axillary dissection 900000000000448009 +1479068015 20030131 1 900000000000207008 384746001 en 900000000000013009 Specimen from lung obtained by wedge biopsy 900000000000020002 +1479068015 20170731 1 900000000000207008 384746001 en 900000000000013009 Specimen from lung obtained by wedge biopsy 900000000000448009 +1479069011 20030131 1 900000000000207008 384747005 en 900000000000013009 Specimen from lung obtained by CT guided needle biopsy 900000000000020002 +1479127014 20030131 1 900000000000207008 384819001 en 900000000000013009 Specimen from prostate obtained by needle biopsy 900000000000020002 +1479127014 20170731 1 900000000000207008 384819001 en 900000000000013009 Specimen from prostate obtained by needle biopsy 900000000000448009 +1479128016 20030131 1 900000000000207008 384820007 en 900000000000013009 Specimen from prostate obtained by transurethral resection 900000000000020002 +1479128016 20170731 1 900000000000207008 384820007 en 900000000000013009 Specimen from prostate obtained by transurethral resection 900000000000448009 +1479572014 20030131 1 900000000000207008 385338007 en 900000000000013009 Specimen from anus obtained by transanal disk excision 900000000000020002 +1479572014 20170731 1 900000000000207008 385338007 en 900000000000013009 Specimen from anus obtained by transanal disk excision 900000000000448009 +1479573016 20030131 1 900000000000207008 385339004 en 900000000000013009 Specimen from anus obtained by transanal disk excision, intact 900000000000020002 +1479573016 20170731 1 900000000000207008 385339004 en 900000000000013009 Specimen from anus obtained by transanal disk excision, intact 900000000000448009 +1479574010 20030131 1 900000000000207008 385340002 en 900000000000013009 Specimen from anus obtained by transanal disk excision, fragmented 900000000000020002 +1479574010 20170731 1 900000000000207008 385340002 en 900000000000013009 Specimen from anus obtained by transanal disk excision, fragmented 900000000000448009 +1490065015 20030131 1 900000000000207008 122652004 en 900000000000013009 Specimen from colon obtained by rectal/rectosigmoid (low anterior) resection 900000000000020002 +1490065015 20170731 1 900000000000207008 122652004 en 900000000000013009 Specimen from colon obtained by rectal/rectosigmoid (low anterior) resection 900000000000448009 +1495229016 20030131 1 900000000000207008 258520000 en 900000000000013009 Swab - vaginal 900000000000020002 +1495229016 20170731 1 900000000000207008 258520000 en 900000000000013009 Swab - vaginal 900000000000448009 +1762472018 20030731 1 900000000000207008 122669002 en 900000000000003001 Specimen from urinary bladder obtained by anterior exenteration (specimen) 900000000000020002 +1762472018 20170731 1 900000000000207008 122669002 en 900000000000003001 Specimen from urinary bladder obtained by anterior exenteration (specimen) 900000000000448009 +1762473011 20030731 1 900000000000207008 122686008 en 900000000000003001 Specimen from urinary bladder obtained by partial cystectomy (specimen) 900000000000020002 +1762473011 20170731 1 900000000000207008 122686008 en 900000000000003001 Specimen from urinary bladder obtained by partial cystectomy (specimen) 900000000000448009 +1762474017 20030731 1 900000000000207008 122687004 en 900000000000003001 Specimen from urinary bladder obtained by total cystectomy (specimen) 900000000000020002 +1762474017 20170731 1 900000000000207008 122687004 en 900000000000003001 Specimen from urinary bladder obtained by total cystectomy (specimen) 900000000000448009 +1762475016 20030731 1 900000000000207008 122688009 en 900000000000003001 Specimen from urinary bladder obtained by radical cystoprostatectomy (specimen) 900000000000020002 +1762475016 20170731 1 900000000000207008 122688009 en 900000000000003001 Specimen from urinary bladder obtained by radical cystoprostatectomy (specimen) 900000000000448009 +1763225011 20030731 1 900000000000207008 309067007 en 900000000000003001 Specimen from skin obtained by curettage (specimen) 900000000000020002 +1763225011 20170731 1 900000000000207008 309067007 en 900000000000003001 Specimen from skin obtained by curettage (specimen) 900000000000448009 +1763666018 20030731 1 900000000000207008 369618002 en 900000000000003001 Tissue specimen obtained from vulva by biopsy (specimen) 900000000000020002 +1763666018 20170731 1 900000000000207008 369618002 en 900000000000003001 Tissue specimen obtained from vulva by biopsy (specimen) 900000000000448009 +1764190012 20030731 1 900000000000207008 396273004 en 900000000000003001 Specimen from uterine cervix obtained by excision of cervix (specimen) 900000000000020002 +1764190012 20170731 1 900000000000207008 396273004 en 900000000000003001 Specimen from uterine cervix obtained by excision of cervix (specimen) 900000000000448009 +1764270010 20030731 1 900000000000207008 396353007 en 900000000000003001 Specimen from skin obtained by elliptical excision (specimen) 900000000000020002 +1764270010 20170731 1 900000000000207008 396353007 en 900000000000003001 Specimen from skin obtained by elliptical excision (specimen) 900000000000448009 +1764271014 20030731 1 900000000000207008 396354001 en 900000000000003001 Specimen from skin obtained by wide excision (specimen) 900000000000020002 +1764271014 20170731 1 900000000000207008 396354001 en 900000000000003001 Specimen from skin obtained by wide excision (specimen) 900000000000448009 +1764272019 20030731 1 900000000000207008 396355000 en 900000000000003001 Specimen from skin obtained by excision (specimen) 900000000000020002 +1764272019 20170731 1 900000000000207008 396355000 en 900000000000003001 Specimen from skin obtained by excision (specimen) 900000000000448009 +1764273012 20030731 1 900000000000207008 396356004 en 900000000000003001 Specimen from skin obtained by re-excision (specimen) 900000000000020002 +1764273012 20170731 1 900000000000207008 396356004 en 900000000000003001 Specimen from skin obtained by re-excision (specimen) 900000000000448009 +1764274018 20030731 1 900000000000207008 396357008 en 900000000000003001 Specimen from skin obtained by elliptical re-excision (specimen) 900000000000020002 +1764274018 20170731 1 900000000000207008 396357008 en 900000000000003001 Specimen from skin obtained by elliptical re-excision (specimen) 900000000000448009 +1764275017 20030731 1 900000000000207008 396358003 en 900000000000003001 Specimen from skin obtained by wide re-excision (specimen) 900000000000020002 +1764275017 20170731 1 900000000000207008 396358003 en 900000000000003001 Specimen from skin obtained by wide re-excision (specimen) 900000000000448009 +1764276016 20030731 1 900000000000207008 396359006 en 900000000000003001 Lymph node from regional lymph node dissection (specimen) 900000000000020002 +1764276016 20170731 1 900000000000207008 396359006 en 900000000000003001 Lymph node from regional lymph node dissection (specimen) 900000000000448009 +1764393018 20030731 1 900000000000207008 396476009 en 900000000000003001 Specimen from liver obtained by right lobectomy (specimen) 900000000000020002 +1764393018 20170731 1 900000000000207008 396476009 en 900000000000003001 Specimen from liver obtained by right lobectomy (specimen) 900000000000448009 +1764394012 20030731 1 900000000000207008 396477000 en 900000000000003001 Specimen from liver obtained by extended right lobectomy (specimen) 900000000000020002 +1764394012 20170731 1 900000000000207008 396477000 en 900000000000003001 Specimen from liver obtained by extended right lobectomy (specimen) 900000000000448009 +1764395013 20030731 1 900000000000207008 396478005 en 900000000000003001 Specimen from liver obtained by medial segmentectomy (specimen) 900000000000020002 +1764395013 20170731 1 900000000000207008 396478005 en 900000000000003001 Specimen from liver obtained by medial segmentectomy (specimen) 900000000000448009 +1764396014 20030731 1 900000000000207008 396479002 en 900000000000003001 Specimen from liver obtained by left lateral segmentectomy (specimen) 900000000000020002 +1764396014 20170731 1 900000000000207008 396479002 en 900000000000003001 Specimen from liver obtained by left lateral segmentectomy (specimen) 900000000000448009 +1764397017 20030731 1 900000000000207008 396480004 en 900000000000003001 Specimen from liver obtained by total left lobectomy (specimen) 900000000000020002 +1764397017 20170731 1 900000000000207008 396480004 en 900000000000003001 Specimen from liver obtained by total left lobectomy (specimen) 900000000000448009 +1764398010 20030731 1 900000000000207008 396481000 en 900000000000003001 Specimen from explanted liver (specimen) 900000000000020002 +1764398010 20170731 1 900000000000207008 396481000 en 900000000000003001 Specimen from explanted liver (specimen) 900000000000448009 +1764400014 20030731 1 900000000000207008 396483002 en 900000000000003001 Specimen from skin obtained by shave excision (specimen) 900000000000020002 +1764400014 20170731 1 900000000000207008 396483002 en 900000000000003001 Specimen from skin obtained by shave excision (specimen) 900000000000448009 +1764442011 20030731 1 900000000000207008 396525008 en 900000000000003001 Specimen from adrenal gland obtained by needle biopsy (specimen) 900000000000020002 +1764442011 20170731 1 900000000000207008 396525008 en 900000000000003001 Specimen from adrenal gland obtained by needle biopsy (specimen) 900000000000448009 +1764443018 20030731 1 900000000000207008 396526009 en 900000000000003001 Specimen from adrenal gland obtained by partial adrenalectomy (specimen) 900000000000020002 +1764443018 20170731 1 900000000000207008 396526009 en 900000000000003001 Specimen from adrenal gland obtained by partial adrenalectomy (specimen) 900000000000448009 +1764444012 20030731 1 900000000000207008 396527000 en 900000000000003001 Specimen from adrenal gland obtained by total adrenalectomy (specimen) 900000000000020002 +1764444012 20170731 1 900000000000207008 396527000 en 900000000000003001 Specimen from adrenal gland obtained by total adrenalectomy (specimen) 900000000000448009 +1764602011 20030731 1 900000000000207008 396685001 en 900000000000003001 Specimen from urinary bladder obtained by radical cystectomy (specimen) 900000000000020002 +1764602011 20170731 1 900000000000207008 396685001 en 900000000000003001 Specimen from urinary bladder obtained by radical cystectomy (specimen) 900000000000448009 +1764721010 20030731 1 900000000000207008 396804002 en 900000000000003001 Specimen from pancreas obtained by pylorus sparing pancreaticoduodenectomy, partial pancreatectomy (specimen) 900000000000020002 +1764721010 20170731 1 900000000000207008 396804002 en 900000000000003001 Specimen from pancreas obtained by pylorus sparing pancreaticoduodenectomy, partial pancreatectomy (specimen) 900000000000448009 +1764722015 20030731 1 900000000000207008 396805001 en 900000000000003001 Specimen from pancreas obtained by pylorus sparing pancreaticoduodenectomy, total pancreatectomy (specimen) 900000000000020002 +1764722015 20170731 1 900000000000207008 396805001 en 900000000000003001 Specimen from pancreas obtained by pylorus sparing pancreaticoduodenectomy, total pancreatectomy (specimen) 900000000000448009 +1764723013 20030731 1 900000000000207008 396806000 en 900000000000003001 Specimen from pancreas obtained by pancreaticoduodenectomy, partial pancreatectomy (specimen) 900000000000020002 +1764723013 20170731 1 900000000000207008 396806000 en 900000000000003001 Specimen from pancreas obtained by pancreaticoduodenectomy, partial pancreatectomy (specimen) 900000000000448009 +1764724019 20030731 1 900000000000207008 396807009 en 900000000000003001 Specimen from pancreas obtained by pancreaticoduodenectomy, total pancreatectomy (specimen) 900000000000020002 +1764724019 20170731 1 900000000000207008 396807009 en 900000000000003001 Specimen from pancreas obtained by pancreaticoduodenectomy, total pancreatectomy (specimen) 900000000000448009 +1764813011 20030731 1 900000000000207008 396896007 en 900000000000003001 Specimen from thymus gland (specimen) 900000000000020002 +1764813011 20170731 1 900000000000207008 396896007 en 900000000000003001 Specimen from thymus gland (specimen) 900000000000448009 +1764814017 20030731 1 900000000000207008 396897003 en 900000000000003001 Specimen from thymus gland obtained by transcervical thymectomy (specimen) 900000000000020002 +1764814017 20170731 1 900000000000207008 396897003 en 900000000000003001 Specimen from thymus gland obtained by transcervical thymectomy (specimen) 900000000000448009 +1764815016 20030731 1 900000000000207008 396898008 en 900000000000003001 Specimen from thymus gland obtained by thoracotomy (specimen) 900000000000020002 +1764815016 20170731 1 900000000000207008 396898008 en 900000000000003001 Specimen from thymus gland obtained by thoracotomy (specimen) 900000000000448009 +1764816015 20030731 1 900000000000207008 396899000 en 900000000000003001 Specimen from thymus gland obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +1764816015 20170731 1 900000000000207008 396899000 en 900000000000003001 Specimen from thymus gland obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +1764817012 20030731 1 900000000000207008 396900005 en 900000000000003001 Specimen from thymus gland obtained by CT guided needle biopsy (specimen) 900000000000020002 +1764817012 20100131 0 900000000000207008 396900005 en 900000000000003001 Specimen from thymus gland obtained by CT guided needle biopsy (specimen) 900000000000020002 +1764819010 20030731 1 900000000000207008 396902002 en 900000000000003001 Specimen from thymus gland obtained by transthoracic needle biopsy (specimen) 900000000000020002 +1764819010 20170731 1 900000000000207008 396902002 en 900000000000003001 Specimen from thymus gland obtained by transthoracic needle biopsy (specimen) 900000000000448009 +1764821017 20030731 1 900000000000207008 396904001 en 900000000000003001 Specimen from thymus gland obtained by limited thoracotomy (specimen) 900000000000020002 +1764821017 20170731 1 900000000000207008 396904001 en 900000000000003001 Specimen from thymus gland obtained by limited thoracotomy (specimen) 900000000000448009 +1764823019 20030731 1 900000000000207008 396906004 en 900000000000003001 Specimen from thymus gland obtained by video assisted thoracotomy (specimen) 900000000000020002 +1764823019 20170731 1 900000000000207008 396906004 en 900000000000003001 Specimen from thymus gland obtained by video assisted thoracotomy (specimen) 900000000000448009 +1764823019 20240601 0 900000000000207008 396906004 en 900000000000003001 Specimen from thymus gland obtained by video assisted thoracotomy (specimen) 900000000000448009 +1764845018 20030731 1 900000000000207008 396928004 en 900000000000003001 Specimen from eye obtained by enucleation (specimen) 900000000000020002 +1764845018 20170731 1 900000000000207008 396928004 en 900000000000003001 Specimen from eye obtained by enucleation (specimen) 900000000000448009 +1764914018 20030731 1 900000000000207008 396997002 en 900000000000003001 Specimen from bone marrow obtained by aspiration (specimen) 900000000000020002 +1764914018 20170731 1 900000000000207008 396997002 en 900000000000003001 Specimen from bone marrow obtained by aspiration (specimen) 900000000000448009 +1764915017 20030731 1 900000000000207008 396998007 en 900000000000003001 Specimen from bone marrow obtained by aspiration and biopsy (specimen) 900000000000020002 +1764915017 20170731 1 900000000000207008 396998007 en 900000000000003001 Specimen from bone marrow obtained by aspiration and biopsy (specimen) 900000000000448009 +1764916016 20030731 1 900000000000207008 396999004 en 900000000000003001 Specimen from bone marrow obtained by biopsy (specimen) 900000000000020002 +1764916016 20170731 1 900000000000207008 396999004 en 900000000000003001 Specimen from bone marrow obtained by biopsy (specimen) 900000000000448009 +1764971015 20030731 1 900000000000207008 397053005 en 900000000000003001 Specimen from small intestine obtained by polypectomy (specimen) 900000000000020002 +1764971015 20170731 1 900000000000207008 397053005 en 900000000000003001 Specimen from small intestine obtained by polypectomy (specimen) 900000000000448009 +1764973017 20030731 1 900000000000207008 397055003 en 900000000000003001 Specimen from small intestine obtained by segmental resection (specimen) 900000000000020002 +1764973017 20170731 1 900000000000207008 397055003 en 900000000000003001 Specimen from small intestine obtained by segmental resection (specimen) 900000000000448009 +1764974011 20030731 1 900000000000207008 397056002 en 900000000000003001 Specimen from small intestine obtained by Whipple procedure (specimen) 900000000000020002 +1764974011 20040131 0 900000000000207008 397056002 en 900000000000003001 Specimen from small intestine obtained by Whipple procedure (specimen) 900000000000020002 +1764995018 20030731 1 900000000000207008 397077004 en 900000000000003001 Specimen obtained by incisional biopsy (specimen) 900000000000020002 +1764995018 20170731 1 900000000000207008 397077004 en 900000000000003001 Specimen obtained by incisional biopsy (specimen) 900000000000448009 +1764996017 20030731 1 900000000000207008 397078009 en 900000000000003001 Specimen obtained by excisional biopsy (specimen) 900000000000020002 +1764996017 20170731 1 900000000000207008 397078009 en 900000000000003001 Specimen obtained by excisional biopsy (specimen) 900000000000448009 +1765029014 20030731 1 900000000000207008 397111007 en 900000000000003001 Specimen from vagina obtained by partial vaginectomy (specimen) 900000000000020002 +1765029014 20170731 1 900000000000207008 397111007 en 900000000000003001 Specimen from vagina obtained by partial vaginectomy (specimen) 900000000000448009 +1765047015 20030731 1 900000000000207008 397129002 en 900000000000003001 Specimen from vulva (specimen) 900000000000020002 +1765047015 20170731 1 900000000000207008 397129002 en 900000000000003001 Specimen from vulva (specimen) 900000000000448009 +1765048013 20030731 1 900000000000207008 397130007 en 900000000000003001 Specimen from vulva obtained by local excision (specimen) 900000000000020002 +1765048013 20170731 1 900000000000207008 397130007 en 900000000000003001 Specimen from vulva obtained by local excision (specimen) 900000000000448009 +1765049017 20030731 1 900000000000207008 397131006 en 900000000000003001 Specimen from vulva obtained by wide excision (specimen) 900000000000020002 +1765049017 20170731 1 900000000000207008 397131006 en 900000000000003001 Specimen from vulva obtained by wide excision (specimen) 900000000000448009 +1765050017 20030731 1 900000000000207008 397132004 en 900000000000003001 Specimen from vulva obtained by partial vulvectomy (specimen) 900000000000020002 +1765050017 20170731 1 900000000000207008 397132004 en 900000000000003001 Specimen from vulva obtained by partial vulvectomy (specimen) 900000000000448009 +1765051018 20030731 1 900000000000207008 397133009 en 900000000000003001 Specimen from vulva obtained by total vulvectomy (specimen) 900000000000020002 +1765051018 20170731 1 900000000000207008 397133009 en 900000000000003001 Specimen from vulva obtained by total vulvectomy (specimen) 900000000000448009 +1765052013 20030731 1 900000000000207008 397134003 en 900000000000003001 Specimen from vulva obtained by radical vulvectomy (specimen) 900000000000020002 +1765052013 20170731 1 900000000000207008 397134003 en 900000000000003001 Specimen from vulva obtained by radical vulvectomy (specimen) 900000000000448009 +1765053015 20030731 1 900000000000207008 397135002 en 900000000000003001 Specimen from pelvic lymph node (specimen) 900000000000020002 +1765053015 20170731 1 900000000000207008 397135002 en 900000000000003001 Specimen from pelvic lymph node (specimen) 900000000000448009 +1765054014 20030731 1 900000000000207008 397136001 en 900000000000003001 Specimen from inguinofemoral lymphadenectomy (specimen) 900000000000020002 +1765054014 20170731 1 900000000000207008 397136001 en 900000000000003001 Specimen from inguinofemoral lymphadenectomy (specimen) 900000000000448009 +1765117019 20030731 1 900000000000207008 397199005 en 900000000000003001 Specimen from breast obtained by excision (specimen) 900000000000020002 +1765117019 20170731 1 900000000000207008 397199005 en 900000000000003001 Specimen from breast obtained by excision (specimen) 900000000000448009 +1765139017 20030731 1 900000000000207008 397221008 en 900000000000003001 Specimen from renal pelvis obtained by biopsy (specimen) 900000000000020002 +1765139017 20170731 1 900000000000207008 397221008 en 900000000000003001 Specimen from renal pelvis obtained by biopsy (specimen) 900000000000448009 +1765150019 20030731 1 900000000000207008 397232008 en 900000000000003001 Specimen from renal pelvis obtained by nephroureterectomy (specimen) 900000000000020002 +1765150019 20170731 1 900000000000207008 397232008 en 900000000000003001 Specimen from renal pelvis obtained by nephroureterectomy (specimen) 900000000000448009 +1765151015 20030731 1 900000000000207008 397233003 en 900000000000003001 Specimen from renal pelvis (specimen) 900000000000020002 +1765151015 20170731 1 900000000000207008 397233003 en 900000000000003001 Specimen from renal pelvis (specimen) 900000000000448009 +1765152010 20030731 1 900000000000207008 397234009 en 900000000000003001 Specimen from renal pelvis obtained by partial nephroureterectomy (specimen) 900000000000020002 +1765152010 20170731 1 900000000000207008 397234009 en 900000000000003001 Specimen from renal pelvis obtained by partial nephroureterectomy (specimen) 900000000000448009 +1765153017 20030731 1 900000000000207008 397235005 en 900000000000003001 Specimen from renal pelvis obtained by complete nephroureterectomy (specimen) 900000000000020002 +1765153017 20170731 1 900000000000207008 397235005 en 900000000000003001 Specimen from renal pelvis obtained by complete nephroureterectomy (specimen) 900000000000448009 +1765163013 20030731 1 900000000000207008 397245007 en 900000000000003001 Specimen from ovary obtained by hysterectomy with right salpingo-oophorectomy (specimen) 900000000000020002 +1765163013 20170731 1 900000000000207008 397245007 en 900000000000003001 Specimen from ovary obtained by hysterectomy with right salpingo-oophorectomy (specimen) 900000000000448009 +1765164019 20030731 1 900000000000207008 397246008 en 900000000000003001 Specimen from ovary obtained by hysterectomy with left salpingo-oophorectomy (specimen) 900000000000020002 +1765164019 20170731 1 900000000000207008 397246008 en 900000000000003001 Specimen from ovary obtained by hysterectomy with left salpingo-oophorectomy (specimen) 900000000000448009 +1765244019 20030731 1 900000000000207008 397326000 en 900000000000003001 Specimen from right fallopian tube obtained by hysterectomy with salpingo-oophorectomy (specimen) 900000000000020002 +1765244019 20170731 1 900000000000207008 397326000 en 900000000000003001 Specimen from right fallopian tube obtained by hysterectomy with salpingo-oophorectomy (specimen) 900000000000448009 +1765251011 20030731 1 900000000000207008 397333000 en 900000000000003001 Specimen from right fallopian tube obtained by salpingectomy (specimen) 900000000000020002 +1765251011 20170731 1 900000000000207008 397333000 en 900000000000003001 Specimen from right fallopian tube obtained by salpingectomy (specimen) 900000000000448009 +1765252016 20030731 1 900000000000207008 397334006 en 900000000000003001 Specimen from left fallopian tube obtained by salpingectomy (specimen) 900000000000020002 +1765252016 20170731 1 900000000000207008 397334006 en 900000000000003001 Specimen from left fallopian tube obtained by salpingectomy (specimen) 900000000000448009 +1765354018 20030731 1 900000000000207008 397436009 en 900000000000003001 Specimen obtained by lymphadenctomy (specimen) 900000000000020002 +1765354018 20050131 0 900000000000207008 397436009 en 900000000000003001 Specimen obtained by lymphadenctomy (specimen) 900000000000020002 +1765356016 20030731 1 900000000000207008 397438005 en 900000000000003001 Specimen from lymph node obtained by staging laparotomy (specimen) 900000000000020002 +1765356016 20170731 1 900000000000207008 397438005 en 900000000000003001 Specimen from lymph node obtained by staging laparotomy (specimen) 900000000000448009 +1765373019 20030731 1 900000000000207008 397455009 en 900000000000003001 Specimen from thoracic mesothelium obtained by percutaneous needle biopsy (specimen) 900000000000020002 +1765373019 20170731 1 900000000000207008 397455009 en 900000000000003001 Specimen from thoracic mesothelium obtained by percutaneous needle biopsy (specimen) 900000000000448009 +1765374013 20030731 1 900000000000207008 397456005 en 900000000000003001 Specimen from thoracic mesothelium obtained by thoracoscopic biopsy (specimen) 900000000000020002 +1765374013 20170731 1 900000000000207008 397456005 en 900000000000003001 Specimen from thoracic mesothelium obtained by thoracoscopic biopsy (specimen) 900000000000448009 +1765375014 20030731 1 900000000000207008 397457001 en 900000000000003001 Specimen from thoracic mesothelium (specimen) 900000000000020002 +1765375014 20170731 1 900000000000207008 397457001 en 900000000000003001 Specimen from thoracic mesothelium (specimen) 900000000000448009 +1765376010 20030731 1 900000000000207008 397458006 en 900000000000003001 Specimen from thoracic mesothelium obtained by open thoracotomy (specimen) 900000000000020002 +1765376010 20170731 1 900000000000207008 397458006 en 900000000000003001 Specimen from thoracic mesothelium obtained by open thoracotomy (specimen) 900000000000448009 +1765380017 20030731 1 900000000000207008 397462000 en 900000000000003001 Specimen from pericardium obtained by pericardial resection (specimen) 900000000000020002 +1765380017 20170731 1 900000000000207008 397462000 en 900000000000003001 Specimen from pericardium obtained by pericardial resection (specimen) 900000000000448009 +1765400019 20030731 1 900000000000207008 397482001 en 900000000000003001 Specimen from extrahepatic bile duct obtained by pancreaticoduodenectomy (specimen) 900000000000020002 +1765400019 20170731 1 900000000000207008 397482001 en 900000000000003001 Specimen from extrahepatic bile duct obtained by pancreaticoduodenectomy (specimen) 900000000000448009 +1765401015 20030731 1 900000000000207008 397483006 en 900000000000003001 Specimen from extrahepatic bile duct obtained by segmental resection of bile ducts (specimen) 900000000000020002 +1765401015 20170731 1 900000000000207008 397483006 en 900000000000003001 Specimen from extrahepatic bile duct obtained by segmental resection of bile ducts (specimen) 900000000000448009 +1767308011 20030731 1 900000000000207008 399388008 en 900000000000003001 Specimen from left fallopian tube obtained by hysterectomy with salpingo-oophorectomy (specimen) 900000000000020002 +1767308011 20170731 1 900000000000207008 399388008 en 900000000000003001 Specimen from left fallopian tube obtained by hysterectomy with salpingo-oophorectomy (specimen) 900000000000448009 +1767316019 20030731 1 900000000000207008 399396003 en 900000000000003001 Trophoblastic tissue obtained from uterus by dilation and curettage (specimen) 900000000000020002 +1767316019 20170731 1 900000000000207008 399396003 en 900000000000003001 Trophoblastic tissue obtained from uterus by dilation and curettage (specimen) 900000000000448009 +1767322011 20030731 1 900000000000207008 399402006 en 900000000000003001 Specimen from ureter (specimen) 900000000000020002 +1767322011 20170731 1 900000000000207008 399402006 en 900000000000003001 Specimen from ureter (specimen) 900000000000448009 +1767327017 20030731 1 900000000000207008 399407000 en 900000000000003001 Specimen from ureter obtained by ureterectomy (specimen) 900000000000020002 +1767327017 20170731 1 900000000000207008 399407000 en 900000000000003001 Specimen from ureter obtained by ureterectomy (specimen) 900000000000448009 +1767331011 20030731 1 900000000000207008 399411006 en 900000000000003001 Specimen from trophoblast (specimen) 900000000000020002 +1767331011 20170731 1 900000000000207008 399411006 en 900000000000003001 Specimen from trophoblast (specimen) 900000000000448009 +1767356017 20030731 1 900000000000207008 399436000 en 900000000000003001 Specimen from central nervous system (specimen) 900000000000020002 +1767356017 20170731 1 900000000000207008 399436000 en 900000000000003001 Specimen from central nervous system (specimen) 900000000000448009 +1767360019 20030731 1 900000000000207008 399440009 en 900000000000003001 Specimen from ureter obtained by nephroureterectomy (specimen) 900000000000020002 +1767360019 20170731 1 900000000000207008 399440009 en 900000000000003001 Specimen from ureter obtained by nephroureterectomy (specimen) 900000000000448009 +1767363017 20030731 1 900000000000207008 399443006 en 900000000000003001 Specimen from eye obtained by complete exenteration (specimen) 900000000000020002 +1767363017 20170731 1 900000000000207008 399443006 en 900000000000003001 Specimen from eye obtained by complete exenteration (specimen) 900000000000448009 +1767367016 20030731 1 900000000000207008 399447007 en 900000000000003001 Trophoblastic tissue obtained by radical hysterectomy (specimen) 900000000000020002 +1767367016 20170731 1 900000000000207008 399447007 en 900000000000003001 Trophoblastic tissue obtained by radical hysterectomy (specimen) 900000000000448009 +1767371018 20030731 1 900000000000207008 399451009 en 900000000000003001 Tissue specimen from retina (specimen) 900000000000020002 +1767371018 20170731 1 900000000000207008 399451009 en 900000000000003001 Tissue specimen from retina (specimen) 900000000000448009 +1767380018 20030731 1 900000000000207008 399460001 en 900000000000003001 Specimen from extrahepatic bile duct (specimen) 900000000000020002 +1767380018 20170731 1 900000000000207008 399460001 en 900000000000003001 Specimen from extrahepatic bile duct (specimen) 900000000000448009 +1767387015 20030731 1 900000000000207008 399467003 en 900000000000003001 Specimen from uvea obtained by limited exenteration of eye (specimen) 900000000000020002 +1767387015 20170731 1 900000000000207008 399467003 en 900000000000003001 Specimen from uvea obtained by limited exenteration of eye (specimen) 900000000000448009 +1767404012 20030731 1 900000000000207008 399484009 en 900000000000003001 Superficial parotidectomy sample (specimen) 900000000000020002 +1767404012 20170731 1 900000000000207008 399484009 en 900000000000003001 Superficial parotidectomy sample (specimen) 900000000000448009 +1767404012 20220630 0 900000000000207008 399484009 en 900000000000003001 Superficial parotidectomy sample (specimen) 900000000000448009 +1767406014 20030731 1 900000000000207008 399486006 en 900000000000003001 Tissue specimen from vulva (specimen) 900000000000020002 +1767406014 20170731 1 900000000000207008 399486006 en 900000000000003001 Tissue specimen from vulva (specimen) 900000000000448009 +1767412016 20030731 1 900000000000207008 399492000 en 900000000000003001 Tissue specimen from lung (specimen) 900000000000020002 +1767412016 20170731 1 900000000000207008 399492000 en 900000000000003001 Tissue specimen from lung (specimen) 900000000000448009 +1767419013 20030731 1 900000000000207008 399499009 en 900000000000003001 Specimen from uvea obtained by complete exenteration of eye (specimen) 900000000000020002 +1767419013 20170731 1 900000000000207008 399499009 en 900000000000003001 Specimen from uvea obtained by complete exenteration of eye (specimen) 900000000000448009 +1767422010 20030731 1 900000000000207008 399502008 en 900000000000003001 Trophoblastic tissue obtained by pelvic exenteration (specimen) 900000000000020002 +1767422010 20170731 1 900000000000207008 399502008 en 900000000000003001 Trophoblastic tissue obtained by pelvic exenteration (specimen) 900000000000448009 +1767432015 20030731 1 900000000000207008 399512001 en 900000000000003001 Specimen from retina obtained by enucleation of eye (specimen) 900000000000020002 +1767432015 20170731 1 900000000000207008 399512001 en 900000000000003001 Specimen from retina obtained by enucleation of eye (specimen) 900000000000448009 +1767446015 20030731 1 900000000000207008 399526005 en 900000000000003001 Specimen from major salivary gland (specimen) 900000000000020002 +1767446015 20170731 1 900000000000207008 399526005 en 900000000000003001 Specimen from major salivary gland (specimen) 900000000000448009 +1767452019 20030731 1 900000000000207008 399532000 en 900000000000003001 Tissue specimen from renal pelvis (specimen) 900000000000020002 +1767452019 20170731 1 900000000000207008 399532000 en 900000000000003001 Tissue specimen from renal pelvis (specimen) 900000000000448009 +1767461019 20030731 1 900000000000207008 399541005 en 900000000000003001 Tissue specimen from extrahepatic bile duct (specimen) 900000000000020002 +1767461019 20170731 1 900000000000207008 399541005 en 900000000000003001 Tissue specimen from extrahepatic bile duct (specimen) 900000000000448009 +1767462014 20030731 1 900000000000207008 399542003 en 900000000000003001 Tissue specimen from central nervous system (specimen) 900000000000020002 +1767462014 20170731 1 900000000000207008 399542003 en 900000000000003001 Tissue specimen from central nervous system (specimen) 900000000000448009 +1767471017 20030731 1 900000000000207008 399551006 en 900000000000003001 Specimen from central nervous system obtained by open biopsy (specimen) 900000000000020002 +1767471017 20170731 1 900000000000207008 399551006 en 900000000000003001 Specimen from central nervous system obtained by open biopsy (specimen) 900000000000448009 +1767479015 20030731 1 900000000000207008 399559008 en 900000000000003001 Specimen from uvea obtained by enucleation of eye (specimen) 900000000000020002 +1767479015 20170731 1 900000000000207008 399559008 en 900000000000003001 Specimen from uvea obtained by enucleation of eye (specimen) 900000000000448009 +1767492017 20030731 1 900000000000207008 399572009 en 900000000000003001 Tissue specimen from thymus gland (specimen) 900000000000020002 +1767492017 20170731 1 900000000000207008 399572009 en 900000000000003001 Tissue specimen from thymus gland (specimen) 900000000000448009 +1767523019 20030731 1 900000000000207008 399603006 en 900000000000003001 Specimen from retina obtained by complete exenteration of eye (specimen) 900000000000020002 +1767523019 20170731 1 900000000000207008 399603006 en 900000000000003001 Specimen from retina obtained by complete exenteration of eye (specimen) 900000000000448009 +1767534016 20030731 1 900000000000207008 399614009 en 900000000000003001 Specimen from central nervous system obtained by total resection of tumor (specimen) 900000000000020002 +1767534016 20170731 1 900000000000207008 399614009 en 900000000000003001 Specimen from central nervous system obtained by total resection of tumor (specimen) 900000000000448009 +1767539014 20030731 1 900000000000207008 399619004 en 900000000000003001 Tissue specimen from uvea (specimen) 900000000000020002 +1767539014 20170731 1 900000000000207008 399619004 en 900000000000003001 Tissue specimen from uvea (specimen) 900000000000448009 +1767542015 20030731 1 900000000000207008 399622002 en 900000000000003001 Specimen from thyroid obtained by total thyroidectomy (specimen) 900000000000020002 +1767542015 20170731 1 900000000000207008 399622002 en 900000000000003001 Specimen from thyroid obtained by total thyroidectomy (specimen) 900000000000448009 +1767544019 20030731 1 900000000000207008 399624001 en 900000000000003001 Tissue specimen from ureter (specimen) 900000000000020002 +1767544019 20170731 1 900000000000207008 399624001 en 900000000000003001 Tissue specimen from ureter (specimen) 900000000000448009 +1767549012 20030731 1 900000000000207008 399629006 en 900000000000003001 Specimen from stomach obtained by gastrectomy (specimen) 900000000000020002 +1767549012 20170731 1 900000000000207008 399629006 en 900000000000003001 Specimen from stomach obtained by gastrectomy (specimen) 900000000000448009 +1767553014 20030731 1 900000000000207008 399633004 en 900000000000003001 Specimen from thymus gland obtained by biopsy (specimen) 900000000000020002 +1767553014 20170731 1 900000000000207008 399633004 en 900000000000003001 Specimen from thymus gland obtained by biopsy (specimen) 900000000000448009 +1767560015 20030731 1 900000000000207008 399640003 en 900000000000003001 Specimen from retina obtained by limited exenteration of eye (specimen) 900000000000020002 +1767560015 20170731 1 900000000000207008 399640003 en 900000000000003001 Specimen from retina obtained by limited exenteration of eye (specimen) 900000000000448009 +1767565013 20030731 1 900000000000207008 399645008 en 900000000000003001 Tissue specimen from major salivary gland (specimen) 900000000000020002 +1767565013 20170731 1 900000000000207008 399645008 en 900000000000003001 Tissue specimen from major salivary gland (specimen) 900000000000448009 +1767569019 20030731 1 900000000000207008 399649002 en 900000000000003001 Specimen from regional lymph node obtained by lymphadectomy (specimen) 900000000000020002 +1767569019 20050131 0 900000000000207008 399649002 en 900000000000003001 Specimen from regional lymph node obtained by lymphadectomy (specimen) 900000000000020002 +1767577015 20030731 1 900000000000207008 399657004 en 900000000000003001 Tissue specimen from trophoblast (specimen) 900000000000020002 +1767577015 20170731 1 900000000000207008 399657004 en 900000000000003001 Tissue specimen from trophoblast (specimen) 900000000000448009 +1767578013 20030731 1 900000000000207008 399658009 en 900000000000003001 Trophoblastic tissue obtained by hysterectomy (specimen) 900000000000020002 +1767578013 20170731 1 900000000000207008 399658009 en 900000000000003001 Trophoblastic tissue obtained by hysterectomy (specimen) 900000000000448009 +1767581015 20030731 1 900000000000207008 399661005 en 900000000000003001 Specimen from pelvic lymphadenectomy (specimen) 900000000000020002 +1767581015 20170731 1 900000000000207008 399661005 en 900000000000003001 Specimen from pelvic lymphadenectomy (specimen) 900000000000448009 +1767592019 20030731 1 900000000000207008 399672000 en 900000000000003001 Tissue specimen from thoracic mesothelium (specimen) 900000000000020002 +1767592019 20170731 1 900000000000207008 399672000 en 900000000000003001 Tissue specimen from thoracic mesothelium (specimen) 900000000000448009 +1767600014 20030731 1 900000000000207008 399680007 en 900000000000003001 Specimen from thyroid (specimen) 900000000000020002 +1767600014 20170731 1 900000000000207008 399680007 en 900000000000003001 Specimen from thyroid (specimen) 900000000000448009 +1767609010 20030731 1 900000000000207008 399689008 en 900000000000003001 Specimen from thyroid obtained by thyroidectomy (specimen) 900000000000020002 +1767609010 20170731 1 900000000000207008 399689008 en 900000000000003001 Specimen from thyroid obtained by thyroidectomy (specimen) 900000000000448009 +1767613015 20030731 1 900000000000207008 399693002 en 900000000000003001 Total parotidectomy sample (specimen) 900000000000020002 +1767613015 20170731 1 900000000000207008 399693002 en 900000000000003001 Total parotidectomy sample (specimen) 900000000000448009 +1767613015 20220630 0 900000000000207008 399693002 en 900000000000003001 Total parotidectomy sample (specimen) 900000000000448009 +1767633016 20030731 1 900000000000207008 399713008 en 900000000000003001 Specimen from uterine cervix obtained by cone biopsy (specimen) 900000000000020002 +1767633016 20170731 1 900000000000207008 399713008 en 900000000000003001 Specimen from uterine cervix obtained by cone biopsy (specimen) 900000000000448009 +1767648010 20030731 1 900000000000207008 399728008 en 900000000000003001 Specimen from central nervous system obtained by stereotactically guided core needle biopsy (specimen) 900000000000020002 +1767648010 20170731 1 900000000000207008 399728008 en 900000000000003001 Specimen from central nervous system obtained by stereotactically guided core needle biopsy (specimen) 900000000000448009 +1767651015 20030731 1 900000000000207008 399731009 en 900000000000003001 Specimen from anus obtained by excision of anal polyp (specimen) 900000000000020002 +1767651015 20170731 1 900000000000207008 399731009 en 900000000000003001 Specimen from anus obtained by excision of anal polyp (specimen) 900000000000448009 +1767652010 20030731 1 900000000000207008 399732002 en 900000000000003001 Specimen from central nervous system obtained by partial excision of tumor (specimen) 900000000000020002 +1767652010 20170731 1 900000000000207008 399732002 en 900000000000003001 Specimen from central nervous system obtained by partial excision of tumor (specimen) 900000000000448009 +1767655012 20030731 1 900000000000207008 399735000 en 900000000000003001 Specimen from eye obtained by limited exenteration (specimen) 900000000000020002 +1767655012 20170731 1 900000000000207008 399735000 en 900000000000003001 Specimen from eye obtained by limited exenteration (specimen) 900000000000448009 +1767661010 20030731 1 900000000000207008 399741007 en 900000000000003001 Specimen from kidney obtained by radical nephrectomy (specimen) 900000000000020002 +1767661010 20170731 1 900000000000207008 399741007 en 900000000000003001 Specimen from kidney obtained by radical nephrectomy (specimen) 900000000000448009 +1767667014 20030731 1 900000000000207008 399747006 en 900000000000003001 Specimen from salivary gland (specimen) 900000000000020002 +1767667014 20170731 1 900000000000207008 399747006 en 900000000000003001 Specimen from salivary gland (specimen) 900000000000448009 +1767671012 20030731 1 900000000000207008 399751008 en 900000000000003001 Specimen from uterus obtained by dilation and curettage (specimen) 900000000000020002 +1767671012 20170731 1 900000000000207008 399751008 en 900000000000003001 Specimen from uterus obtained by dilation and curettage (specimen) 900000000000448009 +1767672017 20030731 1 900000000000207008 399752001 en 900000000000003001 Specimen from anus obtained by abdominoperineal resection (specimen) 900000000000020002 +1767672017 20170731 1 900000000000207008 399752001 en 900000000000003001 Specimen from anus obtained by abdominoperineal resection (specimen) 900000000000448009 +1773404014 20030731 1 900000000000207008 399614009 en 900000000000013009 Specimen from central nervous system obtained by total resection of tumour 900000000000020002 +1773404014 20170731 1 900000000000207008 399614009 en 900000000000013009 Specimen from central nervous system obtained by total resection of tumour 900000000000448009 +1773450012 20030731 1 900000000000207008 399732002 en 900000000000013009 Specimen from central nervous system obtained by partial excision of tumour 900000000000020002 +1773450012 20170731 1 900000000000207008 399732002 en 900000000000013009 Specimen from central nervous system obtained by partial excision of tumour 900000000000448009 +1774690014 20030731 1 900000000000207008 399614009 en 900000000000013009 Specimen from central nervous system obtained by total resection of tumor 900000000000020002 +1774690014 20170731 1 900000000000207008 399614009 en 900000000000013009 Specimen from central nervous system obtained by total resection of tumor 900000000000448009 +1774736014 20030731 1 900000000000207008 399732002 en 900000000000013009 Specimen from central nervous system obtained by partial excision of tumor 900000000000020002 +1774736014 20170731 1 900000000000207008 399732002 en 900000000000013009 Specimen from central nervous system obtained by partial excision of tumor 900000000000448009 +1775385011 20030731 1 900000000000207008 122669002 en 900000000000013009 Specimen from urinary bladder obtained by anterior exenteration 900000000000020002 +1775385011 20170731 1 900000000000207008 122669002 en 900000000000013009 Specimen from urinary bladder obtained by anterior exenteration 900000000000448009 +1775386012 20030731 1 900000000000207008 122686008 en 900000000000013009 Specimen from urinary bladder obtained by partial cystectomy 900000000000020002 +1775386012 20170731 1 900000000000207008 122686008 en 900000000000013009 Specimen from urinary bladder obtained by partial cystectomy 900000000000448009 +1775387015 20030731 1 900000000000207008 122687004 en 900000000000013009 Specimen from urinary bladder obtained by total cystectomy 900000000000020002 +1775387015 20170731 1 900000000000207008 122687004 en 900000000000013009 Specimen from urinary bladder obtained by total cystectomy 900000000000448009 +1775388013 20030731 1 900000000000207008 122688009 en 900000000000013009 Specimen from urinary bladder obtained by radical cystoprostatectomy 900000000000020002 +1775388013 20170731 1 900000000000207008 122688009 en 900000000000013009 Specimen from urinary bladder obtained by radical cystoprostatectomy 900000000000448009 +1775702010 20030731 1 900000000000207008 309067007 en 900000000000013009 Specimen from skin obtained by curettage 900000000000020002 +1775702010 20170731 1 900000000000207008 309067007 en 900000000000013009 Specimen from skin obtained by curettage 900000000000448009 +1775980014 20030731 1 900000000000207008 369618002 en 900000000000013009 Tissue specimen obtained from vulva by biopsy 900000000000020002 +1775980014 20170731 1 900000000000207008 369618002 en 900000000000013009 Tissue specimen obtained from vulva by biopsy 900000000000448009 +1776246010 20030731 1 900000000000207008 396273004 en 900000000000013009 Specimen from uterine cervix obtained by excision of cervix 900000000000020002 +1776246010 20170731 1 900000000000207008 396273004 en 900000000000013009 Specimen from uterine cervix obtained by excision of cervix 900000000000448009 +1776303014 20030731 1 900000000000207008 396353007 en 900000000000013009 Specimen from skin obtained by elliptical excision 900000000000020002 +1776303014 20170731 1 900000000000207008 396353007 en 900000000000013009 Specimen from skin obtained by elliptical excision 900000000000448009 +1776304015 20030731 1 900000000000207008 396354001 en 900000000000013009 Specimen from skin obtained by wide excision 900000000000020002 +1776304015 20170731 1 900000000000207008 396354001 en 900000000000013009 Specimen from skin obtained by wide excision 900000000000448009 +1776305019 20030731 1 900000000000207008 396355000 en 900000000000013009 Specimen from skin obtained by excision 900000000000020002 +1776305019 20170731 1 900000000000207008 396355000 en 900000000000013009 Specimen from skin obtained by excision 900000000000448009 +1776306018 20030731 1 900000000000207008 396356004 en 900000000000013009 Specimen from skin obtained by re-excision 900000000000020002 +1776306018 20170731 1 900000000000207008 396356004 en 900000000000013009 Specimen from skin obtained by re-excision 900000000000448009 +1776307010 20030731 1 900000000000207008 396357008 en 900000000000013009 Specimen from skin obtained by elliptical re-excision 900000000000020002 +1776307010 20170731 1 900000000000207008 396357008 en 900000000000013009 Specimen from skin obtained by elliptical re-excision 900000000000448009 +1776308017 20030731 1 900000000000207008 396358003 en 900000000000013009 Specimen from skin obtained by wide re-excision 900000000000020002 +1776308017 20170731 1 900000000000207008 396358003 en 900000000000013009 Specimen from skin obtained by wide re-excision 900000000000448009 +1776309013 20030731 1 900000000000207008 396359006 en 900000000000013009 Lymph node from regional lymph node dissection 900000000000020002 +1776309013 20170731 1 900000000000207008 396359006 en 900000000000013009 Lymph node from regional lymph node dissection 900000000000448009 +1776407011 20030731 1 900000000000207008 396476009 en 900000000000013009 Specimen from liver obtained by right lobectomy 900000000000020002 +1776407011 20170731 1 900000000000207008 396476009 en 900000000000013009 Specimen from liver obtained by right lobectomy 900000000000448009 +1776408018 20030731 1 900000000000207008 396477000 en 900000000000013009 Specimen from liver obtained by extended right lobectomy 900000000000020002 +1776408018 20170731 1 900000000000207008 396477000 en 900000000000013009 Specimen from liver obtained by extended right lobectomy 900000000000448009 +1776409014 20030731 1 900000000000207008 396478005 en 900000000000013009 Specimen from liver obtained by medial segmentectomy 900000000000020002 +1776409014 20170731 1 900000000000207008 396478005 en 900000000000013009 Specimen from liver obtained by medial segmentectomy 900000000000448009 +1776410016 20030731 1 900000000000207008 396479002 en 900000000000013009 Specimen from liver obtained by left lateral segmentectomy 900000000000020002 +1776410016 20170731 1 900000000000207008 396479002 en 900000000000013009 Specimen from liver obtained by left lateral segmentectomy 900000000000448009 +1776411017 20030731 1 900000000000207008 396480004 en 900000000000013009 Specimen from liver obtained by total left lobectomy 900000000000020002 +1776411017 20170731 1 900000000000207008 396480004 en 900000000000013009 Specimen from liver obtained by total left lobectomy 900000000000448009 +1776412012 20030731 1 900000000000207008 396481000 en 900000000000013009 Specimen from explanted liver 900000000000020002 +1776412012 20170731 1 900000000000207008 396481000 en 900000000000013009 Specimen from explanted liver 900000000000448009 +1776414013 20030731 1 900000000000207008 396483002 en 900000000000013009 Specimen from skin obtained by shave excision 900000000000020002 +1776414013 20170731 1 900000000000207008 396483002 en 900000000000013009 Specimen from skin obtained by shave excision 900000000000448009 +1776440019 20030731 1 900000000000207008 396525008 en 900000000000013009 Specimen from adrenal gland obtained by needle biopsy 900000000000020002 +1776440019 20170731 1 900000000000207008 396525008 en 900000000000013009 Specimen from adrenal gland obtained by needle biopsy 900000000000448009 +1776441015 20030731 1 900000000000207008 396526009 en 900000000000013009 Specimen from adrenal gland obtained by partial adrenalectomy 900000000000020002 +1776441015 20170731 1 900000000000207008 396526009 en 900000000000013009 Specimen from adrenal gland obtained by partial adrenalectomy 900000000000448009 +1776442010 20030731 1 900000000000207008 396527000 en 900000000000013009 Specimen from adrenal gland obtained by total adrenalectomy 900000000000020002 +1776442010 20170731 1 900000000000207008 396527000 en 900000000000013009 Specimen from adrenal gland obtained by total adrenalectomy 900000000000448009 +1776511015 20030731 1 900000000000207008 396685001 en 900000000000013009 Specimen from urinary bladder obtained by radical cystectomy 900000000000020002 +1776511015 20170731 1 900000000000207008 396685001 en 900000000000013009 Specimen from urinary bladder obtained by radical cystectomy 900000000000448009 +1776603017 20030731 1 900000000000207008 396804002 en 900000000000013009 Specimen from pancreas obtained by pylorus sparing pancreaticoduodenectomy, partial pancreatectomy 900000000000020002 +1776603017 20170731 1 900000000000207008 396804002 en 900000000000013009 Specimen from pancreas obtained by pylorus sparing pancreaticoduodenectomy, partial pancreatectomy 900000000000448009 +1776604011 20030731 1 900000000000207008 396805001 en 900000000000013009 Specimen from pancreas obtained by pylorus sparing pancreaticoduodenectomy, total pancreatectomy 900000000000020002 +1776604011 20170731 1 900000000000207008 396805001 en 900000000000013009 Specimen from pancreas obtained by pylorus sparing pancreaticoduodenectomy, total pancreatectomy 900000000000448009 +1776605012 20030731 1 900000000000207008 396806000 en 900000000000013009 Specimen from pancreas obtained by pancreaticoduodenectomy, partial pancreatectomy 900000000000020002 +1776605012 20170731 1 900000000000207008 396806000 en 900000000000013009 Specimen from pancreas obtained by pancreaticoduodenectomy, partial pancreatectomy 900000000000448009 +1776606013 20030731 1 900000000000207008 396807009 en 900000000000013009 Specimen from pancreas obtained by pancreaticoduodenectomy, total pancreatectomy 900000000000020002 +1776606013 20170731 1 900000000000207008 396807009 en 900000000000013009 Specimen from pancreas obtained by pancreaticoduodenectomy, total pancreatectomy 900000000000448009 +1776675013 20030731 1 900000000000207008 396896007 en 900000000000013009 Specimen from thymus gland 900000000000020002 +1776675013 20170731 1 900000000000207008 396896007 en 900000000000013009 Specimen from thymus gland 900000000000448009 +1776676014 20030731 1 900000000000207008 396897003 en 900000000000013009 Specimen from thymus gland obtained by transcervical thymectomy 900000000000020002 +1776676014 20170731 1 900000000000207008 396897003 en 900000000000013009 Specimen from thymus gland obtained by transcervical thymectomy 900000000000448009 +1776677017 20030731 1 900000000000207008 396898008 en 900000000000013009 Specimen from thymus gland obtained by thoracotomy 900000000000020002 +1776677017 20170731 1 900000000000207008 396898008 en 900000000000013009 Specimen from thymus gland obtained by thoracotomy 900000000000448009 +1776678010 20030731 1 900000000000207008 396899000 en 900000000000013009 Specimen from thymus gland obtained by fine needle aspiration biopsy 900000000000020002 +1776678010 20170731 1 900000000000207008 396899000 en 900000000000013009 Specimen from thymus gland obtained by fine needle aspiration biopsy 900000000000448009 +1776679019 20030731 1 900000000000207008 396900005 en 900000000000013009 Specimen from thymus gland obtained by CT guided needle biopsy 900000000000020002 +1776681017 20030731 1 900000000000207008 396902002 en 900000000000013009 Specimen from thymus gland obtained by transthoracic needle biopsy 900000000000020002 +1776681017 20170731 1 900000000000207008 396902002 en 900000000000013009 Specimen from thymus gland obtained by transthoracic needle biopsy 900000000000448009 +1776683019 20030731 1 900000000000207008 396904001 en 900000000000013009 Specimen from thymus gland obtained by limited thoracotomy 900000000000020002 +1776683019 20170731 1 900000000000207008 396904001 en 900000000000013009 Specimen from thymus gland obtained by limited thoracotomy 900000000000448009 +1776685014 20030731 1 900000000000207008 396906004 en 900000000000013009 Specimen from thymus gland obtained by video assisted thoracotomy 900000000000020002 +1776685014 20170731 1 900000000000207008 396906004 en 900000000000013009 Specimen from thymus gland obtained by video assisted thoracotomy 900000000000448009 +1776685014 20240601 0 900000000000207008 396906004 en 900000000000013009 Specimen from thymus gland obtained by video assisted thoracotomy 900000000000448009 +1776697010 20030731 1 900000000000207008 396928004 en 900000000000013009 Specimen from eye obtained by enucleation 900000000000020002 +1776697010 20170731 1 900000000000207008 396928004 en 900000000000013009 Specimen from eye obtained by enucleation 900000000000448009 +1776734010 20030731 1 900000000000207008 396997002 en 900000000000013009 Specimen from bone marrow obtained by aspiration 900000000000020002 +1776734010 20170731 1 900000000000207008 396997002 en 900000000000013009 Specimen from bone marrow obtained by aspiration 900000000000448009 +1776735011 20030731 1 900000000000207008 396998007 en 900000000000013009 Specimen from bone marrow obtained by aspiration and biopsy 900000000000020002 +1776735011 20170731 1 900000000000207008 396998007 en 900000000000013009 Specimen from bone marrow obtained by aspiration and biopsy 900000000000448009 +1776736012 20030731 1 900000000000207008 396999004 en 900000000000013009 Specimen from bone marrow obtained by biopsy 900000000000020002 +1776736012 20170731 1 900000000000207008 396999004 en 900000000000013009 Specimen from bone marrow obtained by biopsy 900000000000448009 +1776779014 20030731 1 900000000000207008 397053005 en 900000000000013009 Specimen from small intestine obtained by polypectomy 900000000000020002 +1776779014 20170731 1 900000000000207008 397053005 en 900000000000013009 Specimen from small intestine obtained by polypectomy 900000000000448009 +1776781011 20030731 1 900000000000207008 397055003 en 900000000000013009 Specimen from small intestine obtained by segmental resection 900000000000020002 +1776781011 20170731 1 900000000000207008 397055003 en 900000000000013009 Specimen from small intestine obtained by segmental resection 900000000000448009 +1776782016 20030731 1 900000000000207008 397056002 en 900000000000013009 Specimen from small intestine obtained by Whipple procedure 900000000000020002 +1776796010 20030731 1 900000000000207008 397077004 en 900000000000013009 Specimen obtained by incisional biopsy 900000000000020002 +1776796010 20170731 1 900000000000207008 397077004 en 900000000000013009 Specimen obtained by incisional biopsy 900000000000448009 +1776797018 20030731 1 900000000000207008 397078009 en 900000000000013009 Specimen obtained by excisional biopsy 900000000000020002 +1776797018 20170731 1 900000000000207008 397078009 en 900000000000013009 Specimen obtained by excisional biopsy 900000000000448009 +1776812017 20030731 1 900000000000207008 397111007 en 900000000000013009 Specimen from vagina obtained by partial vaginectomy 900000000000020002 +1776812017 20170731 1 900000000000207008 397111007 en 900000000000013009 Specimen from vagina obtained by partial vaginectomy 900000000000448009 +1776824012 20030731 1 900000000000207008 397129002 en 900000000000013009 Specimen from vulva 900000000000020002 +1776824012 20170731 1 900000000000207008 397129002 en 900000000000013009 Specimen from vulva 900000000000448009 +1776825013 20030731 1 900000000000207008 397130007 en 900000000000013009 Specimen from vulva obtained by local excision 900000000000020002 +1776825013 20170731 1 900000000000207008 397130007 en 900000000000013009 Specimen from vulva obtained by local excision 900000000000448009 +1776826014 20030731 1 900000000000207008 397131006 en 900000000000013009 Specimen from vulva obtained by wide excision 900000000000020002 +1776826014 20170731 1 900000000000207008 397131006 en 900000000000013009 Specimen from vulva obtained by wide excision 900000000000448009 +1776827017 20030731 1 900000000000207008 397132004 en 900000000000013009 Specimen from vulva obtained by partial vulvectomy 900000000000020002 +1776827017 20170731 1 900000000000207008 397132004 en 900000000000013009 Specimen from vulva obtained by partial vulvectomy 900000000000448009 +1776828010 20030731 1 900000000000207008 397133009 en 900000000000013009 Specimen from vulva obtained by total vulvectomy 900000000000020002 +1776828010 20170731 1 900000000000207008 397133009 en 900000000000013009 Specimen from vulva obtained by total vulvectomy 900000000000448009 +1776829019 20030731 1 900000000000207008 397134003 en 900000000000013009 Specimen from vulva obtained by radical vulvectomy 900000000000020002 +1776829019 20170731 1 900000000000207008 397134003 en 900000000000013009 Specimen from vulva obtained by radical vulvectomy 900000000000448009 +1776830012 20030731 1 900000000000207008 397135002 en 900000000000013009 Specimen from pelvic lymph node 900000000000020002 +1776830012 20170731 1 900000000000207008 397135002 en 900000000000013009 Specimen from pelvic lymph node 900000000000448009 +1776831011 20030731 1 900000000000207008 397136001 en 900000000000013009 Specimen from inguinofemoral lymphadenectomy 900000000000020002 +1776831011 20170731 1 900000000000207008 397136001 en 900000000000013009 Specimen from inguinofemoral lymphadenectomy 900000000000448009 +1776886012 20030731 1 900000000000207008 397199005 en 900000000000013009 Specimen from breast obtained by excision 900000000000020002 +1776886012 20170731 1 900000000000207008 397199005 en 900000000000013009 Specimen from breast obtained by excision 900000000000448009 +1776901018 20030731 1 900000000000207008 397221008 en 900000000000013009 Specimen from renal pelvis obtained by biopsy 900000000000020002 +1776901018 20170731 1 900000000000207008 397221008 en 900000000000013009 Specimen from renal pelvis obtained by biopsy 900000000000448009 +1776912018 20030731 1 900000000000207008 397232008 en 900000000000013009 Specimen from renal pelvis obtained by nephroureterectomy 900000000000020002 +1776912018 20170731 1 900000000000207008 397232008 en 900000000000013009 Specimen from renal pelvis obtained by nephroureterectomy 900000000000448009 +1776913011 20030731 1 900000000000207008 397233003 en 900000000000013009 Specimen from renal pelvis 900000000000020002 +1776913011 20170731 1 900000000000207008 397233003 en 900000000000013009 Specimen from renal pelvis 900000000000448009 +1776914017 20030731 1 900000000000207008 397234009 en 900000000000013009 Specimen from renal pelvis obtained by partial nephroureterectomy 900000000000020002 +1776914017 20170731 1 900000000000207008 397234009 en 900000000000013009 Specimen from renal pelvis obtained by partial nephroureterectomy 900000000000448009 +1776915016 20030731 1 900000000000207008 397235005 en 900000000000013009 Specimen from renal pelvis obtained by complete nephroureterectomy 900000000000020002 +1776915016 20170731 1 900000000000207008 397235005 en 900000000000013009 Specimen from renal pelvis obtained by complete nephroureterectomy 900000000000448009 +1776924013 20030731 1 900000000000207008 397245007 en 900000000000013009 Specimen from ovary obtained by hysterectomy with right salpingo-oophorectomy 900000000000020002 +1776924013 20170731 1 900000000000207008 397245007 en 900000000000013009 Specimen from ovary obtained by hysterectomy with right salpingo-oophorectomy 900000000000448009 +1776925014 20030731 1 900000000000207008 397246008 en 900000000000013009 Specimen from ovary obtained by hysterectomy with left salpingo-oophorectomy 900000000000020002 +1776925014 20170731 1 900000000000207008 397246008 en 900000000000013009 Specimen from ovary obtained by hysterectomy with left salpingo-oophorectomy 900000000000448009 +1777002018 20030731 1 900000000000207008 397326000 en 900000000000013009 Specimen from right fallopian tube obtained by hysterectomy with salpingo-oophorectomy 900000000000020002 +1777002018 20170731 1 900000000000207008 397326000 en 900000000000013009 Specimen from right fallopian tube obtained by hysterectomy with salpingo-oophorectomy 900000000000448009 +1777009010 20030731 1 900000000000207008 397333000 en 900000000000013009 Specimen from right fallopian tube obtained by salpingectomy 900000000000020002 +1777009010 20170731 1 900000000000207008 397333000 en 900000000000013009 Specimen from right fallopian tube obtained by salpingectomy 900000000000448009 +1777010017 20030731 1 900000000000207008 397334006 en 900000000000013009 Specimen from left fallopian tube obtained by salpingectomy 900000000000020002 +1777010017 20170731 1 900000000000207008 397334006 en 900000000000013009 Specimen from left fallopian tube obtained by salpingectomy 900000000000448009 +1777090016 20030731 1 900000000000207008 397436009 en 900000000000013009 Specimen obtained by lymphadenctomy 900000000000020002 +1777090016 20050131 0 900000000000207008 397436009 en 900000000000013009 Specimen obtained by lymphadenctomy 900000000000020002 +1777092012 20030731 1 900000000000207008 397438005 en 900000000000013009 Specimen from lymph node obtained by staging laparotomy 900000000000020002 +1777092012 20170731 1 900000000000207008 397438005 en 900000000000013009 Specimen from lymph node obtained by staging laparotomy 900000000000448009 +1777109012 20030731 1 900000000000207008 397455009 en 900000000000013009 Specimen from thoracic mesothelium obtained by percutaneous needle biopsy 900000000000020002 +1777109012 20170731 1 900000000000207008 397455009 en 900000000000013009 Specimen from thoracic mesothelium obtained by percutaneous needle biopsy 900000000000448009 +1777110019 20030731 1 900000000000207008 397456005 en 900000000000013009 Specimen from thoracic mesothelium obtained by thoracoscopic biopsy 900000000000020002 +1777110019 20170731 1 900000000000207008 397456005 en 900000000000013009 Specimen from thoracic mesothelium obtained by thoracoscopic biopsy 900000000000448009 +1777111015 20030731 1 900000000000207008 397457001 en 900000000000013009 Specimen from thoracic mesothelium 900000000000020002 +1777111015 20170731 1 900000000000207008 397457001 en 900000000000013009 Specimen from thoracic mesothelium 900000000000448009 +1777112010 20030731 1 900000000000207008 397458006 en 900000000000013009 Specimen from thoracic mesothelium obtained by open thoracotomy 900000000000020002 +1777112010 20170731 1 900000000000207008 397458006 en 900000000000013009 Specimen from thoracic mesothelium obtained by open thoracotomy 900000000000448009 +1777113017 20030731 1 900000000000207008 397462000 en 900000000000013009 Specimen from pericardium obtained by pericardial resection 900000000000020002 +1777113017 20170731 1 900000000000207008 397462000 en 900000000000013009 Specimen from pericardium obtained by pericardial resection 900000000000448009 +1777124015 20030731 1 900000000000207008 397482001 en 900000000000013009 Specimen from extrahepatic bile duct obtained by pancreaticoduodenectomy 900000000000020002 +1777124015 20170731 1 900000000000207008 397482001 en 900000000000013009 Specimen from extrahepatic bile duct obtained by pancreaticoduodenectomy 900000000000448009 +1777125019 20030731 1 900000000000207008 397483006 en 900000000000013009 Specimen from extrahepatic bile duct obtained by segmental resection of bile ducts 900000000000020002 +1777125019 20170731 1 900000000000207008 397483006 en 900000000000013009 Specimen from extrahepatic bile duct obtained by segmental resection of bile ducts 900000000000448009 +1778836014 20030731 1 900000000000207008 399388008 en 900000000000013009 Specimen from left fallopian tube obtained by hysterectomy with salpingo-oophorectomy 900000000000020002 +1778836014 20170731 1 900000000000207008 399388008 en 900000000000013009 Specimen from left fallopian tube obtained by hysterectomy with salpingo-oophorectomy 900000000000448009 +1778840017 20030731 1 900000000000207008 399396003 en 900000000000013009 Trophoblastic tissue obtained from uterus by dilation and curettage 900000000000020002 +1778840017 20170731 1 900000000000207008 399396003 en 900000000000013009 Trophoblastic tissue obtained from uterus by dilation and curettage 900000000000448009 +1778844014 20030731 1 900000000000207008 399402006 en 900000000000013009 Specimen from ureter 900000000000020002 +1778844014 20170731 1 900000000000207008 399402006 en 900000000000013009 Specimen from ureter 900000000000448009 +1778846011 20030731 1 900000000000207008 399407000 en 900000000000013009 Specimen from ureter obtained by ureterectomy 900000000000020002 +1778846011 20170731 1 900000000000207008 399407000 en 900000000000013009 Specimen from ureter obtained by ureterectomy 900000000000448009 +1778849016 20030731 1 900000000000207008 399411006 en 900000000000013009 Specimen from trophoblast 900000000000020002 +1778849016 20170731 1 900000000000207008 399411006 en 900000000000013009 Specimen from trophoblast 900000000000448009 +1778861012 20030731 1 900000000000207008 399436000 en 900000000000013009 Specimen from central nervous system 900000000000020002 +1778861012 20170731 1 900000000000207008 399436000 en 900000000000013009 Specimen from central nervous system 900000000000448009 +1778863010 20030731 1 900000000000207008 399440009 en 900000000000013009 Specimen from ureter obtained by nephroureterectomy 900000000000020002 +1778863010 20170731 1 900000000000207008 399440009 en 900000000000013009 Specimen from ureter obtained by nephroureterectomy 900000000000448009 +1778865015 20030731 1 900000000000207008 399443006 en 900000000000013009 Specimen from eye obtained by complete exenteration 900000000000020002 +1778865015 20170731 1 900000000000207008 399443006 en 900000000000013009 Specimen from eye obtained by complete exenteration 900000000000448009 +1778867011 20030731 1 900000000000207008 399447007 en 900000000000013009 Trophoblastic tissue obtained by radical hysterectomy 900000000000020002 +1778867011 20170731 1 900000000000207008 399447007 en 900000000000013009 Trophoblastic tissue obtained by radical hysterectomy 900000000000448009 +1778870010 20030731 1 900000000000207008 399451009 en 900000000000013009 Tissue specimen from retina 900000000000020002 +1778870010 20170731 1 900000000000207008 399451009 en 900000000000013009 Tissue specimen from retina 900000000000448009 +1778878015 20030731 1 900000000000207008 399460001 en 900000000000013009 Specimen from extrahepatic bile duct 900000000000020002 +1778878015 20170731 1 900000000000207008 399460001 en 900000000000013009 Specimen from extrahepatic bile duct 900000000000448009 +1778883011 20030731 1 900000000000207008 399467003 en 900000000000013009 Specimen from uvea obtained by limited exenteration of eye 900000000000020002 +1778883011 20170731 1 900000000000207008 399467003 en 900000000000013009 Specimen from uvea obtained by limited exenteration of eye 900000000000448009 +1778894010 20030731 1 900000000000207008 399484009 en 900000000000013009 Superficial parotidectomy sample 900000000000020002 +1778894010 20170731 1 900000000000207008 399484009 en 900000000000013009 Superficial parotidectomy sample 900000000000448009 +1778896012 20030731 1 900000000000207008 399486006 en 900000000000013009 Tissue specimen from vulva 900000000000020002 +1778896012 20170731 1 900000000000207008 399486006 en 900000000000013009 Tissue specimen from vulva 900000000000448009 +1778900010 20030731 1 900000000000207008 399492000 en 900000000000013009 Tissue specimen from lung 900000000000020002 +1778900010 20170731 1 900000000000207008 399492000 en 900000000000013009 Tissue specimen from lung 900000000000448009 +1778905017 20030731 1 900000000000207008 399499009 en 900000000000013009 Specimen from uvea obtained by complete exenteration of eye 900000000000020002 +1778905017 20170731 1 900000000000207008 399499009 en 900000000000013009 Specimen from uvea obtained by complete exenteration of eye 900000000000448009 +1778906016 20030731 1 900000000000207008 399502008 en 900000000000013009 Trophoblastic tissue obtained by pelvic exenteration 900000000000020002 +1778906016 20170731 1 900000000000207008 399502008 en 900000000000013009 Trophoblastic tissue obtained by pelvic exenteration 900000000000448009 +1778910018 20030731 1 900000000000207008 399512001 en 900000000000013009 Specimen from retina obtained by enucleation of eye 900000000000020002 +1778910018 20170731 1 900000000000207008 399512001 en 900000000000013009 Specimen from retina obtained by enucleation of eye 900000000000448009 +1778916012 20030731 1 900000000000207008 399526005 en 900000000000013009 Specimen from major salivary gland 900000000000020002 +1778916012 20170731 1 900000000000207008 399526005 en 900000000000013009 Specimen from major salivary gland 900000000000448009 +1778919017 20030731 1 900000000000207008 399532000 en 900000000000013009 Tissue specimen from renal pelvis 900000000000020002 +1778919017 20170731 1 900000000000207008 399532000 en 900000000000013009 Tissue specimen from renal pelvis 900000000000448009 +1778928016 20030731 1 900000000000207008 399541005 en 900000000000013009 Tissue specimen from extrahepatic bile duct 900000000000020002 +1778928016 20170731 1 900000000000207008 399541005 en 900000000000013009 Tissue specimen from extrahepatic bile duct 900000000000448009 +1778929012 20030731 1 900000000000207008 399542003 en 900000000000013009 Tissue specimen from central nervous system 900000000000020002 +1778929012 20170731 1 900000000000207008 399542003 en 900000000000013009 Tissue specimen from central nervous system 900000000000448009 +1778934011 20030731 1 900000000000207008 399551006 en 900000000000013009 Specimen from central nervous system obtained by open biopsy 900000000000020002 +1778934011 20170731 1 900000000000207008 399551006 en 900000000000013009 Specimen from central nervous system obtained by open biopsy 900000000000448009 +1778938014 20030731 1 900000000000207008 399559008 en 900000000000013009 Specimen from uvea obtained by enucleation of eye 900000000000020002 +1778938014 20170731 1 900000000000207008 399559008 en 900000000000013009 Specimen from uvea obtained by enucleation of eye 900000000000448009 +1778946010 20030731 1 900000000000207008 399572009 en 900000000000013009 Tissue specimen from thymus gland 900000000000020002 +1778946010 20170731 1 900000000000207008 399572009 en 900000000000013009 Tissue specimen from thymus gland 900000000000448009 +1778964015 20030731 1 900000000000207008 399603006 en 900000000000013009 Specimen from retina obtained by complete exenteration of eye 900000000000020002 +1778964015 20170731 1 900000000000207008 399603006 en 900000000000013009 Specimen from retina obtained by complete exenteration of eye 900000000000448009 +1778971013 20030731 1 900000000000207008 399619004 en 900000000000013009 Tissue specimen from uvea 900000000000020002 +1778971013 20170731 1 900000000000207008 399619004 en 900000000000013009 Tissue specimen from uvea 900000000000448009 +1778973011 20030731 1 900000000000207008 399622002 en 900000000000013009 Specimen from thyroid obtained by total thyroidectomy 900000000000020002 +1778973011 20170731 1 900000000000207008 399622002 en 900000000000013009 Specimen from thyroid obtained by total thyroidectomy 900000000000448009 +1778974017 20030731 1 900000000000207008 399624001 en 900000000000013009 Tissue specimen from ureter 900000000000020002 +1778974017 20170731 1 900000000000207008 399624001 en 900000000000013009 Tissue specimen from ureter 900000000000448009 +1778978019 20030731 1 900000000000207008 399629006 en 900000000000013009 Specimen from stomach obtained by gastrectomy 900000000000020002 +1778978019 20170731 1 900000000000207008 399629006 en 900000000000013009 Specimen from stomach obtained by gastrectomy 900000000000448009 +1778981012 20030731 1 900000000000207008 399633004 en 900000000000013009 Specimen from thymus gland obtained by biopsy 900000000000020002 +1778981012 20170731 1 900000000000207008 399633004 en 900000000000013009 Specimen from thymus gland obtained by biopsy 900000000000448009 +1778987011 20030731 1 900000000000207008 399640003 en 900000000000013009 Specimen from retina obtained by limited exenteration of eye 900000000000020002 +1778987011 20170731 1 900000000000207008 399640003 en 900000000000013009 Specimen from retina obtained by limited exenteration of eye 900000000000448009 +1778990017 20030731 1 900000000000207008 399645008 en 900000000000013009 Tissue specimen from major salivary gland 900000000000020002 +1778990017 20170731 1 900000000000207008 399645008 en 900000000000013009 Tissue specimen from major salivary gland 900000000000448009 +1778993015 20030731 1 900000000000207008 399649002 en 900000000000013009 Specimen from regional lymph node obtained by lymphadectomy 900000000000020002 +1778993015 20050131 0 900000000000207008 399649002 en 900000000000013009 Specimen from regional lymph node obtained by lymphadectomy 900000000000020002 +1778996011 20030731 1 900000000000207008 399657004 en 900000000000013009 Tissue specimen from trophoblast 900000000000020002 +1778996011 20170731 1 900000000000207008 399657004 en 900000000000013009 Tissue specimen from trophoblast 900000000000448009 +1778997019 20030731 1 900000000000207008 399658009 en 900000000000013009 Trophoblastic tissue obtained by hysterectomy 900000000000020002 +1778997019 20170731 1 900000000000207008 399658009 en 900000000000013009 Trophoblastic tissue obtained by hysterectomy 900000000000448009 +1778999016 20030731 1 900000000000207008 399661005 en 900000000000013009 Specimen from pelvic lymphadenectomy 900000000000020002 +1778999016 20170731 1 900000000000207008 399661005 en 900000000000013009 Specimen from pelvic lymphadenectomy 900000000000448009 +1779003017 20030731 1 900000000000207008 399672000 en 900000000000013009 Tissue specimen from thoracic mesothelium 900000000000020002 +1779003017 20170731 1 900000000000207008 399672000 en 900000000000013009 Tissue specimen from thoracic mesothelium 900000000000448009 +1779006013 20030731 1 900000000000207008 399680007 en 900000000000013009 Specimen from thyroid 900000000000020002 +1779006013 20170731 1 900000000000207008 399680007 en 900000000000013009 Specimen from thyroid 900000000000448009 +1779012015 20030731 1 900000000000207008 399689008 en 900000000000013009 Specimen from thyroid obtained by thyroidectomy 900000000000020002 +1779012015 20170731 1 900000000000207008 399689008 en 900000000000013009 Specimen from thyroid obtained by thyroidectomy 900000000000448009 +1779014019 20030731 1 900000000000207008 399693002 en 900000000000013009 Total parotidectomy sample 900000000000020002 +1779014019 20170731 1 900000000000207008 399693002 en 900000000000013009 Total parotidectomy sample 900000000000448009 +1779028013 20030731 1 900000000000207008 399713008 en 900000000000013009 Specimen from uterine cervix obtained by cone biopsy 900000000000020002 +1779028013 20170731 1 900000000000207008 399713008 en 900000000000013009 Specimen from uterine cervix obtained by cone biopsy 900000000000448009 +1779038015 20030731 1 900000000000207008 399728008 en 900000000000013009 Specimen from central nervous system obtained by stereotactically guided core needle biopsy 900000000000020002 +1779038015 20170731 1 900000000000207008 399728008 en 900000000000013009 Specimen from central nervous system obtained by stereotactically guided core needle biopsy 900000000000448009 +1779040013 20030731 1 900000000000207008 399731009 en 900000000000013009 Specimen from anus obtained by excision of anal polyp 900000000000020002 +1779040013 20170731 1 900000000000207008 399731009 en 900000000000013009 Specimen from anus obtained by excision of anal polyp 900000000000448009 +1779042017 20030731 1 900000000000207008 399735000 en 900000000000013009 Specimen from eye obtained by limited exenteration 900000000000020002 +1779042017 20170731 1 900000000000207008 399735000 en 900000000000013009 Specimen from eye obtained by limited exenteration 900000000000448009 +1779045015 20030731 1 900000000000207008 399741007 en 900000000000013009 Specimen from kidney obtained by radical nephrectomy 900000000000020002 +1779045015 20170731 1 900000000000207008 399741007 en 900000000000013009 Specimen from kidney obtained by radical nephrectomy 900000000000448009 +1779050014 20030731 1 900000000000207008 399747006 en 900000000000013009 Specimen from salivary gland 900000000000020002 +1779050014 20170731 1 900000000000207008 399747006 en 900000000000013009 Specimen from salivary gland 900000000000448009 +1779054017 20030731 1 900000000000207008 399751008 en 900000000000013009 Specimen from uterus obtained by dilation and curettage 900000000000020002 +1779054017 20170731 1 900000000000207008 399751008 en 900000000000013009 Specimen from uterus obtained by dilation and curettage 900000000000448009 +1779055016 20030731 1 900000000000207008 399752001 en 900000000000013009 Specimen from anus obtained by abdominoperineal resection 900000000000020002 +1779055016 20170731 1 900000000000207008 399752001 en 900000000000013009 Specimen from anus obtained by abdominoperineal resection 900000000000448009 +1784700018 20030731 1 900000000000207008 122610009 en 900000000000013009 Lung biopsy sample 900000000000020002 +1784700018 20170731 1 900000000000207008 122610009 en 900000000000013009 Lung biopsy sample 900000000000448009 +1784711014 20030731 1 900000000000207008 127461003 en 900000000000013009 Specimen from pleura obtained by pleural resection 900000000000020002 +1784711014 20170731 1 900000000000207008 127461003 en 900000000000013009 Specimen from pleura obtained by pleural resection 900000000000448009 +1784712019 20030731 1 900000000000207008 127478007 en 900000000000013009 Thyroid tissue sample 900000000000020002 +1784712019 20170731 1 900000000000207008 127478007 en 900000000000013009 Thyroid tissue sample 900000000000448009 +1785135017 20030731 1 900000000000207008 309172000 en 900000000000013009 Specimen from pleura obtained by biopsy 900000000000020002 +1785135017 20170731 1 900000000000207008 309172000 en 900000000000013009 Specimen from pleura obtained by biopsy 900000000000448009 +1785136016 20030731 1 900000000000207008 309205005 en 900000000000013009 Specimen from gallbladder obtained by cholecystectomy 900000000000020002 +1785136016 20170731 1 900000000000207008 309205005 en 900000000000013009 Specimen from gallbladder obtained by cholecystectomy 900000000000448009 +1785138015 20030731 1 900000000000207008 309271002 en 900000000000013009 Specimen from ureter obtained by biopsy 900000000000020002 +1785138015 20170731 1 900000000000207008 309271002 en 900000000000013009 Specimen from ureter obtained by biopsy 900000000000448009 +1785139011 20030731 1 900000000000207008 309273004 en 900000000000013009 Specimen from bladder obtained by biopsy 900000000000020002 +1785139011 20170731 1 900000000000207008 309273004 en 900000000000013009 Specimen from bladder obtained by biopsy 900000000000448009 +1785140013 20030731 1 900000000000207008 309485009 en 900000000000013009 Specimen from sublingual gland obtained by excision 900000000000020002 +1785140013 20170731 1 900000000000207008 309485009 en 900000000000013009 Specimen from sublingual gland obtained by excision 900000000000448009 +1785141012 20030731 1 900000000000207008 309486005 en 900000000000013009 Specimen from submandibular gland obtained by excision 900000000000020002 +1785141012 20170731 1 900000000000207008 309486005 en 900000000000013009 Specimen from submandibular gland obtained by excision 900000000000448009 +1785142017 20030731 1 900000000000207008 309486005 en 900000000000013009 Submandibular sialoadenectomy sample 900000000000020002 +1785142017 20170731 1 900000000000207008 309486005 en 900000000000013009 Submandibular sialoadenectomy sample 900000000000448009 +1785237017 20030731 1 900000000000207008 369611008 en 900000000000013009 Tissue specimen from small intestine obtained by biopsy 900000000000020002 +1785237017 20170731 1 900000000000207008 369611008 en 900000000000013009 Tissue specimen from small intestine obtained by biopsy 900000000000448009 +1785600015 20030731 1 900000000000207008 396526009 en 900000000000013009 Specimen from adrenal gland obtained by subtotal adrenalectomy 900000000000020002 +1785600015 20170731 1 900000000000207008 396526009 en 900000000000013009 Specimen from adrenal gland obtained by subtotal adrenalectomy 900000000000448009 +1786873014 20030731 1 900000000000207008 399629006 en 900000000000013009 Gastrectomy sample 900000000000020002 +1786873014 20170731 1 900000000000207008 399629006 en 900000000000013009 Gastrectomy sample 900000000000448009 +1786874015 20030731 1 900000000000207008 399629006 en 900000000000013009 Gastric resection sample 900000000000020002 +1786874015 20170731 1 900000000000207008 399629006 en 900000000000013009 Gastric resection sample 900000000000448009 +1786875019 20030731 1 900000000000207008 399629006 en 900000000000013009 Specimen from stomach obtained by gastric resection 900000000000020002 +1786875019 20170731 1 900000000000207008 399629006 en 900000000000013009 Specimen from stomach obtained by gastric resection 900000000000448009 +1786881010 20030731 1 900000000000207008 399689008 en 900000000000013009 Thyroidectomy sample 900000000000020002 +1786881010 20170731 1 900000000000207008 399689008 en 900000000000013009 Thyroidectomy sample 900000000000448009 +1786882015 20030731 1 900000000000207008 399689008 en 900000000000013009 Resected thyroid sample 900000000000020002 +1786882015 20170731 1 900000000000207008 399689008 en 900000000000013009 Resected thyroid sample 900000000000448009 +1786883013 20030731 1 900000000000207008 399689008 en 900000000000013009 Excised thyroid sample 900000000000020002 +1786883013 20170731 1 900000000000207008 399689008 en 900000000000013009 Excised thyroid sample 900000000000448009 +1788036019 20030731 1 900000000000207008 48469005 en 900000000000013009 Cytology sample 900000000000020002 +1788036019 20170731 1 900000000000207008 48469005 en 900000000000013009 Cytology sample 900000000000448009 +2148473016 20040131 1 900000000000207008 404643001 en 900000000000003001 Sputum smear specimen (specimen) 900000000000020002 +2148473016 20170731 1 900000000000207008 404643001 en 900000000000003001 Sputum smear specimen (specimen) 900000000000448009 +2149732011 20040131 1 900000000000207008 405902005 en 900000000000003001 Specimen obtained by radical excision (specimen) 900000000000020002 +2149732011 20170731 1 900000000000207008 405902005 en 900000000000003001 Specimen obtained by radical excision (specimen) 900000000000448009 +2149931014 20040131 1 900000000000207008 406101006 en 900000000000003001 Tissue specimen from axilla (specimen) 900000000000020002 +2149931014 20170731 1 900000000000207008 406101006 en 900000000000003001 Tissue specimen from axilla (specimen) 900000000000448009 +2152486010 20040131 1 900000000000207008 408654003 en 900000000000003001 Specimen obtained by amputation (specimen) 900000000000020002 +2152486010 20170731 1 900000000000207008 408654003 en 900000000000003001 Specimen obtained by amputation (specimen) 900000000000448009 +2153792012 20040131 1 900000000000207008 397056002 en 900000000000003001 Specimen from small intestine obtained by Whipple resection (specimen) 900000000000020002 +2156538015 20040131 1 900000000000207008 404643001 en 900000000000013009 Sputum smear specimen 900000000000020002 +2156538015 20170731 1 900000000000207008 404643001 en 900000000000013009 Sputum smear specimen 900000000000448009 +2157673019 20040131 1 900000000000207008 405902005 en 900000000000013009 Specimen obtained by radical excision 900000000000020002 +2157673019 20170731 1 900000000000207008 405902005 en 900000000000013009 Specimen obtained by radical excision 900000000000448009 +2157809016 20040131 1 900000000000207008 406101006 en 900000000000013009 Tissue specimen from axilla 900000000000020002 +2157809016 20170731 1 900000000000207008 406101006 en 900000000000013009 Tissue specimen from axilla 900000000000448009 +2160201010 20040131 1 900000000000207008 408654003 en 900000000000013009 Specimen obtained by amputation 900000000000020002 +2160201010 20170731 1 900000000000207008 408654003 en 900000000000013009 Specimen obtained by amputation 900000000000448009 +2161330010 20040131 1 900000000000207008 397056002 en 900000000000013009 Specimen from small intestine obtained by Whipple resection 900000000000020002 +2161344016 20040131 1 900000000000207008 119339001 en 900000000000013009 Faeces specimen 900000000000020002 +2161344016 20170731 1 900000000000207008 119339001 en 900000000000013009 Faeces specimen 900000000000448009 +2161478014 20040131 1 900000000000207008 119339001 en 900000000000013009 Feces specimen 900000000000020002 +2161478014 20170731 1 900000000000207008 119339001 en 900000000000013009 Feces specimen 900000000000448009 +2162348016 20040131 1 900000000000207008 258465007 en 900000000000013009 Tear fluid sample 900000000000020002 +2162348016 20170731 1 900000000000207008 258465007 en 900000000000013009 Tear fluid sample 900000000000448009 +2162349012 20040131 1 900000000000207008 258465007 en 900000000000013009 Tear sample 900000000000020002 +2162349012 20170731 1 900000000000207008 258465007 en 900000000000013009 Tear sample 900000000000448009 +2465272015 20040731 1 900000000000207008 409821005 en 900000000000003001 Urine specimen - timed (specimen) 900000000000020002 +2465272015 20080731 0 900000000000207008 409821005 en 900000000000003001 Urine specimen - timed (specimen) 900000000000020002 +2465327013 20040731 1 900000000000207008 409876003 en 900000000000003001 Oral mucosal transudate sample (specimen) 900000000000020002 +2465327013 20170731 1 900000000000207008 409876003 en 900000000000003001 Oral mucosal transudate sample (specimen) 900000000000448009 +2465327013 20220630 0 900000000000207008 409876003 en 900000000000003001 Oral mucosal transudate sample (specimen) 900000000000448009 +2466032010 20040731 1 900000000000207008 410580001 en 900000000000003001 Respiratory fluid specimen (specimen) 900000000000020002 +2466032010 20170731 1 900000000000207008 410580001 en 900000000000003001 Respiratory fluid specimen (specimen) 900000000000448009 +2466033017 20040731 1 900000000000207008 410581002 en 900000000000003001 Upper respiratory fluid sample (specimen) 900000000000020002 +2466033017 20170731 1 900000000000207008 410581002 en 900000000000003001 Upper respiratory fluid sample (specimen) 900000000000448009 +2466033017 20220630 0 900000000000207008 410581002 en 900000000000003001 Upper respiratory fluid sample (specimen) 900000000000448009 +2466180010 20040731 1 900000000000207008 410729004 en 900000000000003001 Amniocentesis fluid sample (specimen) 900000000000020002 +2466180010 20170731 1 900000000000207008 410729004 en 900000000000003001 Amniocentesis fluid sample (specimen) 900000000000448009 +2466180010 20220630 0 900000000000207008 410729004 en 900000000000003001 Amniocentesis fluid sample (specimen) 900000000000448009 +2471553014 20040731 1 900000000000207008 409821005 en 900000000000013009 Timed urine specimen 900000000000020002 +2471553014 20170731 1 900000000000207008 409821005 en 900000000000013009 Timed urine specimen 900000000000448009 +2471608019 20040731 1 900000000000207008 409876003 en 900000000000013009 Oral mucosal transudate sample 900000000000020002 +2471608019 20170731 1 900000000000207008 409876003 en 900000000000013009 Oral mucosal transudate sample 900000000000448009 +2472236018 20040731 1 900000000000207008 410580001 en 900000000000013009 Respiratory fluid specimen 900000000000020002 +2472236018 20170731 1 900000000000207008 410580001 en 900000000000013009 Respiratory fluid specimen 900000000000448009 +2472237010 20040731 1 900000000000207008 410581002 en 900000000000013009 Upper respiratory fluid sample 900000000000020002 +2472237010 20170731 1 900000000000207008 410581002 en 900000000000013009 Upper respiratory fluid sample 900000000000448009 +2472382012 20040731 1 900000000000207008 410729004 en 900000000000013009 Amniocentesis fluid sample 900000000000020002 +2472382012 20170731 1 900000000000207008 410729004 en 900000000000013009 Amniocentesis fluid sample 900000000000448009 +2475441016 20040731 1 900000000000207008 119373006 en 900000000000013009 Liquor sample 900000000000020002 +2475441016 20170731 1 900000000000207008 119373006 en 900000000000013009 Liquor sample 900000000000448009 +2475442011 20040731 1 900000000000207008 119373006 en 900000000000013009 Liquor amnii sample 900000000000020002 +2475442011 20170731 1 900000000000207008 119373006 en 900000000000013009 Liquor amnii sample 900000000000448009 +2475443018 20040731 1 900000000000207008 119373006 en 900000000000013009 Amniotic fluid sample 900000000000020002 +2475443018 20170731 1 900000000000207008 119373006 en 900000000000013009 Amniotic fluid sample 900000000000448009 +2476008019 20040731 1 900000000000207008 258419009 en 900000000000013009 Specimen obtained by curettage 900000000000020002 +2476008019 20170731 1 900000000000207008 258419009 en 900000000000013009 Specimen obtained by curettage 900000000000448009 +2476009010 20040731 1 900000000000207008 258442002 en 900000000000013009 Fluid sample cell count 900000000000020002 +2476009010 20110731 0 900000000000207008 258442002 en 900000000000013009 Fluid sample cell count 900000000000020002 +2476010017 20040731 1 900000000000207008 258450006 en 900000000000013009 Cerebrospinal fluid specimen 900000000000020002 +2476010017 20170731 1 900000000000207008 258450006 en 900000000000013009 Cerebrospinal fluid specimen 900000000000448009 +2476011018 20040731 1 900000000000207008 258470000 en 900000000000013009 expressed prostatic fluid 900000000000020002 +2476011018 20170731 1 900000000000207008 258470000 en 900000000000013009 expressed prostatic fluid 900000000000448009 +2476011018 20180731 0 900000000000207008 258470000 en 900000000000013009 expressed prostatic fluid 900000000000448009 +2476012013 20040731 1 900000000000207008 258482009 en 900000000000013009 Blister fluid sample 900000000000020002 +2476012013 20170731 1 900000000000207008 258482009 en 900000000000013009 Blister fluid sample 900000000000448009 +2476472013 20040731 1 900000000000207008 309051001 en 900000000000013009 Body fluid specimen 900000000000020002 +2476472013 20170731 1 900000000000207008 309051001 en 900000000000013009 Body fluid specimen 900000000000448009 +2476473015 20040731 1 900000000000207008 309165001 en 900000000000013009 Specimen from ear 900000000000020002 +2476473015 20170731 1 900000000000207008 309165001 en 900000000000013009 Specimen from ear 900000000000448009 +2477536014 20040731 1 900000000000207008 409821005 en 900000000000013009 Urine specimen - timed 900000000000020002 +2477536014 20170731 1 900000000000207008 409821005 en 900000000000013009 Urine specimen - timed 900000000000448009 +2477537017 20040731 1 900000000000207008 409821005 en 900000000000013009 Timed urine specimen collection 900000000000020002 +2477537017 20170731 1 900000000000207008 409821005 en 900000000000013009 Timed urine specimen collection 900000000000448009 +2478035015 20040731 1 900000000000207008 410580001 en 900000000000013009 Respiratory fluid sample 900000000000020002 +2478035015 20170731 1 900000000000207008 410580001 en 900000000000013009 Respiratory fluid sample 900000000000448009 +2529326015 20050131 1 900000000000207008 399649002 en 900000000000003001 Specimen from regional lymph node obtained by lymphadenectomy (specimen) 900000000000020002 +2529326015 20170731 1 900000000000207008 399649002 en 900000000000003001 Specimen from regional lymph node obtained by lymphadenectomy (specimen) 900000000000448009 +2529338012 20050131 1 900000000000207008 397436009 en 900000000000003001 Specimen obtained by lymphadenectomy (specimen) 900000000000020002 +2529338012 20170731 1 900000000000207008 397436009 en 900000000000003001 Specimen obtained by lymphadenectomy (specimen) 900000000000448009 +2529803015 20050131 1 900000000000207008 415293009 en 900000000000003001 Respiratory secretion (specimen) 900000000000020002 +2529803015 20170731 1 900000000000207008 415293009 en 900000000000003001 Respiratory secretion (specimen) 900000000000448009 +2531967011 20050131 1 900000000000207008 415563002 en 900000000000003001 Specimen from pancreas obtained by excisional biopsy (specimen) 900000000000020002 +2531967011 20170731 1 900000000000207008 415563002 en 900000000000003001 Specimen from pancreas obtained by excisional biopsy (specimen) 900000000000448009 +2532715016 20050131 1 900000000000207008 399649002 en 900000000000013009 Specimen from regional lymph node obtained by lymphadenectomy 900000000000020002 +2532715016 20170731 1 900000000000207008 399649002 en 900000000000013009 Specimen from regional lymph node obtained by lymphadenectomy 900000000000448009 +2532729015 20050131 1 900000000000207008 397436009 en 900000000000013009 Specimen obtained by lymphadenectomy 900000000000020002 +2532729015 20170731 1 900000000000207008 397436009 en 900000000000013009 Specimen obtained by lymphadenectomy 900000000000448009 +2533239017 20050131 1 900000000000207008 415293009 en 900000000000013009 Respiratory secretion 900000000000020002 +2533239017 20170731 1 900000000000207008 415293009 en 900000000000013009 Respiratory secretion 900000000000448009 +2535531017 20050131 1 900000000000207008 415563002 en 900000000000013009 Specimen from pancreas obtained by excisional biopsy 900000000000020002 +2535531017 20170731 1 900000000000207008 415563002 en 900000000000013009 Specimen from pancreas obtained by excisional biopsy 900000000000448009 +2535754012 20050131 1 900000000000207008 127465007 en 900000000000013009 Gastrointestinal sample 900000000000020002 +2535754012 20170731 1 900000000000207008 127465007 en 900000000000013009 Gastrointestinal sample 900000000000448009 +2573671013 20060131 1 900000000000207008 418564007 en 900000000000003001 Pleural fluid specimen (specimen) 900000000000020002 +2573671013 20170731 1 900000000000207008 418564007 en 900000000000003001 Pleural fluid specimen (specimen) 900000000000448009 +2574937012 20060131 1 900000000000207008 418932006 en 900000000000003001 Oral swab (specimen) 900000000000020002 +2574937012 20170731 1 900000000000207008 418932006 en 900000000000003001 Oral swab (specimen) 900000000000448009 +2574941011 20060131 1 900000000000207008 419695002 en 900000000000003001 Environmental swab (specimen) 900000000000020002 +2574941011 20170731 1 900000000000207008 419695002 en 900000000000003001 Environmental swab (specimen) 900000000000448009 +2576975010 20060131 1 900000000000207008 418564007 en 900000000000013009 Pleural fluid specimen 900000000000020002 +2576975010 20170731 1 900000000000207008 418564007 en 900000000000013009 Pleural fluid specimen 900000000000448009 +2578366011 20060131 1 900000000000207008 418932006 en 900000000000013009 Oral swab 900000000000020002 +2578366011 20170731 1 900000000000207008 418932006 en 900000000000013009 Oral swab 900000000000448009 +2578370015 20060131 1 900000000000207008 419695002 en 900000000000013009 Environmental swab 900000000000020002 +2578370015 20170731 1 900000000000207008 419695002 en 900000000000013009 Environmental swab 900000000000448009 +2579083018 20060131 1 900000000000207008 119295008 en 900000000000013009 Aspirate 900000000000020002 +2579083018 20170731 1 900000000000207008 119295008 en 900000000000013009 Aspirate 900000000000448009 +2579084012 20060131 1 900000000000207008 122619005 en 900000000000013009 Thoracocentesis fluid sample 900000000000020002 +2579084012 20170731 1 900000000000207008 122619005 en 900000000000013009 Thoracocentesis fluid sample 900000000000448009 +2579085013 20060131 1 900000000000207008 122619005 en 900000000000013009 Pleural fluid sample obtained by thoracentesis 900000000000020002 +2579085013 20170731 1 900000000000207008 122619005 en 900000000000013009 Pleural fluid sample obtained by thoracentesis 900000000000448009 +2609553011 20060731 1 900000000000207008 258504005 en 900000000000003001 Bacillus Calmette-Guerin (BCG) site swab (specimen) 900000000000017005 +2609553011 20120131 0 900000000000207008 258504005 en 900000000000003001 Bacillus Calmette-Guerin (BCG) site swab (specimen) 900000000000017005 +2613967013 20060731 1 900000000000207008 420548004 en 900000000000003001 Specimen from mass lesion (specimen) 900000000000020002 +2613967013 20170731 1 900000000000207008 420548004 en 900000000000003001 Specimen from mass lesion (specimen) 900000000000448009 +2615619016 20060731 1 900000000000207008 421615004 en 900000000000003001 Specimen from appendix obtained by appendectomy (specimen) 900000000000020002 +2615619016 20170731 1 900000000000207008 421615004 en 900000000000003001 Specimen from appendix obtained by appendectomy (specimen) 900000000000448009 +2616555014 20060731 1 900000000000207008 420548004 en 900000000000013009 Specimen from mass 900000000000020002 +2616555014 20170731 1 900000000000207008 420548004 en 900000000000013009 Specimen from mass 900000000000448009 +2618297013 20060731 1 900000000000207008 421615004 en 900000000000013009 Specimen from appendix obtained by appendicectomy 900000000000020002 +2618297013 20170731 1 900000000000207008 421615004 en 900000000000013009 Specimen from appendix obtained by appendicectomy 900000000000448009 +2618298015 20060731 1 900000000000207008 421615004 en 900000000000013009 Specimen from appendix obtained by appendectomy 900000000000020002 +2618298015 20170731 1 900000000000207008 421615004 en 900000000000013009 Specimen from appendix obtained by appendectomy 900000000000448009 +2619916019 20060731 1 900000000000207008 258504005 en 900000000000013009 Bacillus Calmette-Guerin (BCG) site swab 900000000000017005 +2622170018 20060731 1 900000000000207008 420548004 en 900000000000013009 Specimen from mass lesion 900000000000020002 +2622170018 20170731 1 900000000000207008 420548004 en 900000000000013009 Specimen from mass lesion 900000000000448009 +2639840019 20070131 1 900000000000207008 423696009 en 900000000000003001 Specimen from appendix and colon obtained by appendectomy and right colectomy (specimen) 900000000000020002 +2639840019 20170731 1 900000000000207008 423696009 en 900000000000003001 Specimen from appendix and colon obtained by appendectomy and right colectomy (specimen) 900000000000448009 +2639859017 20070131 1 900000000000207008 423671006 en 900000000000003001 Specimen from peritioneal tumor implant (specimen) 900000000000020002 +2639859017 20070731 0 900000000000207008 423671006 en 900000000000003001 Specimen from peritioneal tumor implant (specimen) 900000000000020002 +2640398014 20070131 1 900000000000207008 422991009 en 900000000000003001 Specimen from appendix and right colon obtained by appendectomy and right hemicolectomy (specimen) 900000000000020002 +2640398014 20170731 1 900000000000207008 422991009 en 900000000000003001 Specimen from appendix and right colon obtained by appendectomy and right hemicolectomy (specimen) 900000000000448009 +2643857010 20070131 1 900000000000207008 423696009 en 900000000000013009 Specimen from appendix and colon obtained by appendectomy and right colectomy 900000000000020002 +2643857010 20170731 1 900000000000207008 423696009 en 900000000000013009 Specimen from appendix and colon obtained by appendectomy and right colectomy 900000000000448009 +2643858017 20070131 1 900000000000207008 423696009 en 900000000000013009 Specimen from appendix and colon obtained by appendicectomy and right colectomy 900000000000020002 +2643858017 20170731 1 900000000000207008 423696009 en 900000000000013009 Specimen from appendix and colon obtained by appendicectomy and right colectomy 900000000000448009 +2643885012 20070131 1 900000000000207008 423671006 en 900000000000013009 Specimen from peritioneal tumor implant 900000000000020002 +2643885012 20070731 0 900000000000207008 423671006 en 900000000000013009 Specimen from peritioneal tumor implant 900000000000020002 +2643886013 20070131 1 900000000000207008 423671006 en 900000000000013009 Specimen from peritioneal tumour implant 900000000000020002 +2643886013 20070731 0 900000000000207008 423671006 en 900000000000013009 Specimen from peritioneal tumour implant 900000000000020002 +2644453013 20070131 1 900000000000207008 422991009 en 900000000000013009 Specimen from appendix and right colon obtained by appendicectomy and right hemicolectomy 900000000000020002 +2644453013 20170731 1 900000000000207008 422991009 en 900000000000013009 Specimen from appendix and right colon obtained by appendicectomy and right hemicolectomy 900000000000448009 +2644454019 20070131 1 900000000000207008 422991009 en 900000000000013009 Specimen from appendix and right colon obtained by appendectomy and right hemicolectomy 900000000000020002 +2644454019 20170731 1 900000000000207008 422991009 en 900000000000013009 Specimen from appendix and right colon obtained by appendectomy and right hemicolectomy 900000000000448009 +2658877012 20070731 1 900000000000207008 110925004 en 900000000000003001 Cytologic material of mouth (specimen) 900000000000020002 +2658877012 20170731 1 900000000000207008 110925004 en 900000000000003001 Cytologic material of mouth (specimen) 900000000000448009 +2658890017 20070731 1 900000000000207008 110897001 en 900000000000003001 Bone marrow cytological material (specimen) 900000000000020002 +2658890017 20170731 1 900000000000207008 110897001 en 900000000000003001 Bone marrow cytological material (specimen) 900000000000448009 +2660782012 20070731 1 900000000000207008 423671006 en 900000000000003001 Specimen from peritoneal tumor implant (specimen) 900000000000020002 +2660782012 20170731 1 900000000000207008 423671006 en 900000000000003001 Specimen from peritoneal tumor implant (specimen) 900000000000448009 +2662790016 20070731 1 900000000000207008 427558003 en 900000000000003001 Specimen obtained by core needle biopsy (specimen) 900000000000020002 +2662790016 20170731 1 900000000000207008 427558003 en 900000000000003001 Specimen obtained by core needle biopsy (specimen) 900000000000448009 +2662795014 20070731 1 900000000000207008 426815000 en 900000000000003001 Specimen obtained by marginal resection (specimen) 900000000000020002 +2662795014 20170731 1 900000000000207008 426815000 en 900000000000003001 Specimen obtained by marginal resection (specimen) 900000000000448009 +2662796010 20070731 1 900000000000207008 426924005 en 900000000000003001 Specimen obtained by intralesional resection (specimen) 900000000000020002 +2662796010 20170731 1 900000000000207008 426924005 en 900000000000003001 Specimen obtained by intralesional resection (specimen) 900000000000448009 +2662797018 20070731 1 900000000000207008 425804000 en 900000000000003001 Specimen obtained by wide resection (specimen) 900000000000020002 +2662797018 20170731 1 900000000000207008 425804000 en 900000000000003001 Specimen obtained by wide resection (specimen) 900000000000448009 +2663148010 20070731 1 900000000000207008 119325001 en 900000000000013009 Skin (tissue) specimen 900000000000020002 +2663148010 20170731 1 900000000000207008 119325001 en 900000000000013009 Skin (tissue) specimen 900000000000448009 +2669227010 20070731 1 900000000000207008 258469001 en 900000000000013009 Throat washings 900000000000020002 +2669227010 20170731 1 900000000000207008 258469001 en 900000000000013009 Throat washings 900000000000448009 +2669283011 20070731 1 900000000000207008 258438000 en 900000000000013009 Vitreous fluid specimen 900000000000020002 +2669283011 20170731 1 900000000000207008 258438000 en 900000000000013009 Vitreous fluid specimen 900000000000448009 +2673567017 20070731 1 900000000000207008 423671006 en 900000000000013009 Specimen from peritoneal tumour implant 900000000000020002 +2673567017 20170731 1 900000000000207008 423671006 en 900000000000013009 Specimen from peritoneal tumour implant 900000000000448009 +2673568010 20070731 1 900000000000207008 423671006 en 900000000000013009 Specimen from peritoneal tumor implant 900000000000020002 +2673568010 20170731 1 900000000000207008 423671006 en 900000000000013009 Specimen from peritoneal tumor implant 900000000000448009 +2674209011 20070731 1 900000000000207008 427558003 en 900000000000013009 Specimen obtained by core needle biopsy 900000000000020002 +2674209011 20170731 1 900000000000207008 427558003 en 900000000000013009 Specimen obtained by core needle biopsy 900000000000448009 +2674216012 20070731 1 900000000000207008 426815000 en 900000000000013009 Specimen obtained by marginal resection 900000000000020002 +2674216012 20170731 1 900000000000207008 426815000 en 900000000000013009 Specimen obtained by marginal resection 900000000000448009 +2674217015 20070731 1 900000000000207008 426924005 en 900000000000013009 Specimen obtained by intralesional resection 900000000000020002 +2674217015 20170731 1 900000000000207008 426924005 en 900000000000013009 Specimen obtained by intralesional resection 900000000000448009 +2674218013 20070731 1 900000000000207008 425804000 en 900000000000013009 Specimen obtained by wide resection 900000000000020002 +2674218013 20170731 1 900000000000207008 425804000 en 900000000000013009 Specimen obtained by wide resection 900000000000448009 +2692234016 20080131 1 900000000000207008 168138009 en 900000000000013009 Gastric washings 900000000000020002 +2692234016 20170731 1 900000000000207008 168138009 en 900000000000013009 Gastric washings 900000000000448009 +2695457017 20080131 1 900000000000207008 168138009 en 900000000000013009 Gastric washing 900000000000020002 +2695457017 20170731 1 900000000000207008 168138009 en 900000000000013009 Gastric washing 900000000000448009 +2707919014 20080731 1 900000000000207008 430309006 en 900000000000003001 Cytologic material obtained from breast nipple discharge (specimen) 900000000000020002 +2707919014 20170731 1 900000000000207008 430309006 en 900000000000003001 Cytologic material obtained from breast nipple discharge (specimen) 900000000000448009 +2707921016 20080731 1 900000000000207008 430312009 en 900000000000003001 Cytologic material obtained from synovial fluid (specimen) 900000000000020002 +2707921016 20170731 1 900000000000207008 430312009 en 900000000000003001 Cytologic material obtained from synovial fluid (specimen) 900000000000448009 +2708361014 20080731 1 900000000000207008 430861001 en 900000000000003001 Macroscopic tissue specimen (specimen) 900000000000020002 +2708361014 20170731 1 900000000000207008 430861001 en 900000000000003001 Macroscopic tissue specimen (specimen) 900000000000448009 +2708521012 20080731 1 900000000000207008 430297000 en 900000000000003001 Cytologic material obtained from unspecified body site (specimen) 900000000000020002 +2708521012 20170731 1 900000000000207008 430297000 en 900000000000003001 Cytologic material obtained from unspecified body site (specimen) 900000000000448009 +2708571010 20080731 1 900000000000207008 430250001 en 900000000000003001 Specimen from peritoneum (specimen) 900000000000020002 +2708571010 20170731 1 900000000000207008 430250001 en 900000000000003001 Specimen from peritoneum (specimen) 900000000000448009 +2708625012 20080731 1 900000000000207008 430222001 en 900000000000003001 Specimen from tonsil (specimen) 900000000000020002 +2708625012 20170731 1 900000000000207008 430222001 en 900000000000003001 Specimen from tonsil (specimen) 900000000000448009 +2708633013 20080731 1 900000000000207008 430855004 en 900000000000003001 Touch preparation cytologic material (specimen) 900000000000020002 +2708633013 20170731 1 900000000000207008 430855004 en 900000000000003001 Touch preparation cytologic material (specimen) 900000000000448009 +2708634019 20080731 1 900000000000207008 430856003 en 900000000000003001 Tissue section (specimen) 900000000000020002 +2708634019 20170731 1 900000000000207008 430856003 en 900000000000003001 Tissue section (specimen) 900000000000448009 +2708637014 20080731 1 900000000000207008 430236006 en 900000000000003001 Specimen from nerve (specimen) 900000000000020002 +2708637014 20170731 1 900000000000207008 430236006 en 900000000000003001 Specimen from nerve (specimen) 900000000000448009 +2708639012 20080731 1 900000000000207008 430238007 en 900000000000003001 Specimen from nasal sinus (specimen) 900000000000020002 +2708639012 20170731 1 900000000000207008 430238007 en 900000000000003001 Specimen from nasal sinus (specimen) 900000000000448009 +2708640014 20080731 1 900000000000207008 430241003 en 900000000000003001 Ear cytologic material (specimen) 900000000000020002 +2708640014 20170731 1 900000000000207008 430241003 en 900000000000003001 Ear cytologic material (specimen) 900000000000448009 +2708641013 20080731 1 900000000000207008 433326001 en 900000000000003001 Specimen from mediastinum (specimen) 900000000000020002 +2708641013 20170731 1 900000000000207008 433326001 en 900000000000003001 Specimen from mediastinum (specimen) 900000000000448009 +2708654018 20080731 1 900000000000207008 430346005 en 900000000000003001 Liquid based cytologic material (specimen) 900000000000020002 +2708654018 20170731 1 900000000000207008 430346005 en 900000000000003001 Liquid based cytologic material (specimen) 900000000000448009 +2708660018 20080731 1 900000000000207008 430246008 en 900000000000003001 Specimen from upper limb (specimen) 900000000000020002 +2708660018 20170731 1 900000000000207008 430246008 en 900000000000003001 Specimen from upper limb (specimen) 900000000000448009 +2708662014 20080731 1 900000000000207008 430249001 en 900000000000003001 Specimen from tongue (specimen) 900000000000020002 +2708662014 20170731 1 900000000000207008 430249001 en 900000000000003001 Specimen from tongue (specimen) 900000000000448009 +2708664010 20080731 1 900000000000207008 430389009 en 900000000000003001 Cytologic material obtained from amniotic fluid (specimen) 900000000000020002 +2708664010 20170731 1 900000000000207008 430389009 en 900000000000003001 Cytologic material obtained from amniotic fluid (specimen) 900000000000448009 +2708811013 20080731 1 900000000000207008 430157009 en 900000000000003001 Specimen from meninges (specimen) 900000000000020002 +2708811013 20170731 1 900000000000207008 430157009 en 900000000000003001 Specimen from meninges (specimen) 900000000000448009 +2708818019 20080731 1 900000000000207008 433322004 en 900000000000003001 Specimen from mesentery (specimen) 900000000000020002 +2708818019 20170731 1 900000000000207008 433322004 en 900000000000003001 Specimen from mesentery (specimen) 900000000000448009 +2708831012 20080731 1 900000000000207008 430228002 en 900000000000003001 Specimen from tunica of testis (specimen) 900000000000020002 +2708831012 20170731 1 900000000000207008 430228002 en 900000000000003001 Specimen from tunica of testis (specimen) 900000000000448009 +2708910010 20080731 1 900000000000207008 430132004 en 900000000000003001 Specimen from sympathetic nerve ganglion (specimen) 900000000000020002 +2708910010 20170731 1 900000000000207008 430132004 en 900000000000003001 Specimen from sympathetic nerve ganglion (specimen) 900000000000448009 +2708911014 20080731 1 900000000000207008 430133009 en 900000000000003001 Specimen from lip (specimen) 900000000000020002 +2708911014 20170731 1 900000000000207008 430133009 en 900000000000003001 Specimen from lip (specimen) 900000000000448009 +2708913012 20080731 1 900000000000207008 430379005 en 900000000000003001 Cytologic material obtained from pericardial fluid (specimen) 900000000000020002 +2708913012 20170731 1 900000000000207008 430379005 en 900000000000003001 Cytologic material obtained from pericardial fluid (specimen) 900000000000448009 +2708920017 20080731 1 900000000000207008 430408004 en 900000000000003001 Cytologic material obtained from pleural fluid (specimen) 900000000000020002 +2708920017 20170731 1 900000000000207008 430408004 en 900000000000003001 Cytologic material obtained from pleural fluid (specimen) 900000000000448009 +2708927019 20080731 1 900000000000207008 430386002 en 900000000000003001 Spermatozoa cytologic material (specimen) 900000000000020002 +2708927019 20170731 1 900000000000207008 430386002 en 900000000000003001 Spermatozoa cytologic material (specimen) 900000000000448009 +2708948017 20080731 1 900000000000207008 429836002 en 900000000000003001 Specimen from maxillary sinus obtained by irrigation (specimen) 900000000000020002 +2708948017 20170731 1 900000000000207008 429836002 en 900000000000003001 Specimen from maxillary sinus obtained by irrigation (specimen) 900000000000448009 +2709049019 20080731 1 900000000000207008 430268003 en 900000000000003001 Specimen from bone (specimen) 900000000000020002 +2709049019 20170731 1 900000000000207008 430268003 en 900000000000003001 Specimen from bone (specimen) 900000000000448009 +2710060012 20080731 1 900000000000207008 122699006 en 900000000000003001 Specimen from lesion of uterine cervix obtained by cone biopsy (specimen) 900000000000020002 +2710060012 20170731 1 900000000000207008 122699006 en 900000000000003001 Specimen from lesion of uterine cervix obtained by cone biopsy (specimen) 900000000000448009 +2710154014 20080731 1 900000000000207008 258608003 en 900000000000003001 Sputum specimen obtained by aspiration (specimen) 900000000000020002 +2710154014 20170731 1 900000000000207008 258608003 en 900000000000003001 Sputum specimen obtained by aspiration (specimen) 900000000000448009 +2710155010 20080731 1 900000000000207008 258609006 en 900000000000003001 Sputum specimen obtained by aspiration from trachea (specimen) 900000000000020002 +2710155010 20170731 1 900000000000207008 258609006 en 900000000000003001 Sputum specimen obtained by aspiration from trachea (specimen) 900000000000448009 +2710253012 20080731 1 900000000000207008 122645001 en 900000000000003001 Polyp from large intestine obtained by polypectomy (specimen) 900000000000020002 +2710253012 20170731 1 900000000000207008 122645001 en 900000000000003001 Polyp from large intestine obtained by polypectomy (specimen) 900000000000448009 +2710387017 20080731 1 900000000000207008 122633005 en 900000000000003001 Polyp from stomach obtained by polypectomy (specimen) 900000000000020002 +2710387017 20170731 1 900000000000207008 122633005 en 900000000000003001 Polyp from stomach obtained by polypectomy (specimen) 900000000000448009 +2711288018 20080731 1 900000000000207008 258611002 en 900000000000003001 Sputum specimen obtained from sputum suction trap (specimen) 900000000000020002 +2711288018 20170731 1 900000000000207008 258611002 en 900000000000003001 Sputum specimen obtained from sputum suction trap (specimen) 900000000000448009 +2711538010 20080731 1 900000000000207008 258439008 en 900000000000003001 Discharge specimen (specimen) 900000000000020002 +2711538010 20170731 1 900000000000207008 258439008 en 900000000000003001 Discharge specimen (specimen) 900000000000448009 +2735599016 20080731 1 900000000000207008 433854001 en 900000000000003001 Specimen from seminal vesicle obtained by biopsy (specimen) 900000000000020002 +2735599016 20170731 1 900000000000207008 433854001 en 900000000000003001 Specimen from seminal vesicle obtained by biopsy (specimen) 900000000000448009 +2735600018 20080731 1 900000000000207008 432058006 en 900000000000003001 Specimen from skeletal muscle obtained by biopsy (specimen) 900000000000020002 +2735600018 20170731 1 900000000000207008 432058006 en 900000000000003001 Specimen from skeletal muscle obtained by biopsy (specimen) 900000000000448009 +2735601019 20080731 1 900000000000207008 432059003 en 900000000000003001 Specimen from uterus obtained by biopsy (specimen) 900000000000020002 +2735601019 20170731 1 900000000000207008 432059003 en 900000000000003001 Specimen from uterus obtained by biopsy (specimen) 900000000000448009 +2735602014 20080731 1 900000000000207008 432060008 en 900000000000003001 Specimen from uterus obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2735602014 20170731 1 900000000000207008 432060008 en 900000000000003001 Specimen from uterus obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2735690011 20080731 1 900000000000207008 432384008 en 900000000000003001 Specimen from stomach obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2735690011 20170731 1 900000000000207008 432384008 en 900000000000003001 Specimen from stomach obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2735691010 20080731 1 900000000000207008 432385009 en 900000000000003001 Specimen from sympathetic nerve ganglion obtained by biopsy (specimen) 900000000000020002 +2735691010 20170731 1 900000000000207008 432385009 en 900000000000003001 Specimen from sympathetic nerve ganglion obtained by biopsy (specimen) 900000000000448009 +2735733015 20080731 1 900000000000207008 432061007 en 900000000000003001 Specimen from vein obtained by biopsy (specimen) 900000000000020002 +2735733015 20170731 1 900000000000207008 432061007 en 900000000000003001 Specimen from vein obtained by biopsy (specimen) 900000000000448009 +2735855017 20080731 1 900000000000207008 431771004 en 900000000000003001 Cytologic material obtained from ascitic fluid (specimen) 900000000000020002 +2735855017 20170731 1 900000000000207008 431771004 en 900000000000003001 Cytologic material obtained from ascitic fluid (specimen) 900000000000448009 +2736227018 20080731 1 900000000000207008 431404007 en 900000000000003001 Specimen from bone obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736227018 20170731 1 900000000000207008 431404007 en 900000000000003001 Specimen from bone obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736228011 20080731 1 900000000000207008 431406009 en 900000000000003001 Specimen from pancreas obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736228011 20170731 1 900000000000207008 431406009 en 900000000000003001 Specimen from pancreas obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736317010 20080731 1 900000000000207008 432139004 en 900000000000003001 Specimen from brain obtained by biopsy (specimen) 900000000000020002 +2736317010 20170731 1 900000000000207008 432139004 en 900000000000003001 Specimen from brain obtained by biopsy (specimen) 900000000000448009 +2736318017 20080731 1 900000000000207008 432142005 en 900000000000003001 Specimen from penis obtained by biopsy (specimen) 900000000000020002 +2736318017 20170731 1 900000000000207008 432142005 en 900000000000003001 Specimen from penis obtained by biopsy (specimen) 900000000000448009 +2736319013 20080731 1 900000000000207008 432143000 en 900000000000003001 Specimen from penis obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736319013 20170731 1 900000000000207008 432143000 en 900000000000003001 Specimen from penis obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736321015 20080731 1 900000000000207008 432985002 en 900000000000003001 Specimen from tongue obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736321015 20170731 1 900000000000207008 432985002 en 900000000000003001 Specimen from tongue obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736322010 20080731 1 900000000000207008 432986001 en 900000000000003001 Specimen from tooth obtained by biopsy (specimen) 900000000000020002 +2736322010 20170731 1 900000000000207008 432986001 en 900000000000003001 Specimen from tooth obtained by biopsy (specimen) 900000000000448009 +2736333013 20080731 1 900000000000207008 432419006 en 900000000000003001 Specimen from joint obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736333013 20170731 1 900000000000207008 432419006 en 900000000000003001 Specimen from joint obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736334019 20080731 1 900000000000207008 432420000 en 900000000000003001 Specimen from ureter obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736334019 20170731 1 900000000000207008 432420000 en 900000000000003001 Specimen from ureter obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736359011 20080731 1 900000000000207008 431696005 en 900000000000003001 Specimen from spermatic cord obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736359011 20170731 1 900000000000207008 431696005 en 900000000000003001 Specimen from spermatic cord obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736360018 20080731 1 900000000000207008 431697001 en 900000000000003001 Specimen from spinal cord obtained by biopsy (specimen) 900000000000020002 +2736360018 20170731 1 900000000000207008 431697001 en 900000000000003001 Specimen from spinal cord obtained by biopsy (specimen) 900000000000448009 +2736361019 20080731 1 900000000000207008 433760005 en 900000000000003001 Specimen from spleen obtained by biopsy (specimen) 900000000000020002 +2736361019 20170731 1 900000000000207008 433760005 en 900000000000003001 Specimen from spleen obtained by biopsy (specimen) 900000000000448009 +2736405012 20080731 1 900000000000207008 433115004 en 900000000000003001 Specimen from lip obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736405012 20170731 1 900000000000207008 433115004 en 900000000000003001 Specimen from lip obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736406013 20080731 1 900000000000207008 433116003 en 900000000000003001 Specimen from liver obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736406013 20170731 1 900000000000207008 433116003 en 900000000000003001 Specimen from liver obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736407016 20080731 1 900000000000207008 433117007 en 900000000000003001 Specimen from lower limb obtained by biopsy (specimen) 900000000000020002 +2736407016 20170731 1 900000000000207008 433117007 en 900000000000003001 Specimen from lower limb obtained by biopsy (specimen) 900000000000448009 +2736408014 20080731 1 900000000000207008 433118002 en 900000000000003001 Specimen from retroperitoneum obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736408014 20170731 1 900000000000207008 433118002 en 900000000000003001 Specimen from retroperitoneum obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736409018 20080731 1 900000000000207008 433119005 en 900000000000003001 Specimen from salivary gland obtained by biopsy (specimen) 900000000000020002 +2736409018 20170731 1 900000000000207008 433119005 en 900000000000003001 Specimen from salivary gland obtained by biopsy (specimen) 900000000000448009 +2736410011 20080731 1 900000000000207008 434406008 en 900000000000003001 Specimen from salivary gland obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736410011 20170731 1 900000000000207008 434406008 en 900000000000003001 Specimen from salivary gland obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736492016 20080731 1 900000000000207008 432910000 en 900000000000003001 Specimen from ear obtained by biopsy (specimen) 900000000000020002 +2736492016 20170731 1 900000000000207008 432910000 en 900000000000003001 Specimen from ear obtained by biopsy (specimen) 900000000000448009 +2736559012 20080731 1 900000000000207008 431776009 en 900000000000003001 Swab of surgical drain (specimen) 900000000000020002 +2736559012 20170731 1 900000000000207008 431776009 en 900000000000003001 Swab of surgical drain (specimen) 900000000000448009 +2736633015 20080731 1 900000000000207008 432981006 en 900000000000003001 Specimen from eye obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736633015 20170731 1 900000000000207008 432981006 en 900000000000003001 Specimen from eye obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736634014 20080731 1 900000000000207008 432982004 en 900000000000003001 Specimen from peritoneum obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736634014 20170731 1 900000000000207008 432982004 en 900000000000003001 Specimen from peritoneum obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736635010 20080731 1 900000000000207008 432983009 en 900000000000003001 Specimen from pitutary gland obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736635010 20090131 0 900000000000207008 432983009 en 900000000000003001 Specimen from pitutary gland obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736636011 20080731 1 900000000000207008 432984003 en 900000000000003001 Specimen from thyroid obtained by biopsy (specimen) 900000000000020002 +2736636011 20170731 1 900000000000207008 432984003 en 900000000000003001 Specimen from thyroid obtained by biopsy (specimen) 900000000000448009 +2736690015 20080731 1 900000000000207008 432099000 en 900000000000003001 Specimen from bladder obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736690015 20170731 1 900000000000207008 432099000 en 900000000000003001 Specimen from bladder obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736690015 20240101 0 900000000000207008 432099000 en 900000000000003001 Specimen from bladder obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736691016 20080731 1 900000000000207008 433859006 en 900000000000003001 Specimen from nasal fossae obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736691016 20170731 1 900000000000207008 433859006 en 900000000000003001 Specimen from nasal fossae obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736712019 20080731 1 900000000000207008 434249007 en 900000000000003001 Specimen from ear obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736712019 20170731 1 900000000000207008 434249007 en 900000000000003001 Specimen from ear obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736713012 20080731 1 900000000000207008 434250007 en 900000000000003001 Specimen from pericardium obtained by biopsy (specimen) 900000000000020002 +2736713012 20170731 1 900000000000207008 434250007 en 900000000000003001 Specimen from pericardium obtained by biopsy (specimen) 900000000000448009 +2736724014 20080731 1 900000000000207008 432865002 en 900000000000003001 Specimen from larynx obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736724014 20170731 1 900000000000207008 432865002 en 900000000000003001 Specimen from larynx obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736767018 20080731 1 900000000000207008 432135005 en 900000000000003001 Specimen from small intestine obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736767018 20170731 1 900000000000207008 432135005 en 900000000000003001 Specimen from small intestine obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736770019 20080731 1 900000000000207008 431232001 en 900000000000003001 Specimen from eye region obtained by biopsy (specimen) 900000000000020002 +2736770019 20170731 1 900000000000207008 431232001 en 900000000000003001 Specimen from eye region obtained by biopsy (specimen) 900000000000448009 +2736771015 20080731 1 900000000000207008 431233006 en 900000000000003001 Specimen from fallopian tube obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736771015 20170731 1 900000000000207008 431233006 en 900000000000003001 Specimen from fallopian tube obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736772010 20080731 1 900000000000207008 431234000 en 900000000000003001 Specimen from fetus obtained by biopsy (specimen) 900000000000020002 +2736772010 20170731 1 900000000000207008 431234000 en 900000000000003001 Specimen from fetus obtained by biopsy (specimen) 900000000000448009 +2736773017 20080731 1 900000000000207008 431412004 en 900000000000003001 Specimen from trunk obtained by biopsy (specimen) 900000000000020002 +2736773017 20170731 1 900000000000207008 431412004 en 900000000000003001 Specimen from trunk obtained by biopsy (specimen) 900000000000448009 +2736853019 20080731 1 900000000000207008 432382007 en 900000000000003001 Specimen from lymph node obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736853019 20170731 1 900000000000207008 432382007 en 900000000000003001 Specimen from lymph node obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736854013 20080731 1 900000000000207008 434140003 en 900000000000003001 Specimen from mesentery obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736854013 20170731 1 900000000000207008 434140003 en 900000000000003001 Specimen from mesentery obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736855014 20080731 1 900000000000207008 432607005 en 900000000000003001 Specimen from mouth obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736855014 20170731 1 900000000000207008 432607005 en 900000000000003001 Specimen from mouth obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2736936013 20080731 1 900000000000207008 433861002 en 900000000000003001 Specimen from nasal sinus obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2736936013 20170731 1 900000000000207008 433861002 en 900000000000003001 Specimen from nasal sinus obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2738561012 20080731 1 900000000000207008 432441006 en 900000000000003001 Specimen from hydrocele of tunica vaginalis (specimen) 900000000000020002 +2738561012 20170731 1 900000000000207008 432441006 en 900000000000003001 Specimen from hydrocele of tunica vaginalis (specimen) 900000000000448009 +2741658010 20080731 1 900000000000207008 431889006 en 900000000000003001 Specimen from upper limb obtained by biopsy (specimen) 900000000000020002 +2741658010 20170731 1 900000000000207008 431889006 en 900000000000003001 Specimen from upper limb obtained by biopsy (specimen) 900000000000448009 +2741739012 20080731 1 900000000000207008 432864003 en 900000000000003001 Specimen from large intestine obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2741739012 20170731 1 900000000000207008 432864003 en 900000000000003001 Specimen from large intestine obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2741790013 20080731 1 900000000000207008 432657002 en 900000000000003001 Ganglion cyst specimen (specimen) 900000000000020002 +2741790013 20170731 1 900000000000207008 432657002 en 900000000000003001 Ganglion cyst specimen (specimen) 900000000000448009 +2741796019 20080731 1 900000000000207008 432825001 en 900000000000003001 Body secretion specimen (specimen) 900000000000020002 +2741796019 20170731 1 900000000000207008 432825001 en 900000000000003001 Body secretion specimen (specimen) 900000000000448009 +2741878017 20080731 1 900000000000207008 432897002 en 900000000000003001 Cytologic material obtained from joint fluid (specimen) 900000000000020002 +2741878017 20170731 1 900000000000207008 432897002 en 900000000000003001 Cytologic material obtained from joint fluid (specimen) 900000000000448009 +2743276015 20080731 1 900000000000207008 431196006 en 900000000000003001 Tissue spot (specimen) 900000000000020002 +2743276015 20170731 1 900000000000207008 431196006 en 900000000000003001 Tissue spot (specimen) 900000000000448009 +2743858016 20080731 1 900000000000207008 431205006 en 900000000000003001 Specimen from epididymis obtained by biopsy (specimen) 900000000000020002 +2743858016 20170731 1 900000000000207008 431205006 en 900000000000003001 Specimen from epididymis obtained by biopsy (specimen) 900000000000448009 +2744995011 20080731 1 900000000000207008 432436003 en 900000000000003001 Specimen from hydrocele of spermatic cord (specimen) 900000000000020002 +2744995011 20170731 1 900000000000207008 432436003 en 900000000000003001 Specimen from hydrocele of spermatic cord (specimen) 900000000000448009 +2745750016 20080731 1 900000000000207008 431361003 en 900000000000003001 Joint fluid specimen (specimen) 900000000000020002 +2745750016 20170731 1 900000000000207008 431361003 en 900000000000003001 Joint fluid specimen (specimen) 900000000000448009 +2745957012 20080731 1 900000000000207008 258479004 en 900000000000003001 Interstitial fluid specimen (specimen) 900000000000020002 +2745957012 20170731 1 900000000000207008 258479004 en 900000000000003001 Interstitial fluid specimen (specimen) 900000000000448009 +2746341011 20080731 1 900000000000207008 430214008 en 900000000000003001 Specimen from lower limb (specimen) 900000000000020002 +2746341011 20170731 1 900000000000207008 430214008 en 900000000000003001 Specimen from lower limb (specimen) 900000000000448009 +2746387017 20080731 1 900000000000207008 430319000 en 900000000000003001 Specimen from tooth (specimen) 900000000000020002 +2746387017 20170731 1 900000000000207008 430319000 en 900000000000003001 Specimen from tooth (specimen) 900000000000448009 +2746705014 20080731 1 900000000000207008 432144006 en 900000000000003001 Specimen from mediastinum obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2746705014 20170731 1 900000000000207008 432144006 en 900000000000003001 Specimen from mediastinum obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2746706010 20080731 1 900000000000207008 432145007 en 900000000000003001 Specimen from meninges obtained by biopsy (specimen) 900000000000020002 +2746706010 20170731 1 900000000000207008 432145007 en 900000000000003001 Specimen from meninges obtained by biopsy (specimen) 900000000000448009 +2747224015 20080731 1 900000000000207008 432098008 en 900000000000003001 Specimen from bile duct obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2747224015 20170731 1 900000000000207008 432098008 en 900000000000003001 Specimen from bile duct obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2747352014 20080731 1 900000000000207008 433873002 en 900000000000003001 Specimen from spermatic cord obtained by biopsy (specimen) 900000000000020002 +2747352014 20170731 1 900000000000207008 433873002 en 900000000000003001 Specimen from spermatic cord obtained by biopsy (specimen) 900000000000448009 +2747353016 20080731 1 900000000000207008 432136006 en 900000000000003001 Specimen from vulva obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2747353016 20170731 1 900000000000207008 432136006 en 900000000000003001 Specimen from vulva obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2750015010 20080731 1 900000000000207008 409821005 en 900000000000003001 Timed urine specimen (specimen) 900000000000020002 +2750015010 20170731 1 900000000000207008 409821005 en 900000000000003001 Timed urine specimen (specimen) 900000000000448009 +2750270015 20080731 1 900000000000207008 430245007 en 900000000000003001 Specimen from nasal fossae (specimen) 900000000000020002 +2750270015 20170731 1 900000000000207008 430245007 en 900000000000003001 Specimen from nasal fossae (specimen) 900000000000448009 +2750271016 20080731 1 900000000000207008 430248009 en 900000000000003001 Specimen from nasopharyngeal structure (specimen) 900000000000020002 +2750271016 20170731 1 900000000000207008 430248009 en 900000000000003001 Specimen from nasopharyngeal structure (specimen) 900000000000448009 +2750636013 20080731 1 900000000000207008 430144001 en 900000000000003001 Specimen from larynx (specimen) 900000000000020002 +2750636013 20170731 1 900000000000207008 430144001 en 900000000000003001 Specimen from larynx (specimen) 900000000000448009 +2750719013 20080731 1 900000000000207008 433324003 en 900000000000003001 Specimen from eye region (specimen) 900000000000020002 +2750719013 20170731 1 900000000000207008 433324003 en 900000000000003001 Specimen from eye region (specimen) 900000000000448009 +2750733013 20080731 1 900000000000207008 430234009 en 900000000000003001 Specimen from spermatic cord (specimen) 900000000000020002 +2750733013 20170731 1 900000000000207008 430234009 en 900000000000003001 Specimen from spermatic cord (specimen) 900000000000448009 +2751622013 20080731 1 900000000000207008 432134009 en 900000000000003001 Specimen from skin obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2751622013 20170731 1 900000000000207008 432134009 en 900000000000003001 Specimen from skin obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2751625010 20080731 1 900000000000207008 434244002 en 900000000000003001 Specimen from retroperitoneum obtained by biopsy (specimen) 900000000000020002 +2751625010 20170731 1 900000000000207008 434244002 en 900000000000003001 Specimen from retroperitoneum obtained by biopsy (specimen) 900000000000448009 +2751661017 20080731 1 900000000000207008 432608000 en 900000000000003001 Specimen from nasal fossae obtained by biopsy (specimen) 900000000000020002 +2751661017 20170731 1 900000000000207008 432608000 en 900000000000003001 Specimen from nasal fossae obtained by biopsy (specimen) 900000000000448009 +2751782015 20080731 1 900000000000207008 432980007 en 900000000000003001 Specimen from epididymis obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2751782015 20170731 1 900000000000207008 432980007 en 900000000000003001 Specimen from epididymis obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2751837014 20080731 1 900000000000207008 433799002 en 900000000000003001 Nerve ganglion specimen (specimen) 900000000000020002 +2751837014 20170731 1 900000000000207008 433799002 en 900000000000003001 Nerve ganglion specimen (specimen) 900000000000448009 +2754587012 20080731 1 900000000000207008 258610001 en 900000000000003001 Sputum specimen obtained by sputum induction (specimen) 900000000000020002 +2754587012 20170731 1 900000000000207008 258610001 en 900000000000003001 Sputum specimen obtained by sputum induction (specimen) 900000000000448009 +2755439010 20080731 1 900000000000207008 430221008 en 900000000000003001 Specimen from spinal cord (specimen) 900000000000020002 +2755439010 20170731 1 900000000000207008 430221008 en 900000000000003001 Specimen from spinal cord (specimen) 900000000000448009 +2755461017 20080731 1 900000000000207008 430387006 en 900000000000003001 Combined specimen of cytologic material from endocervix, ectocervix, and vaginal fornix (specimen) 900000000000020002 +2755461017 20170731 1 900000000000207008 430387006 en 900000000000003001 Combined specimen of cytologic material from endocervix, ectocervix, and vaginal fornix (specimen) 900000000000448009 +2755539012 20080731 1 900000000000207008 433860001 en 900000000000003001 Specimen from nasal sinus obtained by biopsy (specimen) 900000000000020002 +2755539012 20170731 1 900000000000207008 433860001 en 900000000000003001 Specimen from nasal sinus obtained by biopsy (specimen) 900000000000448009 +2755882017 20080731 1 900000000000207008 432140002 en 900000000000003001 Specimen from bronchus obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2755882017 20170731 1 900000000000207008 432140002 en 900000000000003001 Specimen from bronchus obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2756139013 20080731 1 900000000000207008 434014007 en 900000000000003001 Specimen from mediastinum obtained by biopsy (specimen) 900000000000020002 +2756139013 20170731 1 900000000000207008 434014007 en 900000000000003001 Specimen from mediastinum obtained by biopsy (specimen) 900000000000448009 +2756142019 20080731 1 900000000000207008 119307008 en 900000000000003001 Specimen from endotracheal tube (specimen) 900000000000020002 +2756142019 20170731 1 900000000000207008 119307008 en 900000000000003001 Specimen from endotracheal tube (specimen) 900000000000448009 +2756711016 20080731 1 900000000000207008 432057001 en 900000000000003001 Specimen from seminal vesicle obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2756711016 20170731 1 900000000000207008 432057001 en 900000000000003001 Specimen from seminal vesicle obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2756779012 20080731 1 900000000000207008 431905001 en 900000000000003001 Swab of building drain (specimen) 900000000000020002 +2756779012 20170731 1 900000000000207008 431905001 en 900000000000003001 Swab of building drain (specimen) 900000000000448009 +2757418016 20080731 1 900000000000207008 432146008 en 900000000000003001 Specimen from mesentery obtained by biopsy (specimen) 900000000000020002 +2757418016 20170731 1 900000000000207008 432146008 en 900000000000003001 Specimen from mesentery obtained by biopsy (specimen) 900000000000448009 +2757446019 20080731 1 900000000000207008 431405008 en 900000000000003001 Specimen from ovary obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2757446019 20170731 1 900000000000207008 431405008 en 900000000000003001 Specimen from ovary obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2757465010 20080731 1 900000000000207008 433120004 en 900000000000003001 Specimen from urethra obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2757465010 20170731 1 900000000000207008 433120004 en 900000000000003001 Specimen from urethra obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2757507018 20080731 1 900000000000207008 432141003 en 900000000000003001 Specimen from parathyroid obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2757507018 20170731 1 900000000000207008 432141003 en 900000000000003001 Specimen from parathyroid obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2757568014 20080731 1 900000000000207008 432383002 en 900000000000003001 Specimen from spleen obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2757568014 20170731 1 900000000000207008 432383002 en 900000000000003001 Specimen from spleen obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2757574014 20080731 1 900000000000207008 431884001 en 900000000000003001 Specimen from galbladder obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2757574014 20090131 0 900000000000207008 431884001 en 900000000000003001 Specimen from galbladder obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2759548014 20080731 1 900000000000207008 431058008 en 900000000000003001 Lip cytologic material (specimen) 900000000000020002 +2759548014 20170731 1 900000000000207008 431058008 en 900000000000003001 Lip cytologic material (specimen) 900000000000448009 +2759554010 20080731 1 900000000000207008 430970004 en 900000000000003001 Core sample of tissue block (specimen) 900000000000020002 +2759554010 20170731 1 900000000000207008 430970004 en 900000000000003001 Core sample of tissue block (specimen) 900000000000448009 +2759730015 20080731 1 900000000000207008 430232008 en 900000000000003001 Specimen from trunk (specimen) 900000000000020002 +2759730015 20170731 1 900000000000207008 430232008 en 900000000000003001 Specimen from trunk (specimen) 900000000000448009 +2759777013 20080731 1 900000000000207008 433308004 en 900000000000003001 Specimen from spleen (specimen) 900000000000020002 +2759777013 20170731 1 900000000000207008 433308004 en 900000000000003001 Specimen from spleen (specimen) 900000000000448009 +2759817013 20080731 1 900000000000207008 429832000 en 900000000000003001 Biliary fluid specimen obtained by drainage (specimen) 900000000000020002 +2759817013 20170731 1 900000000000207008 429832000 en 900000000000003001 Biliary fluid specimen obtained by drainage (specimen) 900000000000448009 +2760062018 20080731 1 900000000000207008 431235004 en 900000000000003001 Specimen from trachea obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2760062018 20170731 1 900000000000207008 431235004 en 900000000000003001 Specimen from trachea obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2760372012 20080731 1 900000000000207008 433309007 en 900000000000003001 Specimen from omentum (specimen) 900000000000020002 +2760372012 20170731 1 900000000000207008 433309007 en 900000000000003001 Specimen from omentum (specimen) 900000000000448009 +2760373019 20080731 1 900000000000207008 430310001 en 900000000000003001 Cytologic material obtained from sputum (specimen) 900000000000020002 +2760373019 20170731 1 900000000000207008 430310001 en 900000000000003001 Cytologic material obtained from sputum (specimen) 900000000000448009 +2760396019 20080731 1 900000000000207008 433323009 en 900000000000003001 Specimen from retroperitoneum (specimen) 900000000000020002 +2760396019 20170731 1 900000000000207008 433323009 en 900000000000003001 Specimen from retroperitoneum (specimen) 900000000000448009 +2760415018 20080731 1 900000000000207008 430304001 en 900000000000003001 Specimen from unspecified body site (specimen) 900000000000020002 +2760415018 20170731 1 900000000000207008 430304001 en 900000000000003001 Specimen from unspecified body site (specimen) 900000000000448009 +2760426012 20080731 1 900000000000207008 430131006 en 900000000000003001 Specimen from seminal vesicle (specimen) 900000000000020002 +2760426012 20170731 1 900000000000207008 430131006 en 900000000000003001 Specimen from seminal vesicle (specimen) 900000000000448009 +2760427015 20080731 1 900000000000207008 430318008 en 900000000000003001 Cytologic material obtained from urine (specimen) 900000000000020002 +2760427015 20170731 1 900000000000207008 430318008 en 900000000000003001 Cytologic material obtained from urine (specimen) 900000000000448009 +2760459010 20080731 1 900000000000207008 430244006 en 900000000000003001 Specimen from pericardium (specimen) 900000000000020002 +2760459010 20170731 1 900000000000207008 430244006 en 900000000000003001 Specimen from pericardium (specimen) 900000000000448009 +2760464014 20080731 1 900000000000207008 430117006 en 900000000000003001 Eye region cytologic material (specimen) 900000000000020002 +2760464014 20170731 1 900000000000207008 430117006 en 900000000000003001 Eye region cytologic material (specimen) 900000000000448009 +2760545017 20080731 1 900000000000207008 432097003 en 900000000000003001 Specimen from artery obtained by biopsy (specimen) 900000000000020002 +2760545017 20170731 1 900000000000207008 432097003 en 900000000000003001 Specimen from artery obtained by biopsy (specimen) 900000000000448009 +2760926017 20080731 1 900000000000207008 431413009 en 900000000000003001 Specimen from tunica of testis obtained by biopsy (specimen) 900000000000020002 +2760926017 20170731 1 900000000000207008 431413009 en 900000000000003001 Specimen from tunica of testis obtained by biopsy (specimen) 900000000000448009 +2763866018 20080731 1 900000000000207008 258439008 en 900000000000013009 Discharge specimen 900000000000020002 +2763866018 20170731 1 900000000000207008 258439008 en 900000000000013009 Discharge specimen 900000000000448009 +2764170017 20080731 1 900000000000207008 122645001 en 900000000000013009 Polyp from large intestine obtained by polypectomy 900000000000020002 +2764170017 20170731 1 900000000000207008 122645001 en 900000000000013009 Polyp from large intestine obtained by polypectomy 900000000000448009 +2764183016 20080731 1 900000000000207008 258608003 en 900000000000013009 Sputum specimen obtained by aspiration 900000000000020002 +2764183016 20170731 1 900000000000207008 258608003 en 900000000000013009 Sputum specimen obtained by aspiration 900000000000448009 +2764184010 20080731 1 900000000000207008 258609006 en 900000000000013009 Sputum specimen obtained by aspiration from trachea 900000000000020002 +2764184010 20170731 1 900000000000207008 258609006 en 900000000000013009 Sputum specimen obtained by aspiration from trachea 900000000000448009 +2764289012 20080731 1 900000000000207008 122633005 en 900000000000013009 Polyp from stomach obtained by polypectomy 900000000000020002 +2764289012 20170731 1 900000000000207008 122633005 en 900000000000013009 Polyp from stomach obtained by polypectomy 900000000000448009 +2764314010 20080731 1 900000000000207008 430861001 en 900000000000013009 Gross tissue specimen 900000000000020002 +2764314010 20170731 1 900000000000207008 430861001 en 900000000000013009 Gross tissue specimen 900000000000448009 +2764999014 20080731 1 900000000000207008 110969006 en 900000000000013009 Spinal fluid cytologic material 900000000000020002 +2764999014 20170731 1 900000000000207008 110969006 en 900000000000013009 Spinal fluid cytologic material 900000000000448009 +2765002018 20080731 1 900000000000207008 258611002 en 900000000000013009 Sputum specimen obtained from sputum suction trap 900000000000020002 +2765002018 20170731 1 900000000000207008 258611002 en 900000000000013009 Sputum specimen obtained from sputum suction trap 900000000000448009 +2765068016 20080731 1 900000000000207008 429832000 en 900000000000013009 Biliary fluid specimen obtained by drainage 900000000000020002 +2765068016 20170731 1 900000000000207008 429832000 en 900000000000013009 Biliary fluid specimen obtained by drainage 900000000000448009 +2765109012 20080731 1 900000000000207008 430221008 en 900000000000013009 Specimen from spinal cord 900000000000020002 +2765109012 20170731 1 900000000000207008 430221008 en 900000000000013009 Specimen from spinal cord 900000000000448009 +2765110019 20080731 1 900000000000207008 430222001 en 900000000000013009 Specimen from tonsil 900000000000020002 +2765110019 20170731 1 900000000000207008 430222001 en 900000000000013009 Specimen from tonsil 900000000000448009 +2765115012 20080731 1 900000000000207008 430856003 en 900000000000013009 Tissue section 900000000000020002 +2765115012 20170731 1 900000000000207008 430856003 en 900000000000013009 Tissue section 900000000000448009 +2765118014 20080731 1 900000000000207008 430236006 en 900000000000013009 Specimen from nerve 900000000000020002 +2765118014 20170731 1 900000000000207008 430236006 en 900000000000013009 Specimen from nerve 900000000000448009 +2765121011 20080731 1 900000000000207008 430241003 en 900000000000013009 Ear cytologic material 900000000000020002 +2765121011 20170731 1 900000000000207008 430241003 en 900000000000013009 Ear cytologic material 900000000000448009 +2765136014 20080731 1 900000000000207008 122699006 en 900000000000013009 Specimen from lesion of uterine cervix obtained by cone biopsy 900000000000020002 +2765136014 20170731 1 900000000000207008 122699006 en 900000000000013009 Specimen from lesion of uterine cervix obtained by cone biopsy 900000000000448009 +2765411012 20080731 1 900000000000207008 430157009 en 900000000000013009 Specimen from meninges 900000000000020002 +2765411012 20170731 1 900000000000207008 430157009 en 900000000000013009 Specimen from meninges 900000000000448009 +2765460019 20080731 1 900000000000207008 433322004 en 900000000000013009 Specimen from mesentery 900000000000020002 +2765460019 20170731 1 900000000000207008 433322004 en 900000000000013009 Specimen from mesentery 900000000000448009 +2765468014 20080731 1 900000000000207008 430214008 en 900000000000013009 Specimen from lower limb 900000000000020002 +2765468014 20170731 1 900000000000207008 430214008 en 900000000000013009 Specimen from lower limb 900000000000448009 +2765478012 20080731 1 900000000000207008 430228002 en 900000000000013009 Specimen from tunica of testis 900000000000020002 +2765478012 20170731 1 900000000000207008 430228002 en 900000000000013009 Specimen from tunica of testis 900000000000448009 +2765481019 20080731 1 900000000000207008 433324003 en 900000000000013009 Specimen from eye region 900000000000020002 +2765481019 20170731 1 900000000000207008 433324003 en 900000000000013009 Specimen from eye region 900000000000448009 +2765569015 20080731 1 900000000000207008 430309006 en 900000000000013009 Breast nipple discharge cytologic material 900000000000020002 +2765569015 20170731 1 900000000000207008 430309006 en 900000000000013009 Breast nipple discharge cytologic material 900000000000448009 +2765570019 20080731 1 900000000000207008 430309006 en 900000000000013009 Cytologic material obtained from breast nipple discharge 900000000000020002 +2765570019 20170731 1 900000000000207008 430309006 en 900000000000013009 Cytologic material obtained from breast nipple discharge 900000000000448009 +2765571015 20080731 1 900000000000207008 430310001 en 900000000000013009 Sputum cytologic material 900000000000020002 +2765571015 20170731 1 900000000000207008 430310001 en 900000000000013009 Sputum cytologic material 900000000000448009 +2765617015 20080731 1 900000000000207008 430131006 en 900000000000013009 Specimen from seminal vesicle 900000000000020002 +2765617015 20170731 1 900000000000207008 430131006 en 900000000000013009 Specimen from seminal vesicle 900000000000448009 +2765618013 20080731 1 900000000000207008 430132004 en 900000000000013009 Specimen from sympathetic nerve ganglion 900000000000020002 +2765618013 20170731 1 900000000000207008 430132004 en 900000000000013009 Specimen from sympathetic nerve ganglion 900000000000448009 +2765619017 20080731 1 900000000000207008 430133009 en 900000000000013009 Specimen from lip 900000000000020002 +2765619017 20170731 1 900000000000207008 430133009 en 900000000000013009 Specimen from lip 900000000000448009 +2765621010 20080731 1 900000000000207008 430379005 en 900000000000013009 Cytologic material obtained from pericardial fluid 900000000000020002 +2765621010 20170731 1 900000000000207008 430379005 en 900000000000013009 Cytologic material obtained from pericardial fluid 900000000000448009 +2765628016 20080731 1 900000000000207008 430408004 en 900000000000013009 Cytologic material obtained from pleural fluid 900000000000020002 +2765628016 20170731 1 900000000000207008 430408004 en 900000000000013009 Cytologic material obtained from pleural fluid 900000000000448009 +2765629012 20080731 1 900000000000207008 430408004 en 900000000000013009 Pleural fluid cytologic material 900000000000020002 +2765629012 20170731 1 900000000000207008 430408004 en 900000000000013009 Pleural fluid cytologic material 900000000000448009 +2765658010 20080731 1 900000000000207008 430386002 en 900000000000013009 Spermatozoa cytologic material 900000000000020002 +2765658010 20170731 1 900000000000207008 430386002 en 900000000000013009 Spermatozoa cytologic material 900000000000448009 +2765710012 20080731 1 900000000000207008 430268003 en 900000000000013009 Specimen from bone 900000000000020002 +2765710012 20170731 1 900000000000207008 430268003 en 900000000000013009 Specimen from bone 900000000000448009 +2765738016 20080731 1 900000000000207008 430346005 en 900000000000013009 Liquid based cytologic material 900000000000020002 +2765738016 20170731 1 900000000000207008 430346005 en 900000000000013009 Liquid based cytologic material 900000000000448009 +2765902016 20080731 1 900000000000207008 430244006 en 900000000000013009 Specimen from pericardium 900000000000020002 +2765902016 20170731 1 900000000000207008 430244006 en 900000000000013009 Specimen from pericardium 900000000000448009 +2765903014 20080731 1 900000000000207008 430245007 en 900000000000013009 Specimen from nasal fossae 900000000000020002 +2765903014 20170731 1 900000000000207008 430245007 en 900000000000013009 Specimen from nasal fossae 900000000000448009 +2765904015 20080731 1 900000000000207008 430246008 en 900000000000013009 Specimen from upper limb 900000000000020002 +2765904015 20170731 1 900000000000207008 430246008 en 900000000000013009 Specimen from upper limb 900000000000448009 +2765906018 20080731 1 900000000000207008 430248009 en 900000000000013009 Specimen from nasopharyngeal structure 900000000000020002 +2765906018 20170731 1 900000000000207008 430248009 en 900000000000013009 Specimen from nasopharyngeal structure 900000000000448009 +2765907010 20080731 1 900000000000207008 430249001 en 900000000000013009 Specimen from tongue 900000000000020002 +2765907010 20170731 1 900000000000207008 430249001 en 900000000000013009 Specimen from tongue 900000000000448009 +2765908017 20080731 1 900000000000207008 430387006 en 900000000000013009 Combined specimen of cytologic material from endocervix, ectocervix, and vaginal fornix 900000000000020002 +2765908017 20170731 1 900000000000207008 430387006 en 900000000000013009 Combined specimen of cytologic material from endocervix, ectocervix, and vaginal fornix 900000000000448009 +2765909013 20080731 1 900000000000207008 430389009 en 900000000000013009 Amniotic fluid cytologic material 900000000000020002 +2765909013 20170731 1 900000000000207008 430389009 en 900000000000013009 Amniotic fluid cytologic material 900000000000448009 +2765910015 20080731 1 900000000000207008 430389009 en 900000000000013009 Cytologic material obtained from amniotic fluid 900000000000020002 +2765910015 20170731 1 900000000000207008 430389009 en 900000000000013009 Cytologic material obtained from amniotic fluid 900000000000448009 +2765990019 20080731 1 900000000000207008 429836002 en 900000000000013009 Specimen from maxillary sinus obtained by irrigation 900000000000020002 +2765990019 20170731 1 900000000000207008 429836002 en 900000000000013009 Specimen from maxillary sinus obtained by irrigation 900000000000448009 +2766739018 20080731 1 900000000000207008 432657002 en 900000000000013009 Ganglion cyst specimen 900000000000020002 +2766739018 20170731 1 900000000000207008 432657002 en 900000000000013009 Ganglion cyst specimen 900000000000448009 +2766746010 20080731 1 900000000000207008 432825001 en 900000000000013009 Body secretion specimen 900000000000020002 +2766746010 20170731 1 900000000000207008 432825001 en 900000000000013009 Body secretion specimen 900000000000448009 +2767060012 20080731 1 900000000000207008 431361003 en 900000000000013009 Joint fluid specimen 900000000000020002 +2767060012 20170731 1 900000000000207008 431361003 en 900000000000013009 Joint fluid specimen 900000000000448009 +2767322013 20080731 1 900000000000207008 433799002 en 900000000000013009 Nerve ganglion specimen 900000000000020002 +2767322013 20170731 1 900000000000207008 433799002 en 900000000000013009 Nerve ganglion specimen 900000000000448009 +2767601010 20080731 1 900000000000207008 431889006 en 900000000000013009 Specimen from upper limb obtained by biopsy 900000000000020002 +2767601010 20170731 1 900000000000207008 431889006 en 900000000000013009 Specimen from upper limb obtained by biopsy 900000000000448009 +2767619018 20080731 1 900000000000207008 431697001 en 900000000000013009 Specimen from spinal cord obtained by biopsy 900000000000020002 +2767619018 20170731 1 900000000000207008 431697001 en 900000000000013009 Specimen from spinal cord obtained by biopsy 900000000000448009 +2767729019 20080731 1 900000000000207008 432146008 en 900000000000013009 Specimen from mesentery obtained by biopsy 900000000000020002 +2767729019 20170731 1 900000000000207008 432146008 en 900000000000013009 Specimen from mesentery obtained by biopsy 900000000000448009 +2767740010 20080731 1 900000000000207008 431884001 en 900000000000013009 Specimen from galbladder obtained by fine needle aspiration biopsy 900000000000020002 +2767740010 20090131 0 900000000000207008 431884001 en 900000000000013009 Specimen from galbladder obtained by fine needle aspiration biopsy 900000000000020002 +2768127014 20080731 1 900000000000207008 432419006 en 900000000000013009 Specimen from joint obtained by fine needle aspiration biopsy 900000000000020002 +2768127014 20170731 1 900000000000207008 432419006 en 900000000000013009 Specimen from joint obtained by fine needle aspiration biopsy 900000000000448009 +2768197019 20080731 1 900000000000207008 119307008 en 900000000000013009 Specimen from endotracheal tube 900000000000020002 +2768197019 20170731 1 900000000000207008 119307008 en 900000000000013009 Specimen from endotracheal tube 900000000000448009 +2768257011 20080731 1 900000000000207008 432097003 en 900000000000013009 Specimen from artery obtained by biopsy 900000000000020002 +2768257011 20170731 1 900000000000207008 432097003 en 900000000000013009 Specimen from artery obtained by biopsy 900000000000448009 +2768258018 20080731 1 900000000000207008 433859006 en 900000000000013009 Specimen from nasal fossae obtained by fine needle aspiration biopsy 900000000000020002 +2768258018 20170731 1 900000000000207008 433859006 en 900000000000013009 Specimen from nasal fossae obtained by fine needle aspiration biopsy 900000000000448009 +2768277016 20080731 1 900000000000207008 431771004 en 900000000000013009 Ascitic fluid cytologic material 900000000000020002 +2768277016 20170731 1 900000000000207008 431771004 en 900000000000013009 Ascitic fluid cytologic material 900000000000448009 +2768412016 20080731 1 900000000000207008 432135005 en 900000000000013009 Specimen from small intestine obtained by fine needle aspiration biopsy 900000000000020002 +2768412016 20170731 1 900000000000207008 432135005 en 900000000000013009 Specimen from small intestine obtained by fine needle aspiration biopsy 900000000000448009 +2768413014 20080731 1 900000000000207008 433873002 en 900000000000013009 Specimen from spermatic cord obtained by biopsy 900000000000020002 +2768413014 20170731 1 900000000000207008 433873002 en 900000000000013009 Specimen from spermatic cord obtained by biopsy 900000000000448009 +2768415019 20080731 1 900000000000207008 432382007 en 900000000000013009 Specimen from lymph node obtained by fine needle aspiration biopsy 900000000000020002 +2768415019 20170731 1 900000000000207008 432382007 en 900000000000013009 Specimen from lymph node obtained by fine needle aspiration biopsy 900000000000448009 +2768650019 20080731 1 900000000000207008 432420000 en 900000000000013009 Specimen from ureter obtained by fine needle aspiration biopsy 900000000000020002 +2768650019 20170731 1 900000000000207008 432420000 en 900000000000013009 Specimen from ureter obtained by fine needle aspiration biopsy 900000000000448009 +2768755016 20080731 1 900000000000207008 433115004 en 900000000000013009 Specimen from lip obtained by fine needle aspiration biopsy 900000000000020002 +2768755016 20170731 1 900000000000207008 433115004 en 900000000000013009 Specimen from lip obtained by fine needle aspiration biopsy 900000000000448009 +2768756015 20080731 1 900000000000207008 433116003 en 900000000000013009 Specimen from liver obtained by fine needle aspiration biopsy 900000000000020002 +2768756015 20170731 1 900000000000207008 433116003 en 900000000000013009 Specimen from liver obtained by fine needle aspiration biopsy 900000000000448009 +2768757012 20080731 1 900000000000207008 433117007 en 900000000000013009 Specimen from lower limb obtained by biopsy 900000000000020002 +2768757012 20170731 1 900000000000207008 433117007 en 900000000000013009 Specimen from lower limb obtained by biopsy 900000000000448009 +2768758019 20080731 1 900000000000207008 433118002 en 900000000000013009 Specimen from retroperitoneum obtained by fine needle aspiration biopsy 900000000000020002 +2768758019 20170731 1 900000000000207008 433118002 en 900000000000013009 Specimen from retroperitoneum obtained by fine needle aspiration biopsy 900000000000448009 +2768759010 20080731 1 900000000000207008 433119005 en 900000000000013009 Specimen from salivary gland obtained by biopsy 900000000000020002 +2768759010 20170731 1 900000000000207008 433119005 en 900000000000013009 Specimen from salivary gland obtained by biopsy 900000000000448009 +2768760017 20080731 1 900000000000207008 433120004 en 900000000000013009 Specimen from urethra obtained by fine needle aspiration biopsy 900000000000020002 +2768760017 20170731 1 900000000000207008 433120004 en 900000000000013009 Specimen from urethra obtained by fine needle aspiration biopsy 900000000000448009 +2768865016 20080731 1 900000000000207008 431905001 en 900000000000013009 Swab of building drain 900000000000020002 +2768865016 20170731 1 900000000000207008 431905001 en 900000000000013009 Swab of building drain 900000000000448009 +2768895012 20080731 1 900000000000207008 434014007 en 900000000000013009 Specimen from mediastinum obtained by biopsy 900000000000020002 +2768895012 20170731 1 900000000000207008 434014007 en 900000000000013009 Specimen from mediastinum obtained by biopsy 900000000000448009 +2768896013 20080731 1 900000000000207008 432383002 en 900000000000013009 Specimen from spleen obtained by fine needle aspiration biopsy 900000000000020002 +2768896013 20170731 1 900000000000207008 432383002 en 900000000000013009 Specimen from spleen obtained by fine needle aspiration biopsy 900000000000448009 +2768897016 20080731 1 900000000000207008 432384008 en 900000000000013009 Specimen from stomach obtained by fine needle aspiration biopsy 900000000000020002 +2768897016 20170731 1 900000000000207008 432384008 en 900000000000013009 Specimen from stomach obtained by fine needle aspiration biopsy 900000000000448009 +2768898014 20080731 1 900000000000207008 432385009 en 900000000000013009 Specimen from sympathetic nerve ganglion obtained by biopsy 900000000000020002 +2768898014 20170731 1 900000000000207008 432385009 en 900000000000013009 Specimen from sympathetic nerve ganglion obtained by biopsy 900000000000448009 +2769021015 20080731 1 900000000000207008 432436003 en 900000000000013009 Specimen from hydrocele of spermatic cord 900000000000020002 +2769021015 20170731 1 900000000000207008 432436003 en 900000000000013009 Specimen from hydrocele of spermatic cord 900000000000448009 +2769083015 20080731 1 900000000000207008 431404007 en 900000000000013009 Specimen from bone obtained by fine needle aspiration biopsy 900000000000020002 +2769083015 20170731 1 900000000000207008 431404007 en 900000000000013009 Specimen from bone obtained by fine needle aspiration biopsy 900000000000448009 +2769084014 20080731 1 900000000000207008 431405008 en 900000000000013009 Specimen from ovary obtained by fine needle aspiration biopsy 900000000000020002 +2769084014 20170731 1 900000000000207008 431405008 en 900000000000013009 Specimen from ovary obtained by fine needle aspiration biopsy 900000000000448009 +2769085010 20080731 1 900000000000207008 431406009 en 900000000000013009 Specimen from pancreas obtained by fine needle aspiration biopsy 900000000000020002 +2769085010 20170731 1 900000000000207008 431406009 en 900000000000013009 Specimen from pancreas obtained by fine needle aspiration biopsy 900000000000448009 +2769227014 20080731 1 900000000000207008 432139004 en 900000000000013009 Specimen from brain obtained by biopsy 900000000000020002 +2769227014 20170731 1 900000000000207008 432139004 en 900000000000013009 Specimen from brain obtained by biopsy 900000000000448009 +2769228016 20080731 1 900000000000207008 432140002 en 900000000000013009 Specimen from bronchus obtained by fine needle aspiration biopsy 900000000000020002 +2769228016 20170731 1 900000000000207008 432140002 en 900000000000013009 Specimen from bronchus obtained by fine needle aspiration biopsy 900000000000448009 +2769409014 20080731 1 900000000000207008 432141003 en 900000000000013009 Specimen from parathyroid obtained by fine needle aspiration biopsy 900000000000020002 +2769409014 20170731 1 900000000000207008 432141003 en 900000000000013009 Specimen from parathyroid obtained by fine needle aspiration biopsy 900000000000448009 +2769410016 20080731 1 900000000000207008 432142005 en 900000000000013009 Specimen from penis obtained by biopsy 900000000000020002 +2769410016 20170731 1 900000000000207008 432142005 en 900000000000013009 Specimen from penis obtained by biopsy 900000000000448009 +2769411017 20080731 1 900000000000207008 432143000 en 900000000000013009 Specimen from penis obtained by fine needle aspiration biopsy 900000000000020002 +2769411017 20170731 1 900000000000207008 432143000 en 900000000000013009 Specimen from penis obtained by fine needle aspiration biopsy 900000000000448009 +2769412012 20080731 1 900000000000207008 432986001 en 900000000000013009 Specimen from tooth obtained by biopsy 900000000000020002 +2769412012 20170731 1 900000000000207008 432986001 en 900000000000013009 Specimen from tooth obtained by biopsy 900000000000448009 +2769589010 20080731 1 900000000000207008 434244002 en 900000000000013009 Specimen from retroperitoneum obtained by biopsy 900000000000020002 +2769589010 20170731 1 900000000000207008 434244002 en 900000000000013009 Specimen from retroperitoneum obtained by biopsy 900000000000448009 +2769635017 20080731 1 900000000000207008 432441006 en 900000000000013009 Specimen from hydrocele of tunica vaginalis 900000000000020002 +2769635017 20170731 1 900000000000207008 432441006 en 900000000000013009 Specimen from hydrocele of tunica vaginalis 900000000000448009 +2769763013 20080731 1 900000000000207008 433854001 en 900000000000013009 Specimen from seminal vesicle obtained by biopsy 900000000000020002 +2769763013 20170731 1 900000000000207008 433854001 en 900000000000013009 Specimen from seminal vesicle obtained by biopsy 900000000000448009 +2769764019 20080731 1 900000000000207008 432057001 en 900000000000013009 Specimen from seminal vesicle obtained by fine needle aspiration biopsy 900000000000020002 +2769764019 20170731 1 900000000000207008 432057001 en 900000000000013009 Specimen from seminal vesicle obtained by fine needle aspiration biopsy 900000000000448009 +2769765018 20080731 1 900000000000207008 432059003 en 900000000000013009 Specimen from uterus obtained by biopsy 900000000000020002 +2769765018 20170731 1 900000000000207008 432059003 en 900000000000013009 Specimen from uterus obtained by biopsy 900000000000448009 +2769778018 20080731 1 900000000000207008 431776009 en 900000000000013009 Swab of surgical drain 900000000000020002 +2769778018 20170731 1 900000000000207008 431776009 en 900000000000013009 Swab of surgical drain 900000000000448009 +2769921017 20080731 1 900000000000207008 432980007 en 900000000000013009 Specimen from epididymis obtained by fine needle aspiration biopsy 900000000000020002 +2769921017 20170731 1 900000000000207008 432980007 en 900000000000013009 Specimen from epididymis obtained by fine needle aspiration biopsy 900000000000448009 +2769922012 20080731 1 900000000000207008 432981006 en 900000000000013009 Specimen from eye obtained by fine needle aspiration biopsy 900000000000020002 +2769922012 20170731 1 900000000000207008 432981006 en 900000000000013009 Specimen from eye obtained by fine needle aspiration biopsy 900000000000448009 +2769923019 20080731 1 900000000000207008 432983009 en 900000000000013009 Specimen from pitutary gland obtained by fine needle aspiration biopsy 900000000000020002 +2769923019 20090131 0 900000000000207008 432983009 en 900000000000013009 Specimen from pitutary gland obtained by fine needle aspiration biopsy 900000000000020002 +2769924013 20080731 1 900000000000207008 432985002 en 900000000000013009 Specimen from tongue obtained by fine needle aspiration biopsy 900000000000020002 +2769924013 20170731 1 900000000000207008 432985002 en 900000000000013009 Specimen from tongue obtained by fine needle aspiration biopsy 900000000000448009 +2770064018 20080731 1 900000000000207008 434250007 en 900000000000013009 Specimen from pericardium obtained by biopsy 900000000000020002 +2770064018 20170731 1 900000000000207008 434250007 en 900000000000013009 Specimen from pericardium obtained by biopsy 900000000000448009 +2770066016 20080731 1 900000000000207008 431234000 en 900000000000013009 Specimen from fetus obtained by biopsy 900000000000020002 +2770066016 20170731 1 900000000000207008 431234000 en 900000000000013009 Specimen from fetus obtained by biopsy 900000000000448009 +2770067013 20080731 1 900000000000207008 431235004 en 900000000000013009 Specimen from trachea obtained by fine needle aspiration biopsy 900000000000020002 +2770067013 20170731 1 900000000000207008 431235004 en 900000000000013009 Specimen from trachea obtained by fine needle aspiration biopsy 900000000000448009 +2770189014 20080731 1 900000000000207008 258610001 en 900000000000013009 Sputum specimen obtained by sputum induction 900000000000020002 +2770189014 20170731 1 900000000000207008 258610001 en 900000000000013009 Sputum specimen obtained by sputum induction 900000000000448009 +2770506011 20080731 1 900000000000207008 434140003 en 900000000000013009 Specimen from mesentery obtained by fine needle aspiration biopsy 900000000000020002 +2770506011 20170731 1 900000000000207008 434140003 en 900000000000013009 Specimen from mesentery obtained by fine needle aspiration biopsy 900000000000448009 +2770557010 20080731 1 900000000000207008 431205006 en 900000000000013009 Specimen from epididymis obtained by biopsy 900000000000020002 +2770557010 20170731 1 900000000000207008 431205006 en 900000000000013009 Specimen from epididymis obtained by biopsy 900000000000448009 +2770586013 20080731 1 900000000000207008 431232001 en 900000000000013009 Specimen from eye region obtained by biopsy 900000000000020002 +2770586013 20170731 1 900000000000207008 431232001 en 900000000000013009 Specimen from eye region obtained by biopsy 900000000000448009 +2770587016 20080731 1 900000000000207008 431233006 en 900000000000013009 Specimen from fallopian tube obtained by fine needle aspiration biopsy 900000000000020002 +2770587016 20170731 1 900000000000207008 431233006 en 900000000000013009 Specimen from fallopian tube obtained by fine needle aspiration biopsy 900000000000448009 +2770588014 20080731 1 900000000000207008 431413009 en 900000000000013009 Specimen from tunica of testis obtained by biopsy 900000000000020002 +2770588014 20170731 1 900000000000207008 431413009 en 900000000000013009 Specimen from tunica of testis obtained by biopsy 900000000000448009 +2770691017 20080731 1 900000000000207008 431771004 en 900000000000013009 Cytologic material obtained from ascitic fluid 900000000000020002 +2770691017 20170731 1 900000000000207008 431771004 en 900000000000013009 Cytologic material obtained from ascitic fluid 900000000000448009 +2770966019 20080731 1 900000000000207008 430117006 en 900000000000013009 Eye region cytologic material 900000000000020002 +2770966019 20170731 1 900000000000207008 430117006 en 900000000000013009 Eye region cytologic material 900000000000448009 +2771068011 20080731 1 900000000000207008 430312009 en 900000000000013009 Cytologic material obtained from synovial fluid 900000000000020002 +2771068011 20170731 1 900000000000207008 430312009 en 900000000000013009 Cytologic material obtained from synovial fluid 900000000000448009 +2771089019 20080731 1 900000000000207008 430144001 en 900000000000013009 Specimen from larynx 900000000000020002 +2771089019 20170731 1 900000000000207008 430144001 en 900000000000013009 Specimen from larynx 900000000000448009 +2771158016 20080731 1 900000000000207008 430318008 en 900000000000013009 Cytologic material obtained from urine 900000000000020002 +2771158016 20170731 1 900000000000207008 430318008 en 900000000000013009 Cytologic material obtained from urine 900000000000448009 +2771159012 20080731 1 900000000000207008 430319000 en 900000000000013009 Specimen from tooth 900000000000020002 +2771159012 20170731 1 900000000000207008 430319000 en 900000000000013009 Specimen from tooth 900000000000448009 +2771164011 20080731 1 900000000000207008 432058006 en 900000000000013009 Specimen from skeletal muscle obtained by biopsy 900000000000020002 +2771164011 20170731 1 900000000000207008 432058006 en 900000000000013009 Specimen from skeletal muscle obtained by biopsy 900000000000448009 +2771223011 20080731 1 900000000000207008 432134009 en 900000000000013009 Specimen from skin obtained by fine needle aspiration biopsy 900000000000020002 +2771223011 20170731 1 900000000000207008 432134009 en 900000000000013009 Specimen from skin obtained by fine needle aspiration biopsy 900000000000448009 +2771245012 20080731 1 900000000000207008 434249007 en 900000000000013009 Specimen from ear obtained by fine needle aspiration biopsy 900000000000020002 +2771245012 20170731 1 900000000000207008 434249007 en 900000000000013009 Specimen from ear obtained by fine needle aspiration biopsy 900000000000448009 +2771258013 20080731 1 900000000000207008 432099000 en 900000000000013009 Specimen from bladder obtained by fine needle aspiration biopsy 900000000000020002 +2771258013 20170731 1 900000000000207008 432099000 en 900000000000013009 Specimen from bladder obtained by fine needle aspiration biopsy 900000000000448009 +2771282015 20080731 1 900000000000207008 431196006 en 900000000000013009 Tissue spot 900000000000020002 +2771282015 20170731 1 900000000000207008 431196006 en 900000000000013009 Tissue spot 900000000000448009 +2771298010 20080731 1 900000000000207008 119331003 en 900000000000013009 Specimen from striated muscle 900000000000020002 +2771298010 20170731 1 900000000000207008 119331003 en 900000000000013009 Specimen from striated muscle 900000000000448009 +2771626010 20080731 1 900000000000207008 433326001 en 900000000000013009 Specimen from mediastinum 900000000000020002 +2771626010 20170731 1 900000000000207008 433326001 en 900000000000013009 Specimen from mediastinum 900000000000448009 +2771693012 20080731 1 900000000000207008 430232008 en 900000000000013009 Specimen from trunk 900000000000020002 +2771693012 20170731 1 900000000000207008 430232008 en 900000000000013009 Specimen from trunk 900000000000448009 +2771925012 20080731 1 900000000000207008 432865002 en 900000000000013009 Specimen from larynx obtained by fine needle aspiration biopsy 900000000000020002 +2771925012 20170731 1 900000000000207008 432865002 en 900000000000013009 Specimen from larynx obtained by fine needle aspiration biopsy 900000000000448009 +2771926013 20080731 1 900000000000207008 434406008 en 900000000000013009 Specimen from salivary gland obtained by fine needle aspiration biopsy 900000000000020002 +2771926013 20170731 1 900000000000207008 434406008 en 900000000000013009 Specimen from salivary gland obtained by fine needle aspiration biopsy 900000000000448009 +2771938016 20080731 1 900000000000207008 432607005 en 900000000000013009 Specimen from mouth obtained by fine needle aspiration biopsy 900000000000020002 +2771938016 20170731 1 900000000000207008 432607005 en 900000000000013009 Specimen from mouth obtained by fine needle aspiration biopsy 900000000000448009 +2771939012 20080731 1 900000000000207008 432608000 en 900000000000013009 Specimen from nasal fossae obtained by biopsy 900000000000020002 +2771939012 20170731 1 900000000000207008 432608000 en 900000000000013009 Specimen from nasal fossae obtained by biopsy 900000000000448009 +2771944017 20080731 1 900000000000207008 432060008 en 900000000000013009 Specimen from uterus obtained by fine needle aspiration biopsy 900000000000020002 +2771944017 20170731 1 900000000000207008 432060008 en 900000000000013009 Specimen from uterus obtained by fine needle aspiration biopsy 900000000000448009 +2772253018 20080731 1 900000000000207008 430970004 en 900000000000013009 Core sample of tissue block 900000000000020002 +2772253018 20170731 1 900000000000207008 430970004 en 900000000000013009 Core sample of tissue block 900000000000448009 +2772274017 20080731 1 900000000000207008 430304001 en 900000000000013009 Specimen from unspecified body site 900000000000020002 +2772274017 20170731 1 900000000000207008 430304001 en 900000000000013009 Specimen from unspecified body site 900000000000448009 +2772341019 20080731 1 900000000000207008 430250001 en 900000000000013009 Specimen from peritoneum 900000000000020002 +2772341019 20170731 1 900000000000207008 430250001 en 900000000000013009 Specimen from peritoneum 900000000000448009 +2772531016 20080731 1 900000000000207008 432144006 en 900000000000013009 Specimen from mediastinum obtained by fine needle aspiration biopsy 900000000000020002 +2772531016 20170731 1 900000000000207008 432144006 en 900000000000013009 Specimen from mediastinum obtained by fine needle aspiration biopsy 900000000000448009 +2772555014 20080731 1 900000000000207008 433861002 en 900000000000013009 Specimen from nasal sinus obtained by fine needle aspiration biopsy 900000000000020002 +2772555014 20170731 1 900000000000207008 433861002 en 900000000000013009 Specimen from nasal sinus obtained by fine needle aspiration biopsy 900000000000448009 +2772566019 20080731 1 900000000000207008 432910000 en 900000000000013009 Specimen from ear obtained by biopsy 900000000000020002 +2772566019 20170731 1 900000000000207008 432910000 en 900000000000013009 Specimen from ear obtained by biopsy 900000000000448009 +2772581013 20080731 1 900000000000207008 432098008 en 900000000000013009 Specimen from bile duct obtained by fine needle aspiration biopsy 900000000000020002 +2772581013 20170731 1 900000000000207008 432098008 en 900000000000013009 Specimen from bile duct obtained by fine needle aspiration biopsy 900000000000448009 +2772591019 20080731 1 900000000000207008 309211008 en 900000000000013009 Specimen from stomach obtained by biopsy 900000000000020002 +2772591019 20170731 1 900000000000207008 309211008 en 900000000000013009 Specimen from stomach obtained by biopsy 900000000000448009 +2772638015 20080731 1 900000000000207008 431412004 en 900000000000013009 Specimen from trunk obtained by biopsy 900000000000020002 +2772638015 20170731 1 900000000000207008 431412004 en 900000000000013009 Specimen from trunk obtained by biopsy 900000000000448009 +2772662013 20080731 1 900000000000207008 432982004 en 900000000000013009 Specimen from peritoneum obtained by fine needle aspiration biopsy 900000000000020002 +2772662013 20170731 1 900000000000207008 432982004 en 900000000000013009 Specimen from peritoneum obtained by fine needle aspiration biopsy 900000000000448009 +2772716011 20080731 1 900000000000207008 432897002 en 900000000000013009 Cytologic material obtained from joint fluid 900000000000020002 +2772716011 20170731 1 900000000000207008 432897002 en 900000000000013009 Cytologic material obtained from joint fluid 900000000000448009 +2772916015 20080731 1 900000000000207008 431058008 en 900000000000013009 Lip cytologic material 900000000000020002 +2772916015 20170731 1 900000000000207008 431058008 en 900000000000013009 Lip cytologic material 900000000000448009 +2772926010 20080731 1 900000000000207008 433323009 en 900000000000013009 Specimen from retroperitoneum 900000000000020002 +2772926010 20170731 1 900000000000207008 433323009 en 900000000000013009 Specimen from retroperitoneum 900000000000448009 +2772946017 20080731 1 900000000000207008 430234009 en 900000000000013009 Specimen from spermatic cord 900000000000020002 +2772946017 20170731 1 900000000000207008 430234009 en 900000000000013009 Specimen from spermatic cord 900000000000448009 +2772999011 20080731 1 900000000000207008 430855004 en 900000000000013009 Touch preparation cytologic material 900000000000020002 +2772999011 20170731 1 900000000000207008 430855004 en 900000000000013009 Touch preparation cytologic material 900000000000448009 +2773123012 20080731 1 900000000000207008 258479004 en 900000000000013009 Interstitial fluid specimen 900000000000020002 +2773123012 20170731 1 900000000000207008 258479004 en 900000000000013009 Interstitial fluid specimen 900000000000448009 +2773298015 20080731 1 900000000000207008 432145007 en 900000000000013009 Specimen from meninges obtained by biopsy 900000000000020002 +2773298015 20170731 1 900000000000207008 432145007 en 900000000000013009 Specimen from meninges obtained by biopsy 900000000000448009 +2773318017 20080731 1 900000000000207008 432864003 en 900000000000013009 Specimen from large intestine obtained by fine needle aspiration biopsy 900000000000020002 +2773318017 20170731 1 900000000000207008 432864003 en 900000000000013009 Specimen from large intestine obtained by fine needle aspiration biopsy 900000000000448009 +2773338016 20080731 1 900000000000207008 432061007 en 900000000000013009 Specimen from vein obtained by biopsy 900000000000020002 +2773338016 20170731 1 900000000000207008 432061007 en 900000000000013009 Specimen from vein obtained by biopsy 900000000000448009 +2773388012 20080731 1 900000000000207008 431696005 en 900000000000013009 Specimen from spermatic cord obtained by fine needle aspiration biopsy 900000000000020002 +2773388012 20170731 1 900000000000207008 431696005 en 900000000000013009 Specimen from spermatic cord obtained by fine needle aspiration biopsy 900000000000448009 +2773389016 20080731 1 900000000000207008 433760005 en 900000000000013009 Specimen from spleen obtained by biopsy 900000000000020002 +2773389016 20170731 1 900000000000207008 433760005 en 900000000000013009 Specimen from spleen obtained by biopsy 900000000000448009 +2773534015 20080731 1 900000000000207008 430379005 en 900000000000013009 Pericardial fluid cytologic material 900000000000020002 +2773534015 20170731 1 900000000000207008 430379005 en 900000000000013009 Pericardial fluid cytologic material 900000000000448009 +2773541014 20080731 1 900000000000207008 433309007 en 900000000000013009 Specimen from omentum 900000000000020002 +2773541014 20170731 1 900000000000207008 433309007 en 900000000000013009 Specimen from omentum 900000000000448009 +2773583016 20080731 1 900000000000207008 430238007 en 900000000000013009 Specimen from nasal sinus 900000000000020002 +2773583016 20170731 1 900000000000207008 430238007 en 900000000000013009 Specimen from nasal sinus 900000000000448009 +2773594017 20080731 1 900000000000207008 430861001 en 900000000000013009 Macroscopic tissue specimen 900000000000020002 +2773594017 20170731 1 900000000000207008 430861001 en 900000000000013009 Macroscopic tissue specimen 900000000000448009 +2773671011 20080731 1 900000000000207008 430297000 en 900000000000013009 Cytologic material obtained from unspecified body site 900000000000020002 +2773671011 20170731 1 900000000000207008 430297000 en 900000000000013009 Cytologic material obtained from unspecified body site 900000000000448009 +2773673014 20080731 1 900000000000207008 433308004 en 900000000000013009 Specimen from spleen 900000000000020002 +2773673014 20170731 1 900000000000207008 433308004 en 900000000000013009 Specimen from spleen 900000000000448009 +2773965019 20080731 1 900000000000207008 433860001 en 900000000000013009 Specimen from nasal sinus obtained by biopsy 900000000000020002 +2773965019 20170731 1 900000000000207008 433860001 en 900000000000013009 Specimen from nasal sinus obtained by biopsy 900000000000448009 +2774003017 20080731 1 900000000000207008 432136006 en 900000000000013009 Specimen from vulva obtained by fine needle aspiration biopsy 900000000000020002 +2774003017 20170731 1 900000000000207008 432136006 en 900000000000013009 Specimen from vulva obtained by fine needle aspiration biopsy 900000000000448009 +2774088011 20080731 1 900000000000207008 432984003 en 900000000000013009 Specimen from thyroid obtained by biopsy 900000000000020002 +2774088011 20170731 1 900000000000207008 432984003 en 900000000000013009 Specimen from thyroid obtained by biopsy 900000000000448009 +2774215010 20080731 1 900000000000207008 430310001 en 900000000000013009 Cytologic material obtained from sputum 900000000000020002 +2774215010 20170731 1 900000000000207008 430310001 en 900000000000013009 Cytologic material obtained from sputum 900000000000448009 +2774305018 20080731 1 900000000000207008 430318008 en 900000000000013009 Urine cytologic material 900000000000020002 +2774305018 20170731 1 900000000000207008 430318008 en 900000000000013009 Urine cytologic material 900000000000448009 +2786057018 20090131 1 900000000000207008 438803004 en 900000000000003001 Tissue specimen from retroperitoneum (specimen) 900000000000020002 +2786057018 20170731 1 900000000000207008 438803004 en 900000000000003001 Tissue specimen from retroperitoneum (specimen) 900000000000448009 +2786058011 20090131 1 900000000000207008 438804005 en 900000000000003001 Tissue specimen from transplanted kidney (specimen) 900000000000020002 +2786058011 20170731 1 900000000000207008 438804005 en 900000000000003001 Tissue specimen from transplanted kidney (specimen) 900000000000448009 +2786059015 20090131 1 900000000000207008 438805006 en 900000000000003001 Whole tooth specimen (specimen) 900000000000020002 +2786059015 20170731 1 900000000000207008 438805006 en 900000000000003001 Whole tooth specimen (specimen) 900000000000448009 +2786062017 20090131 1 900000000000207008 440502004 en 900000000000003001 Soft tissue specimen obtained by excision (specimen) 900000000000017005 +2786062017 20200131 1 900000000000207008 440502004 en 900000000000003001 Soft tissue specimen obtained by excision (specimen) 900000000000448009 +2786250011 20090131 1 900000000000207008 438960000 en 900000000000003001 Specimen from intervertebral disc (specimen) 900000000000020002 +2786250011 20170731 1 900000000000207008 438960000 en 900000000000003001 Specimen from intervertebral disc (specimen) 900000000000448009 +2786423015 20090131 1 900000000000207008 440493002 en 900000000000003001 Graft specimen from patient (specimen) 900000000000020002 +2786423015 20170731 1 900000000000207008 440493002 en 900000000000003001 Graft specimen from patient (specimen) 900000000000448009 +2786485013 20090131 1 900000000000207008 438542005 en 900000000000003001 Specimen from vagus nerve (specimen) 900000000000020002 +2786485013 20170731 1 900000000000207008 438542005 en 900000000000003001 Specimen from vagus nerve (specimen) 900000000000448009 +2786487017 20090131 1 900000000000207008 438545007 en 900000000000003001 Fluid specimen from spermatocele (specimen) 900000000000020002 +2786487017 20170731 1 900000000000207008 438545007 en 900000000000003001 Fluid specimen from spermatocele (specimen) 900000000000448009 +2786527016 20090131 1 900000000000207008 438351003 en 900000000000003001 Tissue specimen obtained by esophagogastrectomy (specimen) 900000000000020002 +2786527016 20170731 1 900000000000207008 438351003 en 900000000000003001 Tissue specimen obtained by esophagogastrectomy (specimen) 900000000000448009 +2786531010 20090131 1 900000000000207008 438352005 en 900000000000003001 Specimen from trachea obtained by excision (specimen) 900000000000020002 +2786531010 20170731 1 900000000000207008 438352005 en 900000000000003001 Specimen from trachea obtained by excision (specimen) 900000000000448009 +2786662018 20090131 1 900000000000207008 439479000 en 900000000000003001 Tissue specimen obtained by excision (specimen) 900000000000020002 +2786662018 20170731 1 900000000000207008 439479000 en 900000000000003001 Tissue specimen obtained by excision (specimen) 900000000000448009 +2786737011 20090131 1 900000000000207008 110953004 en 900000000000003001 Vaginal and cervical cytologic material (specimen) 900000000000020002 +2786737011 20170731 1 900000000000207008 110953004 en 900000000000003001 Vaginal and cervical cytologic material (specimen) 900000000000448009 +2786832010 20090131 1 900000000000207008 439034006 en 900000000000003001 Tissue specimen from liver obtained by excision (specimen) 900000000000020002 +2786832010 20170731 1 900000000000207008 439034006 en 900000000000003001 Tissue specimen from liver obtained by excision (specimen) 900000000000448009 +2786965018 20090131 1 900000000000207008 440674008 en 900000000000003001 Specimen obtained by lavage (specimen) 900000000000020002 +2786965018 20170731 1 900000000000207008 440674008 en 900000000000003001 Specimen obtained by lavage (specimen) 900000000000448009 +2786985019 20090131 1 900000000000207008 438336007 en 900000000000003001 Hemorrhoid tissue specimen (specimen) 900000000000020002 +2786985019 20170731 1 900000000000207008 438336007 en 900000000000003001 Hemorrhoid tissue specimen (specimen) 900000000000448009 +2787147012 20090131 1 900000000000207008 440468004 en 900000000000003001 Tampon submitted as specimen (specimen) 900000000000020002 +2787147012 20170731 1 900000000000207008 440468004 en 900000000000003001 Tampon submitted as specimen (specimen) 900000000000448009 +2787148019 20090131 1 900000000000207008 440469007 en 900000000000003001 Tissue specimen from ectopic pregnancy (specimen) 900000000000020002 +2787148019 20170731 1 900000000000207008 440469007 en 900000000000003001 Tissue specimen from ectopic pregnancy (specimen) 900000000000448009 +2787174013 20090131 1 900000000000207008 438595008 en 900000000000003001 Fluid specimen from sebaceous cyst (specimen) 900000000000020002 +2787174013 20170731 1 900000000000207008 438595008 en 900000000000003001 Fluid specimen from sebaceous cyst (specimen) 900000000000448009 +2787184014 20090131 1 900000000000207008 438659007 en 900000000000003001 Specimen from liver obtained by wedge biopsy (specimen) 900000000000020002 +2787184014 20170731 1 900000000000207008 438659007 en 900000000000003001 Specimen from liver obtained by wedge biopsy (specimen) 900000000000448009 +2787185010 20090131 1 900000000000207008 438660002 en 900000000000003001 Specimen from prosthetic device (specimen) 900000000000020002 +2787185010 20170731 1 900000000000207008 438660002 en 900000000000003001 Specimen from prosthetic device (specimen) 900000000000448009 +2787186011 20090131 1 900000000000207008 438661003 en 900000000000003001 Specimen from transplanted kidney obtained by biopsy (specimen) 900000000000020002 +2787186011 20170731 1 900000000000207008 438661003 en 900000000000003001 Specimen from transplanted kidney obtained by biopsy (specimen) 900000000000448009 +2787304017 20090131 1 900000000000207008 438343001 en 900000000000003001 Swab of pilonidal sinus (specimen) 900000000000020002 +2787304017 20170731 1 900000000000207008 438343001 en 900000000000003001 Swab of pilonidal sinus (specimen) 900000000000448009 +2787542010 20090131 1 900000000000207008 439961009 en 900000000000003001 Implant submitted as specimen (specimen) 900000000000020002 +2787542010 20170731 1 900000000000207008 439961009 en 900000000000003001 Implant submitted as specimen (specimen) 900000000000448009 +2787553016 20090131 1 900000000000207008 309490007 en 900000000000003001 Specimen from pancreas obtained by excision (specimen) 900000000000020002 +2787553016 20170731 1 900000000000207008 309490007 en 900000000000003001 Specimen from pancreas obtained by excision (specimen) 900000000000448009 +2787559017 20090131 1 900000000000207008 439628000 en 900000000000003001 Urinary collection bag submitted as specimen (specimen) 900000000000020002 +2787559017 20170731 1 900000000000207008 439628000 en 900000000000003001 Urinary collection bag submitted as specimen (specimen) 900000000000448009 +2787974012 20090131 1 900000000000207008 309270001 en 900000000000003001 Specimen from kidney obtained by excision (specimen) 900000000000020002 +2787974012 20170731 1 900000000000207008 309270001 en 900000000000003001 Specimen from kidney obtained by excision (specimen) 900000000000448009 +2788183017 20090131 1 900000000000207008 440472000 en 900000000000003001 Specimen from transplanted lung obtained by excision (specimen) 900000000000020002 +2788183017 20170731 1 900000000000207008 440472000 en 900000000000003001 Specimen from transplanted lung obtained by excision (specimen) 900000000000448009 +2788184011 20090131 1 900000000000207008 440473005 en 900000000000003001 Contact lens submitted as specimen (specimen) 900000000000020002 +2788184011 20170731 1 900000000000207008 440473005 en 900000000000003001 Contact lens submitted as specimen (specimen) 900000000000448009 +2788704016 20090131 1 900000000000207008 432983009 en 900000000000003001 Specimen from pituitary gland obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2788704016 20170731 1 900000000000207008 432983009 en 900000000000003001 Specimen from pituitary gland obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2789047015 20090131 1 900000000000207008 440135000 en 900000000000003001 Specimen from ureter obtained by brush biopsy (specimen) 900000000000020002 +2789047015 20170731 1 900000000000207008 440135000 en 900000000000003001 Specimen from ureter obtained by brush biopsy (specimen) 900000000000448009 +2789048013 20090131 1 900000000000207008 440138003 en 900000000000003001 Specimen containing crystals from synovial joint (specimen) 900000000000020002 +2789048013 20170731 1 900000000000207008 440138003 en 900000000000003001 Specimen containing crystals from synovial joint (specimen) 900000000000448009 +2789049017 20090131 1 900000000000207008 440136004 en 900000000000003001 Specimen from cranium (specimen) 900000000000020002 +2789049017 20170731 1 900000000000207008 440136004 en 900000000000003001 Specimen from cranium (specimen) 900000000000448009 +2789050017 20090131 1 900000000000207008 440137008 en 900000000000003001 Specimen obtained by peritoneal lavage (specimen) 900000000000020002 +2789050017 20170731 1 900000000000207008 440137008 en 900000000000003001 Specimen obtained by peritoneal lavage (specimen) 900000000000448009 +2789051018 20090131 1 900000000000207008 440229008 en 900000000000003001 Specimen from environment (specimen) 900000000000020002 +2789051018 20170731 1 900000000000207008 440229008 en 900000000000003001 Specimen from environment (specimen) 900000000000448009 +2789333013 20090131 1 900000000000207008 440515008 en 900000000000003001 Specimen of targeted lesion obtained by biopsy (specimen) 900000000000020002 +2789333013 20170731 1 900000000000207008 440515008 en 900000000000003001 Specimen of targeted lesion obtained by biopsy (specimen) 900000000000448009 +2789356016 20090131 1 900000000000207008 438543000 en 900000000000003001 Specimen from transplanted liver obtained by biopsy (specimen) 900000000000020002 +2789356016 20170731 1 900000000000207008 438543000 en 900000000000003001 Specimen from transplanted liver obtained by biopsy (specimen) 900000000000448009 +2789361019 20090131 1 900000000000207008 439580004 en 900000000000003001 Urine collection pad submitted as specimen (specimen) 900000000000020002 +2789361019 20170731 1 900000000000207008 439580004 en 900000000000003001 Urine collection pad submitted as specimen (specimen) 900000000000448009 +2789536018 20090131 1 900000000000207008 440500007 en 900000000000003001 Blood spot specimen (specimen) 900000000000017005 +2789536018 20180131 0 900000000000207008 440500007 en 900000000000003001 Blood spot specimen (specimen) 900000000000448009 +2789683013 20090131 1 900000000000207008 431884001 en 900000000000003001 Specimen from gallbladder obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2789683013 20170731 1 900000000000207008 431884001 en 900000000000003001 Specimen from gallbladder obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2789773017 20090131 1 900000000000207008 438454007 en 900000000000003001 Specimen from transplanted lung obtained by biopsy (specimen) 900000000000020002 +2789773017 20170731 1 900000000000207008 438454007 en 900000000000003001 Specimen from transplanted lung obtained by biopsy (specimen) 900000000000448009 +2789865015 20090131 1 900000000000207008 439895009 en 900000000000003001 Tissue specimen from nose obtained by excision (specimen) 900000000000020002 +2789865015 20170731 1 900000000000207008 439895009 en 900000000000003001 Tissue specimen from nose obtained by excision (specimen) 900000000000448009 +2790069015 20090131 1 900000000000207008 440675009 en 900000000000003001 Specimen from upper urinary tract obtained by lavage (specimen) 900000000000020002 +2790069015 20170731 1 900000000000207008 440675009 en 900000000000003001 Specimen from upper urinary tract obtained by lavage (specimen) 900000000000448009 +2790120015 20090131 1 900000000000207008 440674008 en 900000000000013009 Wash out specimen 900000000000020002 +2790120015 20170731 1 900000000000207008 440674008 en 900000000000013009 Wash out specimen 900000000000448009 +2790294012 20090131 1 900000000000207008 438336007 en 900000000000013009 Haemorrhoid tissue specimen 900000000000020002 +2790294012 20170731 1 900000000000207008 438336007 en 900000000000013009 Haemorrhoid tissue specimen 900000000000448009 +2790305017 20090131 1 900000000000207008 440515008 en 900000000000013009 Specimen of targeted lesion obtained by biopsy 900000000000020002 +2790305017 20170731 1 900000000000207008 440515008 en 900000000000013009 Specimen of targeted lesion obtained by biopsy 900000000000448009 +2790324019 20090131 1 900000000000207008 440473005 en 900000000000013009 Contact lens submitted as specimen 900000000000020002 +2790324019 20170731 1 900000000000207008 440473005 en 900000000000013009 Contact lens submitted as specimen 900000000000448009 +2790416013 20090131 1 900000000000207008 438960000 en 900000000000013009 Specimen from intervertebral disc 900000000000020002 +2790416013 20170731 1 900000000000207008 438960000 en 900000000000013009 Specimen from intervertebral disc 900000000000448009 +2790838015 20090131 1 900000000000207008 438343001 en 900000000000013009 Swab of pilonidal sinus 900000000000020002 +2790838015 20170731 1 900000000000207008 438343001 en 900000000000013009 Swab of pilonidal sinus 900000000000448009 +2790980017 20090131 1 900000000000207008 440469007 en 900000000000013009 Tissue specimen from ectopic pregnancy 900000000000020002 +2790980017 20170731 1 900000000000207008 440469007 en 900000000000013009 Tissue specimen from ectopic pregnancy 900000000000448009 +2790985010 20090131 1 900000000000207008 438659007 en 900000000000013009 Specimen from liver obtained by wedge biopsy 900000000000020002 +2790985010 20170731 1 900000000000207008 438659007 en 900000000000013009 Specimen from liver obtained by wedge biopsy 900000000000448009 +2790986011 20090131 1 900000000000207008 438661003 en 900000000000013009 Renal transplant biopsy sample 900000000000020002 +2790986011 20170731 1 900000000000207008 438661003 en 900000000000013009 Renal transplant biopsy sample 900000000000448009 +2791001012 20090131 1 900000000000207008 439628000 en 900000000000013009 Urinary collection bag submitted as specimen 900000000000020002 +2791001012 20170731 1 900000000000207008 439628000 en 900000000000013009 Urinary collection bag submitted as specimen 900000000000448009 +2791377019 20090131 1 900000000000207008 439961009 en 900000000000013009 Implant submitted as specimen 900000000000020002 +2791377019 20170731 1 900000000000207008 439961009 en 900000000000013009 Implant submitted as specimen 900000000000448009 +2791504014 20090131 1 900000000000207008 440468004 en 900000000000013009 Tampon submitted as specimen 900000000000020002 +2791504014 20170731 1 900000000000207008 440468004 en 900000000000013009 Tampon submitted as specimen 900000000000448009 +2791784013 20090131 1 900000000000207008 438542005 en 900000000000013009 Specimen from vagus nerve 900000000000020002 +2791784013 20170731 1 900000000000207008 438542005 en 900000000000013009 Specimen from vagus nerve 900000000000448009 +2791785014 20090131 1 900000000000207008 438543000 en 900000000000013009 Specimen from transplanted liver obtained by biopsy 900000000000020002 +2791785014 20170731 1 900000000000207008 438543000 en 900000000000013009 Specimen from transplanted liver obtained by biopsy 900000000000448009 +2791787018 20090131 1 900000000000207008 438545007 en 900000000000013009 Fluid specimen from spermatocele 900000000000020002 +2791787018 20170731 1 900000000000207008 438545007 en 900000000000013009 Fluid specimen from spermatocele 900000000000448009 +2791788011 20090131 1 900000000000207008 438351003 en 900000000000013009 Tissue specimen obtained by oesophagogastrectomy 900000000000020002 +2791788011 20170731 1 900000000000207008 438351003 en 900000000000013009 Tissue specimen obtained by oesophagogastrectomy 900000000000448009 +2791791011 20090131 1 900000000000207008 438352005 en 900000000000013009 Specimen from trachea obtained by excision 900000000000020002 +2791791011 20170731 1 900000000000207008 438352005 en 900000000000013009 Specimen from trachea obtained by excision 900000000000448009 +2792084017 20090131 1 900000000000207008 440493002 en 900000000000013009 Graft sample 900000000000020002 +2792084017 20170731 1 900000000000207008 440493002 en 900000000000013009 Graft sample 900000000000448009 +2792084017 20210731 0 900000000000207008 440493002 en 900000000000013009 Graft sample 900000000000448009 +2792085016 20090131 1 900000000000207008 440493002 en 900000000000013009 Graft specimen from patient 900000000000020002 +2792085016 20170731 1 900000000000207008 440493002 en 900000000000013009 Graft specimen from patient 900000000000448009 +2792249011 20090131 1 900000000000207008 432983009 en 900000000000013009 Specimen from pituitary gland obtained by fine needle aspiration biopsy 900000000000020002 +2792249011 20170731 1 900000000000207008 432983009 en 900000000000013009 Specimen from pituitary gland obtained by fine needle aspiration biopsy 900000000000448009 +2792477016 20090131 1 900000000000207008 438803004 en 900000000000013009 Retroperitoneal tissue sample 900000000000020002 +2792477016 20170731 1 900000000000207008 438803004 en 900000000000013009 Retroperitoneal tissue sample 900000000000448009 +2792478014 20090131 1 900000000000207008 438805006 en 900000000000013009 Whole tooth specimen 900000000000020002 +2792478014 20170731 1 900000000000207008 438805006 en 900000000000013009 Whole tooth specimen 900000000000448009 +2792519013 20090131 1 900000000000207008 110953004 en 900000000000013009 Vaginal and cervical cytologic material 900000000000020002 +2792519013 20170731 1 900000000000207008 110953004 en 900000000000013009 Vaginal and cervical cytologic material 900000000000448009 +2792601011 20090131 1 900000000000207008 440500007 en 900000000000013009 Blood spot specimen 900000000000017005 +2792601011 20180131 1 900000000000207008 440500007 en 900000000000013009 Blood spot specimen 900000000000448009 +2792651018 20090131 1 900000000000207008 439479000 en 900000000000013009 Tissue specimen obtained by excision 900000000000020002 +2792651018 20170731 1 900000000000207008 439479000 en 900000000000013009 Tissue specimen obtained by excision 900000000000448009 +2793269012 20090131 1 900000000000207008 440135000 en 900000000000013009 Specimen from ureter obtained by brush biopsy 900000000000020002 +2793269012 20170731 1 900000000000207008 440135000 en 900000000000013009 Specimen from ureter obtained by brush biopsy 900000000000448009 +2793270013 20090131 1 900000000000207008 440138003 en 900000000000013009 Specimen containing crystals from synovial joint 900000000000020002 +2793270013 20170731 1 900000000000207008 440138003 en 900000000000013009 Specimen containing crystals from synovial joint 900000000000448009 +2793271012 20090131 1 900000000000207008 440137008 en 900000000000013009 Specimen obtained by peritoneal lavage 900000000000020002 +2793271012 20170731 1 900000000000207008 440137008 en 900000000000013009 Specimen obtained by peritoneal lavage 900000000000448009 +2793272017 20090131 1 900000000000207008 440229008 en 900000000000013009 Specimen from environment 900000000000020002 +2793272017 20170731 1 900000000000207008 440229008 en 900000000000013009 Specimen from environment 900000000000448009 +2793335013 20090131 1 900000000000207008 431884001 en 900000000000013009 Specimen from gallbladder obtained by fine needle aspiration biopsy 900000000000020002 +2793335013 20170731 1 900000000000207008 431884001 en 900000000000013009 Specimen from gallbladder obtained by fine needle aspiration biopsy 900000000000448009 +2793581012 20090131 1 900000000000207008 438803004 en 900000000000013009 Tissue specimen from retroperitoneum 900000000000020002 +2793581012 20170731 1 900000000000207008 438803004 en 900000000000013009 Tissue specimen from retroperitoneum 900000000000448009 +2793587011 20090131 1 900000000000207008 438351003 en 900000000000013009 Tissue specimen obtained by esophagogastrectomy 900000000000020002 +2793587011 20170731 1 900000000000207008 438351003 en 900000000000013009 Tissue specimen obtained by esophagogastrectomy 900000000000448009 +2793684012 20090131 1 900000000000207008 440502004 en 900000000000013009 Soft tissue specimen obtained by excision 900000000000017005 +2793684012 20200131 1 900000000000207008 440502004 en 900000000000013009 Soft tissue specimen obtained by excision 900000000000448009 +2793754010 20090131 1 900000000000207008 440674008 en 900000000000013009 Specimen obtained by lavage 900000000000020002 +2793754010 20170731 1 900000000000207008 440674008 en 900000000000013009 Specimen obtained by lavage 900000000000448009 +2793813014 20090131 1 900000000000207008 440675009 en 900000000000013009 Specimen from upper urinary tract obtained by lavage 900000000000020002 +2793813014 20170731 1 900000000000207008 440675009 en 900000000000013009 Specimen from upper urinary tract obtained by lavage 900000000000448009 +2794026019 20090131 1 900000000000207008 309270001 en 900000000000013009 Specimen from kidney obtained by excision 900000000000020002 +2794026019 20170731 1 900000000000207008 309270001 en 900000000000013009 Specimen from kidney obtained by excision 900000000000448009 +2794063011 20090131 1 900000000000207008 439580004 en 900000000000013009 Urine collection pad submitted as specimen 900000000000020002 +2794063011 20170731 1 900000000000207008 439580004 en 900000000000013009 Urine collection pad submitted as specimen 900000000000448009 +2794089011 20090131 1 900000000000207008 438660002 en 900000000000013009 Specimen from prosthetic device 900000000000020002 +2794089011 20170731 1 900000000000207008 438660002 en 900000000000013009 Specimen from prosthetic device 900000000000448009 +2794130018 20090131 1 900000000000207008 438454007 en 900000000000013009 Specimen from transplanted lung obtained by biopsy 900000000000020002 +2794130018 20170731 1 900000000000207008 438454007 en 900000000000013009 Specimen from transplanted lung obtained by biopsy 900000000000448009 +2794155012 20090131 1 900000000000207008 439034006 en 900000000000013009 Tissue specimen from liver obtained by excision 900000000000020002 +2794155012 20170731 1 900000000000207008 439034006 en 900000000000013009 Tissue specimen from liver obtained by excision 900000000000448009 +2794168016 20090131 1 900000000000207008 309490007 en 900000000000013009 Specimen from pancreas obtained by excision 900000000000020002 +2794168016 20170731 1 900000000000207008 309490007 en 900000000000013009 Specimen from pancreas obtained by excision 900000000000448009 +2794452018 20090131 1 900000000000207008 440472000 en 900000000000013009 Specimen from transplanted lung obtained by excision 900000000000020002 +2794452018 20170731 1 900000000000207008 440472000 en 900000000000013009 Specimen from transplanted lung obtained by excision 900000000000448009 +2794543012 20090131 1 900000000000207008 438661003 en 900000000000013009 Specimen from transplanted kidney obtained by biopsy 900000000000020002 +2794543012 20170731 1 900000000000207008 438661003 en 900000000000013009 Specimen from transplanted kidney obtained by biopsy 900000000000448009 +2794675019 20090131 1 900000000000207008 438804005 en 900000000000013009 Tissue specimen from transplanted kidney 900000000000020002 +2794675019 20170731 1 900000000000207008 438804005 en 900000000000013009 Tissue specimen from transplanted kidney 900000000000448009 +2794822016 20090131 1 900000000000207008 439895009 en 900000000000013009 Tissue specimen from nose obtained by excision 900000000000020002 +2794822016 20170731 1 900000000000207008 439895009 en 900000000000013009 Tissue specimen from nose obtained by excision 900000000000448009 +2795175013 20090131 1 900000000000207008 438336007 en 900000000000013009 Hemorrhoid tissue specimen 900000000000020002 +2795175013 20170731 1 900000000000207008 438336007 en 900000000000013009 Hemorrhoid tissue specimen 900000000000448009 +2795405016 20090131 1 900000000000207008 438595008 en 900000000000013009 Fluid specimen from sebaceous cyst 900000000000020002 +2795405016 20170731 1 900000000000207008 438595008 en 900000000000013009 Fluid specimen from sebaceous cyst 900000000000448009 +2795482016 20090131 1 900000000000207008 440135000 en 900000000000013009 Ureteric brushings sample 900000000000020002 +2795482016 20170731 1 900000000000207008 440135000 en 900000000000013009 Ureteric brushings sample 900000000000448009 +2795483014 20090131 1 900000000000207008 440136004 en 900000000000013009 Specimen from skull 900000000000020002 +2795483014 20170731 1 900000000000207008 440136004 en 900000000000013009 Specimen from skull 900000000000448009 +2795484015 20090131 1 900000000000207008 440136004 en 900000000000013009 Specimen from cranium 900000000000020002 +2795484015 20170731 1 900000000000207008 440136004 en 900000000000013009 Specimen from cranium 900000000000448009 +2816323013 20090731 1 900000000000207008 441510007 en 900000000000013009 Blood specimen with anticoagulant 900000000000020002 +2816323013 20170731 1 900000000000207008 441510007 en 900000000000013009 Blood specimen with anticoagulant 900000000000448009 +2816324019 20090731 1 900000000000207008 441510007 en 900000000000003001 Blood specimen with anticoagulant (specimen) 900000000000020002 +2816324019 20170731 1 900000000000207008 441510007 en 900000000000003001 Blood specimen with anticoagulant (specimen) 900000000000448009 +2816430015 20090731 1 900000000000207008 441518000 en 900000000000013009 Lymphoblastoid cell line specimen 900000000000020002 +2816430015 20170731 1 900000000000207008 441518000 en 900000000000013009 Lymphoblastoid cell line specimen 900000000000448009 +2816431016 20090731 1 900000000000207008 441518000 en 900000000000003001 Lymphoblastoid cell line specimen (specimen) 900000000000020002 +2816431016 20170731 1 900000000000207008 441518000 en 900000000000003001 Lymphoblastoid cell line specimen (specimen) 900000000000448009 +2816591017 20090731 1 900000000000207008 441479001 en 900000000000013009 Fresh tissue specimen 900000000000020002 +2816591017 20170731 1 900000000000207008 441479001 en 900000000000013009 Fresh tissue specimen 900000000000448009 +2816592012 20090731 1 900000000000207008 441479001 en 900000000000013009 Unfixed tissue specimen 900000000000020002 +2816592012 20170731 1 900000000000207008 441479001 en 900000000000013009 Unfixed tissue specimen 900000000000448009 +2816593019 20090731 1 900000000000207008 441479001 en 900000000000003001 Fresh tissue specimen (specimen) 900000000000020002 +2816593019 20170731 1 900000000000207008 441479001 en 900000000000003001 Fresh tissue specimen (specimen) 900000000000448009 +2816603015 20090731 1 900000000000207008 441620008 en 900000000000013009 Oral fluid specimen 900000000000020002 +2816603015 20170731 1 900000000000207008 441620008 en 900000000000013009 Oral fluid specimen 900000000000448009 +2816604014 20090731 1 900000000000207008 441620008 en 900000000000003001 Oral fluid specimen (specimen) 900000000000020002 +2816604014 20170731 1 900000000000207008 441620008 en 900000000000003001 Oral fluid specimen (specimen) 900000000000448009 +2816722017 20090731 1 900000000000207008 441652008 en 900000000000013009 Formalin-fixed paraffin-embedded tissue specimen 900000000000020002 +2816722017 20170731 1 900000000000207008 441652008 en 900000000000013009 Formalin-fixed paraffin-embedded tissue specimen 900000000000448009 +2816723010 20090731 1 900000000000207008 441652008 en 900000000000003001 Formalin-fixed paraffin-embedded tissue specimen (specimen) 900000000000020002 +2816723010 20170731 1 900000000000207008 441652008 en 900000000000003001 Formalin-fixed paraffin-embedded tissue specimen (specimen) 900000000000448009 +2816736010 20090731 1 900000000000207008 441673008 en 900000000000013009 Ribonucleic acid specimen 900000000000020002 +2816736010 20170731 1 900000000000207008 441673008 en 900000000000013009 Ribonucleic acid specimen 900000000000448009 +2816737018 20090731 1 900000000000207008 441673008 en 900000000000003001 Ribonucleic acid specimen (specimen) 900000000000020002 +2816737018 20170731 1 900000000000207008 441673008 en 900000000000003001 Ribonucleic acid specimen (specimen) 900000000000448009 +2817207019 20090731 1 900000000000207008 442649003 en 900000000000013009 Specimen from adipose tissue obtained by fine needle aspiration biopsy 900000000000020002 +2817207019 20170731 1 900000000000207008 442649003 en 900000000000013009 Specimen from adipose tissue obtained by fine needle aspiration biopsy 900000000000448009 +2817208012 20090731 1 900000000000207008 442649003 en 900000000000003001 Specimen from adipose tissue obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2817208012 20170731 1 900000000000207008 442649003 en 900000000000003001 Specimen from adipose tissue obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2817283017 20090731 1 900000000000207008 441792002 en 900000000000013009 Specimen from adrenal gland obtained by fine needle aspiration biopsy 900000000000020002 +2817283017 20170731 1 900000000000207008 441792002 en 900000000000013009 Specimen from adrenal gland obtained by fine needle aspiration biopsy 900000000000448009 +2817284011 20090731 1 900000000000207008 441792002 en 900000000000003001 Specimen from adrenal gland obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2817284011 20170731 1 900000000000207008 441792002 en 900000000000003001 Specimen from adrenal gland obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2817334019 20090731 1 900000000000207008 441749007 en 900000000000013009 Specimen from submandibular gland obtained by fine needle aspiration biopsy 900000000000020002 +2817334019 20170731 1 900000000000207008 441749007 en 900000000000013009 Specimen from submandibular gland obtained by fine needle aspiration biopsy 900000000000448009 +2817335018 20090731 1 900000000000207008 441749007 en 900000000000003001 Specimen from submandibular gland obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2817335018 20170731 1 900000000000207008 441749007 en 900000000000003001 Specimen from submandibular gland obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2817336017 20090731 1 900000000000207008 441750007 en 900000000000013009 Specimen from abdominal cavity structure obtained by fine needle aspiration biopsy 900000000000020002 +2817336017 20170731 1 900000000000207008 441750007 en 900000000000013009 Specimen from abdominal cavity structure obtained by fine needle aspiration biopsy 900000000000448009 +2817337014 20090731 1 900000000000207008 441750007 en 900000000000003001 Specimen from abdominal cavity structure obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2817337014 20170731 1 900000000000207008 441750007 en 900000000000003001 Specimen from abdominal cavity structure obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2817422014 20090731 1 900000000000207008 441694006 en 900000000000013009 Specimen from axillary lymph node obtained by fine needle aspiration biopsy 900000000000020002 +2817422014 20170731 1 900000000000207008 441694006 en 900000000000013009 Specimen from axillary lymph node obtained by fine needle aspiration biopsy 900000000000448009 +2817423016 20090731 1 900000000000207008 441694006 en 900000000000003001 Specimen from axillary lymph node obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2817423016 20170731 1 900000000000207008 441694006 en 900000000000003001 Specimen from axillary lymph node obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2817424010 20090731 1 900000000000207008 441695007 en 900000000000013009 Specimen from parotid gland obtained by fine needle aspiration biopsy 900000000000020002 +2817424010 20170731 1 900000000000207008 441695007 en 900000000000013009 Specimen from parotid gland obtained by fine needle aspiration biopsy 900000000000448009 +2817425011 20090731 1 900000000000207008 441695007 en 900000000000003001 Specimen from parotid gland obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2817425011 20170731 1 900000000000207008 441695007 en 900000000000003001 Specimen from parotid gland obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2817621013 20090731 1 900000000000207008 441810001 en 900000000000013009 Specimen from soft tissue obtained by fine needle aspiration biopsy 900000000000020002 +2817621013 20170731 1 900000000000207008 441810001 en 900000000000013009 Specimen from soft tissue obtained by fine needle aspiration biopsy 900000000000448009 +2817622018 20090731 1 900000000000207008 441810001 en 900000000000003001 Specimen from soft tissue obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2817622018 20170731 1 900000000000207008 441810001 en 900000000000003001 Specimen from soft tissue obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2817755015 20090731 1 900000000000207008 441906003 en 900000000000013009 Specimen from pelvic structure obtained by fine needle aspiration biopsy 900000000000020002 +2817755015 20170731 1 900000000000207008 441906003 en 900000000000013009 Specimen from pelvic structure obtained by fine needle aspiration biopsy 900000000000448009 +2817756019 20090731 1 900000000000207008 441906003 en 900000000000003001 Specimen from pelvic structure obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2817756019 20170731 1 900000000000207008 441906003 en 900000000000003001 Specimen from pelvic structure obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2817779018 20090731 1 900000000000207008 441884004 en 900000000000013009 Specimen from prostate obtained by fine needle aspiration biopsy 900000000000020002 +2817779018 20170731 1 900000000000207008 441884004 en 900000000000013009 Specimen from prostate obtained by fine needle aspiration biopsy 900000000000448009 +2817780015 20090731 1 900000000000207008 441884004 en 900000000000003001 Specimen from prostate obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2817780015 20170731 1 900000000000207008 441884004 en 900000000000003001 Specimen from prostate obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2817863010 20090731 1 900000000000207008 441709004 en 900000000000013009 Specimen from sentinel lymph node 900000000000020002 +2817863010 20170731 1 900000000000207008 441709004 en 900000000000013009 Specimen from sentinel lymph node 900000000000448009 +2817864016 20090731 1 900000000000207008 441709004 en 900000000000003001 Specimen from sentinel lymph node (specimen) 900000000000020002 +2817864016 20170731 1 900000000000207008 441709004 en 900000000000003001 Specimen from sentinel lymph node (specimen) 900000000000448009 +2817865015 20090731 1 900000000000207008 441710009 en 900000000000013009 Specimen from testis obtained by fine needle aspiration biopsy 900000000000020002 +2817865015 20170731 1 900000000000207008 441710009 en 900000000000013009 Specimen from testis obtained by fine needle aspiration biopsy 900000000000448009 +2817866019 20090731 1 900000000000207008 441710009 en 900000000000003001 Specimen from testis obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2817866019 20170731 1 900000000000207008 441710009 en 900000000000003001 Specimen from testis obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2818037016 20090731 1 900000000000207008 441903006 en 900000000000013009 Specimen obtained by bronchial aspiration 900000000000020002 +2818037016 20170731 1 900000000000207008 441903006 en 900000000000013009 Specimen obtained by bronchial aspiration 900000000000448009 +2818038014 20090731 1 900000000000207008 441903006 en 900000000000003001 Specimen obtained by bronchial aspiration (specimen) 900000000000020002 +2818038014 20170731 1 900000000000207008 441903006 en 900000000000003001 Specimen obtained by bronchial aspiration (specimen) 900000000000448009 +2818180010 20090731 1 900000000000207008 441876003 en 900000000000013009 Specimen from sublingual gland obtained by fine needle aspiration biopsy 900000000000020002 +2818180010 20170731 1 900000000000207008 441876003 en 900000000000013009 Specimen from sublingual gland obtained by fine needle aspiration biopsy 900000000000448009 +2818181014 20090731 1 900000000000207008 441876003 en 900000000000003001 Specimen from sublingual gland obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +2818181014 20170731 1 900000000000207008 441876003 en 900000000000003001 Specimen from sublingual gland obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +2818255017 20090731 1 900000000000207008 442043001 en 900000000000003001 2 hour urine specimen (specimen) 900000000000020002 +2818255017 20170731 1 900000000000207008 442043001 en 900000000000003001 2 hour urine specimen (specimen) 900000000000448009 +2818256016 20090731 1 900000000000207008 442043001 en 900000000000013009 2 hour urine specimen 900000000000020002 +2818256016 20170731 1 900000000000207008 442043001 en 900000000000013009 2 hour urine specimen 900000000000448009 +2819230016 20090731 1 900000000000207008 442427000 en 900000000000013009 p.m. serum specimen 900000000000017005 +2819231017 20090731 1 900000000000207008 442427000 en 900000000000003001 p.m. serum specimen (specimen) 900000000000017005 +2819513019 20090731 1 900000000000207008 442219007 en 900000000000013009 p.m. specimen 900000000000017005 +2819514013 20090731 1 900000000000207008 442219007 en 900000000000003001 p.m. specimen (specimen) 900000000000017005 +2819600016 20090731 1 900000000000207008 442173007 en 900000000000013009 Urine specimen from nephrostomy tube 900000000000020002 +2819600016 20170731 1 900000000000207008 442173007 en 900000000000013009 Urine specimen from nephrostomy tube 900000000000448009 +2819601017 20090731 1 900000000000207008 442173007 en 900000000000003001 Urine specimen from nephrostomy tube (specimen) 900000000000020002 +2819601017 20170731 1 900000000000207008 442173007 en 900000000000003001 Urine specimen from nephrostomy tube (specimen) 900000000000448009 +2819655018 20090731 1 900000000000207008 430855004 en 900000000000013009 Imprint cytologic material 900000000000020002 +2819655018 20170731 1 900000000000207008 430855004 en 900000000000013009 Imprint cytologic material 900000000000448009 +2819731016 20090731 1 900000000000207008 442166002 en 900000000000013009 a.m. serum specimen 900000000000017005 +2819732011 20090731 1 900000000000207008 442166002 en 900000000000003001 a.m. serum specimen (specimen) 900000000000017005 +2820590012 20090731 1 900000000000207008 442524009 en 900000000000013009 a.m. specimen 900000000000017005 +2820927012 20090731 1 900000000000207008 442524009 en 900000000000003001 a.m. specimen (specimen) 900000000000017005 +2834639018 20100131 1 900000000000207008 443498007 en 900000000000003001 Specimen from cerebellum (specimen) 900000000000020002 +2834639018 20170731 1 900000000000207008 443498007 en 900000000000003001 Specimen from cerebellum (specimen) 900000000000448009 +2834834014 20100131 1 900000000000207008 396900005 en 900000000000003001 Specimen from thymus gland obtained by needle biopsy using computed tomography guidance (specimen) 900000000000020002 +2834834014 20170731 1 900000000000207008 396900005 en 900000000000003001 Specimen from thymus gland obtained by needle biopsy using computed tomography guidance (specimen) 900000000000448009 +2834919019 20100131 1 900000000000207008 384747005 en 900000000000003001 Specimen from lung obtained by needle biopsy using computed tomography guidance (specimen) 900000000000020002 +2834919019 20170731 1 900000000000207008 384747005 en 900000000000003001 Specimen from lung obtained by needle biopsy using computed tomography guidance (specimen) 900000000000448009 +2834941019 20100131 1 900000000000207008 443418008 en 900000000000003001 Specimen from thoracic cavity (specimen) 900000000000020002 +2834941019 20170731 1 900000000000207008 443418008 en 900000000000003001 Specimen from thoracic cavity (specimen) 900000000000448009 +2835641010 20100131 1 900000000000207008 443241002 en 900000000000003001 Specimen from pineal gland (specimen) 900000000000020002 +2835641010 20170731 1 900000000000207008 443241002 en 900000000000003001 Specimen from pineal gland (specimen) 900000000000448009 +2835782019 20100131 1 900000000000207008 443654002 en 900000000000003001 Specimen from abdominal cavity (specimen) 900000000000020002 +2835782019 20170731 1 900000000000207008 443654002 en 900000000000003001 Specimen from abdominal cavity (specimen) 900000000000448009 +2837088014 20100131 1 900000000000207008 122681003 en 900000000000003001 Specimen from left kidney obtained by adrenal sparing radical nephrectomy (specimen) 900000000000020002 +2837088014 20170731 1 900000000000207008 122681003 en 900000000000003001 Specimen from left kidney obtained by adrenal sparing radical nephrectomy (specimen) 900000000000448009 +2837089018 20100131 1 900000000000207008 122675006 en 900000000000003001 Specimen from right kidney obtained by adrenal sparing radical nephrectomy (specimen) 900000000000020002 +2837089018 20170731 1 900000000000207008 122675006 en 900000000000003001 Specimen from right kidney obtained by adrenal sparing radical nephrectomy (specimen) 900000000000448009 +2837830014 20100131 1 900000000000207008 443498007 en 900000000000013009 Specimen from cerebellum 900000000000020002 +2837830014 20170731 1 900000000000207008 443498007 en 900000000000013009 Specimen from cerebellum 900000000000448009 +2838591018 20100131 1 900000000000207008 396900005 en 900000000000013009 Specimen from thymus gland obtained by needle biopsy using computed tomography guidance 900000000000020002 +2838591018 20170731 1 900000000000207008 396900005 en 900000000000013009 Specimen from thymus gland obtained by needle biopsy using computed tomography guidance 900000000000448009 +2839583016 20100131 1 900000000000207008 443241002 en 900000000000013009 Specimen from pineal gland 900000000000020002 +2839583016 20170731 1 900000000000207008 443241002 en 900000000000013009 Specimen from pineal gland 900000000000448009 +2840705019 20100131 1 900000000000207008 396904001 en 900000000000013009 Specimen from thymus gland obtained by minithoracotomy 900000000000020002 +2840705019 20170731 1 900000000000207008 396904001 en 900000000000013009 Specimen from thymus gland obtained by minithoracotomy 900000000000448009 +2840824010 20100131 1 900000000000207008 384747005 en 900000000000013009 Specimen from lung obtained by needle biopsy using computed tomography guidance 900000000000020002 +2840824010 20170731 1 900000000000207008 384747005 en 900000000000013009 Specimen from lung obtained by needle biopsy using computed tomography guidance 900000000000448009 +2841063012 20100131 1 900000000000207008 122681003 en 900000000000013009 Specimen from left kidney obtained by adrenal sparing radical nephrectomy 900000000000020002 +2841063012 20170731 1 900000000000207008 122681003 en 900000000000013009 Specimen from left kidney obtained by adrenal sparing radical nephrectomy 900000000000448009 +2841064018 20100131 1 900000000000207008 122675006 en 900000000000013009 Specimen from right kidney obtained by adrenal sparing radical nephrectomy 900000000000020002 +2841064018 20170731 1 900000000000207008 122675006 en 900000000000013009 Specimen from right kidney obtained by adrenal sparing radical nephrectomy 900000000000448009 +2842028017 20100131 1 900000000000207008 443418008 en 900000000000013009 Specimen from thoracic cavity 900000000000020002 +2842028017 20170731 1 900000000000207008 443418008 en 900000000000013009 Specimen from thoracic cavity 900000000000448009 +2842202012 20100131 1 900000000000207008 443654002 en 900000000000013009 Specimen from abdominal cavity 900000000000020002 +2842202012 20170731 1 900000000000207008 443654002 en 900000000000013009 Specimen from abdominal cavity 900000000000448009 +2842237010 20100131 1 900000000000207008 369613006 en 900000000000013009 Tissue specimen obtained for Hodgkin disease by biopsy 900000000000020002 +2868860013 20100731 1 900000000000207008 444965000 en 900000000000003001 Fluid specimen from epidural space (specimen) 900000000000020002 +2868860013 20170731 1 900000000000207008 444965000 en 900000000000003001 Fluid specimen from epidural space (specimen) 900000000000448009 +2868974017 20100731 1 900000000000207008 444623009 en 900000000000003001 Machine hemodialysate specimen obtained before mixing (specimen) 900000000000020002 +2868974017 20170731 1 900000000000207008 444623009 en 900000000000003001 Machine hemodialysate specimen obtained before mixing (specimen) 900000000000448009 +2869084013 20100731 1 900000000000207008 444831002 en 900000000000003001 Machine hemodialysate specimen obtained after mixing (specimen) 900000000000020002 +2869084013 20170731 1 900000000000207008 444831002 en 900000000000003001 Machine hemodialysate specimen obtained after mixing (specimen) 900000000000448009 +2869085014 20100731 1 900000000000207008 444832009 en 900000000000003001 Expressed breast milk specimen after breast cleansing (specimen) 900000000000020002 +2869085014 20170731 1 900000000000207008 444832009 en 900000000000003001 Expressed breast milk specimen after breast cleansing (specimen) 900000000000448009 +2869117012 20100731 1 900000000000207008 445297001 en 900000000000003001 Swab of internal nose (specimen) 900000000000020002 +2869117012 20170731 1 900000000000207008 445297001 en 900000000000003001 Swab of internal nose (specimen) 900000000000448009 +2869158017 20100731 1 900000000000207008 444936006 en 900000000000003001 Fluid specimen from subdural space (specimen) 900000000000020002 +2869158017 20170731 1 900000000000207008 444936006 en 900000000000003001 Fluid specimen from subdural space (specimen) 900000000000448009 +2869159013 20100731 1 900000000000207008 444937002 en 900000000000003001 Urine specimen from ureter (specimen) 900000000000020002 +2869159013 20170731 1 900000000000207008 444937002 en 900000000000003001 Urine specimen from ureter (specimen) 900000000000448009 +2869358011 20100731 1 900000000000207008 444946008 en 900000000000003001 Dialysis fluid specimen obtained before dialysis (specimen) 900000000000020002 +2869358011 20170731 1 900000000000207008 444946008 en 900000000000003001 Dialysis fluid specimen obtained before dialysis (specimen) 900000000000448009 +2869433019 20100731 1 900000000000207008 445447003 en 900000000000003001 Specimen from trachea obtained by aspiration (specimen) 900000000000020002 +2869433019 20170731 1 900000000000207008 445447003 en 900000000000003001 Specimen from trachea obtained by aspiration (specimen) 900000000000448009 +2869459016 20100731 1 900000000000207008 445529007 en 900000000000003001 Hemodialysate specimen from hemodialysis machine using water distribution system (specimen) 900000000000020002 +2869459016 20170731 1 900000000000207008 445529007 en 900000000000003001 Hemodialysate specimen from hemodialysis machine using water distribution system (specimen) 900000000000448009 +2869592013 20100731 1 900000000000207008 445444005 en 900000000000003001 Swab of groin (specimen) 900000000000020002 +2869592013 20170731 1 900000000000207008 445444005 en 900000000000003001 Swab of groin (specimen) 900000000000448009 +2869592013 20230531 0 900000000000207008 445444005 en 900000000000003001 Swab of groin (specimen) 900000000000448009 +2869595010 20100731 1 900000000000207008 445516007 en 900000000000003001 Dialysis fluid specimen obtained after dialysis (specimen) 900000000000020002 +2869595010 20170731 1 900000000000207008 445516007 en 900000000000003001 Dialysis fluid specimen obtained after dialysis (specimen) 900000000000448009 +2869624014 20100731 1 900000000000207008 444656005 en 900000000000003001 Drainage tube submitted as specimen (specimen) 900000000000020002 +2869624014 20170731 1 900000000000207008 444656005 en 900000000000003001 Drainage tube submitted as specimen (specimen) 900000000000448009 +2869810012 20100731 1 900000000000207008 445383006 en 900000000000003001 Urine specimen obtained for Stamey test (specimen) 900000000000020002 +2869811011 20100731 1 900000000000207008 445384000 en 900000000000003001 Hemodialysate specimen from hemodialysis machine using reverse osmosis system (specimen) 900000000000020002 +2869811011 20170731 1 900000000000207008 445384000 en 900000000000003001 Hemodialysate specimen from hemodialysis machine using reverse osmosis system (specimen) 900000000000448009 +2869839012 20100731 1 900000000000207008 444787003 en 900000000000003001 Swab of endocervix (specimen) 900000000000020002 +2869839012 20170731 1 900000000000207008 444787003 en 900000000000003001 Swab of endocervix (specimen) 900000000000448009 +2869857013 20100731 1 900000000000207008 445160003 en 900000000000003001 Swab of eye (specimen) 900000000000020002 +2869857013 20170731 1 900000000000207008 445160003 en 900000000000003001 Swab of eye (specimen) 900000000000448009 +2869991013 20100731 1 900000000000207008 445405002 en 900000000000003001 Specimen obtained by surgical procedure (specimen) 900000000000020002 +2869991013 20170731 1 900000000000207008 445405002 en 900000000000003001 Specimen obtained by surgical procedure (specimen) 900000000000448009 +2870022017 20100731 1 900000000000207008 444824001 en 900000000000003001 Wall of abscess (specimen) 900000000000020002 +2870022017 20170731 1 900000000000207008 444824001 en 900000000000003001 Wall of abscess (specimen) 900000000000448009 +2870033019 20100731 1 900000000000207008 445364004 en 900000000000003001 Swab of axilla (specimen) 900000000000020002 +2870033019 20170731 1 900000000000207008 445364004 en 900000000000003001 Swab of axilla (specimen) 900000000000448009 +2870036010 20100731 1 900000000000207008 445367006 en 900000000000003001 Swab of umbilicus (specimen) 900000000000020002 +2870036010 20170731 1 900000000000207008 445367006 en 900000000000003001 Swab of umbilicus (specimen) 900000000000448009 +2870038011 20100731 1 900000000000207008 445369009 en 900000000000003001 Swab of endometrium (specimen) 900000000000020002 +2870038011 20170731 1 900000000000207008 445369009 en 900000000000003001 Swab of endometrium (specimen) 900000000000448009 +2870042014 20100731 1 900000000000207008 445372002 en 900000000000003001 Cerebrospinal fluid specimen from ventricle of brain (specimen) 900000000000020002 +2870042014 20170731 1 900000000000207008 445372002 en 900000000000003001 Cerebrospinal fluid specimen from ventricle of brain (specimen) 900000000000448009 +2870074019 20100731 1 900000000000207008 444959000 en 900000000000003001 Peritoneal dialysis fluid specimen obtained before dialysis (specimen) 900000000000020002 +2870074019 20170731 1 900000000000207008 444959000 en 900000000000003001 Peritoneal dialysis fluid specimen obtained before dialysis (specimen) 900000000000448009 +2870357013 20100731 1 900000000000207008 445421007 en 900000000000003001 Fungal isolate specimen (specimen) 900000000000020002 +2870357013 20170731 1 900000000000207008 445421007 en 900000000000003001 Fungal isolate specimen (specimen) 900000000000448009 +2870506010 20100731 1 900000000000207008 444865001 en 900000000000003001 Expressed breast milk specimen before breast cleansing (specimen) 900000000000020002 +2870506010 20170731 1 900000000000207008 444865001 en 900000000000003001 Expressed breast milk specimen before breast cleansing (specimen) 900000000000448009 +2870540010 20100731 1 900000000000207008 445069004 en 900000000000003001 Peritoneal dialysis fluid specimen obtained after dialysis (specimen) 900000000000020002 +2870540010 20170731 1 900000000000207008 445069004 en 900000000000003001 Peritoneal dialysis fluid specimen obtained after dialysis (specimen) 900000000000448009 +2870551010 20100731 1 900000000000207008 445295009 en 900000000000003001 Blood specimen with edetic acid (specimen) 900000000000020002 +2870551010 20170731 1 900000000000207008 445295009 en 900000000000003001 Blood specimen with edetic acid (specimen) 900000000000448009 +2870733011 20100731 1 900000000000207008 445364004 en 900000000000013009 Swab of axilla 900000000000020002 +2870733011 20170731 1 900000000000207008 445364004 en 900000000000013009 Swab of axilla 900000000000448009 +2870736015 20100731 1 900000000000207008 445367006 en 900000000000013009 Swab of umbilicus 900000000000020002 +2870736015 20170731 1 900000000000207008 445367006 en 900000000000013009 Swab of umbilicus 900000000000448009 +2870738019 20100731 1 900000000000207008 445369009 en 900000000000013009 Swab of endometrium 900000000000020002 +2870738019 20170731 1 900000000000207008 445369009 en 900000000000013009 Swab of endometrium 900000000000448009 +2870743014 20100731 1 900000000000207008 445372002 en 900000000000013009 Cerebrospinal fluid specimen from ventricle of brain 900000000000020002 +2870743014 20170731 1 900000000000207008 445372002 en 900000000000013009 Cerebrospinal fluid specimen from ventricle of brain 900000000000448009 +2870760016 20100731 1 900000000000207008 445383006 en 900000000000013009 Urine specimen obtained for Stamey test 900000000000020002 +2870761017 20100731 1 900000000000207008 445384000 en 900000000000013009 Haemodialysate specimen from haemodialysis machine using reverse osmosis system 900000000000020002 +2870761017 20170731 1 900000000000207008 445384000 en 900000000000013009 Haemodialysate specimen from haemodialysis machine using reverse osmosis system 900000000000448009 +2870762012 20100731 1 900000000000207008 445384000 en 900000000000013009 Hemodialysate specimen from hemodialysis machine using reverse osmosis system 900000000000020002 +2870762012 20170731 1 900000000000207008 445384000 en 900000000000013009 Hemodialysate specimen from hemodialysis machine using reverse osmosis system 900000000000448009 +2870763019 20100731 1 900000000000207008 445384000 en 900000000000013009 Machine haemodialysate specimen using reverse osmosis system 900000000000020002 +2870763019 20170731 1 900000000000207008 445384000 en 900000000000013009 Machine haemodialysate specimen using reverse osmosis system 900000000000448009 +2870764013 20100731 1 900000000000207008 445384000 en 900000000000013009 Machine hemodialysate specimen using reverse osmosis system 900000000000020002 +2870764013 20170731 1 900000000000207008 445384000 en 900000000000013009 Machine hemodialysate specimen using reverse osmosis system 900000000000448009 +2870841018 20100731 1 900000000000207008 444656005 en 900000000000013009 Drainage tube submitted as specimen 900000000000020002 +2870841018 20170731 1 900000000000207008 444656005 en 900000000000013009 Drainage tube submitted as specimen 900000000000448009 +2870976015 20100731 1 900000000000207008 444865001 en 900000000000013009 Expressed breast milk specimen before breast cleansing 900000000000020002 +2870976015 20170731 1 900000000000207008 444865001 en 900000000000013009 Expressed breast milk specimen before breast cleansing 900000000000448009 +2871077015 20100731 1 900000000000207008 444959000 en 900000000000013009 Peritoneal dialysis fluid specimen obtained before dialysis 900000000000020002 +2871077015 20170731 1 900000000000207008 444959000 en 900000000000013009 Peritoneal dialysis fluid specimen obtained before dialysis 900000000000448009 +2871078013 20100731 1 900000000000207008 444959000 en 900000000000013009 Predialysis peritoneal dialysis fluid specimen 900000000000020002 +2871078013 20170731 1 900000000000207008 444959000 en 900000000000013009 Predialysis peritoneal dialysis fluid specimen 900000000000448009 +2871098015 20100731 1 900000000000207008 444787003 en 900000000000013009 Swab of endocervix 900000000000020002 +2871098015 20170731 1 900000000000207008 444787003 en 900000000000013009 Swab of endocervix 900000000000448009 +2871247015 20100731 1 900000000000207008 445160003 en 900000000000013009 Swab of eye 900000000000020002 +2871247015 20170731 1 900000000000207008 445160003 en 900000000000013009 Swab of eye 900000000000448009 +2871333016 20100731 1 900000000000207008 444965000 en 900000000000013009 Fluid specimen from epidural space 900000000000020002 +2871333016 20170731 1 900000000000207008 444965000 en 900000000000013009 Fluid specimen from epidural space 900000000000448009 +2871498012 20100731 1 900000000000207008 444623009 en 900000000000013009 Machine haemodialysate specimen obtained before mixing 900000000000020002 +2871498012 20170731 1 900000000000207008 444623009 en 900000000000013009 Machine haemodialysate specimen obtained before mixing 900000000000448009 +2871499016 20100731 1 900000000000207008 444623009 en 900000000000013009 Machine hemodialysate specimen obtained before mixing 900000000000020002 +2871499016 20170731 1 900000000000207008 444623009 en 900000000000013009 Machine hemodialysate specimen obtained before mixing 900000000000448009 +2871514013 20100731 1 900000000000207008 444831002 en 900000000000013009 Machine haemodialysate specimen obtained after mixing 900000000000020002 +2871514013 20170731 1 900000000000207008 444831002 en 900000000000013009 Machine haemodialysate specimen obtained after mixing 900000000000448009 +2871515014 20100731 1 900000000000207008 444831002 en 900000000000013009 Machine hemodialysate specimen obtained after mixing 900000000000020002 +2871515014 20170731 1 900000000000207008 444831002 en 900000000000013009 Machine hemodialysate specimen obtained after mixing 900000000000448009 +2871530017 20100731 1 900000000000207008 445069004 en 900000000000013009 Peritoneal dialysis fluid specimen obtained after dialysis 900000000000020002 +2871530017 20170731 1 900000000000207008 445069004 en 900000000000013009 Peritoneal dialysis fluid specimen obtained after dialysis 900000000000448009 +2871531018 20100731 1 900000000000207008 445069004 en 900000000000013009 Postdialysis peritoneal dialysis fluid specimen 900000000000020002 +2871531018 20170731 1 900000000000207008 445069004 en 900000000000013009 Postdialysis peritoneal dialysis fluid specimen 900000000000448009 +2871550018 20100731 1 900000000000207008 445295009 en 900000000000013009 Blood specimen with EDTA 900000000000020002 +2871551019 20100731 1 900000000000207008 445295009 en 900000000000013009 Blood specimen with edetic acid 900000000000020002 +2871551019 20170731 1 900000000000207008 445295009 en 900000000000013009 Blood specimen with edetic acid 900000000000448009 +2871552014 20100731 1 900000000000207008 445295009 en 900000000000013009 Blood specimen with ethylenediamine tetraacetic acid 900000000000020002 +2871552014 20170731 1 900000000000207008 445295009 en 900000000000013009 Blood specimen with ethylenediamine tetraacetic acid 900000000000448009 +2871661015 20100731 1 900000000000207008 444832009 en 900000000000013009 Expressed breast milk specimen after breast cleansing 900000000000020002 +2871661015 20170731 1 900000000000207008 444832009 en 900000000000013009 Expressed breast milk specimen after breast cleansing 900000000000448009 +2871812019 20100731 1 900000000000207008 444936006 en 900000000000013009 Fluid specimen from subdural space 900000000000020002 +2871812019 20170731 1 900000000000207008 444936006 en 900000000000013009 Fluid specimen from subdural space 900000000000448009 +2871813012 20100731 1 900000000000207008 444937002 en 900000000000013009 Ureteric urine specimen 900000000000020002 +2871813012 20170731 1 900000000000207008 444937002 en 900000000000013009 Ureteric urine specimen 900000000000448009 +2871814018 20100731 1 900000000000207008 444937002 en 900000000000013009 Urine specimen from ureter 900000000000020002 +2871814018 20170731 1 900000000000207008 444937002 en 900000000000013009 Urine specimen from ureter 900000000000448009 +2871905012 20100731 1 900000000000207008 445421007 en 900000000000013009 Fungal isolate specimen 900000000000020002 +2871905012 20170731 1 900000000000207008 445421007 en 900000000000013009 Fungal isolate specimen 900000000000448009 +2872025011 20100731 1 900000000000207008 445297001 en 900000000000013009 Swab of internal nose 900000000000020002 +2872025011 20170731 1 900000000000207008 445297001 en 900000000000013009 Swab of internal nose 900000000000448009 +2872260011 20100731 1 900000000000207008 445447003 en 900000000000013009 Specimen from trachea obtained by aspiration 900000000000020002 +2872260011 20170731 1 900000000000207008 445447003 en 900000000000013009 Specimen from trachea obtained by aspiration 900000000000448009 +2872261010 20100731 1 900000000000207008 445447003 en 900000000000013009 Tracheal aspirate 900000000000020002 +2872261010 20170731 1 900000000000207008 445447003 en 900000000000013009 Tracheal aspirate 900000000000448009 +2872435014 20100731 1 900000000000207008 445529007 en 900000000000013009 Haemodialysate specimen from haemodialysis machine using water distribution system 900000000000020002 +2872435014 20170731 1 900000000000207008 445529007 en 900000000000013009 Haemodialysate specimen from haemodialysis machine using water distribution system 900000000000448009 +2872436010 20100731 1 900000000000207008 445529007 en 900000000000013009 Hemodialysate specimen from hemodialysis machine using water distribution system 900000000000020002 +2872436010 20170731 1 900000000000207008 445529007 en 900000000000013009 Hemodialysate specimen from hemodialysis machine using water distribution system 900000000000448009 +2872437018 20100731 1 900000000000207008 445529007 en 900000000000013009 Machine haemodialysate specimen using water distribution system 900000000000020002 +2872437018 20170731 1 900000000000207008 445529007 en 900000000000013009 Machine haemodialysate specimen using water distribution system 900000000000448009 +2872438011 20100731 1 900000000000207008 445529007 en 900000000000013009 Machine hemodialysate specimen using water distribution system 900000000000020002 +2872438011 20170731 1 900000000000207008 445529007 en 900000000000013009 Machine hemodialysate specimen using water distribution system 900000000000448009 +2872467012 20100731 1 900000000000207008 444946008 en 900000000000013009 Dialysis fluid specimen obtained before dialysis 900000000000020002 +2872467012 20170731 1 900000000000207008 444946008 en 900000000000013009 Dialysis fluid specimen obtained before dialysis 900000000000448009 +2872468019 20100731 1 900000000000207008 444946008 en 900000000000013009 Predialysis dialysis fluid specimen 900000000000020002 +2872468019 20170731 1 900000000000207008 444946008 en 900000000000013009 Predialysis dialysis fluid specimen 900000000000448009 +2872798010 20100731 1 900000000000207008 445516007 en 900000000000013009 Dialysis fluid specimen obtained after dialysis 900000000000020002 +2872798010 20170731 1 900000000000207008 445516007 en 900000000000013009 Dialysis fluid specimen obtained after dialysis 900000000000448009 +2872799019 20100731 1 900000000000207008 445516007 en 900000000000013009 Postdialysis dialysis fluid specimen 900000000000020002 +2872799019 20170731 1 900000000000207008 445516007 en 900000000000013009 Postdialysis dialysis fluid specimen 900000000000448009 +2872838016 20100731 1 900000000000207008 445405002 en 900000000000013009 Surgical specimen 900000000000020002 +2872838016 20170731 1 900000000000207008 445405002 en 900000000000013009 Surgical specimen 900000000000448009 +2872839012 20100731 1 900000000000207008 445405002 en 900000000000013009 Specimen obtained by surgical procedure 900000000000020002 +2872839012 20170731 1 900000000000207008 445405002 en 900000000000013009 Specimen obtained by surgical procedure 900000000000448009 +2872910013 20100731 1 900000000000207008 445444005 en 900000000000013009 Swab of groin 900000000000020002 +2872910013 20170731 1 900000000000207008 445444005 en 900000000000013009 Swab of groin 900000000000448009 +2873031016 20100731 1 900000000000207008 444824001 en 900000000000013009 Wall of abscess 900000000000020002 +2873031016 20170731 1 900000000000207008 444824001 en 900000000000013009 Wall of abscess 900000000000448009 +2879516013 20110131 1 900000000000207008 446272009 en 900000000000003001 Blood specimen submitted in heparinized collection tube (specimen) 900000000000020002 +2879516013 20170731 1 900000000000207008 446272009 en 900000000000003001 Blood specimen submitted in heparinized collection tube (specimen) 900000000000448009 +2879791017 20110131 1 900000000000207008 445745007 en 900000000000003001 Fluid specimen from subphrenic space (specimen) 900000000000020002 +2879791017 20170731 1 900000000000207008 445745007 en 900000000000003001 Fluid specimen from subphrenic space (specimen) 900000000000448009 +2879798011 20110131 1 900000000000207008 447158004 en 900000000000003001 Bile specimen obtained by percutaneous transhepatic insertion of biliary drain (specimen) 900000000000020002 +2879798011 20170731 1 900000000000207008 447158004 en 900000000000003001 Bile specimen obtained by percutaneous transhepatic insertion of biliary drain (specimen) 900000000000448009 +2879800016 20110131 1 900000000000207008 447154002 en 900000000000003001 Specimen from nose (specimen) 900000000000020002 +2879800016 20170731 1 900000000000207008 447154002 en 900000000000003001 Specimen from nose (specimen) 900000000000448009 +2879801017 20110131 1 900000000000207008 447155001 en 900000000000003001 Tissue specimen from uterus obtained by curettage (specimen) 900000000000020002 +2879801017 20170731 1 900000000000207008 447155001 en 900000000000003001 Tissue specimen from uterus obtained by curettage (specimen) 900000000000448009 +2879873015 20110131 1 900000000000207008 446951004 en 900000000000003001 Specimen from granulation tissue (specimen) 900000000000020002 +2879873015 20170731 1 900000000000207008 446951004 en 900000000000003001 Specimen from granulation tissue (specimen) 900000000000448009 +2879879016 20110131 1 900000000000207008 447103002 en 900000000000003001 Foreign body submitted as specimen (specimen) 900000000000020002 +2879879016 20170731 1 900000000000207008 447103002 en 900000000000003001 Foreign body submitted as specimen (specimen) 900000000000448009 +2879905010 20110131 1 900000000000207008 446299006 en 900000000000003001 Specimen obtained by transbronchial aspiration (specimen) 900000000000020002 +2879905010 20170731 1 900000000000207008 446299006 en 900000000000003001 Specimen obtained by transbronchial aspiration (specimen) 900000000000448009 +2879906011 20110131 1 900000000000207008 446300003 en 900000000000003001 Urine specimen from urethra (specimen) 900000000000020002 +2879906011 20170731 1 900000000000207008 446300003 en 900000000000003001 Urine specimen from urethra (specimen) 900000000000448009 +2879944019 20110131 1 900000000000207008 446235003 en 900000000000003001 Specimen from conjunctiva obtained by lavage (specimen) 900000000000020002 +2879944019 20170731 1 900000000000207008 446235003 en 900000000000003001 Specimen from conjunctiva obtained by lavage (specimen) 900000000000448009 +2880009018 20110131 1 900000000000207008 446364005 en 900000000000003001 Specimen from donor corneal storage medium (specimen) 900000000000020002 +2880009018 20170731 1 900000000000207008 446364005 en 900000000000003001 Specimen from donor corneal storage medium (specimen) 900000000000448009 +2880030010 20110131 1 900000000000207008 446774006 en 900000000000003001 Specimen from abscess of brain (specimen) 900000000000020002 +2880030010 20170731 1 900000000000207008 446774006 en 900000000000003001 Specimen from abscess of brain (specimen) 900000000000448009 +2880148016 20110131 1 900000000000207008 446674003 en 900000000000003001 Specimen from abscess of liver (specimen) 900000000000020002 +2880148016 20170731 1 900000000000207008 446674003 en 900000000000003001 Specimen from abscess of liver (specimen) 900000000000448009 +2880149012 20110131 1 900000000000207008 446675002 en 900000000000003001 Specimen from knee joint obtained by aspiration (specimen) 900000000000020002 +2880149012 20170731 1 900000000000207008 446675002 en 900000000000003001 Specimen from knee joint obtained by aspiration (specimen) 900000000000448009 +2880157010 20110131 1 900000000000207008 446972001 en 900000000000003001 Specimen from abscess obtained by aspiration (specimen) 900000000000020002 +2880157010 20170731 1 900000000000207008 446972001 en 900000000000003001 Specimen from abscess obtained by aspiration (specimen) 900000000000448009 +2880176012 20110131 1 900000000000207008 446302006 en 900000000000003001 Air sample (specimen) 900000000000020002 +2880176012 20170731 1 900000000000207008 446302006 en 900000000000003001 Air sample (specimen) 900000000000448009 +2880176012 20220531 0 900000000000207008 446302006 en 900000000000003001 Air sample (specimen) 900000000000448009 +2880267014 20110131 1 900000000000207008 446676001 en 900000000000003001 Expressed breast milk specimen (specimen) 900000000000020002 +2880267014 20170731 1 900000000000207008 446676001 en 900000000000003001 Expressed breast milk specimen (specimen) 900000000000448009 +2880270013 20110131 1 900000000000207008 446861007 en 900000000000003001 Cerebrospinal fluid specimen obtained via ventriculoperitoneal shunt (specimen) 900000000000020002 +2880270013 20170731 1 900000000000207008 446861007 en 900000000000003001 Cerebrospinal fluid specimen obtained via ventriculoperitoneal shunt (specimen) 900000000000448009 +2880285019 20110131 1 900000000000207008 447589008 en 900000000000003001 Urine specimen obtained by single catheterization of bladder (specimen) 900000000000020002 +2880285019 20170731 1 900000000000207008 447589008 en 900000000000003001 Urine specimen obtained by single catheterization of bladder (specimen) 900000000000448009 +2880285019 20240101 0 900000000000207008 447589008 en 900000000000003001 Urine specimen obtained by single catheterization of bladder (specimen) 900000000000448009 +2880295014 20110131 1 900000000000207008 447488002 en 900000000000003001 Suprapubic urine specimen (specimen) 900000000000020002 +2880295014 20170731 1 900000000000207008 447488002 en 900000000000003001 Suprapubic urine specimen (specimen) 900000000000448009 +2880357018 20110131 1 900000000000207008 447355008 en 900000000000003001 Dialysis fluid specimen obtained after continuous ambulatory peritoneal dialysis (specimen) 900000000000020002 +2880357018 20170731 1 900000000000207008 447355008 en 900000000000003001 Dialysis fluid specimen obtained after continuous ambulatory peritoneal dialysis (specimen) 900000000000448009 +2880362017 20110131 1 900000000000207008 446561003 en 900000000000003001 Body fluid specimen obtained via cholecytosomy tube (specimen) 900000000000020002 +2880362017 20170731 1 900000000000207008 446561003 en 900000000000003001 Body fluid specimen obtained via cholecytosomy tube (specimen) 900000000000448009 +2880363010 20110131 1 900000000000207008 446562005 en 900000000000003001 Body fluid specimen obtained via sump drain (specimen) 900000000000020002 +2880363010 20170731 1 900000000000207008 446562005 en 900000000000003001 Body fluid specimen obtained via sump drain (specimen) 900000000000448009 +2880461013 20110131 1 900000000000207008 446906004 en 900000000000003001 Jejunal fluid specimen from jejunostomy (specimen) 900000000000020002 +2880461013 20170731 1 900000000000207008 446906004 en 900000000000003001 Jejunal fluid specimen from jejunostomy (specimen) 900000000000448009 +2880462018 20110131 1 900000000000207008 446907008 en 900000000000003001 Urine specimen obtained from kidney (specimen) 900000000000020002 +2880462018 20170731 1 900000000000207008 446907008 en 900000000000003001 Urine specimen obtained from kidney (specimen) 900000000000448009 +2880463011 20110131 1 900000000000207008 446908003 en 900000000000003001 Fluid specimen from mucocele of lacrimal sac (specimen) 900000000000020002 +2880463011 20170731 1 900000000000207008 446908003 en 900000000000003001 Fluid specimen from mucocele of lacrimal sac (specimen) 900000000000448009 +2880487013 20110131 1 900000000000207008 446304007 en 900000000000003001 Tissue specimen from harvested bone (specimen) 900000000000020002 +2880487013 20170731 1 900000000000207008 446304007 en 900000000000003001 Tissue specimen from harvested bone (specimen) 900000000000448009 +2880488015 20110131 1 900000000000207008 446305008 en 900000000000003001 Specimen obtained by aspiration via tracheostomy (specimen) 900000000000020002 +2880488015 20170731 1 900000000000207008 446305008 en 900000000000003001 Specimen obtained by aspiration via tracheostomy (specimen) 900000000000448009 +2880489011 20110131 1 900000000000207008 446306009 en 900000000000003001 Urine specimen obtained from urinary collection bag (specimen) 900000000000020002 +2880489011 20170731 1 900000000000207008 446306009 en 900000000000003001 Urine specimen obtained from urinary collection bag (specimen) 900000000000448009 +2880496013 20110131 1 900000000000207008 446842008 en 900000000000003001 Tissue specimen from cervical lymph node (specimen) 900000000000020002 +2880496013 20170731 1 900000000000207008 446842008 en 900000000000003001 Tissue specimen from cervical lymph node (specimen) 900000000000448009 +2880557017 20110131 1 900000000000207008 446837000 en 900000000000003001 Tissue specimen from amniotic membrane (specimen) 900000000000020002 +2880557017 20170731 1 900000000000207008 446837000 en 900000000000003001 Tissue specimen from amniotic membrane (specimen) 900000000000448009 +2880558010 20110131 1 900000000000207008 446838005 en 900000000000003001 Specimen obtained by bronchial trap (specimen) 900000000000020002 +2880558010 20170731 1 900000000000207008 446838005 en 900000000000003001 Specimen obtained by bronchial trap (specimen) 900000000000448009 +2880565019 20110131 1 900000000000207008 447337004 en 900000000000003001 Specimen from conjunctiva obtained by scraping (specimen) 900000000000020002 +2880565019 20170731 1 900000000000207008 447337004 en 900000000000003001 Specimen from conjunctiva obtained by scraping (specimen) 900000000000448009 +2880567010 20110131 1 900000000000207008 447339001 en 900000000000003001 Nasal smear specimen (specimen) 900000000000020002 +2880567010 20170731 1 900000000000207008 447339001 en 900000000000003001 Nasal smear specimen (specimen) 900000000000448009 +2880637012 20110131 1 900000000000207008 446128003 en 900000000000003001 Fluid specimen from Bartholin gland cyst (specimen) 900000000000020002 +2880638019 20110131 1 900000000000207008 446129006 en 900000000000003001 Bile specimen from common bile duct (specimen) 900000000000020002 +2880638019 20170731 1 900000000000207008 446129006 en 900000000000003001 Bile specimen from common bile duct (specimen) 900000000000448009 +2880639010 20110131 1 900000000000207008 446130001 en 900000000000003001 Urine specimen from bladder (specimen) 900000000000020002 +2880639010 20170731 1 900000000000207008 446130001 en 900000000000003001 Urine specimen from bladder (specimen) 900000000000448009 +2880639010 20240101 0 900000000000207008 446130001 en 900000000000003001 Urine specimen from bladder (specimen) 900000000000448009 +2880640012 20110131 1 900000000000207008 446131002 en 900000000000003001 Blood specimen obtained for blood culture (specimen) 900000000000020002 +2880640012 20170731 1 900000000000207008 446131002 en 900000000000003001 Blood specimen obtained for blood culture (specimen) 900000000000448009 +2880710016 20110131 1 900000000000207008 447391001 en 900000000000003001 Specimen from pharynx obtained by aspiration (specimen) 900000000000020002 +2880710016 20170731 1 900000000000207008 447391001 en 900000000000003001 Specimen from pharynx obtained by aspiration (specimen) 900000000000448009 +2880793018 20110131 1 900000000000207008 446211008 en 900000000000003001 Drainage fluid specimen obtained after surgical placement of drain (specimen) 900000000000020002 +2880793018 20170731 1 900000000000207008 446211008 en 900000000000003001 Drainage fluid specimen obtained after surgical placement of drain (specimen) 900000000000448009 +2880794012 20110131 1 900000000000207008 446212001 en 900000000000003001 Biological spore test strip submitted as specimen (specimen) 900000000000020002 +2880794012 20170731 1 900000000000207008 446212001 en 900000000000003001 Biological spore test strip submitted as specimen (specimen) 900000000000448009 +2880814015 20110131 1 900000000000207008 447392008 en 900000000000003001 Specimen from vagina obtained by aspiration (specimen) 900000000000020002 +2880814015 20170731 1 900000000000207008 447392008 en 900000000000003001 Specimen from vagina obtained by aspiration (specimen) 900000000000448009 +2880839012 20110131 1 900000000000207008 447403008 en 900000000000003001 Tissue specimen from donor corneal rim (specimen) 900000000000020002 +2880839012 20170731 1 900000000000207008 447403008 en 900000000000003001 Tissue specimen from donor corneal rim (specimen) 900000000000448009 +2880863016 20110131 1 900000000000207008 447357000 en 900000000000003001 Specimen from breast obtained by aspiration (specimen) 900000000000020002 +2880863016 20170731 1 900000000000207008 447357000 en 900000000000003001 Specimen from breast obtained by aspiration (specimen) 900000000000448009 +2880864010 20110131 1 900000000000207008 447358005 en 900000000000003001 Specimen from endometrium obtained by aspiration (specimen) 900000000000020002 +2880864010 20170731 1 900000000000207008 447358005 en 900000000000003001 Specimen from endometrium obtained by aspiration (specimen) 900000000000448009 +2880865011 20110131 1 900000000000207008 447359002 en 900000000000003001 Specimen from esophagus obtained by aspiration (specimen) 900000000000020002 +2880865011 20170731 1 900000000000207008 447359002 en 900000000000003001 Specimen from esophagus obtained by aspiration (specimen) 900000000000448009 +2880951010 20110131 1 900000000000207008 447407009 en 900000000000003001 Specimen from necrotic tissue (specimen) 900000000000020002 +2880951010 20170731 1 900000000000207008 447407009 en 900000000000003001 Specimen from necrotic tissue (specimen) 900000000000448009 +2880965012 20110131 1 900000000000207008 446846006 en 900000000000003001 Urine specimen obtained via indwelling urinary catheter (specimen) 900000000000020002 +2880965012 20170731 1 900000000000207008 446846006 en 900000000000003001 Urine specimen obtained via indwelling urinary catheter (specimen) 900000000000448009 +2880974014 20110131 1 900000000000207008 446577002 en 900000000000003001 Swab obtained during autopsy (specimen) 900000000000020002 +2880974014 20170731 1 900000000000207008 446577002 en 900000000000003001 Swab obtained during autopsy (specimen) 900000000000448009 +2880986012 20110131 1 900000000000207008 447375004 en 900000000000003001 Body fluid specimen obtained via chest tube (specimen) 900000000000020002 +2880986012 20170731 1 900000000000207008 447375004 en 900000000000003001 Body fluid specimen obtained via chest tube (specimen) 900000000000448009 +2881049019 20110131 1 900000000000207008 447148003 en 900000000000003001 Body substance specimen from ear (specimen) 900000000000020002 +2881049019 20170731 1 900000000000207008 447148003 en 900000000000003001 Body substance specimen from ear (specimen) 900000000000448009 +2881140017 20110131 1 900000000000207008 447341000 en 900000000000003001 Bile specimen obtained via biliary T-tube (specimen) 900000000000020002 +2881141018 20110131 1 900000000000207008 447345009 en 900000000000003001 Bronchial fluid specimen obtained from bronchial trap (specimen) 900000000000020002 +2881141018 20170731 1 900000000000207008 447345009 en 900000000000003001 Bronchial fluid specimen obtained from bronchial trap (specimen) 900000000000448009 +2881180014 20110131 1 900000000000207008 445742005 en 900000000000003001 Postcoital urine specimen (specimen) 900000000000020002 +2881180014 20170731 1 900000000000207008 445742005 en 900000000000003001 Postcoital urine specimen (specimen) 900000000000448009 +2881181013 20110131 1 900000000000207008 447098004 en 900000000000003001 Specimen from nail obtained by scraping (specimen) 900000000000020002 +2881181013 20170731 1 900000000000207008 447098004 en 900000000000003001 Specimen from nail obtained by scraping (specimen) 900000000000448009 +2881207016 20110131 1 900000000000207008 446277003 en 900000000000003001 Urine specimen obtained from nephrostomy tube after percutaneous insertion (specimen) 900000000000020002 +2881207016 20170731 1 900000000000207008 446277003 en 900000000000003001 Urine specimen obtained from nephrostomy tube after percutaneous insertion (specimen) 900000000000448009 +2881249014 20110131 1 900000000000207008 446137003 en 900000000000003001 Pharmaceutical product submitted as specimen (specimen) 900000000000020002 +2881249014 20170731 1 900000000000207008 446137003 en 900000000000003001 Pharmaceutical product submitted as specimen (specimen) 900000000000448009 +2881330013 20110131 1 900000000000207008 446700001 en 900000000000003001 Prostatic fluid specimen obtained for Stamey test (specimen) 900000000000020002 +2881336019 20110131 1 900000000000207008 445744006 en 900000000000003001 Fluid specimen from seroma (specimen) 900000000000020002 +2881336019 20170731 1 900000000000207008 445744006 en 900000000000003001 Fluid specimen from seroma (specimen) 900000000000448009 +2881372014 20110131 1 900000000000207008 446817004 en 900000000000003001 Bile specimen from gall bladder (specimen) 900000000000020002 +2881372014 20170731 1 900000000000207008 446817004 en 900000000000003001 Bile specimen from gall bladder (specimen) 900000000000448009 +2881372014 20180131 0 900000000000207008 446817004 en 900000000000003001 Bile specimen from gall bladder (specimen) 900000000000448009 +2881386013 20110131 1 900000000000207008 446952006 en 900000000000003001 Specimen from skin obtained by scraping (specimen) 900000000000020002 +2881386013 20170731 1 900000000000207008 446952006 en 900000000000003001 Specimen from skin obtained by scraping (specimen) 900000000000448009 +2881471018 20110131 1 900000000000207008 447104008 en 900000000000003001 Urine specimen from urinary conduit (specimen) 900000000000020002 +2881471018 20170731 1 900000000000207008 447104008 en 900000000000003001 Urine specimen from urinary conduit (specimen) 900000000000448009 +2881508013 20110131 1 900000000000207008 445743000 en 900000000000003001 Postejaculation urine specimen (specimen) 900000000000020002 +2881508013 20170731 1 900000000000207008 445743000 en 900000000000003001 Postejaculation urine specimen (specimen) 900000000000448009 +2881653018 20110131 1 900000000000207008 447488002 en 900000000000013009 Suprapubic urine specimen 900000000000020002 +2881653018 20170731 1 900000000000207008 447488002 en 900000000000013009 Suprapubic urine specimen 900000000000448009 +2881955010 20110131 1 900000000000207008 446235003 en 900000000000013009 Specimen from conjunctiva obtained by lavage 900000000000020002 +2881955010 20170731 1 900000000000207008 446235003 en 900000000000013009 Specimen from conjunctiva obtained by lavage 900000000000448009 +2882010015 20110131 1 900000000000207008 446130001 en 900000000000013009 Urine specimen from bladder 900000000000020002 +2882010015 20170731 1 900000000000207008 446130001 en 900000000000013009 Urine specimen from bladder 900000000000448009 +2882011016 20110131 1 900000000000207008 446131002 en 900000000000013009 Blood specimen obtained for blood culture 900000000000020002 +2882011016 20170731 1 900000000000207008 446131002 en 900000000000013009 Blood specimen obtained for blood culture 900000000000448009 +2882085017 20110131 1 900000000000207008 446300003 en 900000000000013009 Urine specimen from urethra 900000000000020002 +2882085017 20170731 1 900000000000207008 446300003 en 900000000000013009 Urine specimen from urethra 900000000000448009 +2882087013 20110131 1 900000000000207008 446302006 en 900000000000013009 Air sample 900000000000020002 +2882087013 20170731 1 900000000000207008 446302006 en 900000000000013009 Air sample 900000000000448009 +2882122019 20110131 1 900000000000207008 446952006 en 900000000000013009 Specimen from skin obtained by scraping 900000000000020002 +2882122019 20170731 1 900000000000207008 446952006 en 900000000000013009 Specimen from skin obtained by scraping 900000000000448009 +2882124018 20110131 1 900000000000207008 447375004 en 900000000000013009 Body fluid specimen obtained via chest tube 900000000000020002 +2882124018 20170731 1 900000000000207008 447375004 en 900000000000013009 Body fluid specimen obtained via chest tube 900000000000448009 +2882210014 20110131 1 900000000000207008 447148003 en 900000000000013009 Body substance specimen from ear 900000000000020002 +2882210014 20170731 1 900000000000207008 447148003 en 900000000000013009 Body substance specimen from ear 900000000000448009 +2882264012 20110131 1 900000000000207008 446837000 en 900000000000013009 Tissue specimen from amniotic membrane 900000000000020002 +2882264012 20170731 1 900000000000207008 446837000 en 900000000000013009 Tissue specimen from amniotic membrane 900000000000448009 +2882267017 20110131 1 900000000000207008 446838005 en 900000000000013009 Specimen obtained by bronchial trap 900000000000020002 +2882267017 20170731 1 900000000000207008 446838005 en 900000000000013009 Specimen obtained by bronchial trap 900000000000448009 +2882350010 20110131 1 900000000000207008 446676001 en 900000000000013009 Expressed breast milk specimen 900000000000020002 +2882350010 20170731 1 900000000000207008 446676001 en 900000000000013009 Expressed breast milk specimen 900000000000448009 +2882354018 20110131 1 900000000000207008 446861007 en 900000000000013009 Cerebrospinal fluid specimen obtained via ventriculoperitoneal shunt 900000000000020002 +2882354018 20170731 1 900000000000207008 446861007 en 900000000000013009 Cerebrospinal fluid specimen obtained via ventriculoperitoneal shunt 900000000000448009 +2882482012 20110131 1 900000000000207008 446842008 en 900000000000013009 Tissue specimen from cervical lymph node 900000000000020002 +2882482012 20170731 1 900000000000207008 446842008 en 900000000000013009 Tissue specimen from cervical lymph node 900000000000448009 +2882588013 20110131 1 900000000000207008 446674003 en 900000000000013009 Specimen from abscess of liver 900000000000020002 +2882588013 20170731 1 900000000000207008 446674003 en 900000000000013009 Specimen from abscess of liver 900000000000448009 +2882589017 20110131 1 900000000000207008 446675002 en 900000000000013009 Specimen from knee joint obtained by aspiration 900000000000020002 +2882589017 20170731 1 900000000000207008 446675002 en 900000000000013009 Specimen from knee joint obtained by aspiration 900000000000448009 +2882590014 20110131 1 900000000000207008 447392008 en 900000000000013009 Specimen from vagina obtained by aspiration 900000000000020002 +2882590014 20170731 1 900000000000207008 447392008 en 900000000000013009 Specimen from vagina obtained by aspiration 900000000000448009 +2882639016 20110131 1 900000000000207008 446906004 en 900000000000013009 Jejunal fluid specimen from jejunostomy 900000000000020002 +2882639016 20170731 1 900000000000207008 446906004 en 900000000000013009 Jejunal fluid specimen from jejunostomy 900000000000448009 +2882640019 20110131 1 900000000000207008 446906004 en 900000000000013009 Jejunostomy fluid 900000000000020002 +2882640019 20170731 1 900000000000207008 446906004 en 900000000000013009 Jejunostomy fluid 900000000000448009 +2882641015 20110131 1 900000000000207008 446907008 en 900000000000013009 Urine specimen obtained from kidney 900000000000020002 +2882641015 20170731 1 900000000000207008 446907008 en 900000000000013009 Urine specimen obtained from kidney 900000000000448009 +2882659017 20110131 1 900000000000207008 447407009 en 900000000000013009 Specimen from necrotic tissue 900000000000020002 +2882659017 20170731 1 900000000000207008 447407009 en 900000000000013009 Specimen from necrotic tissue 900000000000448009 +2882718015 20110131 1 900000000000207008 446272009 en 900000000000013009 Blood specimen submitted in heparinised collection tube 900000000000020002 +2882718015 20170731 1 900000000000207008 446272009 en 900000000000013009 Blood specimen submitted in heparinised collection tube 900000000000448009 +2882725010 20110131 1 900000000000207008 447154002 en 900000000000013009 Specimen from nose 900000000000020002 +2882725010 20170731 1 900000000000207008 447154002 en 900000000000013009 Specimen from nose 900000000000448009 +2882726011 20110131 1 900000000000207008 447155001 en 900000000000013009 Tissue specimen from uterus obtained by curettage 900000000000020002 +2882726011 20170731 1 900000000000207008 447155001 en 900000000000013009 Tissue specimen from uterus obtained by curettage 900000000000448009 +2882728012 20110131 1 900000000000207008 447158004 en 900000000000013009 Bile specimen obtained by percutaneous transhepatic insertion of biliary drain 900000000000020002 +2882728012 20170731 1 900000000000207008 447158004 en 900000000000013009 Bile specimen obtained by percutaneous transhepatic insertion of biliary drain 900000000000448009 +2882749013 20110131 1 900000000000207008 447341000 en 900000000000013009 Bile specimen obtained via biliary T-tube 900000000000020002 +2882846011 20110131 1 900000000000207008 447403008 en 900000000000013009 Tissue specimen from donor corneal rim 900000000000020002 +2882846011 20170731 1 900000000000207008 447403008 en 900000000000013009 Tissue specimen from donor corneal rim 900000000000448009 +2882902019 20110131 1 900000000000207008 445742005 en 900000000000013009 Postcoital urine specimen 900000000000020002 +2882902019 20170731 1 900000000000207008 445742005 en 900000000000013009 Postcoital urine specimen 900000000000448009 +2882903012 20110131 1 900000000000207008 445744006 en 900000000000013009 Fluid specimen from seroma 900000000000020002 +2882903012 20170731 1 900000000000207008 445744006 en 900000000000013009 Fluid specimen from seroma 900000000000448009 +2882904018 20110131 1 900000000000207008 445745007 en 900000000000013009 Fluid specimen from subphrenic space 900000000000020002 +2882904018 20170731 1 900000000000207008 445745007 en 900000000000013009 Fluid specimen from subphrenic space 900000000000448009 +2882920011 20110131 1 900000000000207008 447357000 en 900000000000013009 Specimen from breast obtained by aspiration 900000000000020002 +2882920011 20170731 1 900000000000207008 447357000 en 900000000000013009 Specimen from breast obtained by aspiration 900000000000448009 +2882921010 20110131 1 900000000000207008 447358005 en 900000000000013009 Specimen from endometrium obtained by aspiration 900000000000020002 +2882921010 20170731 1 900000000000207008 447358005 en 900000000000013009 Specimen from endometrium obtained by aspiration 900000000000448009 +2882922015 20110131 1 900000000000207008 447359002 en 900000000000013009 Specimen from esophagus obtained by aspiration 900000000000020002 +2882922015 20170731 1 900000000000207008 447359002 en 900000000000013009 Specimen from esophagus obtained by aspiration 900000000000448009 +2882923013 20110131 1 900000000000207008 447359002 en 900000000000013009 Specimen from oesophagus obtained by aspiration 900000000000020002 +2882923013 20170731 1 900000000000207008 447359002 en 900000000000013009 Specimen from oesophagus obtained by aspiration 900000000000448009 +2882946010 20110131 1 900000000000207008 446137003 en 900000000000013009 Pharmaceutical product submitted as specimen 900000000000020002 +2882946010 20170731 1 900000000000207008 446137003 en 900000000000013009 Pharmaceutical product submitted as specimen 900000000000448009 +2883021015 20110131 1 900000000000207008 446577002 en 900000000000013009 Swab obtained during autopsy 900000000000020002 +2883021015 20170731 1 900000000000207008 446577002 en 900000000000013009 Swab obtained during autopsy 900000000000448009 +2883065011 20110131 1 900000000000207008 446774006 en 900000000000013009 Specimen from abscess of brain 900000000000020002 +2883065011 20170731 1 900000000000207008 446774006 en 900000000000013009 Specimen from abscess of brain 900000000000448009 +2883090013 20110131 1 900000000000207008 446561003 en 900000000000013009 Body fluid specimen obtained via cholecytosomy tube 900000000000020002 +2883090013 20170731 1 900000000000207008 446561003 en 900000000000013009 Body fluid specimen obtained via cholecytosomy tube 900000000000448009 +2883091012 20110131 1 900000000000207008 446562005 en 900000000000013009 Body fluid specimen obtained via sump drain 900000000000020002 +2883091012 20170731 1 900000000000207008 446562005 en 900000000000013009 Body fluid specimen obtained via sump drain 900000000000448009 +2883122013 20110131 1 900000000000207008 447337004 en 900000000000013009 Specimen from conjunctiva obtained by scraping 900000000000020002 +2883122013 20170731 1 900000000000207008 447337004 en 900000000000013009 Specimen from conjunctiva obtained by scraping 900000000000448009 +2883262016 20110131 1 900000000000207008 446972001 en 900000000000013009 Specimen from abscess obtained by aspiration 900000000000020002 +2883262016 20170731 1 900000000000207008 446972001 en 900000000000013009 Specimen from abscess obtained by aspiration 900000000000448009 +2883334013 20110131 1 900000000000207008 446304007 en 900000000000013009 Tissue specimen from harvested bone 900000000000020002 +2883334013 20170731 1 900000000000207008 446304007 en 900000000000013009 Tissue specimen from harvested bone 900000000000448009 +2883335014 20110131 1 900000000000207008 446305008 en 900000000000013009 Specimen obtained by aspiration via tracheostomy 900000000000020002 +2883335014 20170731 1 900000000000207008 446305008 en 900000000000013009 Specimen obtained by aspiration via tracheostomy 900000000000448009 +2883336010 20110131 1 900000000000207008 446306009 en 900000000000013009 Urine specimen obtained from urinary collection bag 900000000000020002 +2883336010 20170731 1 900000000000207008 446306009 en 900000000000013009 Urine specimen obtained from urinary collection bag 900000000000448009 +2883363011 20110131 1 900000000000207008 447355008 en 900000000000013009 Dialysis fluid specimen obtained after continuous ambulatory peritoneal dialysis 900000000000020002 +2883363011 20170731 1 900000000000207008 447355008 en 900000000000013009 Dialysis fluid specimen obtained after continuous ambulatory peritoneal dialysis 900000000000448009 +2883367012 20110131 1 900000000000207008 446817004 en 900000000000013009 Bile specimen from gall bladder 900000000000020002 +2883367012 20170731 1 900000000000207008 446817004 en 900000000000013009 Bile specimen from gall bladder 900000000000448009 +2883378016 20110131 1 900000000000207008 447098004 en 900000000000013009 Specimen from nail obtained by scraping 900000000000020002 +2883378016 20170731 1 900000000000207008 447098004 en 900000000000013009 Specimen from nail obtained by scraping 900000000000448009 +2883467013 20110131 1 900000000000207008 446128003 en 900000000000013009 Fluid specimen from Bartholin gland cyst 900000000000020002 +2883468015 20110131 1 900000000000207008 446129006 en 900000000000013009 Bile specimen from common bile duct 900000000000020002 +2883468015 20170731 1 900000000000207008 446129006 en 900000000000013009 Bile specimen from common bile duct 900000000000448009 +2883469011 20110131 1 900000000000207008 446846006 en 900000000000013009 Urine specimen obtained via indwelling urinary catheter 900000000000020002 +2883469011 20170731 1 900000000000207008 446846006 en 900000000000013009 Urine specimen obtained via indwelling urinary catheter 900000000000448009 +2883501010 20110131 1 900000000000207008 447589008 en 900000000000013009 Urine specimen obtained by single catheterisation of bladder 900000000000020002 +2883501010 20170731 1 900000000000207008 447589008 en 900000000000013009 Urine specimen obtained by single catheterisation of bladder 900000000000448009 +2883502015 20110131 1 900000000000207008 447589008 en 900000000000013009 Urine specimen obtained by single catheterization of bladder 900000000000020002 +2883502015 20170731 1 900000000000207008 447589008 en 900000000000013009 Urine specimen obtained by single catheterization of bladder 900000000000448009 +2883694015 20110131 1 900000000000207008 446700001 en 900000000000013009 Prostatic fluid specimen obtained for Stamey test 900000000000020002 +2883777011 20110131 1 900000000000207008 446364005 en 900000000000013009 Specimen from donor corneal storage medium 900000000000020002 +2883777011 20170731 1 900000000000207008 446364005 en 900000000000013009 Specimen from donor corneal storage medium 900000000000448009 +2883840010 20110131 1 900000000000207008 447103002 en 900000000000013009 Foreign body submitted as specimen 900000000000020002 +2883840010 20170731 1 900000000000207008 447103002 en 900000000000013009 Foreign body submitted as specimen 900000000000448009 +2883883016 20110131 1 900000000000207008 446211008 en 900000000000013009 Drainage fluid specimen obtained after surgical placement of drain 900000000000020002 +2883883016 20170731 1 900000000000207008 446211008 en 900000000000013009 Drainage fluid specimen obtained after surgical placement of drain 900000000000448009 +2883884010 20110131 1 900000000000207008 446212001 en 900000000000013009 Biological spore test strip submitted as specimen 900000000000020002 +2883884010 20170731 1 900000000000207008 446212001 en 900000000000013009 Biological spore test strip submitted as specimen 900000000000448009 +2883898019 20110131 1 900000000000207008 446277003 en 900000000000013009 Urine specimen obtained from nephrostomy tube after percutaneous insertion 900000000000020002 +2883898019 20170731 1 900000000000207008 446277003 en 900000000000013009 Urine specimen obtained from nephrostomy tube after percutaneous insertion 900000000000448009 +2883949012 20110131 1 900000000000207008 446951004 en 900000000000013009 Specimen from granulation tissue 900000000000020002 +2883949012 20170731 1 900000000000207008 446951004 en 900000000000013009 Specimen from granulation tissue 900000000000448009 +2883991014 20110131 1 900000000000207008 446299006 en 900000000000013009 Specimen obtained by transbronchial aspiration 900000000000020002 +2883991014 20170731 1 900000000000207008 446299006 en 900000000000013009 Specimen obtained by transbronchial aspiration 900000000000448009 +2884031018 20110131 1 900000000000207008 447104008 en 900000000000013009 Urine specimen from urinary conduit 900000000000020002 +2884031018 20170731 1 900000000000207008 447104008 en 900000000000013009 Urine specimen from urinary conduit 900000000000448009 +2884043017 20110131 1 900000000000207008 447391001 en 900000000000013009 Specimen from pharynx obtained by aspiration 900000000000020002 +2884043017 20170731 1 900000000000207008 447391001 en 900000000000013009 Specimen from pharynx obtained by aspiration 900000000000448009 +2884154012 20110131 1 900000000000207008 447339001 en 900000000000013009 Nasal smear specimen 900000000000020002 +2884154012 20170731 1 900000000000207008 447339001 en 900000000000013009 Nasal smear specimen 900000000000448009 +2884212019 20110131 1 900000000000207008 446908003 en 900000000000013009 Fluid specimen from mucocele of lacrimal sac 900000000000020002 +2884212019 20170731 1 900000000000207008 446908003 en 900000000000013009 Fluid specimen from mucocele of lacrimal sac 900000000000448009 +2884221018 20110131 1 900000000000207008 447345009 en 900000000000013009 Bronchial fluid specimen obtained from bronchial trap 900000000000020002 +2884221018 20170731 1 900000000000207008 447345009 en 900000000000013009 Bronchial fluid specimen obtained from bronchial trap 900000000000448009 +2884309015 20110131 1 900000000000207008 446272009 en 900000000000013009 Blood specimen submitted in heparinized collection tube 900000000000020002 +2884309015 20170731 1 900000000000207008 446272009 en 900000000000013009 Blood specimen submitted in heparinized collection tube 900000000000448009 +2884450010 20110131 1 900000000000207008 445743000 en 900000000000013009 Postejaculation urine specimen 900000000000020002 +2884450010 20170731 1 900000000000207008 445743000 en 900000000000013009 Postejaculation urine specimen 900000000000448009 +2897563014 20110731 1 900000000000207008 448789008 en 900000000000003001 Nucleic acid specimen (specimen) 900000000000020002 +2897563014 20170731 1 900000000000207008 448789008 en 900000000000003001 Nucleic acid specimen (specimen) 900000000000448009 +2898013010 20110731 1 900000000000207008 447955000 en 900000000000003001 Specimen from rectum (specimen) 900000000000020002 +2898013010 20170731 1 900000000000207008 447955000 en 900000000000003001 Specimen from rectum (specimen) 900000000000448009 +2898397017 20110731 1 900000000000207008 447881000 en 900000000000003001 Specimen from biliary system (specimen) 900000000000020002 +2898397017 20170731 1 900000000000207008 447881000 en 900000000000003001 Specimen from biliary system (specimen) 900000000000448009 +2898445013 20110731 1 900000000000207008 449446003 en 900000000000003001 Specimen from gallbladder (specimen) 900000000000020002 +2898445013 20170731 1 900000000000207008 449446003 en 900000000000003001 Specimen from gallbladder (specimen) 900000000000448009 +2899665019 20110731 1 900000000000207008 122557004 en 900000000000013009 Cord blood specimen from foetus 900000000000020002 +2899665019 20170731 1 900000000000207008 122557004 en 900000000000013009 Cord blood specimen from foetus 900000000000448009 +2900046015 20110731 1 900000000000207008 447881000 en 900000000000013009 Specimen from biliary system 900000000000020002 +2900046015 20170731 1 900000000000207008 447881000 en 900000000000013009 Specimen from biliary system 900000000000448009 +2900780012 20110731 1 900000000000207008 309173005 en 900000000000013009 Specimen from lung obtained by transbronchial biopsy 900000000000020002 +2900780012 20170731 1 900000000000207008 309173005 en 900000000000013009 Specimen from lung obtained by transbronchial biopsy 900000000000448009 +2900977015 20110731 1 900000000000207008 447955000 en 900000000000013009 Specimen from rectum 900000000000020002 +2900977015 20170731 1 900000000000207008 447955000 en 900000000000013009 Specimen from rectum 900000000000448009 +2901006016 20110731 1 900000000000207008 309501000 en 900000000000013009 Specimen from uterus obtained by hysterectomy 900000000000020002 +2901006016 20170731 1 900000000000207008 309501000 en 900000000000013009 Specimen from uterus obtained by hysterectomy 900000000000448009 +2901255017 20110731 1 900000000000207008 449446003 en 900000000000013009 Specimen from gallbladder 900000000000020002 +2901255017 20170731 1 900000000000207008 449446003 en 900000000000013009 Specimen from gallbladder 900000000000448009 +2901823012 20110731 1 900000000000207008 448789008 en 900000000000013009 Nucleic acid specimen 900000000000020002 +2901823012 20170731 1 900000000000207008 448789008 en 900000000000013009 Nucleic acid specimen 900000000000448009 +2902126017 20110731 1 900000000000207008 258461003 en 900000000000013009 Hydrocoele fluid sample 900000000000020002 +2902126017 20170731 1 900000000000207008 258461003 en 900000000000013009 Hydrocoele fluid sample 900000000000448009 +2913380017 20120131 1 900000000000207008 258504005 en 900000000000013009 Bacillus Calmette-Guerin site swab 900000000000020002 +2913380017 20120731 1 900000000000207008 258504005 en 900000000000013009 Bacillus Calmette-Guerin site swab 900000000000017005 +2914285019 20120131 1 900000000000207008 258504005 en 900000000000003001 Bacillus Calmette-Guerin site swab (specimen) 900000000000020002 +2914285019 20120731 1 900000000000207008 258504005 en 900000000000003001 Bacillus Calmette-Guerin site swab (specimen) 900000000000017005 +2920679010 20120731 1 900000000000207008 450872001 en 900000000000003001 Specimen from urinary bladder (specimen) 900000000000020002 +2920679010 20170731 1 900000000000207008 450872001 en 900000000000003001 Specimen from urinary bladder (specimen) 900000000000448009 +2921106011 20120731 1 900000000000207008 450872001 en 900000000000013009 Specimen from urinary bladder 900000000000020002 +2921106011 20170731 1 900000000000207008 450872001 en 900000000000013009 Specimen from urinary bladder 900000000000448009 +2952057012 20130131 1 900000000000207008 472867001 en 900000000000003001 Swab from tonsil (specimen) 900000000000020002 +2952057012 20170731 1 900000000000207008 472867001 en 900000000000003001 Swab from tonsil (specimen) 900000000000448009 +2952058019 20130131 1 900000000000207008 472869003 en 900000000000013009 Swab from pericardial sac structure 900000000000020002 +2952058019 20170731 1 900000000000207008 472869003 en 900000000000013009 Swab from pericardial sac structure 900000000000448009 +2952059010 20130131 1 900000000000207008 472865009 en 900000000000013009 Swab from toe 900000000000020002 +2952059010 20170731 1 900000000000207008 472865009 en 900000000000013009 Swab from toe 900000000000448009 +2952060017 20130131 1 900000000000207008 472865009 en 900000000000003001 Swab from toe (specimen) 900000000000020002 +2952060017 20170731 1 900000000000207008 472865009 en 900000000000003001 Swab from toe (specimen) 900000000000448009 +2952061018 20130131 1 900000000000207008 472861000 en 900000000000013009 Testicular swab 900000000000020002 +2952061018 20170731 1 900000000000207008 472861000 en 900000000000013009 Testicular swab 900000000000448009 +2952062013 20130131 1 900000000000207008 472879001 en 900000000000013009 Swab from placenta 900000000000020002 +2952062013 20170731 1 900000000000207008 472879001 en 900000000000013009 Swab from placenta 900000000000448009 +2952063015 20130131 1 900000000000207008 472861000 en 900000000000013009 Swab from testicle 900000000000020002 +2952063015 20170731 1 900000000000207008 472861000 en 900000000000013009 Swab from testicle 900000000000448009 +2952065010 20130131 1 900000000000207008 472863002 en 900000000000003001 Swab from lower leg (specimen) 900000000000020002 +2952065010 20170731 1 900000000000207008 472863002 en 900000000000003001 Swab from lower leg (specimen) 900000000000448009 +2952066011 20130131 1 900000000000207008 472873000 en 900000000000003001 Swab from urethral meatus (specimen) 900000000000020002 +2952066011 20170731 1 900000000000207008 472873000 en 900000000000003001 Swab from urethral meatus (specimen) 900000000000448009 +2952067019 20130131 1 900000000000207008 472877004 en 900000000000003001 Swab from esophagus (specimen) 900000000000020002 +2952067019 20170731 1 900000000000207008 472877004 en 900000000000003001 Swab from esophagus (specimen) 900000000000448009 +2952068012 20130131 1 900000000000207008 472878009 en 900000000000013009 Swab from Bartholin gland 900000000000020002 +2952069016 20130131 1 900000000000207008 472864008 en 900000000000013009 Swab from lower limb 900000000000020002 +2952069016 20170731 1 900000000000207008 472864008 en 900000000000013009 Swab from lower limb 900000000000448009 +2952070015 20130131 1 900000000000207008 472875007 en 900000000000003001 Swab from vesicle (specimen) 900000000000020002 +2952070015 20170731 1 900000000000207008 472875007 en 900000000000003001 Swab from vesicle (specimen) 900000000000448009 +2952071016 20130131 1 900000000000207008 472871003 en 900000000000003001 Swab from ulcer (specimen) 900000000000020002 +2952071016 20170731 1 900000000000207008 472871003 en 900000000000003001 Swab from ulcer (specimen) 900000000000448009 +2952072011 20130131 1 900000000000207008 472877004 en 900000000000013009 Swab from oesophagus 900000000000020002 +2952072011 20170731 1 900000000000207008 472877004 en 900000000000013009 Swab from oesophagus 900000000000448009 +2952073018 20130131 1 900000000000207008 472862007 en 900000000000013009 Swab from lesion of skin 900000000000020002 +2952073018 20170731 1 900000000000207008 472862007 en 900000000000013009 Swab from lesion of skin 900000000000448009 +2952074012 20130131 1 900000000000207008 472868006 en 900000000000003001 Swab from peritoneal cavity structure (specimen) 900000000000020002 +2952074012 20170731 1 900000000000207008 472868006 en 900000000000003001 Swab from peritoneal cavity structure (specimen) 900000000000448009 +2952075013 20130131 1 900000000000207008 472869003 en 900000000000013009 Pericardial swab 900000000000020002 +2952075013 20170731 1 900000000000207008 472869003 en 900000000000013009 Pericardial swab 900000000000448009 +2952076014 20130131 1 900000000000207008 472869003 en 900000000000003001 Swab from pericardial sac structure (specimen) 900000000000020002 +2952076014 20170731 1 900000000000207008 472869003 en 900000000000003001 Swab from pericardial sac structure (specimen) 900000000000448009 +2952077017 20130131 1 900000000000207008 472874006 en 900000000000013009 Swab from uterus 900000000000020002 +2952077017 20170731 1 900000000000207008 472874006 en 900000000000013009 Swab from uterus 900000000000448009 +2952079019 20130131 1 900000000000207008 472872005 en 900000000000013009 Swab from ultrasonic nebulizer 900000000000020002 +2952079019 20170731 1 900000000000207008 472872005 en 900000000000013009 Swab from ultrasonic nebulizer 900000000000448009 +2952080016 20130131 1 900000000000207008 472873000 en 900000000000013009 Swab from urethral meatus 900000000000020002 +2952080016 20170731 1 900000000000207008 472873000 en 900000000000013009 Swab from urethral meatus 900000000000448009 +2952081017 20130131 1 900000000000207008 472878009 en 900000000000003001 Swab from Bartholin gland (specimen) 900000000000020002 +2952083019 20130131 1 900000000000207008 472879001 en 900000000000003001 Swab from placenta (specimen) 900000000000020002 +2952083019 20170731 1 900000000000207008 472879001 en 900000000000003001 Swab from placenta (specimen) 900000000000448009 +2952084013 20130131 1 900000000000207008 472871003 en 900000000000013009 Swab from ulcer 900000000000020002 +2952084013 20170731 1 900000000000207008 472871003 en 900000000000013009 Swab from ulcer 900000000000448009 +2952085014 20130131 1 900000000000207008 472875007 en 900000000000013009 Swab from vesicle 900000000000020002 +2952085014 20170731 1 900000000000207008 472875007 en 900000000000013009 Swab from vesicle 900000000000448009 +2952086010 20130131 1 900000000000207008 472870002 en 900000000000003001 Swab from tracheostomy wound (specimen) 900000000000020002 +2952086010 20170731 1 900000000000207008 472870002 en 900000000000003001 Swab from tracheostomy wound (specimen) 900000000000448009 +2952087018 20130131 1 900000000000207008 472876008 en 900000000000003001 Swab from Bartholin cyst (specimen) 900000000000020002 +2952089015 20130131 1 900000000000207008 472874006 en 900000000000003001 Swab from uterus (specimen) 900000000000020002 +2952089015 20170731 1 900000000000207008 472874006 en 900000000000003001 Swab from uterus (specimen) 900000000000448009 +2952090012 20130131 1 900000000000207008 472867001 en 900000000000013009 Swab from tonsil 900000000000020002 +2952090012 20170731 1 900000000000207008 472867001 en 900000000000013009 Swab from tonsil 900000000000448009 +2952091011 20130131 1 900000000000207008 472866005 en 900000000000013009 Swab from tongue 900000000000020002 +2952091011 20170731 1 900000000000207008 472866005 en 900000000000013009 Swab from tongue 900000000000448009 +2952092016 20130131 1 900000000000207008 472870002 en 900000000000013009 Swab from tracheostomy wound 900000000000020002 +2952092016 20170731 1 900000000000207008 472870002 en 900000000000013009 Swab from tracheostomy wound 900000000000448009 +2952093014 20130131 1 900000000000207008 472868006 en 900000000000013009 Peritoneal swab 900000000000020002 +2952093014 20170731 1 900000000000207008 472868006 en 900000000000013009 Peritoneal swab 900000000000448009 +2952095019 20130131 1 900000000000207008 472864008 en 900000000000003001 Swab from lower limb (specimen) 900000000000020002 +2952095019 20170731 1 900000000000207008 472864008 en 900000000000003001 Swab from lower limb (specimen) 900000000000448009 +2952096018 20130131 1 900000000000207008 472863002 en 900000000000013009 Swab from lower leg 900000000000020002 +2952096018 20170731 1 900000000000207008 472863002 en 900000000000013009 Swab from lower leg 900000000000448009 +2952097010 20130131 1 900000000000207008 472872005 en 900000000000003001 Swab from ultrasonic nebulizer (specimen) 900000000000020002 +2952097010 20170731 1 900000000000207008 472872005 en 900000000000003001 Swab from ultrasonic nebulizer (specimen) 900000000000448009 +2952098017 20130131 1 900000000000207008 472876008 en 900000000000013009 Swab from Bartholin cyst 900000000000020002 +2952099013 20130131 1 900000000000207008 472866005 en 900000000000003001 Swab from tongue (specimen) 900000000000020002 +2952099013 20170731 1 900000000000207008 472866005 en 900000000000003001 Swab from tongue (specimen) 900000000000448009 +2952100017 20130131 1 900000000000207008 472877004 en 900000000000013009 Swab from esophagus 900000000000020002 +2952100017 20170731 1 900000000000207008 472877004 en 900000000000013009 Swab from esophagus 900000000000448009 +2952101018 20130131 1 900000000000207008 472862007 en 900000000000003001 Swab from lesion of skin (specimen) 900000000000020002 +2952101018 20170731 1 900000000000207008 472862007 en 900000000000003001 Swab from lesion of skin (specimen) 900000000000448009 +2952102013 20130131 1 900000000000207008 472861000 en 900000000000003001 Swab from testicle (specimen) 900000000000020002 +2952102013 20170731 1 900000000000207008 472861000 en 900000000000003001 Swab from testicle (specimen) 900000000000448009 +2952103015 20130131 1 900000000000207008 472868006 en 900000000000013009 Swab from peritoneal cavity structure 900000000000020002 +2952103015 20170731 1 900000000000207008 472868006 en 900000000000013009 Swab from peritoneal cavity structure 900000000000448009 +2952104014 20130131 1 900000000000207008 472872005 en 900000000000013009 Swab from ultrasonic nebuliser 900000000000020002 +2952104014 20170731 1 900000000000207008 472872005 en 900000000000013009 Swab from ultrasonic nebuliser 900000000000448009 +2952105010 20130131 1 900000000000207008 472900002 en 900000000000013009 Gingival swab 900000000000020002 +2952105010 20170731 1 900000000000207008 472900002 en 900000000000013009 Gingival swab 900000000000448009 +2952106011 20130131 1 900000000000207008 472890006 en 900000000000003001 Swab from appendix (specimen) 900000000000020002 +2952106011 20170731 1 900000000000207008 472890006 en 900000000000003001 Swab from appendix (specimen) 900000000000448009 +2952107019 20130131 1 900000000000207008 472891005 en 900000000000003001 Swab from lip (specimen) 900000000000020002 +2952107019 20170731 1 900000000000207008 472891005 en 900000000000003001 Swab from lip (specimen) 900000000000448009 +2952108012 20130131 1 900000000000207008 472896000 en 900000000000003001 Swab from blister (specimen) 900000000000020002 +2952108012 20170731 1 900000000000207008 472896000 en 900000000000003001 Swab from blister (specimen) 900000000000448009 +2952109016 20130131 1 900000000000207008 472897009 en 900000000000003001 Swab from hip region (specimen) 900000000000020002 +2952109016 20170731 1 900000000000207008 472897009 en 900000000000003001 Swab from hip region (specimen) 900000000000448009 +2952110014 20130131 1 900000000000207008 472885008 en 900000000000013009 Swab from decubitus ulcer 900000000000020002 +2952110014 20140131 0 900000000000207008 472885008 en 900000000000013009 Swab from decubitus ulcer 900000000000020002 +2952111013 20130131 1 900000000000207008 472895001 en 900000000000003001 Swab from buttock (specimen) 900000000000020002 +2952111013 20170731 1 900000000000207008 472895001 en 900000000000003001 Swab from buttock (specimen) 900000000000448009 +2952112018 20130131 1 900000000000207008 472886009 en 900000000000003001 Swab from gastrostomy stoma (specimen) 900000000000020002 +2952112018 20170731 1 900000000000207008 472886009 en 900000000000003001 Swab from gastrostomy stoma (specimen) 900000000000448009 +2952113011 20130131 1 900000000000207008 472902005 en 900000000000003001 Swab from chest tube insertion site (specimen) 900000000000020002 +2952113011 20170731 1 900000000000207008 472902005 en 900000000000003001 Swab from chest tube insertion site (specimen) 900000000000448009 +2952114017 20130131 1 900000000000207008 472897009 en 900000000000013009 Swab from hip region 900000000000020002 +2952114017 20170731 1 900000000000207008 472897009 en 900000000000013009 Swab from hip region 900000000000448009 +2952115016 20130131 1 900000000000207008 472882006 en 900000000000003001 Swab from superficial wound (specimen) 900000000000020002 +2952115016 20170731 1 900000000000207008 472882006 en 900000000000003001 Swab from superficial wound (specimen) 900000000000448009 +2952116015 20130131 1 900000000000207008 472900002 en 900000000000013009 Swab from gum 900000000000020002 +2952116015 20170731 1 900000000000207008 472900002 en 900000000000013009 Swab from gum 900000000000448009 +2952117012 20130131 1 900000000000207008 472884007 en 900000000000013009 Swab from deep wound 900000000000020002 +2952117012 20170731 1 900000000000207008 472884007 en 900000000000013009 Swab from deep wound 900000000000448009 +2952118019 20130131 1 900000000000207008 472887000 en 900000000000003001 Swab from labia (specimen) 900000000000020002 +2952118019 20170731 1 900000000000207008 472887000 en 900000000000003001 Swab from labia (specimen) 900000000000448009 +2952119010 20130131 1 900000000000207008 472883001 en 900000000000003001 Swab from surgical wound (specimen) 900000000000020002 +2952119010 20170731 1 900000000000207008 472883001 en 900000000000003001 Swab from surgical wound (specimen) 900000000000448009 +2952120016 20130131 1 900000000000207008 472890006 en 900000000000013009 Swab from appendix 900000000000020002 +2952120016 20170731 1 900000000000207008 472890006 en 900000000000013009 Swab from appendix 900000000000448009 +2952121017 20130131 1 900000000000207008 472888005 en 900000000000013009 Laryngeal swab 900000000000020002 +2952121017 20170731 1 900000000000207008 472888005 en 900000000000013009 Laryngeal swab 900000000000448009 +2952122012 20130131 1 900000000000207008 472899007 en 900000000000013009 Swab from vaginal introitus 900000000000020002 +2952122012 20170731 1 900000000000207008 472899007 en 900000000000013009 Swab from vaginal introitus 900000000000448009 +2952123019 20130131 1 900000000000207008 472904006 en 900000000000013009 Abdominal swab 900000000000020002 +2952123019 20170731 1 900000000000207008 472904006 en 900000000000013009 Abdominal swab 900000000000448009 +2952124013 20130131 1 900000000000207008 472889002 en 900000000000013009 Swab from pelvis 900000000000020002 +2952124013 20170731 1 900000000000207008 472889002 en 900000000000013009 Swab from pelvis 900000000000448009 +2952125014 20130131 1 900000000000207008 472885008 en 900000000000003001 Swab from decubitus ulcer (specimen) 900000000000020002 +2952125014 20140131 0 900000000000207008 472885008 en 900000000000003001 Swab from decubitus ulcer (specimen) 900000000000020002 +2952126010 20130131 1 900000000000207008 472900002 en 900000000000013009 Swab from gingiva 900000000000020002 +2952126010 20170731 1 900000000000207008 472900002 en 900000000000013009 Swab from gingiva 900000000000448009 +2952127018 20130131 1 900000000000207008 472880003 en 900000000000013009 Swab from catheter 900000000000020002 +2952127018 20170731 1 900000000000207008 472880003 en 900000000000013009 Swab from catheter 900000000000448009 +2952128011 20130131 1 900000000000207008 472894002 en 900000000000003001 Swab from cornea (specimen) 900000000000020002 +2952128011 20170731 1 900000000000207008 472894002 en 900000000000003001 Swab from cornea (specimen) 900000000000448009 +2952129015 20130131 1 900000000000207008 472882006 en 900000000000013009 Swab from superficial wound 900000000000020002 +2952129015 20170731 1 900000000000207008 472882006 en 900000000000013009 Swab from superficial wound 900000000000448009 +2952130013 20130131 1 900000000000207008 472881004 en 900000000000013009 Swab from pharynx 900000000000020002 +2952130013 20170731 1 900000000000207008 472881004 en 900000000000013009 Swab from pharynx 900000000000448009 +2952131012 20130131 1 900000000000207008 472900002 en 900000000000003001 Swab from gingiva (specimen) 900000000000020002 +2952131012 20170731 1 900000000000207008 472900002 en 900000000000003001 Swab from gingiva (specimen) 900000000000448009 +2952132017 20130131 1 900000000000207008 472881004 en 900000000000013009 Pharyngeal swab 900000000000020002 +2952132017 20170731 1 900000000000207008 472881004 en 900000000000013009 Pharyngeal swab 900000000000448009 +2952133010 20130131 1 900000000000207008 472903000 en 900000000000013009 Swab from central venous catheter 900000000000020002 +2952133010 20170731 1 900000000000207008 472903000 en 900000000000013009 Swab from central venous catheter 900000000000448009 +2952134016 20130131 1 900000000000207008 472887000 en 900000000000013009 Labial swab 900000000000020002 +2952134016 20170731 1 900000000000207008 472887000 en 900000000000013009 Labial swab 900000000000448009 +2952135015 20130131 1 900000000000207008 472904006 en 900000000000013009 Swab from abdomen 900000000000020002 +2952135015 20170731 1 900000000000207008 472904006 en 900000000000013009 Swab from abdomen 900000000000448009 +2952136019 20130131 1 900000000000207008 472894002 en 900000000000013009 Swab from cornea 900000000000020002 +2952136019 20170731 1 900000000000207008 472894002 en 900000000000013009 Swab from cornea 900000000000448009 +2952137011 20130131 1 900000000000207008 472902005 en 900000000000013009 Swab from chest tube insertion site 900000000000020002 +2952137011 20170731 1 900000000000207008 472902005 en 900000000000013009 Swab from chest tube insertion site 900000000000448009 +2952138018 20130131 1 900000000000207008 472898004 en 900000000000003001 Swab from hand (specimen) 900000000000020002 +2952138018 20170731 1 900000000000207008 472898004 en 900000000000003001 Swab from hand (specimen) 900000000000448009 +2952139014 20130131 1 900000000000207008 472902005 en 900000000000013009 Swab from chest drain insertion site 900000000000020002 +2952139014 20170731 1 900000000000207008 472902005 en 900000000000013009 Swab from chest drain insertion site 900000000000448009 +2952140011 20130131 1 900000000000207008 472901003 en 900000000000013009 Swab from nasal sinus 900000000000020002 +2952140011 20170731 1 900000000000207008 472901003 en 900000000000013009 Swab from nasal sinus 900000000000448009 +2952141010 20130131 1 900000000000207008 472886009 en 900000000000013009 Swab from gastrostomy stoma 900000000000020002 +2952141010 20170731 1 900000000000207008 472886009 en 900000000000013009 Swab from gastrostomy stoma 900000000000448009 +2952142015 20130131 1 900000000000207008 472901003 en 900000000000003001 Swab from nasal sinus (specimen) 900000000000020002 +2952142015 20170731 1 900000000000207008 472901003 en 900000000000003001 Swab from nasal sinus (specimen) 900000000000448009 +2952143013 20130131 1 900000000000207008 472896000 en 900000000000013009 Swab from blister 900000000000020002 +2952143013 20170731 1 900000000000207008 472896000 en 900000000000013009 Swab from blister 900000000000448009 +2952144019 20130131 1 900000000000207008 472884007 en 900000000000003001 Swab from deep wound (specimen) 900000000000020002 +2952144019 20170731 1 900000000000207008 472884007 en 900000000000003001 Swab from deep wound (specimen) 900000000000448009 +2952145018 20130131 1 900000000000207008 472892003 en 900000000000013009 Swab from digit of hand 900000000000020002 +2952145018 20170731 1 900000000000207008 472892003 en 900000000000013009 Swab from digit of hand 900000000000448009 +2952146017 20130131 1 900000000000207008 472892003 en 900000000000013009 Swab from finger and/or thumb 900000000000020002 +2952146017 20170731 1 900000000000207008 472892003 en 900000000000013009 Swab from finger and/or thumb 900000000000448009 +2952147014 20130131 1 900000000000207008 472883001 en 900000000000013009 Swab from surgical wound 900000000000020002 +2952147014 20170731 1 900000000000207008 472883001 en 900000000000013009 Swab from surgical wound 900000000000448009 +2952148016 20130131 1 900000000000207008 472899007 en 900000000000003001 Swab from vaginal introitus (specimen) 900000000000020002 +2952148016 20170731 1 900000000000207008 472899007 en 900000000000003001 Swab from vaginal introitus (specimen) 900000000000448009 +2952149012 20130131 1 900000000000207008 472888005 en 900000000000003001 Swab from larynx (specimen) 900000000000020002 +2952149012 20170731 1 900000000000207008 472888005 en 900000000000003001 Swab from larynx (specimen) 900000000000448009 +2952150012 20130131 1 900000000000207008 472892003 en 900000000000003001 Swab from digit of hand (specimen) 900000000000020002 +2952150012 20170731 1 900000000000207008 472892003 en 900000000000003001 Swab from digit of hand (specimen) 900000000000448009 +2952151011 20130131 1 900000000000207008 472904006 en 900000000000003001 Swab from abdomen (specimen) 900000000000020002 +2952151011 20170731 1 900000000000207008 472904006 en 900000000000003001 Swab from abdomen (specimen) 900000000000448009 +2952152016 20130131 1 900000000000207008 472893008 en 900000000000013009 Swab from abscess of brain 900000000000020002 +2952152016 20170731 1 900000000000207008 472893008 en 900000000000013009 Swab from abscess of brain 900000000000448009 +2952153014 20130131 1 900000000000207008 472887000 en 900000000000013009 Swab from labia 900000000000020002 +2952153014 20170731 1 900000000000207008 472887000 en 900000000000013009 Swab from labia 900000000000448009 +2952154015 20130131 1 900000000000207008 472881004 en 900000000000003001 Swab from pharynx (specimen) 900000000000020002 +2952154015 20170731 1 900000000000207008 472881004 en 900000000000003001 Swab from pharynx (specimen) 900000000000448009 +2952155019 20130131 1 900000000000207008 472898004 en 900000000000013009 Swab from hand 900000000000020002 +2952155019 20170731 1 900000000000207008 472898004 en 900000000000013009 Swab from hand 900000000000448009 +2952156018 20130131 1 900000000000207008 472903000 en 900000000000003001 Swab from central venous catheter (specimen) 900000000000020002 +2952156018 20170731 1 900000000000207008 472903000 en 900000000000003001 Swab from central venous catheter (specimen) 900000000000448009 +2952157010 20130131 1 900000000000207008 472885008 en 900000000000013009 Swab from bed sore 900000000000020002 +2952157010 20170731 1 900000000000207008 472885008 en 900000000000013009 Swab from bed sore 900000000000448009 +2952158017 20130131 1 900000000000207008 472894002 en 900000000000013009 Corneal swab 900000000000020002 +2952158017 20170731 1 900000000000207008 472894002 en 900000000000013009 Corneal swab 900000000000448009 +2952159013 20130131 1 900000000000207008 472891005 en 900000000000013009 Swab from lip 900000000000020002 +2952159013 20170731 1 900000000000207008 472891005 en 900000000000013009 Swab from lip 900000000000448009 +2952160015 20130131 1 900000000000207008 472880003 en 900000000000003001 Swab from catheter (specimen) 900000000000020002 +2952160015 20170731 1 900000000000207008 472880003 en 900000000000003001 Swab from catheter (specimen) 900000000000448009 +2952161016 20130131 1 900000000000207008 472889002 en 900000000000003001 Swab from pelvis (specimen) 900000000000020002 +2952161016 20170731 1 900000000000207008 472889002 en 900000000000003001 Swab from pelvis (specimen) 900000000000448009 +2952162011 20130131 1 900000000000207008 472895001 en 900000000000013009 Swab from buttock 900000000000020002 +2952162011 20170731 1 900000000000207008 472895001 en 900000000000013009 Swab from buttock 900000000000448009 +2952163018 20130131 1 900000000000207008 472888005 en 900000000000013009 Swab from larynx 900000000000020002 +2952163018 20170731 1 900000000000207008 472888005 en 900000000000013009 Swab from larynx 900000000000448009 +2952164012 20130131 1 900000000000207008 472893008 en 900000000000003001 Swab from abscess of brain (specimen) 900000000000020002 +2952164012 20170731 1 900000000000207008 472893008 en 900000000000003001 Swab from abscess of brain (specimen) 900000000000448009 +2952201013 20130131 1 900000000000207008 472938003 en 900000000000003001 Tracheal tube submitted as specimen (specimen) 900000000000020002 +2952201013 20170731 1 900000000000207008 472938003 en 900000000000003001 Tracheal tube submitted as specimen (specimen) 900000000000448009 +2952202018 20130131 1 900000000000207008 472919007 en 900000000000003001 Device submitted as specimen (specimen) 900000000000020002 +2952202018 20170731 1 900000000000207008 472919007 en 900000000000003001 Device submitted as specimen (specimen) 900000000000448009 +2952203011 20130131 1 900000000000207008 472928008 en 900000000000003001 Umbilical artery catheter tip submitted as specimen (specimen) 900000000000020002 +2952203011 20170731 1 900000000000207008 472928008 en 900000000000003001 Umbilical artery catheter tip submitted as specimen (specimen) 900000000000448009 +2952204017 20130131 1 900000000000207008 472930005 en 900000000000013009 Bottle submitted as specimen 900000000000020002 +2952204017 20170731 1 900000000000207008 472930005 en 900000000000013009 Bottle submitted as specimen 900000000000448009 +2952205016 20130131 1 900000000000207008 472941007 en 900000000000003001 Intracranial ventricular catheter tip submitted as specimen (specimen) 900000000000020002 +2952205016 20170731 1 900000000000207008 472941007 en 900000000000003001 Intracranial ventricular catheter tip submitted as specimen (specimen) 900000000000448009 +2952206015 20130131 1 900000000000207008 472922009 en 900000000000013009 Intracranial catheter submitted as specimen 900000000000020002 +2952206015 20170731 1 900000000000207008 472922009 en 900000000000013009 Intracranial catheter submitted as specimen 900000000000448009 +2952207012 20130131 1 900000000000207008 472925006 en 900000000000013009 Umbilical vein catheter tip submitted as specimen 900000000000020002 +2952207012 20170731 1 900000000000207008 472925006 en 900000000000013009 Umbilical vein catheter tip submitted as specimen 900000000000448009 +2952208019 20130131 1 900000000000207008 472919007 en 900000000000013009 Device submitted as specimen 900000000000020002 +2952208019 20170731 1 900000000000207008 472919007 en 900000000000013009 Device submitted as specimen 900000000000448009 +2952209010 20130131 1 900000000000207008 472931009 en 900000000000003001 Arterial line tip submitted as specimen (specimen) 900000000000020002 +2952209010 20170731 1 900000000000207008 472931009 en 900000000000003001 Arterial line tip submitted as specimen (specimen) 900000000000448009 +2952210017 20130131 1 900000000000207008 472939006 en 900000000000013009 Tracheostomy tube submitted as specimen 900000000000020002 +2952210017 20170731 1 900000000000207008 472939006 en 900000000000013009 Tracheostomy tube submitted as specimen 900000000000448009 +2952211018 20130131 1 900000000000207008 472932002 en 900000000000003001 Vascular catheter submitted as specimen (specimen) 900000000000020002 +2952211018 20170731 1 900000000000207008 472932002 en 900000000000003001 Vascular catheter submitted as specimen (specimen) 900000000000448009 +2952212013 20130131 1 900000000000207008 472926007 en 900000000000013009 Chest drain tip submitted as specimen 900000000000020002 +2952212013 20170731 1 900000000000207008 472926007 en 900000000000013009 Chest drain tip submitted as specimen 900000000000448009 +2952213015 20130131 1 900000000000207008 472937008 en 900000000000003001 Double J stent submitted as specimen (specimen) 900000000000020002 +2952214014 20130131 1 900000000000207008 472935000 en 900000000000003001 Central venous catheter tip from subclavian vein submitted as specimen (specimen) 900000000000020002 +2952214014 20170731 1 900000000000207008 472935000 en 900000000000003001 Central venous catheter tip from subclavian vein submitted as specimen (specimen) 900000000000448009 +2952215010 20130131 1 900000000000207008 472934001 en 900000000000013009 Stent submitted as specimen 900000000000020002 +2952215010 20170731 1 900000000000207008 472934001 en 900000000000013009 Stent submitted as specimen 900000000000448009 +2952216011 20130131 1 900000000000207008 472944004 en 900000000000003001 Peritoneal catheter submitted as specimen (specimen) 900000000000020002 +2952216011 20170731 1 900000000000207008 472944004 en 900000000000003001 Peritoneal catheter submitted as specimen (specimen) 900000000000448009 +2952218012 20130131 1 900000000000207008 472936004 en 900000000000003001 Tenckhoff catheter tip submitted as specimen (specimen) 900000000000017005 +2952219016 20130131 1 900000000000207008 472943005 en 900000000000013009 Heyer-Pudenz valve submitted as specimen 900000000000017005 +2952220010 20130131 1 900000000000207008 472939006 en 900000000000003001 Tracheostomy tube submitted as specimen (specimen) 900000000000020002 +2952220010 20170731 1 900000000000207008 472939006 en 900000000000003001 Tracheostomy tube submitted as specimen (specimen) 900000000000448009 +2952221014 20130131 1 900000000000207008 472929000 en 900000000000013009 Central venous catheter tip submitted as specimen 900000000000020002 +2952221014 20170731 1 900000000000207008 472929000 en 900000000000013009 Central venous catheter tip submitted as specimen 900000000000448009 +2952223012 20130131 1 900000000000207008 472930005 en 900000000000003001 Bottle submitted as specimen (specimen) 900000000000020002 +2952223012 20170731 1 900000000000207008 472930005 en 900000000000003001 Bottle submitted as specimen (specimen) 900000000000448009 +2952224018 20130131 1 900000000000207008 472936004 en 900000000000013009 Tenckhoff catheter tip submitted as specimen 900000000000017005 +2952225017 20130131 1 900000000000207008 472920001 en 900000000000013009 Umbilical catheter submitted as specimen 900000000000020002 +2952225017 20170731 1 900000000000207008 472920001 en 900000000000013009 Umbilical catheter submitted as specimen 900000000000448009 +2952226016 20130131 1 900000000000207008 472933007 en 900000000000003001 Shunt tip submitted as specimen (specimen) 900000000000020002 +2952226016 20170731 1 900000000000207008 472933007 en 900000000000003001 Shunt tip submitted as specimen (specimen) 900000000000448009 +2952227013 20130131 1 900000000000207008 472926007 en 900000000000003001 Chest tube tip submitted as specimen (specimen) 900000000000020002 +2952227013 20170731 1 900000000000207008 472926007 en 900000000000003001 Chest tube tip submitted as specimen (specimen) 900000000000448009 +2952228015 20130131 1 900000000000207008 472940008 en 900000000000013009 Intracranial ventricular catheter submitted as specimen 900000000000020002 +2952228015 20170731 1 900000000000207008 472940008 en 900000000000013009 Intracranial ventricular catheter submitted as specimen 900000000000448009 +2952229011 20130131 1 900000000000207008 472942000 en 900000000000013009 Ventriculoperitoneal shunt submitted as specimen 900000000000020002 +2952229011 20170731 1 900000000000207008 472942000 en 900000000000013009 Ventriculoperitoneal shunt submitted as specimen 900000000000448009 +2952230018 20130131 1 900000000000207008 472937008 en 900000000000013009 Double J stent submitted as specimen 900000000000020002 +2952231019 20130131 1 900000000000207008 472925006 en 900000000000003001 Umbilical vein catheter tip submitted as specimen (specimen) 900000000000020002 +2952231019 20170731 1 900000000000207008 472925006 en 900000000000003001 Umbilical vein catheter tip submitted as specimen (specimen) 900000000000448009 +2952232014 20130131 1 900000000000207008 472941007 en 900000000000013009 Intracranial ventricular catheter tip submitted as specimen 900000000000020002 +2952232014 20170731 1 900000000000207008 472941007 en 900000000000013009 Intracranial ventricular catheter tip submitted as specimen 900000000000448009 +2952233016 20130131 1 900000000000207008 472920001 en 900000000000003001 Umbilical catheter submitted as specimen (specimen) 900000000000020002 +2952233016 20170731 1 900000000000207008 472920001 en 900000000000003001 Umbilical catheter submitted as specimen (specimen) 900000000000448009 +2952234010 20130131 1 900000000000207008 472938003 en 900000000000013009 Tracheal tube submitted as specimen 900000000000020002 +2952234010 20170731 1 900000000000207008 472938003 en 900000000000013009 Tracheal tube submitted as specimen 900000000000448009 +2952235011 20130131 1 900000000000207008 472921002 en 900000000000003001 Umbilical catheter tip submitted as specimen (specimen) 900000000000020002 +2952235011 20170731 1 900000000000207008 472921002 en 900000000000003001 Umbilical catheter tip submitted as specimen (specimen) 900000000000448009 +2952236012 20130131 1 900000000000207008 472937008 en 900000000000013009 JJ stent submitted as specimen 900000000000017005 +2952237015 20130131 1 900000000000207008 472937008 en 900000000000013009 Double pigtail stent submitted as specimen 900000000000020002 +2952237015 20170731 1 900000000000207008 472937008 en 900000000000013009 Double pigtail stent submitted as specimen 900000000000448009 +2952238013 20130131 1 900000000000207008 472934001 en 900000000000003001 Stent submitted as specimen (specimen) 900000000000020002 +2952238013 20170731 1 900000000000207008 472934001 en 900000000000003001 Stent submitted as specimen (specimen) 900000000000448009 +2952239017 20130131 1 900000000000207008 472923004 en 900000000000013009 Peripheral vascular catheter tip submitted as specimen 900000000000020002 +2952239017 20170731 1 900000000000207008 472923004 en 900000000000013009 Peripheral vascular catheter tip submitted as specimen 900000000000448009 +2952240015 20130131 1 900000000000207008 472927003 en 900000000000013009 Contact lens case submitted as specimen 900000000000020002 +2952240015 20170731 1 900000000000207008 472927003 en 900000000000013009 Contact lens case submitted as specimen 900000000000448009 +2952241016 20130131 1 900000000000207008 472935000 en 900000000000013009 Central venous catheter tip from subclavian vein submitted as specimen 900000000000020002 +2952241016 20170731 1 900000000000207008 472935000 en 900000000000013009 Central venous catheter tip from subclavian vein submitted as specimen 900000000000448009 +2952242011 20130131 1 900000000000207008 472942000 en 900000000000003001 Ventriculoperitoneal shunt submitted as specimen (specimen) 900000000000020002 +2952242011 20170731 1 900000000000207008 472942000 en 900000000000003001 Ventriculoperitoneal shunt submitted as specimen (specimen) 900000000000448009 +2952244012 20130131 1 900000000000207008 472928008 en 900000000000013009 Umbilical artery catheter tip submitted as specimen 900000000000020002 +2952244012 20170731 1 900000000000207008 472928008 en 900000000000013009 Umbilical artery catheter tip submitted as specimen 900000000000448009 +2952245013 20130131 1 900000000000207008 472932002 en 900000000000013009 Vascular catheter submitted as specimen 900000000000020002 +2952245013 20170731 1 900000000000207008 472932002 en 900000000000013009 Vascular catheter submitted as specimen 900000000000448009 +2952246014 20130131 1 900000000000207008 472931009 en 900000000000013009 Arterial line tip submitted as specimen 900000000000020002 +2952246014 20170731 1 900000000000207008 472931009 en 900000000000013009 Arterial line tip submitted as specimen 900000000000448009 +2952247017 20130131 1 900000000000207008 472922009 en 900000000000003001 Intracranial catheter submitted as specimen (specimen) 900000000000020002 +2952247017 20170731 1 900000000000207008 472922009 en 900000000000003001 Intracranial catheter submitted as specimen (specimen) 900000000000448009 +2952248010 20130131 1 900000000000207008 472923004 en 900000000000003001 Peripheral vascular catheter tip submitted as specimen (specimen) 900000000000020002 +2952248010 20170731 1 900000000000207008 472923004 en 900000000000003001 Peripheral vascular catheter tip submitted as specimen (specimen) 900000000000448009 +2952249019 20130131 1 900000000000207008 472924005 en 900000000000003001 Pulmonary artery flotation catheter tip submitted as specimen (specimen) 900000000000020002 +2952249019 20170731 1 900000000000207008 472924005 en 900000000000003001 Pulmonary artery flotation catheter tip submitted as specimen (specimen) 900000000000448009 +2952250019 20130131 1 900000000000207008 472926007 en 900000000000013009 Chest tube tip submitted as specimen 900000000000020002 +2952250019 20170731 1 900000000000207008 472926007 en 900000000000013009 Chest tube tip submitted as specimen 900000000000448009 +2952251015 20130131 1 900000000000207008 472944004 en 900000000000013009 Peritoneal catheter submitted as specimen 900000000000020002 +2952251015 20170731 1 900000000000207008 472944004 en 900000000000013009 Peritoneal catheter submitted as specimen 900000000000448009 +2952252010 20130131 1 900000000000207008 472933007 en 900000000000013009 Shunt tip submitted as specimen 900000000000020002 +2952252010 20170731 1 900000000000207008 472933007 en 900000000000013009 Shunt tip submitted as specimen 900000000000448009 +2952254011 20130131 1 900000000000207008 472927003 en 900000000000003001 Contact lens case submitted as specimen (specimen) 900000000000020002 +2952254011 20170731 1 900000000000207008 472927003 en 900000000000003001 Contact lens case submitted as specimen (specimen) 900000000000448009 +2952255012 20130131 1 900000000000207008 472929000 en 900000000000003001 Central venous catheter tip submitted as specimen (specimen) 900000000000020002 +2952255012 20170731 1 900000000000207008 472929000 en 900000000000003001 Central venous catheter tip submitted as specimen (specimen) 900000000000448009 +2952256013 20130131 1 900000000000207008 472921002 en 900000000000013009 Umbilical catheter tip submitted as specimen 900000000000020002 +2952256013 20170731 1 900000000000207008 472921002 en 900000000000013009 Umbilical catheter tip submitted as specimen 900000000000448009 +2952257016 20130131 1 900000000000207008 472924005 en 900000000000013009 Pulmonary artery flotation catheter tip submitted as specimen 900000000000020002 +2952257016 20170731 1 900000000000207008 472924005 en 900000000000013009 Pulmonary artery flotation catheter tip submitted as specimen 900000000000448009 +2952258014 20130131 1 900000000000207008 472940008 en 900000000000003001 Intracranial ventricular catheter submitted as specimen (specimen) 900000000000020002 +2952258014 20170731 1 900000000000207008 472940008 en 900000000000003001 Intracranial ventricular catheter submitted as specimen (specimen) 900000000000448009 +2952259018 20130131 1 900000000000207008 472943005 en 900000000000003001 Heyer-Pudenz valve submitted as specimen (specimen) 900000000000017005 +2952260011 20130131 1 900000000000207008 472924005 en 900000000000013009 Pulmonary artery floatation catheter tip submitted as specimen 900000000000020002 +2952260011 20170731 1 900000000000207008 472924005 en 900000000000013009 Pulmonary artery floatation catheter tip submitted as specimen 900000000000448009 +2956691012 20130131 1 900000000000207008 473416002 en 900000000000013009 Nephrostomy tube submitted as specimen 900000000000020002 +2956691012 20170731 1 900000000000207008 473416002 en 900000000000013009 Nephrostomy tube submitted as specimen 900000000000448009 +2956694016 20130131 1 900000000000207008 473415003 en 900000000000013009 Intrauterine contraceptive device submitted as specimen 900000000000020002 +2956694016 20170731 1 900000000000207008 473415003 en 900000000000013009 Intrauterine contraceptive device submitted as specimen 900000000000448009 +2956697011 20130131 1 900000000000207008 473407001 en 900000000000013009 Peripherally inserted central catheter submitted as specimen 900000000000020002 +2956697011 20170731 1 900000000000207008 473407001 en 900000000000013009 Peripherally inserted central catheter submitted as specimen 900000000000448009 +2956698018 20130131 1 900000000000207008 473405009 en 900000000000013009 Cerebrospinal fluid specimen obtained from Rickham reservoir 900000000000020002 +2956699014 20130131 1 900000000000207008 473399006 en 900000000000003001 Swab from Tenckhoff catheter exit site (specimen) 900000000000020002 +2956706016 20130131 1 900000000000207008 473416002 en 900000000000003001 Nephrostomy tube submitted as specimen (specimen) 900000000000020002 +2956706016 20170731 1 900000000000207008 473416002 en 900000000000003001 Nephrostomy tube submitted as specimen (specimen) 900000000000448009 +2956712014 20130131 1 900000000000207008 473401000 en 900000000000013009 Cotton wool ball submitted as specimen 900000000000020002 +2956712014 20170731 1 900000000000207008 473401000 en 900000000000013009 Cotton wool ball submitted as specimen 900000000000448009 +2956716012 20130131 1 900000000000207008 473413005 en 900000000000013009 Central venous catheter from internal jugular vein submitted as specimen 900000000000020002 +2956716012 20170731 1 900000000000207008 473413005 en 900000000000013009 Central venous catheter from internal jugular vein submitted as specimen 900000000000448009 +2956725018 20130131 1 900000000000207008 473412000 en 900000000000013009 Endotracheal tube submitted as specimen 900000000000020002 +2956725018 20170731 1 900000000000207008 473412000 en 900000000000013009 Endotracheal tube submitted as specimen 900000000000448009 +2956726017 20130131 1 900000000000207008 473433009 en 900000000000003001 Protected specimen brush submitted as specimen (specimen) 900000000000020002 +2956726017 20170731 1 900000000000207008 473433009 en 900000000000003001 Protected specimen brush submitted as specimen (specimen) 900000000000448009 +2956728016 20130131 1 900000000000207008 473415003 en 900000000000003001 Intrauterine contraceptive device submitted as specimen (specimen) 900000000000020002 +2956728016 20170731 1 900000000000207008 473415003 en 900000000000003001 Intrauterine contraceptive device submitted as specimen (specimen) 900000000000448009 +2956730019 20130131 1 900000000000207008 473408006 en 900000000000013009 Umbilical artery catheter submitted as specimen 900000000000020002 +2956730019 20170731 1 900000000000207008 473408006 en 900000000000013009 Umbilical artery catheter submitted as specimen 900000000000448009 +2956733017 20130131 1 900000000000207008 473403002 en 900000000000013009 Percutaneous nephrostomy catheter tip submitted as specimen 900000000000020002 +2956733017 20170731 1 900000000000207008 473403002 en 900000000000013009 Percutaneous nephrostomy catheter tip submitted as specimen 900000000000448009 +2956734011 20130131 1 900000000000207008 473403002 en 900000000000013009 Percutaneous nephrostomy tube tip submitted as specimen 900000000000020002 +2956734011 20170731 1 900000000000207008 473403002 en 900000000000013009 Percutaneous nephrostomy tube tip submitted as specimen 900000000000448009 +2956740016 20130131 1 900000000000207008 473412000 en 900000000000003001 Endotracheal tube submitted as specimen (specimen) 900000000000020002 +2956740016 20170731 1 900000000000207008 473412000 en 900000000000003001 Endotracheal tube submitted as specimen (specimen) 900000000000448009 +2956743019 20130131 1 900000000000207008 473405009 en 900000000000003001 Cerebrospinal fluid specimen obtained from Rickham reservoir (specimen) 900000000000020002 +2956745014 20130131 1 900000000000207008 473399006 en 900000000000013009 Swab from Tenckhoff catheter exit site 900000000000020002 +2956756014 20130131 1 900000000000207008 473410008 en 900000000000013009 Peripheral vascular catheter submitted as specimen 900000000000020002 +2956756014 20170731 1 900000000000207008 473410008 en 900000000000013009 Peripheral vascular catheter submitted as specimen 900000000000448009 +2956758010 20130131 1 900000000000207008 473407001 en 900000000000003001 Peripherally inserted central catheter submitted as specimen (specimen) 900000000000020002 +2956758010 20170731 1 900000000000207008 473407001 en 900000000000003001 Peripherally inserted central catheter submitted as specimen (specimen) 900000000000448009 +2956760012 20130131 1 900000000000207008 473400004 en 900000000000013009 Swab from tooth 900000000000020002 +2956760012 20170731 1 900000000000207008 473400004 en 900000000000013009 Swab from tooth 900000000000448009 +2956764015 20130131 1 900000000000207008 473403002 en 900000000000003001 Percutaneous nephrostomy tube tip submitted as specimen (specimen) 900000000000020002 +2956764015 20170731 1 900000000000207008 473403002 en 900000000000003001 Percutaneous nephrostomy tube tip submitted as specimen (specimen) 900000000000448009 +2956767010 20130131 1 900000000000207008 473406005 en 900000000000013009 Shunt submitted as specimen 900000000000020002 +2956767010 20170731 1 900000000000207008 473406005 en 900000000000013009 Shunt submitted as specimen 900000000000448009 +2956770014 20130131 1 900000000000207008 473400004 en 900000000000003001 Swab from tooth (specimen) 900000000000020002 +2956770014 20170731 1 900000000000207008 473400004 en 900000000000003001 Swab from tooth (specimen) 900000000000448009 +2956771013 20130131 1 900000000000207008 473404008 en 900000000000003001 Rickham reservoir submitted as specimen (specimen) 900000000000020002 +2956771013 20170731 1 900000000000207008 473404008 en 900000000000003001 Rickham reservoir submitted as specimen (specimen) 900000000000448009 +2956772018 20130131 1 900000000000207008 473417006 en 900000000000013009 Cardiac pacemaker lead submitted as specimen 900000000000020002 +2956772018 20170731 1 900000000000207008 473417006 en 900000000000013009 Cardiac pacemaker lead submitted as specimen 900000000000448009 +2956774017 20130131 1 900000000000207008 473414004 en 900000000000013009 Intracranial pressure catheter submitted as specimen 900000000000020002 +2956774017 20170731 1 900000000000207008 473414004 en 900000000000013009 Intracranial pressure catheter submitted as specimen 900000000000448009 +2956780013 20130131 1 900000000000207008 473432004 en 900000000000013009 Settle plate submitted as specimen 900000000000020002 +2956780013 20170731 1 900000000000207008 473432004 en 900000000000013009 Settle plate submitted as specimen 900000000000448009 +2956781012 20130131 1 900000000000207008 473408006 en 900000000000003001 Umbilical artery catheter submitted as specimen (specimen) 900000000000020002 +2956781012 20170731 1 900000000000207008 473408006 en 900000000000003001 Umbilical artery catheter submitted as specimen (specimen) 900000000000448009 +2956782017 20130131 1 900000000000207008 473409003 en 900000000000003001 Central venous catheter submitted as specimen (specimen) 900000000000020002 +2956782017 20170731 1 900000000000207008 473409003 en 900000000000003001 Central venous catheter submitted as specimen (specimen) 900000000000448009 +2956783010 20130131 1 900000000000207008 473416002 en 900000000000013009 Nephrostomy catheter submitted as specimen 900000000000020002 +2956783010 20170731 1 900000000000207008 473416002 en 900000000000013009 Nephrostomy catheter submitted as specimen 900000000000448009 +2956796011 20130131 1 900000000000207008 473401000 en 900000000000003001 Cotton wool ball submitted as specimen (specimen) 900000000000020002 +2956796011 20170731 1 900000000000207008 473401000 en 900000000000003001 Cotton wool ball submitted as specimen (specimen) 900000000000448009 +2956798012 20130131 1 900000000000207008 473417006 en 900000000000003001 Cardiac pacemaker lead submitted as specimen (specimen) 900000000000020002 +2956798012 20170731 1 900000000000207008 473417006 en 900000000000003001 Cardiac pacemaker lead submitted as specimen (specimen) 900000000000448009 +2956800017 20130131 1 900000000000207008 473432004 en 900000000000003001 Settle culture plate submitted as specimen (specimen) 900000000000020002 +2956800017 20170731 1 900000000000207008 473432004 en 900000000000003001 Settle culture plate submitted as specimen (specimen) 900000000000448009 +2956801018 20130131 1 900000000000207008 473414004 en 900000000000003001 Intracranial pressure catheter submitted as specimen (specimen) 900000000000020002 +2956801018 20170731 1 900000000000207008 473414004 en 900000000000003001 Intracranial pressure catheter submitted as specimen (specimen) 900000000000448009 +2956802013 20130131 1 900000000000207008 473413005 en 900000000000003001 Central venous catheter from internal jugular vein submitted as specimen (specimen) 900000000000020002 +2956802013 20170731 1 900000000000207008 473413005 en 900000000000003001 Central venous catheter from internal jugular vein submitted as specimen (specimen) 900000000000448009 +2956804014 20130131 1 900000000000207008 473411007 en 900000000000003001 External ventricular drain tip submitted as specimen (specimen) 900000000000020002 +2956804014 20170731 1 900000000000207008 473411007 en 900000000000003001 External ventricular drain tip submitted as specimen (specimen) 900000000000448009 +2956806011 20130131 1 900000000000207008 473432004 en 900000000000013009 Settle culture plate submitted as specimen 900000000000020002 +2956806011 20170731 1 900000000000207008 473432004 en 900000000000013009 Settle culture plate submitted as specimen 900000000000448009 +2956810014 20130131 1 900000000000207008 473409003 en 900000000000013009 Central venous catheter submitted as specimen 900000000000020002 +2956810014 20170731 1 900000000000207008 473409003 en 900000000000013009 Central venous catheter submitted as specimen 900000000000448009 +2956814017 20130131 1 900000000000207008 473433009 en 900000000000013009 Protected specimen brush submitted as specimen 900000000000020002 +2956814017 20170731 1 900000000000207008 473433009 en 900000000000013009 Protected specimen brush submitted as specimen 900000000000448009 +2956818019 20130131 1 900000000000207008 473404008 en 900000000000013009 Rickham reservoir submitted as specimen 900000000000020002 +2956818019 20170731 1 900000000000207008 473404008 en 900000000000013009 Rickham reservoir submitted as specimen 900000000000448009 +2956819010 20130131 1 900000000000207008 473411007 en 900000000000013009 External ventricular drain tip submitted as specimen 900000000000020002 +2956819010 20170731 1 900000000000207008 473411007 en 900000000000013009 External ventricular drain tip submitted as specimen 900000000000448009 +2956822012 20130131 1 900000000000207008 473406005 en 900000000000003001 Shunt submitted as specimen (specimen) 900000000000020002 +2956822012 20170731 1 900000000000207008 473406005 en 900000000000003001 Shunt submitted as specimen (specimen) 900000000000448009 +2956828011 20130131 1 900000000000207008 473410008 en 900000000000003001 Peripheral vascular catheter submitted as specimen (specimen) 900000000000020002 +2956828011 20170731 1 900000000000207008 473410008 en 900000000000003001 Peripheral vascular catheter submitted as specimen (specimen) 900000000000448009 +2956945019 20130131 1 900000000000207008 444656005 en 900000000000013009 Tube drain submitted as specimen 900000000000020002 +2956945019 20170731 1 900000000000207008 444656005 en 900000000000013009 Tube drain submitted as specimen 900000000000448009 +2956947010 20130131 1 900000000000207008 472877004 en 900000000000013009 Esophageal swab 900000000000020002 +2956947010 20170731 1 900000000000207008 472877004 en 900000000000013009 Esophageal swab 900000000000448009 +2956949013 20130131 1 900000000000207008 472877004 en 900000000000013009 Oesophageal swab 900000000000020002 +2956949013 20170731 1 900000000000207008 472877004 en 900000000000013009 Oesophageal swab 900000000000448009 +2956951012 20130131 1 900000000000207008 472861000 en 900000000000013009 Swab from testis 900000000000020002 +2956951012 20170731 1 900000000000207008 472861000 en 900000000000013009 Swab from testis 900000000000448009 +2956952017 20130131 1 900000000000207008 472874006 en 900000000000013009 Uterine swab 900000000000020002 +2956952017 20170731 1 900000000000207008 472874006 en 900000000000013009 Uterine swab 900000000000448009 +2958116012 20130731 1 900000000000207008 608856009 en 900000000000003001 Specimen from perirenal tissue (specimen) 900000000000020002 +2958116012 20170731 1 900000000000207008 608856009 en 900000000000003001 Specimen from perirenal tissue (specimen) 900000000000448009 +2958186019 20130731 1 900000000000207008 608852006 en 900000000000003001 Specimen from nervous system (specimen) 900000000000020002 +2958186019 20170731 1 900000000000207008 608852006 en 900000000000003001 Specimen from nervous system (specimen) 900000000000448009 +2958236015 20130731 1 900000000000207008 608870009 en 900000000000013009 Specimen from female genital tract 900000000000020002 +2958236015 20170731 1 900000000000207008 608870009 en 900000000000013009 Specimen from female genital tract 900000000000448009 +2958285013 20130731 1 900000000000207008 608858005 en 900000000000003001 Specimen from periureteral tissue (specimen) 900000000000020002 +2958285013 20170731 1 900000000000207008 608858005 en 900000000000003001 Specimen from periureteral tissue (specimen) 900000000000448009 +2958317011 20130731 1 900000000000207008 608860007 en 900000000000013009 Specimen from perivesical tissue 900000000000020002 +2958317011 20170731 1 900000000000207008 608860007 en 900000000000013009 Specimen from perivesical tissue 900000000000448009 +2958441013 20130731 1 900000000000207008 608860007 en 900000000000003001 Specimen from perivesical tissue (specimen) 900000000000020002 +2958441013 20170731 1 900000000000207008 608860007 en 900000000000003001 Specimen from perivesical tissue (specimen) 900000000000448009 +2958502013 20130731 1 900000000000207008 608842007 en 900000000000013009 Specimen from upper gastrointestinal tract 900000000000020002 +2958502013 20170731 1 900000000000207008 608842007 en 900000000000013009 Specimen from upper gastrointestinal tract 900000000000448009 +2958653017 20130731 1 900000000000207008 608856009 en 900000000000013009 Specimen from perirenal tissue 900000000000020002 +2958653017 20170731 1 900000000000207008 608856009 en 900000000000013009 Specimen from perirenal tissue 900000000000448009 +2958736016 20130731 1 900000000000207008 608868000 en 900000000000013009 Specimen from endocrine gland 900000000000020002 +2958736016 20170731 1 900000000000207008 608868000 en 900000000000013009 Specimen from endocrine gland 900000000000448009 +2958783019 20130731 1 900000000000207008 608858005 en 900000000000013009 Specimen from periureteral tissue 900000000000020002 +2958783019 20170731 1 900000000000207008 608858005 en 900000000000013009 Specimen from periureteral tissue 900000000000448009 +2958792016 20130731 1 900000000000207008 119325001 en 900000000000013009 Tissue specimen from skin 900000000000020002 +2958792016 20170731 1 900000000000207008 119325001 en 900000000000013009 Tissue specimen from skin 900000000000448009 +2958799013 20130731 1 900000000000207008 608842007 en 900000000000003001 Specimen from upper gastrointestinal tract (specimen) 900000000000020002 +2958799013 20170731 1 900000000000207008 608842007 en 900000000000003001 Specimen from upper gastrointestinal tract (specimen) 900000000000448009 +2958910019 20130731 1 900000000000207008 608868000 en 900000000000003001 Specimen from endocrine gland (specimen) 900000000000020002 +2958910019 20170731 1 900000000000207008 608868000 en 900000000000003001 Specimen from endocrine gland (specimen) 900000000000448009 +2958986015 20130731 1 900000000000207008 608870009 en 900000000000003001 Specimen from female genital tract (specimen) 900000000000020002 +2958986015 20170731 1 900000000000207008 608870009 en 900000000000003001 Specimen from female genital tract (specimen) 900000000000448009 +2959019013 20130731 1 900000000000207008 608840004 en 900000000000013009 Specimen from lower gastrointestinal tract 900000000000020002 +2959019013 20170731 1 900000000000207008 608840004 en 900000000000013009 Specimen from lower gastrointestinal tract 900000000000448009 +2959044017 20130731 1 900000000000207008 608852006 en 900000000000013009 Specimen from nervous system 900000000000020002 +2959044017 20170731 1 900000000000207008 608852006 en 900000000000013009 Specimen from nervous system 900000000000448009 +2959217015 20130731 1 900000000000207008 608969007 en 900000000000003001 Specimen from skin (specimen) 900000000000020002 +2959217015 20170731 1 900000000000207008 608969007 en 900000000000003001 Specimen from skin (specimen) 900000000000448009 +2959233017 20130731 1 900000000000207008 608840004 en 900000000000003001 Specimen from lower gastrointestinal tract (specimen) 900000000000020002 +2959233017 20170731 1 900000000000207008 608840004 en 900000000000003001 Specimen from lower gastrointestinal tract (specimen) 900000000000448009 +2959335014 20130731 1 900000000000207008 608969007 en 900000000000013009 Specimen from skin 900000000000020002 +2959335014 20170731 1 900000000000207008 608969007 en 900000000000013009 Specimen from skin 900000000000448009 +2968368012 20140131 1 900000000000207008 697988001 en 900000000000003001 Soft stool specimen (specimen) 900000000000020002 +2968368012 20170731 1 900000000000207008 697988001 en 900000000000003001 Soft stool specimen (specimen) 900000000000448009 +2968369016 20140131 1 900000000000207008 697989009 en 900000000000013009 Anterior nares swab 900000000000020002 +2968369016 20170731 1 900000000000207008 697989009 en 900000000000013009 Anterior nares swab 900000000000448009 +2968374012 20140131 1 900000000000207008 697989009 en 900000000000003001 Anterior nares swab (specimen) 900000000000020002 +2968374012 20170731 1 900000000000207008 697989009 en 900000000000003001 Anterior nares swab (specimen) 900000000000448009 +2968379019 20140131 1 900000000000207008 697988001 en 900000000000013009 Soft stool sample 900000000000020002 +2968379019 20170731 1 900000000000207008 697988001 en 900000000000013009 Soft stool sample 900000000000448009 +2968394015 20140131 1 900000000000207008 278020009 en 900000000000013009 Spot urine 900000000000020002 +2968394015 20170731 1 900000000000207008 278020009 en 900000000000013009 Spot urine 900000000000448009 +2968403016 20140131 1 900000000000207008 697988001 en 900000000000013009 Soft feces 900000000000020002 +2968403016 20170731 1 900000000000207008 697988001 en 900000000000013009 Soft feces 900000000000448009 +2968404010 20140131 1 900000000000207008 697988001 en 900000000000013009 Soft stool specimen 900000000000020002 +2968404010 20170731 1 900000000000207008 697988001 en 900000000000013009 Soft stool specimen 900000000000448009 +2973776011 20140131 1 900000000000207008 698276005 en 900000000000013009 First void urine sample 900000000000020002 +2973776011 20170731 1 900000000000207008 698276005 en 900000000000013009 First void urine sample 900000000000448009 +2973783016 20140131 1 900000000000207008 698276005 en 900000000000013009 First void urine specimen 900000000000020002 +2973783016 20170731 1 900000000000207008 698276005 en 900000000000013009 First void urine specimen 900000000000448009 +2973785011 20140131 1 900000000000207008 698276005 en 900000000000013009 First stream urine sample 900000000000020002 +2973785011 20170731 1 900000000000207008 698276005 en 900000000000013009 First stream urine sample 900000000000448009 +2973811018 20140131 1 900000000000207008 698276005 en 900000000000003001 First stream urine sample (specimen) 900000000000020002 +2973811018 20170731 1 900000000000207008 698276005 en 900000000000003001 First stream urine sample (specimen) 900000000000448009 +2973811018 20220630 0 900000000000207008 698276005 en 900000000000003001 First stream urine sample (specimen) 900000000000448009 +2983497016 20140131 1 900000000000207008 699284001 en 900000000000003001 Early morning mid-stream urine specimen obtained by clean catch procedure (specimen) 900000000000020002 +2983497016 20170731 1 900000000000207008 699284001 en 900000000000003001 Early morning mid-stream urine specimen obtained by clean catch procedure (specimen) 900000000000448009 +2983498014 20140131 1 900000000000207008 699285000 en 900000000000013009 Urine specimen obtained from bladder via cystoscopy 900000000000020002 +2983498014 20170731 1 900000000000207008 699285000 en 900000000000013009 Urine specimen obtained from bladder via cystoscopy 900000000000448009 +2983502019 20140131 1 900000000000207008 699283007 en 900000000000003001 Mid-stream urine specimen obtained by single catheterization of bladder (specimen) 900000000000020002 +2983502019 20170731 1 900000000000207008 699283007 en 900000000000003001 Mid-stream urine specimen obtained by single catheterization of bladder (specimen) 900000000000448009 +2983502019 20240101 0 900000000000207008 699283007 en 900000000000003001 Mid-stream urine specimen obtained by single catheterization of bladder (specimen) 900000000000448009 +2983513016 20140131 1 900000000000207008 699284001 en 900000000000013009 Early morning mid-stream urine specimen obtained by clean catch procedure 900000000000020002 +2983513016 20170731 1 900000000000207008 699284001 en 900000000000013009 Early morning mid-stream urine specimen obtained by clean catch procedure 900000000000448009 +2983523013 20140131 1 900000000000207008 699286004 en 900000000000013009 Urine specimen obtained from kidney via aspiration 900000000000020002 +2983523013 20170731 1 900000000000207008 699286004 en 900000000000013009 Urine specimen obtained from kidney via aspiration 900000000000448009 +2983531015 20140131 1 900000000000207008 699287008 en 900000000000013009 Urine specimen obtained via suprapubic indwelling urinary catheter 900000000000020002 +2983531015 20170731 1 900000000000207008 699287008 en 900000000000013009 Urine specimen obtained via suprapubic indwelling urinary catheter 900000000000448009 +2983533017 20140131 1 900000000000207008 699283007 en 900000000000013009 Mid-stream urine specimen obtained by single catheterization of bladder 900000000000020002 +2983533017 20170731 1 900000000000207008 699283007 en 900000000000013009 Mid-stream urine specimen obtained by single catheterization of bladder 900000000000448009 +2983541017 20140131 1 900000000000207008 699283007 en 900000000000013009 Mid-stream urine specimen obtained by single catheterisation of bladder 900000000000020002 +2983541017 20170731 1 900000000000207008 699283007 en 900000000000013009 Mid-stream urine specimen obtained by single catheterisation of bladder 900000000000448009 +2983553018 20140131 1 900000000000207008 699287008 en 900000000000003001 Urine specimen obtained via suprapubic indwelling urinary catheter (specimen) 900000000000020002 +2983553018 20170731 1 900000000000207008 699287008 en 900000000000003001 Urine specimen obtained via suprapubic indwelling urinary catheter (specimen) 900000000000448009 +2985788018 20140131 1 900000000000207008 122619005 en 900000000000013009 Thoracentesis fluid sample 900000000000020002 +2985788018 20170731 1 900000000000207008 122619005 en 900000000000013009 Thoracentesis fluid sample 900000000000448009 +2985954016 20140131 1 900000000000207008 699868006 en 900000000000003001 Suture material submitted as specimen (specimen) 900000000000020002 +2985954016 20170731 1 900000000000207008 699868006 en 900000000000003001 Suture material submitted as specimen (specimen) 900000000000448009 +2985968011 20140131 1 900000000000207008 699868006 en 900000000000013009 Suture material submitted as specimen 900000000000020002 +2985968011 20170731 1 900000000000207008 699868006 en 900000000000013009 Suture material submitted as specimen 900000000000448009 +2986014014 20140131 1 900000000000207008 699874006 en 900000000000013009 Tissue specimen from pericardium 900000000000020002 +2986014014 20170731 1 900000000000207008 699874006 en 900000000000013009 Tissue specimen from pericardium 900000000000448009 +2986040015 20140131 1 900000000000207008 699874006 en 900000000000003001 Tissue specimen from pericardium (specimen) 900000000000020002 +2986040015 20170731 1 900000000000207008 699874006 en 900000000000003001 Tissue specimen from pericardium (specimen) 900000000000448009 +2987082013 20140131 1 900000000000207008 472885008 en 900000000000013009 Swab from pressure ulcer 900000000000020002 +2987082013 20170731 1 900000000000207008 472885008 en 900000000000013009 Swab from pressure ulcer 900000000000448009 +2987082013 20230630 0 900000000000207008 472885008 en 900000000000013009 Swab from pressure ulcer 900000000000448009 +2987108013 20140131 1 900000000000207008 472885008 en 900000000000003001 Swab from pressure ulcer (specimen) 900000000000020002 +2987108013 20170731 1 900000000000207008 472885008 en 900000000000003001 Swab from pressure ulcer (specimen) 900000000000448009 +2987108013 20221231 0 900000000000207008 472885008 en 900000000000003001 Swab from pressure ulcer (specimen) 900000000000448009 +2987653011 20140131 1 900000000000207008 699285000 en 900000000000003001 Urine specimen obtained from bladder by cystoscopy (specimen) 900000000000020002 +2987653011 20170731 1 900000000000207008 699285000 en 900000000000003001 Urine specimen obtained from bladder by cystoscopy (specimen) 900000000000448009 +2987653011 20240101 0 900000000000207008 699285000 en 900000000000003001 Urine specimen obtained from bladder by cystoscopy (specimen) 900000000000448009 +2987676014 20140131 1 900000000000207008 699286004 en 900000000000003001 Urine specimen obtained from kidney by aspiration (specimen) 900000000000020002 +2987676014 20170731 1 900000000000207008 699286004 en 900000000000003001 Urine specimen obtained from kidney by aspiration (specimen) 900000000000448009 +3005735015 20140731 1 900000000000207008 702701006 en 900000000000013009 Specimen from cervix or vagina 900000000000020002 +3005735015 20170731 1 900000000000207008 702701006 en 900000000000013009 Specimen from cervix or vagina 900000000000448009 +3005776012 20140731 1 900000000000207008 702701006 en 900000000000003001 Specimen from cervix or vagina (specimen) 900000000000020002 +3005776012 20170731 1 900000000000207008 702701006 en 900000000000003001 Specimen from cervix or vagina (specimen) 900000000000448009 +3008571016 20140731 1 900000000000207008 703431007 en 900000000000013009 Venous cord blood specimen 900000000000020002 +3008571016 20170731 1 900000000000207008 703431007 en 900000000000013009 Venous cord blood specimen 900000000000448009 +3008649016 20140731 1 900000000000207008 703431007 en 900000000000003001 Venous cord blood specimen (specimen) 900000000000020002 +3008649016 20170731 1 900000000000207008 703431007 en 900000000000003001 Venous cord blood specimen (specimen) 900000000000448009 +3008666019 20140731 1 900000000000207008 703475006 en 900000000000003001 Tissue specimen from nodule (specimen) 900000000000020002 +3008666019 20170731 1 900000000000207008 703475006 en 900000000000003001 Tissue specimen from nodule (specimen) 900000000000448009 +3008668018 20140731 1 900000000000207008 703475006 en 900000000000013009 Tissue specimen from nodule 900000000000020002 +3008668018 20170731 1 900000000000207008 703475006 en 900000000000013009 Tissue specimen from nodule 900000000000448009 +3008670010 20140731 1 900000000000207008 703430008 en 900000000000013009 Arterial cord blood specimen 900000000000020002 +3008670010 20170731 1 900000000000207008 703430008 en 900000000000013009 Arterial cord blood specimen 900000000000448009 +3008680014 20140731 1 900000000000207008 703432000 en 900000000000013009 Venous plasma specimen 900000000000020002 +3008680014 20170731 1 900000000000207008 703432000 en 900000000000013009 Venous plasma specimen 900000000000448009 +3008681013 20140731 1 900000000000207008 703432000 en 900000000000003001 Venous plasma specimen (specimen) 900000000000020002 +3008681013 20170731 1 900000000000207008 703432000 en 900000000000003001 Venous plasma specimen (specimen) 900000000000448009 +3008693016 20140731 1 900000000000207008 703430008 en 900000000000003001 Arterial cord blood specimen (specimen) 900000000000020002 +3008693016 20170731 1 900000000000207008 703430008 en 900000000000003001 Arterial cord blood specimen (specimen) 900000000000448009 +3009170016 20140731 1 900000000000207008 703691002 en 900000000000013009 Spun CSF 900000000000020002 +3009356013 20140731 1 900000000000207008 703691002 en 900000000000003001 Spun cerebrospinal fluid (specimen) 900000000000020002 +3009356013 20170731 1 900000000000207008 703691002 en 900000000000003001 Spun cerebrospinal fluid (specimen) 900000000000448009 +3009500013 20140731 1 900000000000207008 703691002 en 900000000000013009 Spun cerebrospinal fluid 900000000000020002 +3009500013 20170731 1 900000000000207008 703691002 en 900000000000013009 Spun cerebrospinal fluid 900000000000448009 +3010673019 20150131 1 900000000000207008 309502007 en 900000000000013009 Foetus specimen 900000000000020002 +3010673019 20170731 1 900000000000207008 309502007 en 900000000000013009 Foetus specimen 900000000000448009 +3011433011 20150131 1 900000000000207008 431234000 en 900000000000013009 Specimen from foetus obtained by biopsy 900000000000020002 +3011433011 20170731 1 900000000000207008 431234000 en 900000000000013009 Specimen from foetus obtained by biopsy 900000000000448009 +3011866018 20150131 1 900000000000207008 704243004 en 900000000000003001 Animal head specimen (specimen) 900000000000020002 +3011866018 20170731 1 900000000000207008 704243004 en 900000000000003001 Animal head specimen (specimen) 900000000000448009 +3012161012 20150131 1 900000000000207008 110968003 en 900000000000013009 Foetal cytologic material 900000000000020002 +3012161012 20170731 1 900000000000207008 110968003 en 900000000000013009 Foetal cytologic material 900000000000448009 +3012208014 20150131 1 900000000000207008 704243004 en 900000000000013009 Animal head specimen 900000000000020002 +3012208014 20170731 1 900000000000207008 704243004 en 900000000000013009 Animal head specimen 900000000000448009 +3013927015 20150131 1 900000000000207008 704663000 en 900000000000013009 Worm 900000000000020002 +3013927015 20170731 1 900000000000207008 704663000 en 900000000000013009 Worm 900000000000448009 +3014030019 20150131 1 900000000000207008 704663000 en 900000000000013009 Parasitic worm specimen 900000000000020002 +3014030019 20170731 1 900000000000207008 704663000 en 900000000000013009 Parasitic worm specimen 900000000000448009 +3014118010 20150131 1 900000000000207008 704663000 en 900000000000003001 Parasitic worm specimen (specimen) 900000000000020002 +3014118010 20170731 1 900000000000207008 704663000 en 900000000000003001 Parasitic worm specimen (specimen) 900000000000448009 +3014929010 20150131 1 900000000000207008 699286004 en 900000000000013009 Urine specimen obtained from kidney by aspiration 900000000000020002 +3014929010 20170731 1 900000000000207008 699286004 en 900000000000013009 Urine specimen obtained from kidney by aspiration 900000000000448009 +3014976018 20150131 1 900000000000207008 699285000 en 900000000000013009 Urine specimen obtained from bladder by cystoscopy 900000000000020002 +3014976018 20170731 1 900000000000207008 699285000 en 900000000000013009 Urine specimen obtained from bladder by cystoscopy 900000000000448009 +3015437018 20150131 1 900000000000207008 705054005 en 900000000000013009 Muscle specimen 900000000000020002 +3015437018 20170731 1 900000000000207008 705054005 en 900000000000013009 Muscle specimen 900000000000448009 +3015445011 20150131 1 900000000000207008 705054005 en 900000000000003001 Muscle specimen (specimen) 900000000000020002 +3015445011 20170731 1 900000000000207008 705054005 en 900000000000003001 Muscle specimen (specimen) 900000000000448009 +3032864013 20150131 1 900000000000207008 708112008 en 900000000000003001 Retrouterine pouch fluid aspirate (specimen) 900000000000020002 +3032864013 20170731 1 900000000000207008 708112008 en 900000000000003001 Retrouterine pouch fluid aspirate (specimen) 900000000000448009 +3032865014 20150131 1 900000000000207008 708111001 en 900000000000003001 Untreated water specimen (specimen) 900000000000020002 +3032865014 20170731 1 900000000000207008 708111001 en 900000000000003001 Untreated water specimen (specimen) 900000000000448009 +3032906013 20150131 1 900000000000207008 708110000 en 900000000000013009 Treated water specimen 900000000000020002 +3032906013 20170731 1 900000000000207008 708110000 en 900000000000013009 Treated water specimen 900000000000448009 +3032926012 20150131 1 900000000000207008 708110000 en 900000000000013009 Treated water sample 900000000000020002 +3032926012 20170731 1 900000000000207008 708110000 en 900000000000013009 Treated water sample 900000000000448009 +3032928013 20150131 1 900000000000207008 708112008 en 900000000000013009 Retrouterine pouch fluid aspirate 900000000000020002 +3032928013 20170731 1 900000000000207008 708112008 en 900000000000013009 Retrouterine pouch fluid aspirate 900000000000448009 +3032937013 20150131 1 900000000000207008 708048008 en 900000000000013009 Plasma specimen with citrate 900000000000020002 +3032937013 20170731 1 900000000000207008 708048008 en 900000000000013009 Plasma specimen with citrate 900000000000448009 +3032957012 20150131 1 900000000000207008 708110000 en 900000000000003001 Treated water specimen (specimen) 900000000000020002 +3032957012 20170731 1 900000000000207008 708110000 en 900000000000003001 Treated water specimen (specimen) 900000000000448009 +3033001013 20150131 1 900000000000207008 708049000 en 900000000000013009 Plasma specimen with EDTA (ethylenediaminetetraacetic acid) 900000000000020002 +3033010017 20150131 1 900000000000207008 708048008 en 900000000000003001 Plasma specimen with citrate (specimen) 900000000000020002 +3033010017 20170731 1 900000000000207008 708048008 en 900000000000003001 Plasma specimen with citrate (specimen) 900000000000448009 +3033024018 20150131 1 900000000000207008 708111001 en 900000000000013009 Untreated water sample 900000000000020002 +3033024018 20170731 1 900000000000207008 708111001 en 900000000000013009 Untreated water sample 900000000000448009 +3033045013 20150131 1 900000000000207008 708049000 en 900000000000013009 Plasma specimen with ethylenediaminetetraacetic acid 900000000000020002 +3033045013 20170731 1 900000000000207008 708049000 en 900000000000013009 Plasma specimen with ethylenediaminetetraacetic acid 900000000000448009 +3033046014 20150131 1 900000000000207008 708111001 en 900000000000013009 Untreated water specimen 900000000000020002 +3033046014 20170731 1 900000000000207008 708111001 en 900000000000013009 Untreated water specimen 900000000000448009 +3033480018 20150131 1 900000000000207008 708317005 en 900000000000003001 Pooled specimen from vaginal introitus and rectal swab (specimen) 900000000000020002 +3033480018 20170731 1 900000000000207008 708317005 en 900000000000003001 Pooled specimen from vaginal introitus and rectal swab (specimen) 900000000000448009 +3033563019 20150131 1 900000000000207008 708049000 en 900000000000013009 Plasma specimen with ethylenediamine tetraacetic acid 900000000000020002 +3033563019 20170731 1 900000000000207008 708049000 en 900000000000013009 Plasma specimen with ethylenediamine tetraacetic acid 900000000000448009 +3033564013 20150131 1 900000000000207008 708285007 en 900000000000013009 Tissue impression smear sample 900000000000020002 +3033564013 20170731 1 900000000000207008 708285007 en 900000000000013009 Tissue impression smear sample 900000000000448009 +3033650015 20150131 1 900000000000207008 708112008 en 900000000000013009 Pouch of Douglas fluid aspirate 900000000000020002 +3033720019 20150131 1 900000000000207008 708285007 en 900000000000003001 Tissue impression smear sample (specimen) 900000000000020002 +3033720019 20170731 1 900000000000207008 708285007 en 900000000000003001 Tissue impression smear sample (specimen) 900000000000448009 +3033720019 20220630 0 900000000000207008 708285007 en 900000000000003001 Tissue impression smear sample (specimen) 900000000000448009 +3033945011 20150131 1 900000000000207008 708049000 en 900000000000003001 Plasma specimen with ethylenediamine tetraacetic acid (specimen) 900000000000020002 +3033945011 20170731 1 900000000000207008 708049000 en 900000000000003001 Plasma specimen with ethylenediamine tetraacetic acid (specimen) 900000000000448009 +3034018018 20150131 1 900000000000207008 708317005 en 900000000000013009 Pooled specimen from vaginal introitus and rectal swab 900000000000020002 +3034018018 20170731 1 900000000000207008 708317005 en 900000000000013009 Pooled specimen from vaginal introitus and rectal swab 900000000000448009 +3034120018 20150131 1 900000000000207008 708317005 en 900000000000013009 Combined vaginal and rectal swab 900000000000020002 +3034120018 20170731 1 900000000000207008 708317005 en 900000000000013009 Combined vaginal and rectal swab 900000000000448009 +3034262017 20150131 1 900000000000207008 708285007 en 900000000000013009 Touch preparation smear sample 900000000000020002 +3034262017 20170731 1 900000000000207008 708285007 en 900000000000013009 Touch preparation smear sample 900000000000448009 +3037290011 20150731 1 900000000000207008 709024005 en 900000000000003001 Paint chip sample (specimen) 900000000000020002 +3037290011 20170731 1 900000000000207008 709024005 en 900000000000003001 Paint chip sample (specimen) 900000000000448009 +3037290011 20220630 0 900000000000207008 709024005 en 900000000000003001 Paint chip sample (specimen) 900000000000448009 +3037639017 20150731 1 900000000000207008 709024005 en 900000000000013009 Paint chip sample 900000000000020002 +3037639017 20170731 1 900000000000207008 709024005 en 900000000000013009 Paint chip sample 900000000000448009 +3082203010 20150731 1 900000000000207008 710069003 en 900000000000003001 Tick specimen (specimen) 900000000000020002 +3082203010 20170731 1 900000000000207008 710069003 en 900000000000003001 Tick specimen (specimen) 900000000000448009 +3082204016 20150731 1 900000000000207008 710069003 en 900000000000013009 Tick specimen 900000000000020002 +3082204016 20170731 1 900000000000207008 710069003 en 900000000000013009 Tick specimen 900000000000448009 +3082205015 20150731 1 900000000000207008 710069003 en 900000000000013009 Tick sample 900000000000020002 +3082205015 20170731 1 900000000000207008 710069003 en 900000000000013009 Tick sample 900000000000448009 +3082343019 20150731 1 900000000000207008 16213651000119102 en 900000000000003001 Duodenal ulcer sample (specimen) 900000000000020002 +3082343019 20170731 1 900000000000207008 16213651000119102 en 900000000000003001 Duodenal ulcer sample (specimen) 900000000000448009 +3082343019 20220630 0 900000000000207008 16213651000119102 en 900000000000003001 Duodenal ulcer sample (specimen) 900000000000448009 +3082344013 20150731 1 900000000000207008 16213651000119102 en 900000000000013009 Duodenal ulcer sample 900000000000020002 +3082344013 20170731 1 900000000000207008 16213651000119102 en 900000000000013009 Duodenal ulcer sample 900000000000448009 +3082347018 20150731 1 900000000000207008 16210531000119104 en 900000000000003001 Labia ulcer sample (specimen) 900000000000020002 +3082347018 20170731 1 900000000000207008 16210531000119104 en 900000000000003001 Labia ulcer sample (specimen) 900000000000448009 +3082347018 20220630 0 900000000000207008 16210531000119104 en 900000000000003001 Labia ulcer sample (specimen) 900000000000448009 +3082348011 20150731 1 900000000000207008 16210531000119104 en 900000000000013009 Labia ulcer sample 900000000000020002 +3082348011 20170731 1 900000000000207008 16210531000119104 en 900000000000013009 Labia ulcer sample 900000000000448009 +3082351016 20150731 1 900000000000207008 16212851000119106 en 900000000000003001 Specimen from corneal ulcer (specimen) 900000000000020002 +3082351016 20170731 1 900000000000207008 16212851000119106 en 900000000000003001 Specimen from corneal ulcer (specimen) 900000000000448009 +3082352011 20150731 1 900000000000207008 16212851000119106 en 900000000000013009 Specimen from corneal ulcer 900000000000020002 +3082352011 20170731 1 900000000000207008 16212851000119106 en 900000000000013009 Specimen from corneal ulcer 900000000000448009 +3082396011 20150731 1 900000000000207008 16216371000119105 en 900000000000003001 Anal smear sample (specimen) 900000000000020002 +3082396011 20170731 1 900000000000207008 16216371000119105 en 900000000000003001 Anal smear sample (specimen) 900000000000448009 +3082396011 20220630 0 900000000000207008 16216371000119105 en 900000000000003001 Anal smear sample (specimen) 900000000000448009 +3082397019 20150731 1 900000000000207008 16216371000119105 en 900000000000013009 Anal smear sample 900000000000020002 +3082397019 20170731 1 900000000000207008 16216371000119105 en 900000000000013009 Anal smear sample 900000000000448009 +3082398012 20150731 1 900000000000207008 16216331000119107 en 900000000000003001 Cerebrospinal fluid smear sample (specimen) 900000000000020002 +3082398012 20170731 1 900000000000207008 16216331000119107 en 900000000000003001 Cerebrospinal fluid smear sample (specimen) 900000000000448009 +3082398012 20220630 0 900000000000207008 16216331000119107 en 900000000000003001 Cerebrospinal fluid smear sample (specimen) 900000000000448009 +3082399016 20150731 1 900000000000207008 16216331000119107 en 900000000000013009 Cerebrospinal fluid smear sample 900000000000020002 +3082399016 20170731 1 900000000000207008 16216331000119107 en 900000000000013009 Cerebrospinal fluid smear sample 900000000000448009 +3082400011 20150731 1 900000000000207008 16216411000119106 en 900000000000003001 Conjunctival smear sample (specimen) 900000000000020002 +3082400011 20170731 1 900000000000207008 16216411000119106 en 900000000000003001 Conjunctival smear sample (specimen) 900000000000448009 +3082400011 20220630 0 900000000000207008 16216411000119106 en 900000000000003001 Conjunctival smear sample (specimen) 900000000000448009 +3082401010 20150731 1 900000000000207008 16216411000119106 en 900000000000013009 Conjunctival smear sample 900000000000020002 +3082401010 20170731 1 900000000000207008 16216411000119106 en 900000000000013009 Conjunctival smear sample 900000000000448009 +3082402015 20150731 1 900000000000207008 16215131000119100 en 900000000000003001 Endocervical smear sample (specimen) 900000000000020002 +3082402015 20170731 1 900000000000207008 16215131000119100 en 900000000000003001 Endocervical smear sample (specimen) 900000000000448009 +3082402015 20220630 0 900000000000207008 16215131000119100 en 900000000000003001 Endocervical smear sample (specimen) 900000000000448009 +3082403013 20150731 1 900000000000207008 16215131000119100 en 900000000000013009 Endocervical smear sample 900000000000020002 +3082403013 20170731 1 900000000000207008 16215131000119100 en 900000000000013009 Endocervical smear sample 900000000000448009 +3082404019 20150731 1 900000000000207008 16216291000119101 en 900000000000003001 Labia smear sample (specimen) 900000000000020002 +3082404019 20170731 1 900000000000207008 16216291000119101 en 900000000000003001 Labia smear sample (specimen) 900000000000448009 +3082404019 20220630 0 900000000000207008 16216291000119101 en 900000000000003001 Labia smear sample (specimen) 900000000000448009 +3082405018 20150731 1 900000000000207008 16216291000119101 en 900000000000013009 Labia smear sample 900000000000020002 +3082405018 20170731 1 900000000000207008 16216291000119101 en 900000000000013009 Labia smear sample 900000000000448009 +3082488019 20150731 1 900000000000207008 16220971000119101 en 900000000000003001 Specimen of fluid from cyst of kidney (specimen) 900000000000020002 +3082488019 20170731 1 900000000000207008 16220971000119101 en 900000000000003001 Specimen of fluid from cyst of kidney (specimen) 900000000000448009 +3082489010 20150731 1 900000000000207008 16220971000119101 en 900000000000013009 Specimen of fluid from cyst of kidney 900000000000020002 +3082489010 20170731 1 900000000000207008 16220971000119101 en 900000000000013009 Specimen of fluid from cyst of kidney 900000000000448009 +3082490018 20150731 1 900000000000207008 16223971000119109 en 900000000000003001 Synovial fluid specimen obtained by fine needle aspiration procedure (specimen) 900000000000020002 +3082490018 20170731 1 900000000000207008 16223971000119109 en 900000000000003001 Synovial fluid specimen obtained by fine needle aspiration procedure (specimen) 900000000000448009 +3082491019 20150731 1 900000000000207008 16223971000119109 en 900000000000013009 Synovial fluid specimen obtained by fine needle aspiration procedure 900000000000020002 +3082491019 20170731 1 900000000000207008 16223971000119109 en 900000000000013009 Synovial fluid specimen obtained by fine needle aspiration procedure 900000000000448009 +3082492014 20150731 1 900000000000207008 16223931000119106 en 900000000000003001 Vitreous humor specimen obtained by fine needle aspiration procedure (specimen) 900000000000020002 +3082492014 20170731 1 900000000000207008 16223931000119106 en 900000000000003001 Vitreous humor specimen obtained by fine needle aspiration procedure (specimen) 900000000000448009 +3082493016 20150731 1 900000000000207008 16223931000119106 en 900000000000013009 Vitreous humor specimen obtained by fine needle aspiration procedure 900000000000020002 +3082493016 20170731 1 900000000000207008 16223931000119106 en 900000000000013009 Vitreous humor specimen obtained by fine needle aspiration procedure 900000000000448009 +3082494010 20150731 1 900000000000207008 16223931000119106 en 900000000000013009 Vitreous humour specimen obtained by fine needle aspiration procedure 900000000000020002 +3082494010 20170731 1 900000000000207008 16223931000119106 en 900000000000013009 Vitreous humour specimen obtained by fine needle aspiration procedure 900000000000448009 +3082495011 20150731 1 900000000000207008 16215211000119100 en 900000000000003001 Bartholin gland fluid specimen (specimen) 900000000000017005 +3082496012 20150731 1 900000000000207008 16215211000119100 en 900000000000013009 Bartholin gland fluid specimen 900000000000017005 +3082499017 20150731 1 900000000000207008 16210251000119108 en 900000000000003001 Body fluid specimen obtained via Jackson-Pratt drain (specimen) 900000000000020002 +3082500014 20150731 1 900000000000207008 16210251000119108 en 900000000000013009 Body fluid specimen obtained via Jackson-Pratt drain 900000000000020002 +3082501013 20150731 1 900000000000207008 16209291000119109 en 900000000000003001 Brain cyst fluid sample (specimen) 900000000000020002 +3082501013 20170731 1 900000000000207008 16209291000119109 en 900000000000003001 Brain cyst fluid sample (specimen) 900000000000448009 +3082501013 20220630 0 900000000000207008 16209291000119109 en 900000000000003001 Brain cyst fluid sample (specimen) 900000000000448009 +3082502018 20150731 1 900000000000207008 16209291000119109 en 900000000000013009 Brain cyst fluid sample 900000000000020002 +3082502018 20170731 1 900000000000207008 16209291000119109 en 900000000000013009 Brain cyst fluid sample 900000000000448009 +3082503011 20150731 1 900000000000207008 16209251000119104 en 900000000000003001 Central nervous system cyst fluid sample (specimen) 900000000000020002 +3082503011 20170731 1 900000000000207008 16209251000119104 en 900000000000003001 Central nervous system cyst fluid sample (specimen) 900000000000448009 +3082503011 20220630 0 900000000000207008 16209251000119104 en 900000000000003001 Central nervous system cyst fluid sample (specimen) 900000000000448009 +3082504017 20150731 1 900000000000207008 16209251000119104 en 900000000000013009 Central nervous system cyst fluid sample 900000000000020002 +3082504017 20170731 1 900000000000207008 16209251000119104 en 900000000000013009 Central nervous system cyst fluid sample 900000000000448009 +3082505016 20150731 1 900000000000207008 16210291000119103 en 900000000000003001 Gastric fluid specimen obtained by drainage (specimen) 900000000000020002 +3082505016 20170731 1 900000000000207008 16210291000119103 en 900000000000003001 Gastric fluid specimen obtained by drainage (specimen) 900000000000448009 +3082506015 20150731 1 900000000000207008 16210291000119103 en 900000000000013009 Gastric fluid specimen obtained by drainage 900000000000020002 +3082506015 20170731 1 900000000000207008 16210291000119103 en 900000000000013009 Gastric fluid specimen obtained by drainage 900000000000448009 +3082507012 20150731 1 900000000000207008 16210331000119109 en 900000000000003001 Gastric fluid specimen obtained via gastrostomy tube (specimen) 900000000000020002 +3082507012 20170731 1 900000000000207008 16210331000119109 en 900000000000003001 Gastric fluid specimen obtained via gastrostomy tube (specimen) 900000000000448009 +3082508019 20150731 1 900000000000207008 16210331000119109 en 900000000000013009 Gastric fluid specimen obtained via gastrostomy tube 900000000000020002 +3082508019 20170731 1 900000000000207008 16210331000119109 en 900000000000013009 Gastric fluid specimen obtained via gastrostomy tube 900000000000448009 +3082509010 20150731 1 900000000000207008 16214171000119101 en 900000000000003001 Genital fluid specimen (specimen) 900000000000020002 +3082509010 20170731 1 900000000000207008 16214171000119101 en 900000000000003001 Genital fluid specimen (specimen) 900000000000448009 +3082510017 20150731 1 900000000000207008 16214171000119101 en 900000000000013009 Genital fluid specimen 900000000000020002 +3082510017 20170731 1 900000000000207008 16214171000119101 en 900000000000013009 Genital fluid specimen 900000000000448009 +3082511018 20150731 1 900000000000207008 16210371000119107 en 900000000000003001 Jejunal fluid specimen obtained by drainage (specimen) 900000000000020002 +3082511018 20170731 1 900000000000207008 16210371000119107 en 900000000000003001 Jejunal fluid specimen obtained by drainage (specimen) 900000000000448009 +3082512013 20150731 1 900000000000207008 16210371000119107 en 900000000000013009 Jejunal fluid specimen obtained by drainage 900000000000020002 +3082512013 20170731 1 900000000000207008 16210371000119107 en 900000000000013009 Jejunal fluid specimen obtained by drainage 900000000000448009 +3082513015 20150731 1 900000000000207008 16224371000119105 en 900000000000003001 Nasal lavage fluid sample (specimen) 900000000000020002 +3082513015 20170731 1 900000000000207008 16224371000119105 en 900000000000003001 Nasal lavage fluid sample (specimen) 900000000000448009 +3082513015 20220630 0 900000000000207008 16224371000119105 en 900000000000003001 Nasal lavage fluid sample (specimen) 900000000000448009 +3082514014 20150731 1 900000000000207008 16224371000119105 en 900000000000013009 Nasal lavage fluid sample 900000000000020002 +3082514014 20170731 1 900000000000207008 16224371000119105 en 900000000000013009 Nasal lavage fluid sample 900000000000448009 +3082515010 20150731 1 900000000000207008 16220931000119104 en 900000000000003001 Pancreas cyst fluid sample (specimen) 900000000000020002 +3082515010 20170731 1 900000000000207008 16220931000119104 en 900000000000003001 Pancreas cyst fluid sample (specimen) 900000000000448009 +3082515010 20220630 0 900000000000207008 16220931000119104 en 900000000000003001 Pancreas cyst fluid sample (specimen) 900000000000448009 +3082516011 20150731 1 900000000000207008 16220931000119104 en 900000000000013009 Pancreas cyst fluid sample 900000000000020002 +3082516011 20170731 1 900000000000207008 16220931000119104 en 900000000000013009 Pancreas cyst fluid sample 900000000000448009 +3082523012 20150731 1 900000000000207008 16215611000119102 en 900000000000003001 Specimen from right lower lobe of lung obtained by bronchial aspiration procedure (specimen) 900000000000020002 +3082523012 20170731 1 900000000000207008 16215611000119102 en 900000000000003001 Specimen from right lower lobe of lung obtained by bronchial aspiration procedure (specimen) 900000000000448009 +3082524018 20150731 1 900000000000207008 16215611000119102 en 900000000000013009 Specimen from right lower lobe of lung obtained by bronchial aspiration procedure 900000000000020002 +3082524018 20170731 1 900000000000207008 16215611000119102 en 900000000000013009 Specimen from right lower lobe of lung obtained by bronchial aspiration procedure 900000000000448009 +3082525017 20150731 1 900000000000207008 16212531000119103 en 900000000000003001 Specimen from right lower lobe of lung obtained by bronchial brushings procedure (specimen) 900000000000020002 +3082525017 20170731 1 900000000000207008 16212531000119103 en 900000000000003001 Specimen from right lower lobe of lung obtained by bronchial brushings procedure (specimen) 900000000000448009 +3082526016 20150731 1 900000000000207008 16212531000119103 en 900000000000013009 Specimen from right lower lobe of lung obtained by bronchial brushings procedure 900000000000020002 +3082526016 20170731 1 900000000000207008 16212531000119103 en 900000000000013009 Specimen from right lower lobe of lung obtained by bronchial brushings procedure 900000000000448009 +3082527013 20150731 1 900000000000207008 16215291000119109 en 900000000000003001 Specimen from right lower lobe of lung obtained by bronchial washing procedure (specimen) 900000000000020002 +3082527013 20170731 1 900000000000207008 16215291000119109 en 900000000000003001 Specimen from right lower lobe of lung obtained by bronchial washing procedure (specimen) 900000000000448009 +3082528015 20150731 1 900000000000207008 16215291000119109 en 900000000000013009 Specimen from right lower lobe of lung obtained by bronchial washing procedure 900000000000020002 +3082528015 20170731 1 900000000000207008 16215291000119109 en 900000000000013009 Specimen from right lower lobe of lung obtained by bronchial washing procedure 900000000000448009 +3082529011 20150731 1 900000000000207008 16209931000119102 en 900000000000003001 Specimen from right lower lobe of lung obtained by bronchoalveolar lavage procedure (specimen) 900000000000020002 +3082529011 20170731 1 900000000000207008 16209931000119102 en 900000000000003001 Specimen from right lower lobe of lung obtained by bronchoalveolar lavage procedure (specimen) 900000000000448009 +3082530018 20150731 1 900000000000207008 16209931000119102 en 900000000000013009 Specimen from right lower lobe of lung obtained by bronchoalveolar lavage procedure 900000000000020002 +3082530018 20170731 1 900000000000207008 16209931000119102 en 900000000000013009 Specimen from right lower lobe of lung obtained by bronchoalveolar lavage procedure 900000000000448009 +3082531019 20150731 1 900000000000207008 16214611000119101 en 900000000000003001 Specimen from right lower lobe of lung obtained by endobronchial biopsy (specimen) 900000000000020002 +3082531019 20170731 1 900000000000207008 16214611000119101 en 900000000000003001 Specimen from right lower lobe of lung obtained by endobronchial biopsy (specimen) 900000000000448009 +3082532014 20150731 1 900000000000207008 16214611000119101 en 900000000000013009 Specimen from right lower lobe of lung obtained by endobronchial biopsy 900000000000020002 +3082532014 20170731 1 900000000000207008 16214611000119101 en 900000000000013009 Specimen from right lower lobe of lung obtained by endobronchial biopsy 900000000000448009 +3082533016 20150731 1 900000000000207008 16214491000119107 en 900000000000003001 Specimen from right lung obtained by fine needle aspiration procedure (specimen) 900000000000020002 +3082533016 20170731 1 900000000000207008 16214491000119107 en 900000000000003001 Specimen from right lung obtained by fine needle aspiration procedure (specimen) 900000000000448009 +3082534010 20150731 1 900000000000207008 16214491000119107 en 900000000000013009 Specimen from right lung obtained by fine needle aspiration procedure 900000000000020002 +3082534010 20170731 1 900000000000207008 16214491000119107 en 900000000000013009 Specimen from right lung obtained by fine needle aspiration procedure 900000000000448009 +3082535011 20150731 1 900000000000207008 16215571000119106 en 900000000000003001 Specimen from right middle lobe of lung obtained by bronchial aspiration procedure (specimen) 900000000000020002 +3082535011 20170731 1 900000000000207008 16215571000119106 en 900000000000003001 Specimen from right middle lobe of lung obtained by bronchial aspiration procedure (specimen) 900000000000448009 +3082536012 20150731 1 900000000000207008 16215571000119106 en 900000000000013009 Specimen from right middle lobe of lung obtained by bronchial aspiration procedure 900000000000020002 +3082536012 20170731 1 900000000000207008 16215571000119106 en 900000000000013009 Specimen from right middle lobe of lung obtained by bronchial aspiration procedure 900000000000448009 +3082537015 20150731 1 900000000000207008 16212571000119100 en 900000000000003001 Specimen from right middle lobe of lung obtained by bronchial brushings procedure (specimen) 900000000000020002 +3082537015 20170731 1 900000000000207008 16212571000119100 en 900000000000003001 Specimen from right middle lobe of lung obtained by bronchial brushings procedure (specimen) 900000000000448009 +3082538013 20150731 1 900000000000207008 16212571000119100 en 900000000000013009 Specimen from right middle lobe of lung obtained by bronchial brushings procedure 900000000000020002 +3082538013 20170731 1 900000000000207008 16212571000119100 en 900000000000013009 Specimen from right middle lobe of lung obtained by bronchial brushings procedure 900000000000448009 +3082539017 20150731 1 900000000000207008 16215451000119103 en 900000000000003001 Specimen from right middle lobe of lung obtained by bronchial washing procedure (specimen) 900000000000020002 +3082539017 20170731 1 900000000000207008 16215451000119103 en 900000000000003001 Specimen from right middle lobe of lung obtained by bronchial washing procedure (specimen) 900000000000448009 +3082540015 20150731 1 900000000000207008 16215451000119103 en 900000000000013009 Specimen from right middle lobe of lung obtained by bronchial washing procedure 900000000000020002 +3082540015 20170731 1 900000000000207008 16215451000119103 en 900000000000013009 Specimen from right middle lobe of lung obtained by bronchial washing procedure 900000000000448009 +3082541016 20150731 1 900000000000207008 16209891000119105 en 900000000000003001 Specimen from right middle lobe of lung obtained by bronchoalveolar lavage procedure (specimen) 900000000000020002 +3082541016 20170731 1 900000000000207008 16209891000119105 en 900000000000003001 Specimen from right middle lobe of lung obtained by bronchoalveolar lavage procedure (specimen) 900000000000448009 +3082542011 20150731 1 900000000000207008 16209891000119105 en 900000000000013009 Specimen from right middle lobe of lung obtained by bronchoalveolar lavage procedure 900000000000020002 +3082542011 20170731 1 900000000000207008 16209891000119105 en 900000000000013009 Specimen from right middle lobe of lung obtained by bronchoalveolar lavage procedure 900000000000448009 +3082543018 20150731 1 900000000000207008 16214531000119107 en 900000000000003001 Specimen from right middle lobe of lung obtained by endobronchial biopsy (specimen) 900000000000020002 +3082543018 20170731 1 900000000000207008 16214531000119107 en 900000000000003001 Specimen from right middle lobe of lung obtained by endobronchial biopsy (specimen) 900000000000448009 +3082544012 20150731 1 900000000000207008 16214531000119107 en 900000000000013009 Specimen from right middle lobe of lung obtained by endobronchial biopsy 900000000000020002 +3082544012 20170731 1 900000000000207008 16214531000119107 en 900000000000013009 Specimen from right middle lobe of lung obtained by endobronchial biopsy 900000000000448009 +3082545013 20150731 1 900000000000207008 16215691000119106 en 900000000000003001 Specimen from right upper lobe of lung obtained by bronchial aspiration procedure (specimen) 900000000000020002 +3082545013 20170731 1 900000000000207008 16215691000119106 en 900000000000003001 Specimen from right upper lobe of lung obtained by bronchial aspiration procedure (specimen) 900000000000448009 +3082546014 20150731 1 900000000000207008 16215691000119106 en 900000000000013009 Specimen from right upper lobe of lung obtained by bronchial aspiration procedure 900000000000020002 +3082546014 20170731 1 900000000000207008 16215691000119106 en 900000000000013009 Specimen from right upper lobe of lung obtained by bronchial aspiration procedure 900000000000448009 +3082547017 20150731 1 900000000000207008 16212411000119107 en 900000000000003001 Specimen from right upper lobe of lung obtained by bronchial brushings procedure (specimen) 900000000000020002 +3082547017 20170731 1 900000000000207008 16212411000119107 en 900000000000003001 Specimen from right upper lobe of lung obtained by bronchial brushings procedure (specimen) 900000000000448009 +3082548010 20150731 1 900000000000207008 16212411000119107 en 900000000000013009 Specimen from right upper lobe of lung obtained by bronchial brushings procedure 900000000000020002 +3082548010 20170731 1 900000000000207008 16212411000119107 en 900000000000013009 Specimen from right upper lobe of lung obtained by bronchial brushings procedure 900000000000448009 +3082549019 20150731 1 900000000000207008 16215251000119104 en 900000000000003001 Specimen from right upper lobe of lung obtained by bronchial washing procedure (specimen) 900000000000020002 +3082549019 20170731 1 900000000000207008 16215251000119104 en 900000000000003001 Specimen from right upper lobe of lung obtained by bronchial washing procedure (specimen) 900000000000448009 +3082550019 20150731 1 900000000000207008 16215251000119104 en 900000000000013009 Specimen from right upper lobe of lung obtained by bronchial washing procedure 900000000000020002 +3082550019 20170731 1 900000000000207008 16215251000119104 en 900000000000013009 Specimen from right upper lobe of lung obtained by bronchial washing procedure 900000000000448009 +3082551015 20150731 1 900000000000207008 16209851000119100 en 900000000000003001 Specimen from right upper lobe of lung obtained by bronchoalveolar lavage procedure (specimen) 900000000000020002 +3082551015 20170731 1 900000000000207008 16209851000119100 en 900000000000003001 Specimen from right upper lobe of lung obtained by bronchoalveolar lavage procedure (specimen) 900000000000448009 +3082552010 20150731 1 900000000000207008 16209851000119100 en 900000000000013009 Specimen from right upper lobe of lung obtained by bronchoalveolar lavage procedure 900000000000020002 +3082552010 20170731 1 900000000000207008 16209851000119100 en 900000000000013009 Specimen from right upper lobe of lung obtained by bronchoalveolar lavage procedure 900000000000448009 +3082553017 20150731 1 900000000000207008 16214291000119108 en 900000000000003001 Specimen from right upper lobe of lung obtained by endobronchial biopsy (specimen) 900000000000020002 +3082553017 20170731 1 900000000000207008 16214291000119108 en 900000000000003001 Specimen from right upper lobe of lung obtained by endobronchial biopsy (specimen) 900000000000448009 +3082554011 20150731 1 900000000000207008 16214291000119108 en 900000000000013009 Specimen from right upper lobe of lung obtained by endobronchial biopsy 900000000000020002 +3082554011 20170731 1 900000000000207008 16214291000119108 en 900000000000013009 Specimen from right upper lobe of lung obtained by endobronchial biopsy 900000000000448009 +3082555012 20150731 1 900000000000207008 16209691000119106 en 900000000000003001 Specimen from left lung obtained by blind bronchioloalveolar lavage procedure (specimen) 900000000000020002 +3082555012 20170731 1 900000000000207008 16209691000119106 en 900000000000003001 Specimen from left lung obtained by blind bronchioloalveolar lavage procedure (specimen) 900000000000448009 +3082556013 20150731 1 900000000000207008 16209691000119106 en 900000000000013009 Specimen from left lung obtained by blind bronchioloalveolar lavage procedure 900000000000020002 +3082556013 20170731 1 900000000000207008 16209691000119106 en 900000000000013009 Specimen from left lung obtained by blind bronchioloalveolar lavage procedure 900000000000448009 +3082557016 20150731 1 900000000000207008 16209731000119104 en 900000000000003001 Specimen from right lung obtained by blind bronchioloalveolar lavage procedure (specimen) 900000000000020002 +3082557016 20170731 1 900000000000207008 16209731000119104 en 900000000000003001 Specimen from right lung obtained by blind bronchioloalveolar lavage procedure (specimen) 900000000000448009 +3082558014 20150731 1 900000000000207008 16209731000119104 en 900000000000013009 Specimen from right lung obtained by blind bronchioloalveolar lavage procedure 900000000000020002 +3082558014 20170731 1 900000000000207008 16209731000119104 en 900000000000013009 Specimen from right lung obtained by blind bronchioloalveolar lavage procedure 900000000000448009 +3082562015 20150731 1 900000000000207008 16215651000119101 en 900000000000003001 Specimen from left lower lobe of lung obtained by bronchial aspiration procedure (specimen) 900000000000020002 +3082562015 20170731 1 900000000000207008 16215651000119101 en 900000000000003001 Specimen from left lower lobe of lung obtained by bronchial aspiration procedure (specimen) 900000000000448009 +3082563013 20150731 1 900000000000207008 16215651000119101 en 900000000000013009 Specimen from left lower lobe of lung obtained by bronchial aspiration procedure 900000000000020002 +3082563013 20170731 1 900000000000207008 16215651000119101 en 900000000000013009 Specimen from left lower lobe of lung obtained by bronchial aspiration procedure 900000000000448009 +3082564019 20150731 1 900000000000207008 16212451000119108 en 900000000000003001 Specimen from left lower lobe of lung obtained by bronchial brushings procedure (specimen) 900000000000020002 +3082564019 20170731 1 900000000000207008 16212451000119108 en 900000000000003001 Specimen from left lower lobe of lung obtained by bronchial brushings procedure (specimen) 900000000000448009 +3082565018 20150731 1 900000000000207008 16212451000119108 en 900000000000013009 Specimen from left lower lobe of lung obtained by bronchial brushings procedure 900000000000020002 +3082565018 20170731 1 900000000000207008 16212451000119108 en 900000000000013009 Specimen from left lower lobe of lung obtained by bronchial brushings procedure 900000000000448009 +3082566017 20150731 1 900000000000207008 16215411000119104 en 900000000000003001 Specimen from left lower lobe of lung obtained by bronchial washing procedure (specimen) 900000000000020002 +3082566017 20170731 1 900000000000207008 16215411000119104 en 900000000000003001 Specimen from left lower lobe of lung obtained by bronchial washing procedure (specimen) 900000000000448009 +3082567014 20150731 1 900000000000207008 16215411000119104 en 900000000000013009 Specimen from left lower lobe of lung obtained by bronchial washing procedure 900000000000020002 +3082567014 20170731 1 900000000000207008 16215411000119104 en 900000000000013009 Specimen from left lower lobe of lung obtained by bronchial washing procedure 900000000000448009 +3082568016 20150731 1 900000000000207008 16209771000119101 en 900000000000003001 Specimen from left lower lobe of lung obtained by bronchoalveolar lavage procedure (specimen) 900000000000020002 +3082568016 20170731 1 900000000000207008 16209771000119101 en 900000000000003001 Specimen from left lower lobe of lung obtained by bronchoalveolar lavage procedure (specimen) 900000000000448009 +3082569012 20150731 1 900000000000207008 16209771000119101 en 900000000000013009 Specimen from left lower lobe of lung obtained by bronchoalveolar lavage procedure 900000000000020002 +3082569012 20170731 1 900000000000207008 16209771000119101 en 900000000000013009 Specimen from left lower lobe of lung obtained by bronchoalveolar lavage procedure 900000000000448009 +3082570013 20150731 1 900000000000207008 16214571000119105 en 900000000000003001 Specimen from left lower lobe of lung obtained by endobronchial biopsy (specimen) 900000000000020002 +3082570013 20170731 1 900000000000207008 16214571000119105 en 900000000000003001 Specimen from left lower lobe of lung obtained by endobronchial biopsy (specimen) 900000000000448009 +3082571012 20150731 1 900000000000207008 16214571000119105 en 900000000000013009 Specimen from left lower lobe of lung obtained by endobronchial biopsy 900000000000020002 +3082571012 20170731 1 900000000000207008 16214571000119105 en 900000000000013009 Specimen from left lower lobe of lung obtained by endobronchial biopsy 900000000000448009 +3082572017 20150731 1 900000000000207008 16214451000119102 en 900000000000003001 Specimen from left lung obtained by fine needle aspiration procedure (specimen) 900000000000020002 +3082572017 20170731 1 900000000000207008 16214451000119102 en 900000000000003001 Specimen from left lung obtained by fine needle aspiration procedure (specimen) 900000000000448009 +3082573010 20150731 1 900000000000207008 16214451000119102 en 900000000000013009 Specimen from left lung obtained by fine needle aspiration procedure 900000000000020002 +3082573010 20170731 1 900000000000207008 16214451000119102 en 900000000000013009 Specimen from left lung obtained by fine needle aspiration procedure 900000000000448009 +3082574016 20150731 1 900000000000207008 16215531000119108 en 900000000000003001 Specimen from left upper lobe of lung obtained by bronchial aspiration procedure (specimen) 900000000000020002 +3082574016 20170731 1 900000000000207008 16215531000119108 en 900000000000003001 Specimen from left upper lobe of lung obtained by bronchial aspiration procedure (specimen) 900000000000448009 +3082575015 20150731 1 900000000000207008 16215531000119108 en 900000000000013009 Specimen from left upper lobe of lung obtained by bronchial aspiration procedure 900000000000020002 +3082575015 20170731 1 900000000000207008 16215531000119108 en 900000000000013009 Specimen from left upper lobe of lung obtained by bronchial aspiration procedure 900000000000448009 +3082576019 20150731 1 900000000000207008 16212491000119103 en 900000000000003001 Specimen from left upper lobe of lung obtained by bronchial brushings procedure (specimen) 900000000000020002 +3082576019 20170731 1 900000000000207008 16212491000119103 en 900000000000003001 Specimen from left upper lobe of lung obtained by bronchial brushings procedure (specimen) 900000000000448009 +3082577011 20150731 1 900000000000207008 16212491000119103 en 900000000000013009 Specimen from left upper lobe of lung obtained by bronchial brushings procedure 900000000000020002 +3082577011 20170731 1 900000000000207008 16212491000119103 en 900000000000013009 Specimen from left upper lobe of lung obtained by bronchial brushings procedure 900000000000448009 +3082578018 20150731 1 900000000000207008 16215331000119103 en 900000000000003001 Specimen from left upper lobe of lung obtained by bronchial washing procedure (specimen) 900000000000020002 +3082578018 20170731 1 900000000000207008 16215331000119103 en 900000000000003001 Specimen from left upper lobe of lung obtained by bronchial washing procedure (specimen) 900000000000448009 +3082579014 20150731 1 900000000000207008 16215331000119103 en 900000000000013009 Specimen from left upper lobe of lung obtained by bronchial washing procedure 900000000000020002 +3082579014 20170731 1 900000000000207008 16215331000119103 en 900000000000013009 Specimen from left upper lobe of lung obtained by bronchial washing procedure 900000000000448009 +3082580012 20150731 1 900000000000207008 16209811000119101 en 900000000000003001 Specimen from left upper lobe of lung obtained by bronchoalveolar lavage procedure (specimen) 900000000000020002 +3082580012 20170731 1 900000000000207008 16209811000119101 en 900000000000003001 Specimen from left upper lobe of lung obtained by bronchoalveolar lavage procedure (specimen) 900000000000448009 +3082581011 20150731 1 900000000000207008 16209811000119101 en 900000000000013009 Specimen from left upper lobe of lung obtained by bronchoalveolar lavage procedure 900000000000020002 +3082581011 20170731 1 900000000000207008 16209811000119101 en 900000000000013009 Specimen from left upper lobe of lung obtained by bronchoalveolar lavage procedure 900000000000448009 +3082582016 20150731 1 900000000000207008 16214411000119103 en 900000000000003001 Specimen from left upper lobe of lung obtained by endobronchial biopsy (specimen) 900000000000020002 +3082582016 20170731 1 900000000000207008 16214411000119103 en 900000000000003001 Specimen from left upper lobe of lung obtained by endobronchial biopsy (specimen) 900000000000448009 +3082583014 20150731 1 900000000000207008 16214411000119103 en 900000000000013009 Specimen from left upper lobe of lung obtained by endobronchial biopsy 900000000000020002 +3082583014 20170731 1 900000000000207008 16214411000119103 en 900000000000013009 Specimen from left upper lobe of lung obtained by endobronchial biopsy 900000000000448009 +3082584015 20150731 1 900000000000207008 16214651000119100 en 900000000000003001 Specimen from lingula obtained by endobronchial biopsy (specimen) 900000000000020002 +3082584015 20170731 1 900000000000207008 16214651000119100 en 900000000000003001 Specimen from lingula obtained by endobronchial biopsy (specimen) 900000000000448009 +3082585019 20150731 1 900000000000207008 16214651000119100 en 900000000000013009 Specimen from lingula obtained by endobronchial biopsy 900000000000020002 +3082585019 20170731 1 900000000000207008 16214651000119100 en 900000000000013009 Specimen from lingula obtained by endobronchial biopsy 900000000000448009 +3082586018 20150731 1 900000000000207008 16214331000119102 en 900000000000003001 Specimen from lingula obtained by transbronchial biopsy (specimen) 900000000000020002 +3082586018 20170731 1 900000000000207008 16214331000119102 en 900000000000003001 Specimen from lingula obtained by transbronchial biopsy (specimen) 900000000000448009 +3082587010 20150731 1 900000000000207008 16214331000119102 en 900000000000013009 Specimen from lingula obtained by transbronchial biopsy 900000000000020002 +3082587010 20170731 1 900000000000207008 16214331000119102 en 900000000000013009 Specimen from lingula obtained by transbronchial biopsy 900000000000448009 +3082590016 20150731 1 900000000000207008 16216251000119106 en 900000000000003001 Specimen from lung obtained by aspiration (specimen) 900000000000020002 +3082590016 20170731 1 900000000000207008 16216251000119106 en 900000000000003001 Specimen from lung obtained by aspiration (specimen) 900000000000448009 +3082591017 20150731 1 900000000000207008 16216251000119106 en 900000000000013009 Specimen from lung obtained by aspiration 900000000000020002 +3082591017 20170731 1 900000000000207008 16216251000119106 en 900000000000013009 Specimen from lung obtained by aspiration 900000000000448009 +3082592012 20150731 1 900000000000207008 16214371000119104 en 900000000000003001 Specimen from lung obtained by needle biopsy (specimen) 900000000000020002 +3082592012 20170731 1 900000000000207008 16214371000119104 en 900000000000003001 Specimen from lung obtained by needle biopsy (specimen) 900000000000448009 +3082593019 20150731 1 900000000000207008 16214371000119104 en 900000000000013009 Specimen from lung obtained by needle biopsy 900000000000020002 +3082593019 20170731 1 900000000000207008 16214371000119104 en 900000000000013009 Specimen from lung obtained by needle biopsy 900000000000448009 +3082612018 20150731 1 900000000000207008 16235301000119101 en 900000000000003001 Specimen from sentinel lymph node of breast (specimen) 900000000000020002 +3082612018 20170731 1 900000000000207008 16235301000119101 en 900000000000003001 Specimen from sentinel lymph node of breast (specimen) 900000000000448009 +3082613011 20150731 1 900000000000207008 16235301000119101 en 900000000000013009 Specimen from sentinel lymph node of breast 900000000000020002 +3082613011 20170731 1 900000000000207008 16235301000119101 en 900000000000013009 Specimen from sentinel lymph node of breast 900000000000448009 +3082614017 20150731 1 900000000000207008 16214971000119103 en 900000000000003001 Specimen obtained from breast by stereotactically guided needle biopsy (specimen) 900000000000020002 +3082614017 20170731 1 900000000000207008 16214971000119103 en 900000000000003001 Specimen obtained from breast by stereotactically guided needle biopsy (specimen) 900000000000448009 +3082615016 20150731 1 900000000000207008 16214971000119103 en 900000000000013009 Specimen obtained from breast by stereotactically guided needle biopsy 900000000000020002 +3082615016 20170731 1 900000000000207008 16214971000119103 en 900000000000013009 Specimen obtained from breast by stereotactically guided needle biopsy 900000000000448009 +3082616015 20150731 1 900000000000207008 16214691000119105 en 900000000000003001 Specimen obtained from breast by ultrasound guided needle biopsy (specimen) 900000000000020002 +3082616015 20170731 1 900000000000207008 16214691000119105 en 900000000000003001 Specimen obtained from breast by ultrasound guided needle biopsy (specimen) 900000000000448009 +3082617012 20150731 1 900000000000207008 16214691000119105 en 900000000000013009 Specimen obtained from breast by ultrasound guided needle biopsy 900000000000020002 +3082617012 20170731 1 900000000000207008 16214691000119105 en 900000000000013009 Specimen obtained from breast by ultrasound guided needle biopsy 900000000000448009 +3082618019 20150731 1 900000000000207008 16210691000119101 en 900000000000003001 Breast cyst sample (specimen) 900000000000020002 +3082618019 20170731 1 900000000000207008 16210691000119101 en 900000000000003001 Breast cyst sample (specimen) 900000000000448009 +3082618019 20220630 0 900000000000207008 16210691000119101 en 900000000000003001 Breast cyst sample (specimen) 900000000000448009 +3082619010 20150731 1 900000000000207008 16210691000119101 en 900000000000013009 Breast cyst sample 900000000000020002 +3082619010 20170731 1 900000000000207008 16210691000119101 en 900000000000013009 Breast cyst sample 900000000000448009 +3082620016 20150731 1 900000000000207008 16212051000119104 en 900000000000003001 Excised breast ectopic tissue sample (specimen) 900000000000020002 +3082620016 20170731 1 900000000000207008 16212051000119104 en 900000000000003001 Excised breast ectopic tissue sample (specimen) 900000000000448009 +3082621017 20150731 1 900000000000207008 16212051000119104 en 900000000000013009 Excised breast ectopic tissue sample 900000000000020002 +3082621017 20170731 1 900000000000207008 16212051000119104 en 900000000000013009 Excised breast ectopic tissue sample 900000000000448009 +3082622012 20150731 1 900000000000207008 16215491000119108 en 900000000000003001 Specimen from breast duct obtained by excision (specimen) 900000000000020002 +3082622012 20170731 1 900000000000207008 16215491000119108 en 900000000000003001 Specimen from breast duct obtained by excision (specimen) 900000000000448009 +3082623019 20150731 1 900000000000207008 16215491000119108 en 900000000000013009 Specimen from breast duct obtained by excision 900000000000020002 +3082623019 20170731 1 900000000000207008 16215491000119108 en 900000000000013009 Specimen from breast duct obtained by excision 900000000000448009 +3082624013 20150731 1 900000000000207008 16211771000119103 en 900000000000003001 Specimen from breast obtained by mastectomy with axillary contents (specimen) 900000000000020002 +3082624013 20170731 1 900000000000207008 16211771000119103 en 900000000000003001 Specimen from breast obtained by mastectomy with axillary contents (specimen) 900000000000448009 +3082625014 20150731 1 900000000000207008 16211771000119103 en 900000000000013009 Specimen from breast obtained by mastectomy with axillary contents 900000000000020002 +3082625014 20170731 1 900000000000207008 16211771000119103 en 900000000000013009 Specimen from breast obtained by mastectomy with axillary contents 900000000000448009 +3082626010 20150731 1 900000000000207008 16211571000119108 en 900000000000003001 Specimen from breast obtained by resection of anterior margin (specimen) 900000000000020002 +3082626010 20170731 1 900000000000207008 16211571000119108 en 900000000000003001 Specimen from breast obtained by resection of anterior margin (specimen) 900000000000448009 +3082627018 20150731 1 900000000000207008 16211571000119108 en 900000000000013009 Specimen from breast obtained by resection of anterior margin 900000000000020002 +3082627018 20170731 1 900000000000207008 16211571000119108 en 900000000000013009 Specimen from breast obtained by resection of anterior margin 900000000000448009 +3082628011 20150731 1 900000000000207008 16211531000119105 en 900000000000003001 Specimen from breast obtained by resection of inferior margin (specimen) 900000000000020002 +3082628011 20170731 1 900000000000207008 16211531000119105 en 900000000000003001 Specimen from breast obtained by resection of inferior margin (specimen) 900000000000448009 +3082629015 20150731 1 900000000000207008 16211531000119105 en 900000000000013009 Specimen from breast obtained by resection of inferior margin 900000000000020002 +3082629015 20170731 1 900000000000207008 16211531000119105 en 900000000000013009 Specimen from breast obtained by resection of inferior margin 900000000000448009 +3082630013 20150731 1 900000000000207008 16211491000119105 en 900000000000003001 Specimen from breast obtained by resection of lateral margin (specimen) 900000000000020002 +3082630013 20170731 1 900000000000207008 16211491000119105 en 900000000000003001 Specimen from breast obtained by resection of lateral margin (specimen) 900000000000448009 +3082631012 20150731 1 900000000000207008 16211491000119105 en 900000000000013009 Specimen from breast obtained by resection of lateral margin 900000000000020002 +3082631012 20170731 1 900000000000207008 16211491000119105 en 900000000000013009 Specimen from breast obtained by resection of lateral margin 900000000000448009 +3082632017 20150731 1 900000000000207008 16211611000119104 en 900000000000003001 Specimen from breast obtained by resection of medial margin (specimen) 900000000000020002 +3082632017 20170731 1 900000000000207008 16211611000119104 en 900000000000003001 Specimen from breast obtained by resection of medial margin (specimen) 900000000000448009 +3082633010 20150731 1 900000000000207008 16211611000119104 en 900000000000013009 Specimen from breast obtained by resection of medial margin 900000000000020002 +3082633010 20170731 1 900000000000207008 16211611000119104 en 900000000000013009 Specimen from breast obtained by resection of medial margin 900000000000448009 +3082634016 20150731 1 900000000000207008 16211411000119101 en 900000000000003001 Specimen from breast obtained by resection of posterior margin (specimen) 900000000000020002 +3082634016 20170731 1 900000000000207008 16211411000119101 en 900000000000003001 Specimen from breast obtained by resection of posterior margin (specimen) 900000000000448009 +3082635015 20150731 1 900000000000207008 16211411000119101 en 900000000000013009 Specimen from breast obtained by resection of posterior margin 900000000000020002 +3082635015 20170731 1 900000000000207008 16211411000119101 en 900000000000013009 Specimen from breast obtained by resection of posterior margin 900000000000448009 +3082636019 20150731 1 900000000000207008 16211451000119100 en 900000000000003001 Specimen from breast obtained by resection of superior margin (specimen) 900000000000020002 +3082636019 20170731 1 900000000000207008 16211451000119100 en 900000000000003001 Specimen from breast obtained by resection of superior margin (specimen) 900000000000448009 +3082637011 20150731 1 900000000000207008 16211451000119100 en 900000000000013009 Specimen from breast obtained by resection of superior margin 900000000000020002 +3082637011 20170731 1 900000000000207008 16211451000119100 en 900000000000013009 Specimen from breast obtained by resection of superior margin 900000000000448009 +3082638018 20150731 1 900000000000207008 16211731000119101 en 900000000000003001 Specimen from breast with lymph node obtained by modified radical mastectomy (specimen) 900000000000020002 +3082638018 20170731 1 900000000000207008 16211731000119101 en 900000000000003001 Specimen from breast with lymph node obtained by modified radical mastectomy (specimen) 900000000000448009 +3082639014 20150731 1 900000000000207008 16211731000119101 en 900000000000013009 Specimen from breast with lymph node obtained by modified radical mastectomy 900000000000020002 +3082639014 20170731 1 900000000000207008 16211731000119101 en 900000000000013009 Specimen from breast with lymph node obtained by modified radical mastectomy 900000000000448009 +3082640011 20150731 1 900000000000207008 16213891000119106 en 900000000000003001 Specimen from posterior wall of urinary bladder obtained by biopsy (specimen) 900000000000020002 +3082640011 20170731 1 900000000000207008 16213891000119106 en 900000000000003001 Specimen from posterior wall of urinary bladder obtained by biopsy (specimen) 900000000000448009 +3082641010 20150731 1 900000000000207008 16213891000119106 en 900000000000013009 Specimen from posterior wall of urinary bladder obtained by biopsy 900000000000020002 +3082641010 20170731 1 900000000000207008 16213891000119106 en 900000000000013009 Specimen from posterior wall of urinary bladder obtained by biopsy 900000000000448009 +3082642015 20150731 1 900000000000207008 16214011000119105 en 900000000000003001 Specimen from trigone of urinary bladder obtained by biopsy (specimen) 900000000000020002 +3082642015 20170731 1 900000000000207008 16214011000119105 en 900000000000003001 Specimen from trigone of urinary bladder obtained by biopsy (specimen) 900000000000448009 +3082643013 20150731 1 900000000000207008 16214011000119105 en 900000000000013009 Specimen from trigone of urinary bladder obtained by biopsy 900000000000020002 +3082643013 20170731 1 900000000000207008 16214011000119105 en 900000000000013009 Specimen from trigone of urinary bladder obtained by biopsy 900000000000448009 +3082644019 20150731 1 900000000000207008 16223091000119106 en 900000000000003001 Specimen of mucosa of nasal sinus obtained by biopsy (specimen) 900000000000020002 +3082644019 20170731 1 900000000000207008 16223091000119106 en 900000000000003001 Specimen of mucosa of nasal sinus obtained by biopsy (specimen) 900000000000448009 +3082645018 20150731 1 900000000000207008 16223091000119106 en 900000000000013009 Specimen of mucosa of nasal sinus obtained by biopsy 900000000000020002 +3082645018 20170731 1 900000000000207008 16223091000119106 en 900000000000013009 Specimen of mucosa of nasal sinus obtained by biopsy 900000000000448009 +3082646017 20150731 1 900000000000207008 16223491000119100 en 900000000000003001 Tissue specimen obtained by transtracheal biopsy (specimen) 900000000000020002 +3082646017 20170731 1 900000000000207008 16223491000119100 en 900000000000003001 Tissue specimen obtained by transtracheal biopsy (specimen) 900000000000448009 +3082647014 20150731 1 900000000000207008 16223491000119100 en 900000000000013009 Tissue specimen obtained by transtracheal biopsy 900000000000020002 +3082647014 20170731 1 900000000000207008 16223491000119100 en 900000000000013009 Tissue specimen obtained by transtracheal biopsy 900000000000448009 +3082648016 20150731 1 900000000000207008 16213411000119100 en 900000000000003001 Ascending colon biopsy sample (specimen) 900000000000020002 +3082648016 20170731 1 900000000000207008 16213411000119100 en 900000000000003001 Ascending colon biopsy sample (specimen) 900000000000448009 +3082648016 20220630 0 900000000000207008 16213411000119100 en 900000000000003001 Ascending colon biopsy sample (specimen) 900000000000448009 +3082649012 20150731 1 900000000000207008 16213411000119100 en 900000000000013009 Ascending colon biopsy sample 900000000000020002 +3082649012 20170731 1 900000000000207008 16213411000119100 en 900000000000013009 Ascending colon biopsy sample 900000000000448009 +3082650012 20150731 1 900000000000207008 16213491000119109 en 900000000000003001 Cecum biopsy sample (specimen) 900000000000020002 +3082650012 20170731 1 900000000000207008 16213491000119109 en 900000000000003001 Cecum biopsy sample (specimen) 900000000000448009 +3082650012 20220630 0 900000000000207008 16213491000119109 en 900000000000003001 Cecum biopsy sample (specimen) 900000000000448009 +3082651011 20150731 1 900000000000207008 16213491000119109 en 900000000000013009 Cecum biopsy sample 900000000000020002 +3082651011 20170731 1 900000000000207008 16213491000119109 en 900000000000013009 Cecum biopsy sample 900000000000448009 +3082652016 20150731 1 900000000000207008 16213491000119109 en 900000000000013009 Caecum biopsy sample 900000000000020002 +3082652016 20170731 1 900000000000207008 16213491000119109 en 900000000000013009 Caecum biopsy sample 900000000000448009 +3082653014 20150731 1 900000000000207008 16213571000119107 en 900000000000003001 Ileocecal valve biopsy sample (specimen) 900000000000020002 +3082653014 20170731 1 900000000000207008 16213571000119107 en 900000000000003001 Ileocecal valve biopsy sample (specimen) 900000000000448009 +3082653014 20220630 0 900000000000207008 16213571000119107 en 900000000000003001 Ileocecal valve biopsy sample (specimen) 900000000000448009 +3082654015 20150731 1 900000000000207008 16213571000119107 en 900000000000013009 Ileocecal valve biopsy sample 900000000000020002 +3082654015 20170731 1 900000000000207008 16213571000119107 en 900000000000013009 Ileocecal valve biopsy sample 900000000000448009 +3082655019 20150731 1 900000000000207008 16213571000119107 en 900000000000013009 Ileocaecal valve biopsy sample 900000000000020002 +3082655019 20170731 1 900000000000207008 16213571000119107 en 900000000000013009 Ileocaecal valve biopsy sample 900000000000448009 +3082656018 20150731 1 900000000000207008 16213371000119101 en 900000000000003001 Left colic flexure biopsy sample (specimen) 900000000000020002 +3082656018 20170731 1 900000000000207008 16213371000119101 en 900000000000003001 Left colic flexure biopsy sample (specimen) 900000000000448009 +3082656018 20220630 0 900000000000207008 16213371000119101 en 900000000000003001 Left colic flexure biopsy sample (specimen) 900000000000448009 +3082657010 20150731 1 900000000000207008 16213371000119101 en 900000000000013009 Left colic flexure biopsy sample 900000000000020002 +3082657010 20170731 1 900000000000207008 16213371000119101 en 900000000000013009 Left colic flexure biopsy sample 900000000000448009 +3082658017 20150731 1 900000000000207008 16213531000119109 en 900000000000003001 Descending colon biopsy sample (specimen) 900000000000020002 +3082658017 20170731 1 900000000000207008 16213531000119109 en 900000000000003001 Descending colon biopsy sample (specimen) 900000000000448009 +3082658017 20220630 0 900000000000207008 16213531000119109 en 900000000000003001 Descending colon biopsy sample (specimen) 900000000000448009 +3082659013 20150731 1 900000000000207008 16213531000119109 en 900000000000013009 Descending colon biopsy sample 900000000000020002 +3082659013 20170731 1 900000000000207008 16213531000119109 en 900000000000013009 Descending colon biopsy sample 900000000000448009 +3082660015 20150731 1 900000000000207008 16215731000119104 en 900000000000003001 Endocardium biopsy sample (specimen) 900000000000020002 +3082660015 20170731 1 900000000000207008 16215731000119104 en 900000000000003001 Endocardium biopsy sample (specimen) 900000000000448009 +3082660015 20220630 0 900000000000207008 16215731000119104 en 900000000000003001 Endocardium biopsy sample (specimen) 900000000000448009 +3082661016 20150731 1 900000000000207008 16215731000119104 en 900000000000013009 Endocardium biopsy sample 900000000000020002 +3082661016 20170731 1 900000000000207008 16215731000119104 en 900000000000013009 Endocardium biopsy sample 900000000000448009 +3082662011 20150731 1 900000000000207008 16212691000119100 en 900000000000003001 Gingiva biopsy sample (specimen) 900000000000020002 +3082662011 20170731 1 900000000000207008 16212691000119100 en 900000000000003001 Gingiva biopsy sample (specimen) 900000000000448009 +3082662011 20220630 0 900000000000207008 16212691000119100 en 900000000000003001 Gingiva biopsy sample (specimen) 900000000000448009 +3082663018 20150731 1 900000000000207008 16212691000119100 en 900000000000013009 Gingiva biopsy sample 900000000000020002 +3082663018 20170731 1 900000000000207008 16212691000119100 en 900000000000013009 Gingiva biopsy sample 900000000000448009 +3082664012 20150731 1 900000000000207008 16213331000119104 en 900000000000003001 Rectosigmoid colon biopsy sample (specimen) 900000000000020002 +3082664012 20170731 1 900000000000207008 16213331000119104 en 900000000000003001 Rectosigmoid colon biopsy sample (specimen) 900000000000448009 +3082664012 20220630 0 900000000000207008 16213331000119104 en 900000000000003001 Rectosigmoid colon biopsy sample (specimen) 900000000000448009 +3082665013 20150731 1 900000000000207008 16213331000119104 en 900000000000013009 Rectosigmoid colon biopsy sample 900000000000020002 +3082665013 20170731 1 900000000000207008 16213331000119104 en 900000000000013009 Rectosigmoid colon biopsy sample 900000000000448009 +3082666014 20150731 1 900000000000207008 16213451000119104 en 900000000000003001 Right colic flexure biopsy sample (specimen) 900000000000020002 +3082666014 20170731 1 900000000000207008 16213451000119104 en 900000000000003001 Right colic flexure biopsy sample (specimen) 900000000000448009 +3082666014 20220630 0 900000000000207008 16213451000119104 en 900000000000003001 Right colic flexure biopsy sample (specimen) 900000000000448009 +3082667017 20150731 1 900000000000207008 16213451000119104 en 900000000000013009 Right colic flexure biopsy sample 900000000000020002 +3082667017 20170731 1 900000000000207008 16213451000119104 en 900000000000013009 Right colic flexure biopsy sample 900000000000448009 +3082668010 20150731 1 900000000000207008 16214091000119101 en 900000000000003001 Specimen from anterior wall of urinary bladder obtained by biopsy (specimen) 900000000000020002 +3082668010 20170731 1 900000000000207008 16214091000119101 en 900000000000003001 Specimen from anterior wall of urinary bladder obtained by biopsy (specimen) 900000000000448009 +3082669019 20150731 1 900000000000207008 16214091000119101 en 900000000000013009 Specimen from anterior wall of urinary bladder obtained by biopsy 900000000000020002 +3082669019 20170731 1 900000000000207008 16214091000119101 en 900000000000013009 Specimen from anterior wall of urinary bladder obtained by biopsy 900000000000448009 +3082670018 20150731 1 900000000000207008 16211291000119106 en 900000000000003001 Specimen from axilla structure obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +3082670018 20170731 1 900000000000207008 16211291000119106 en 900000000000003001 Specimen from axilla structure obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +3082671019 20150731 1 900000000000207008 16211291000119106 en 900000000000013009 Specimen from axilla structure obtained by fine needle aspiration biopsy 900000000000020002 +3082671019 20170731 1 900000000000207008 16211291000119106 en 900000000000013009 Specimen from axilla structure obtained by fine needle aspiration biopsy 900000000000448009 +3082672014 20150731 1 900000000000207008 16213011000119107 en 900000000000003001 Specimen from bone obtained by core needle biopsy (specimen) 900000000000020002 +3082672014 20170731 1 900000000000207008 16213011000119107 en 900000000000003001 Specimen from bone obtained by core needle biopsy (specimen) 900000000000448009 +3082673016 20150731 1 900000000000207008 16213011000119107 en 900000000000013009 Specimen from bone obtained by core needle biopsy 900000000000020002 +3082673016 20170731 1 900000000000207008 16213011000119107 en 900000000000013009 Specimen from bone obtained by core needle biopsy 900000000000448009 +3082674010 20150731 1 900000000000207008 16215091000119102 en 900000000000003001 Specimen from bronchus obtained by endobronchial biopsy (specimen) 900000000000020002 +3082674010 20170731 1 900000000000207008 16215091000119102 en 900000000000003001 Specimen from bronchus obtained by endobronchial biopsy (specimen) 900000000000448009 +3082675011 20150731 1 900000000000207008 16215091000119102 en 900000000000013009 Specimen from bronchus obtained by endobronchial biopsy 900000000000020002 +3082675011 20170731 1 900000000000207008 16215091000119102 en 900000000000013009 Specimen from bronchus obtained by endobronchial biopsy 900000000000448009 +3082676012 20150731 1 900000000000207008 16213931000119103 en 900000000000003001 Specimen from dome of urinary bladder obtained by biopsy (specimen) 900000000000020002 +3082676012 20170731 1 900000000000207008 16213931000119103 en 900000000000003001 Specimen from dome of urinary bladder obtained by biopsy (specimen) 900000000000448009 +3082677015 20150731 1 900000000000207008 16213931000119103 en 900000000000013009 Specimen from dome of urinary bladder obtained by biopsy 900000000000020002 +3082677015 20170731 1 900000000000207008 16213931000119103 en 900000000000013009 Specimen from dome of urinary bladder obtained by biopsy 900000000000448009 +3082678013 20150731 1 900000000000207008 16212731000119107 en 900000000000003001 Specimen from ethmoid sinus obtained by biopsy (specimen) 900000000000020002 +3082678013 20170731 1 900000000000207008 16212731000119107 en 900000000000003001 Specimen from ethmoid sinus obtained by biopsy (specimen) 900000000000448009 +3082679017 20150731 1 900000000000207008 16212731000119107 en 900000000000013009 Specimen from ethmoid sinus obtained by biopsy 900000000000020002 +3082679017 20170731 1 900000000000207008 16212731000119107 en 900000000000013009 Specimen from ethmoid sinus obtained by biopsy 900000000000448009 +3082680019 20150731 1 900000000000207008 16212771000119105 en 900000000000003001 Specimen from eyelid obtained by biopsy (specimen) 900000000000020002 +3082680019 20170731 1 900000000000207008 16212771000119105 en 900000000000003001 Specimen from eyelid obtained by biopsy (specimen) 900000000000448009 +3082681015 20150731 1 900000000000207008 16212771000119105 en 900000000000013009 Specimen from eyelid obtained by biopsy 900000000000020002 +3082681015 20170731 1 900000000000207008 16212771000119105 en 900000000000013009 Specimen from eyelid obtained by biopsy 900000000000448009 +3082682010 20150731 1 900000000000207008 16215771000119101 en 900000000000003001 Specimen from inguinal lymph node obtained by fine needle aspiration biopsy (specimen) 900000000000020002 +3082682010 20170731 1 900000000000207008 16215771000119101 en 900000000000003001 Specimen from inguinal lymph node obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +3082683017 20150731 1 900000000000207008 16215771000119101 en 900000000000013009 Specimen from inguinal lymph node obtained by fine needle aspiration biopsy 900000000000020002 +3082683017 20170731 1 900000000000207008 16215771000119101 en 900000000000013009 Specimen from inguinal lymph node obtained by fine needle aspiration biopsy 900000000000448009 +3082684011 20150731 1 900000000000207008 16215051000119107 en 900000000000003001 Specimen from labia obtained by biopsy (specimen) 900000000000020002 +3082684011 20170731 1 900000000000207008 16215051000119107 en 900000000000003001 Specimen from labia obtained by biopsy (specimen) 900000000000448009 +3082685012 20150731 1 900000000000207008 16215051000119107 en 900000000000013009 Specimen from labia obtained by biopsy 900000000000020002 +3082685012 20170731 1 900000000000207008 16215051000119107 en 900000000000013009 Specimen from labia obtained by biopsy 900000000000448009 +3082686013 20150731 1 900000000000207008 16213731000119100 en 900000000000003001 Specimen from liver obtained by needle aspiration biopsy (specimen) 900000000000020002 +3082686013 20170731 1 900000000000207008 16213731000119100 en 900000000000003001 Specimen from liver obtained by needle aspiration biopsy (specimen) 900000000000448009 +3082687016 20150731 1 900000000000207008 16213731000119100 en 900000000000013009 Specimen from liver obtained by needle aspiration biopsy 900000000000020002 +3082687016 20170731 1 900000000000207008 16213731000119100 en 900000000000013009 Specimen from liver obtained by needle aspiration biopsy 900000000000448009 +3082688014 20150731 1 900000000000207008 16224091000119108 en 900000000000003001 Specimen from lymph node obtained by endotracheal aspiration biopsy (specimen) 900000000000020002 +3082688014 20170731 1 900000000000207008 16224091000119108 en 900000000000003001 Specimen from lymph node obtained by endotracheal aspiration biopsy (specimen) 900000000000448009 +3082689018 20150731 1 900000000000207008 16224091000119108 en 900000000000013009 Specimen from lymph node obtained by endotracheal aspiration biopsy 900000000000020002 +3082689018 20170731 1 900000000000207008 16224091000119108 en 900000000000013009 Specimen from lymph node obtained by endotracheal aspiration biopsy 900000000000448009 +3082690010 20150731 1 900000000000207008 16224131000119105 en 900000000000003001 Specimen from mediastinal lymph node obtained by endotracheal aspiration biopsy (specimen) 900000000000020002 +3082690010 20170731 1 900000000000207008 16224131000119105 en 900000000000003001 Specimen from mediastinal lymph node obtained by endotracheal aspiration biopsy (specimen) 900000000000448009 +3082691014 20150731 1 900000000000207008 16224131000119105 en 900000000000013009 Specimen from mediastinal lymph node obtained by endotracheal aspiration biopsy 900000000000020002 +3082691014 20170731 1 900000000000207008 16224131000119105 en 900000000000013009 Specimen from mediastinal lymph node obtained by endotracheal aspiration biopsy 900000000000448009 +3082692019 20150731 1 900000000000207008 16222971000119102 en 900000000000003001 Specimen from parotid gland obtained by biopsy (specimen) 900000000000020002 +3082692019 20170731 1 900000000000207008 16222971000119102 en 900000000000003001 Specimen from parotid gland obtained by biopsy (specimen) 900000000000448009 +3082693012 20150731 1 900000000000207008 16222971000119102 en 900000000000013009 Specimen from parotid gland obtained by biopsy 900000000000020002 +3082693012 20170731 1 900000000000207008 16222971000119102 en 900000000000013009 Specimen from parotid gland obtained by biopsy 900000000000448009 +3082694018 20150731 1 900000000000207008 16223731000119109 en 900000000000003001 Specimen from perianal region obtained by biopsy (specimen) 900000000000020002 +3082694018 20170731 1 900000000000207008 16223731000119109 en 900000000000003001 Specimen from perianal region obtained by biopsy (specimen) 900000000000448009 +3082695017 20150731 1 900000000000207008 16223731000119109 en 900000000000013009 Specimen from perianal region obtained by biopsy 900000000000020002 +3082695017 20170731 1 900000000000207008 16223731000119109 en 900000000000013009 Specimen from perianal region obtained by biopsy 900000000000448009 +3082696016 20150731 1 900000000000207008 16221891000119102 en 900000000000003001 Specimen from soft tissue mass lesion obtained by fine needle aspiration (specimen) 900000000000020002 +3082696016 20170731 1 900000000000207008 16221891000119102 en 900000000000003001 Specimen from soft tissue mass lesion obtained by fine needle aspiration (specimen) 900000000000448009 +3082697013 20150731 1 900000000000207008 16221891000119102 en 900000000000013009 Specimen from soft tissue mass lesion obtained by fine needle aspiration 900000000000020002 +3082697013 20170731 1 900000000000207008 16221891000119102 en 900000000000013009 Specimen from soft tissue mass lesion obtained by fine needle aspiration 900000000000448009 +3082700012 20150731 1 900000000000207008 16211091000119104 en 900000000000003001 Hydrocele sample obtained by fine needle aspiration (specimen) 900000000000020002 +3082700012 20170731 1 900000000000207008 16211091000119104 en 900000000000003001 Hydrocele sample obtained by fine needle aspiration (specimen) 900000000000448009 +3082700012 20220630 0 900000000000207008 16211091000119104 en 900000000000003001 Hydrocele sample obtained by fine needle aspiration (specimen) 900000000000448009 +3082701011 20150731 1 900000000000207008 16211091000119104 en 900000000000013009 Hydrocele sample obtained by fine needle aspiration 900000000000020002 +3082701011 20170731 1 900000000000207008 16211091000119104 en 900000000000013009 Hydrocele sample obtained by fine needle aspiration 900000000000448009 +3082702016 20150731 1 900000000000207008 16211091000119104 en 900000000000013009 Hydrocoele sample obtained by fine needle aspiration 900000000000020002 +3082702016 20170731 1 900000000000207008 16211091000119104 en 900000000000013009 Hydrocoele sample obtained by fine needle aspiration 900000000000448009 +3082703014 20150731 1 900000000000207008 16215851000119100 en 900000000000003001 Specimen from brain obtained by fine needle aspiration (specimen) 900000000000020002 +3082703014 20170731 1 900000000000207008 16215851000119100 en 900000000000003001 Specimen from brain obtained by fine needle aspiration (specimen) 900000000000448009 +3082704015 20150731 1 900000000000207008 16215851000119100 en 900000000000013009 Specimen from brain obtained by fine needle aspiration 900000000000020002 +3082704015 20170731 1 900000000000207008 16215851000119100 en 900000000000013009 Specimen from brain obtained by fine needle aspiration 900000000000448009 +3082705019 20150731 1 900000000000207008 16216051000119103 en 900000000000003001 Specimen from branchial cleft cyst obtained by fine needle aspiration (specimen) 900000000000020002 +3082705019 20170731 1 900000000000207008 16216051000119103 en 900000000000003001 Specimen from branchial cleft cyst obtained by fine needle aspiration (specimen) 900000000000448009 +3082706018 20150731 1 900000000000207008 16216051000119103 en 900000000000013009 Specimen from branchial cleft cyst obtained by fine needle aspiration 900000000000020002 +3082706018 20170731 1 900000000000207008 16216051000119103 en 900000000000013009 Specimen from branchial cleft cyst obtained by fine needle aspiration 900000000000448009 +3082707010 20150731 1 900000000000207008 16215931000119102 en 900000000000003001 Specimen from cyst obtained by fine needle aspiration (specimen) 900000000000020002 +3082707010 20170731 1 900000000000207008 16215931000119102 en 900000000000003001 Specimen from cyst obtained by fine needle aspiration (specimen) 900000000000448009 +3082708017 20150731 1 900000000000207008 16215931000119102 en 900000000000013009 Specimen from cyst obtained by fine needle aspiration 900000000000020002 +3082708017 20170731 1 900000000000207008 16215931000119102 en 900000000000013009 Specimen from cyst obtained by fine needle aspiration 900000000000448009 +3082709013 20150731 1 900000000000207008 16215811000119101 en 900000000000003001 Specimen from groin obtained by fine needle aspiration (specimen) 900000000000020002 +3082709013 20170731 1 900000000000207008 16215811000119101 en 900000000000003001 Specimen from groin obtained by fine needle aspiration (specimen) 900000000000448009 +3082710015 20150731 1 900000000000207008 16215811000119101 en 900000000000013009 Specimen from groin obtained by fine needle aspiration 900000000000020002 +3082710015 20170731 1 900000000000207008 16215811000119101 en 900000000000013009 Specimen from groin obtained by fine needle aspiration 900000000000448009 +3082711016 20150731 1 900000000000207008 16212371000119106 en 900000000000003001 Kidney brushings sample (specimen) 900000000000020002 +3082711016 20170731 1 900000000000207008 16212371000119106 en 900000000000003001 Kidney brushings sample (specimen) 900000000000448009 +3082711016 20220630 0 900000000000207008 16212371000119106 en 900000000000003001 Kidney brushings sample (specimen) 900000000000448009 +3082712011 20150731 1 900000000000207008 16212371000119106 en 900000000000013009 Kidney brushings sample 900000000000020002 +3082712011 20170731 1 900000000000207008 16212371000119106 en 900000000000013009 Kidney brushings sample 900000000000448009 +3082713018 20150731 1 900000000000207008 16223531000119100 en 900000000000003001 Liquid stool specimen (specimen) 900000000000020002 +3082713018 20170731 1 900000000000207008 16223531000119100 en 900000000000003001 Liquid stool specimen (specimen) 900000000000448009 +3082714012 20150731 1 900000000000207008 16223531000119100 en 900000000000013009 Liquid stool specimen 900000000000020002 +3082714012 20170731 1 900000000000207008 16223531000119100 en 900000000000013009 Liquid stool specimen 900000000000448009 +3082715013 20150731 1 900000000000207008 16223051000119101 en 900000000000003001 Nasal sinus contents sample (specimen) 900000000000020002 +3082715013 20170731 1 900000000000207008 16223051000119101 en 900000000000003001 Nasal sinus contents sample (specimen) 900000000000448009 +3082715013 20220630 0 900000000000207008 16223051000119101 en 900000000000003001 Nasal sinus contents sample (specimen) 900000000000448009 +3082716014 20150731 1 900000000000207008 16223051000119101 en 900000000000013009 Nasal sinus contents sample 900000000000020002 +3082716014 20170731 1 900000000000207008 16223051000119101 en 900000000000013009 Nasal sinus contents sample 900000000000448009 +3082717017 20150731 1 900000000000207008 16224171000119108 en 900000000000003001 Nasotracheal aspirate (specimen) 900000000000020002 +3082717017 20170731 1 900000000000207008 16224171000119108 en 900000000000003001 Nasotracheal aspirate (specimen) 900000000000448009 +3082718010 20150731 1 900000000000207008 16224171000119108 en 900000000000013009 Nasotracheal aspirate 900000000000020002 +3082718010 20170731 1 900000000000207008 16224171000119108 en 900000000000013009 Nasotracheal aspirate 900000000000448009 +3082719019 20150731 1 900000000000207008 16224251000119106 en 900000000000003001 Papanicolaou smear sample (specimen) 900000000000020002 +3082719019 20170731 1 900000000000207008 16224251000119106 en 900000000000003001 Papanicolaou smear sample (specimen) 900000000000448009 +3082719019 20220630 0 900000000000207008 16224251000119106 en 900000000000003001 Papanicolaou smear sample (specimen) 900000000000448009 +3082720013 20150731 1 900000000000207008 16224251000119106 en 900000000000013009 Papanicolaou smear sample 900000000000020002 +3082720013 20170731 1 900000000000207008 16224251000119106 en 900000000000013009 Papanicolaou smear sample 900000000000448009 +3082721012 20150731 1 900000000000207008 15650671000119107 en 900000000000003001 Paraffin embedded slide (specimen) 900000000000020002 +3082721012 20170731 1 900000000000207008 15650671000119107 en 900000000000003001 Paraffin embedded slide (specimen) 900000000000448009 +3082722017 20150731 1 900000000000207008 15650671000119107 en 900000000000013009 Paraffin embedded slide 900000000000020002 +3082722017 20170731 1 900000000000207008 15650671000119107 en 900000000000013009 Paraffin embedded slide 900000000000448009 +3082723010 20150731 1 900000000000207008 16214211000119104 en 900000000000003001 Pediculus sample (specimen) 900000000000020002 +3082723010 20170731 1 900000000000207008 16214211000119104 en 900000000000003001 Pediculus sample (specimen) 900000000000448009 +3082723010 20220630 0 900000000000207008 16214211000119104 en 900000000000003001 Pediculus sample (specimen) 900000000000448009 +3082724016 20150731 1 900000000000207008 16214211000119104 en 900000000000013009 Pediculus sample 900000000000020002 +3082724016 20170731 1 900000000000207008 16214211000119104 en 900000000000013009 Pediculus sample 900000000000448009 +3082725015 20150731 1 900000000000207008 16214211000119104 en 900000000000013009 Louse sample 900000000000020002 +3082725015 20170731 1 900000000000207008 16214211000119104 en 900000000000013009 Louse sample 900000000000448009 +3082726019 20150731 1 900000000000207008 16223251000119109 en 900000000000003001 Peripherally inserted central venous catheter tip submitted as specimen (specimen) 900000000000020002 +3082726019 20170731 1 900000000000207008 16223251000119109 en 900000000000003001 Peripherally inserted central venous catheter tip submitted as specimen (specimen) 900000000000448009 +3082727011 20150731 1 900000000000207008 16223251000119109 en 900000000000013009 Peripherally inserted central venous catheter tip submitted as specimen 900000000000020002 +3082727011 20170731 1 900000000000207008 16223251000119109 en 900000000000013009 Peripherally inserted central venous catheter tip submitted as specimen 900000000000448009 +3082728018 20150731 1 900000000000207008 16223571000119102 en 900000000000003001 Purged stool specimen (specimen) 900000000000020002 +3082728018 20170731 1 900000000000207008 16223571000119102 en 900000000000003001 Purged stool specimen (specimen) 900000000000448009 +3082729014 20150731 1 900000000000207008 16223571000119102 en 900000000000013009 Purged stool specimen 900000000000020002 +3082729014 20170731 1 900000000000207008 16223571000119102 en 900000000000013009 Purged stool specimen 900000000000448009 +3082730016 20150731 1 900000000000207008 16224291000119101 en 900000000000003001 Renal washings (specimen) 900000000000020002 +3082730016 20170731 1 900000000000207008 16224291000119101 en 900000000000003001 Renal washings (specimen) 900000000000448009 +3082731017 20150731 1 900000000000207008 16224291000119101 en 900000000000013009 Renal washings 900000000000020002 +3082731017 20170731 1 900000000000207008 16224291000119101 en 900000000000013009 Renal washings 900000000000448009 +3082733019 20150731 1 900000000000207008 16215171000119102 en 900000000000013009 Specimen from abscess of Bartholin's gland 900000000000020002 +3082734013 20150731 1 900000000000207008 16210451000119109 en 900000000000003001 Specimen from bone obtained by curettage (specimen) 900000000000020002 +3082734013 20170731 1 900000000000207008 16210451000119109 en 900000000000003001 Specimen from bone obtained by curettage (specimen) 900000000000448009 +3082735014 20150731 1 900000000000207008 16210451000119109 en 900000000000013009 Specimen from bone obtained by curettage 900000000000020002 +3082735014 20170731 1 900000000000207008 16210451000119109 en 900000000000013009 Specimen from bone obtained by curettage 900000000000448009 +3082736010 20150731 1 900000000000207008 16212971000119107 en 900000000000003001 Specimen from cartilage obtained by shave excision (specimen) 900000000000020002 +3082736010 20170731 1 900000000000207008 16212971000119107 en 900000000000003001 Specimen from cartilage obtained by shave excision (specimen) 900000000000448009 +3082737018 20150731 1 900000000000207008 16212971000119107 en 900000000000013009 Specimen from cartilage obtained by shave excision 900000000000020002 +3082737018 20170731 1 900000000000207008 16212971000119107 en 900000000000013009 Specimen from cartilage obtained by shave excision 900000000000448009 +3082738011 20150731 1 900000000000207008 16212931000119109 en 900000000000003001 Specimen from cranium bone obtained by craniotomy (specimen) 900000000000020002 +3082738011 20170731 1 900000000000207008 16212931000119109 en 900000000000003001 Specimen from cranium bone obtained by craniotomy (specimen) 900000000000448009 +3082739015 20150731 1 900000000000207008 16212931000119109 en 900000000000013009 Specimen from cranium bone obtained by craniotomy 900000000000020002 +3082739015 20170731 1 900000000000207008 16212931000119109 en 900000000000013009 Specimen from cranium bone obtained by craniotomy 900000000000448009 +3082740018 20150731 1 900000000000207008 16211011000119108 en 900000000000003001 Specimen from deep surgical wound (specimen) 900000000000020002 +3082740018 20170731 1 900000000000207008 16211011000119108 en 900000000000003001 Specimen from deep surgical wound (specimen) 900000000000448009 +3082741019 20150731 1 900000000000207008 16211011000119108 en 900000000000013009 Specimen from deep surgical wound 900000000000020002 +3082741019 20170731 1 900000000000207008 16211011000119108 en 900000000000013009 Specimen from deep surgical wound 900000000000448009 +3082742014 20150731 1 900000000000207008 16211051000119109 en 900000000000003001 Specimen from deep wound (specimen) 900000000000020002 +3082742014 20170731 1 900000000000207008 16211051000119109 en 900000000000003001 Specimen from deep wound (specimen) 900000000000448009 +3082743016 20150731 1 900000000000207008 16211051000119109 en 900000000000013009 Specimen from deep wound 900000000000020002 +3082743016 20170731 1 900000000000207008 16211051000119109 en 900000000000013009 Specimen from deep wound 900000000000448009 +3082744010 20150731 1 900000000000207008 16223771000119107 en 900000000000003001 Specimen from diaphragm obtained by brushing (specimen) 900000000000020002 +3082744010 20170731 1 900000000000207008 16223771000119107 en 900000000000003001 Specimen from diaphragm obtained by brushing (specimen) 900000000000448009 +3082745011 20150731 1 900000000000207008 16223771000119107 en 900000000000013009 Specimen from diaphragm obtained by brushing 900000000000020002 +3082745011 20170731 1 900000000000207008 16223771000119107 en 900000000000013009 Specimen from diaphragm obtained by brushing 900000000000448009 +3082746012 20150731 1 900000000000207008 16210491000119104 en 900000000000003001 Specimen from endocervix obtained by curettage (specimen) 900000000000020002 +3082746012 20170731 1 900000000000207008 16210491000119104 en 900000000000003001 Specimen from endocervix obtained by curettage (specimen) 900000000000448009 +3082747015 20150731 1 900000000000207008 16210491000119104 en 900000000000013009 Specimen from endocervix obtained by curettage 900000000000020002 +3082747015 20170731 1 900000000000207008 16210491000119104 en 900000000000013009 Specimen from endocervix obtained by curettage 900000000000448009 +3082748013 20150731 1 900000000000207008 16211211000119102 en 900000000000003001 Specimen from intra-abdominal abscess (specimen) 900000000000020002 +3082748013 20170731 1 900000000000207008 16211211000119102 en 900000000000003001 Specimen from intra-abdominal abscess (specimen) 900000000000448009 +3082749017 20150731 1 900000000000207008 16211211000119102 en 900000000000013009 Specimen from intra-abdominal abscess 900000000000020002 +3082749017 20170731 1 900000000000207008 16211211000119102 en 900000000000013009 Specimen from intra-abdominal abscess 900000000000448009 +3082750017 20150731 1 900000000000207008 16211371000119102 en 900000000000003001 Specimen from joint cartilage obtained by shave excision (specimen) 900000000000020002 +3082750017 20170731 1 900000000000207008 16211371000119102 en 900000000000003001 Specimen from joint cartilage obtained by shave excision (specimen) 900000000000448009 +3082751018 20150731 1 900000000000207008 16211371000119102 en 900000000000013009 Specimen from joint cartilage obtained by shave excision 900000000000020002 +3082751018 20170731 1 900000000000207008 16211371000119102 en 900000000000013009 Specimen from joint cartilage obtained by shave excision 900000000000448009 +3082752013 20150731 1 900000000000207008 16223651000119107 en 900000000000003001 Specimen from ligated fallopian tube (specimen) 900000000000020002 +3082752013 20170731 1 900000000000207008 16223651000119107 en 900000000000003001 Specimen from ligated fallopian tube (specimen) 900000000000448009 +3082753015 20150731 1 900000000000207008 16223651000119107 en 900000000000013009 Specimen from ligated fallopian tube 900000000000020002 +3082753015 20170731 1 900000000000207008 16223651000119107 en 900000000000013009 Specimen from ligated fallopian tube 900000000000448009 +3082754014 20150731 1 900000000000207008 16216171000119108 en 900000000000003001 Specimen from liver obtained by aspiration (specimen) 900000000000020002 +3082754014 20170731 1 900000000000207008 16216171000119108 en 900000000000003001 Specimen from liver obtained by aspiration (specimen) 900000000000448009 +3082755010 20150731 1 900000000000207008 16216171000119108 en 900000000000013009 Specimen from liver obtained by aspiration 900000000000020002 +3082755010 20170731 1 900000000000207008 16216171000119108 en 900000000000013009 Specimen from liver obtained by aspiration 900000000000448009 +3082758012 20150731 1 900000000000207008 16222251000119102 en 900000000000003001 Specimen from skin obtained by Mohs surgery, permanent section (specimen) 900000000000020002 +3082759016 20150731 1 900000000000207008 16222251000119102 en 900000000000013009 Specimen from skin obtained by Mohs surgery, permanent section 900000000000020002 +3082760014 20150731 1 900000000000207008 16212251000119107 en 900000000000003001 Specimen from stomach obtained by hemigastrectomy (specimen) 900000000000020002 +3082760014 20170731 1 900000000000207008 16212251000119107 en 900000000000003001 Specimen from stomach obtained by hemigastrectomy (specimen) 900000000000448009 +3082761013 20150731 1 900000000000207008 16212251000119107 en 900000000000013009 Specimen from stomach obtained by hemigastrectomy 900000000000020002 +3082761013 20170731 1 900000000000207008 16212251000119107 en 900000000000013009 Specimen from stomach obtained by hemigastrectomy 900000000000448009 +3082762018 20150731 1 900000000000207008 16211331000119100 en 900000000000003001 Specimen obtained by cystoprostatectomy (specimen) 900000000000020002 +3082762018 20170731 1 900000000000207008 16211331000119100 en 900000000000003001 Specimen obtained by cystoprostatectomy (specimen) 900000000000448009 +3082763011 20150731 1 900000000000207008 16211331000119100 en 900000000000013009 Specimen obtained by cystoprostatectomy 900000000000020002 +3082763011 20170731 1 900000000000207008 16211331000119100 en 900000000000013009 Specimen obtained by cystoprostatectomy 900000000000448009 +3082764017 20150731 1 900000000000207008 16216131000119105 en 900000000000003001 Specimen obtained from pouch of Douglas by aspiration (specimen) 900000000000020002 +3082765016 20150731 1 900000000000207008 16216131000119105 en 900000000000013009 Specimen obtained from pouch of Douglas by aspiration 900000000000020002 +3082766015 20150731 1 900000000000207008 16212811000119105 en 900000000000003001 Tissue specimen from donor cornea (specimen) 900000000000020002 +3082766015 20170731 1 900000000000207008 16212811000119105 en 900000000000003001 Tissue specimen from donor cornea (specimen) 900000000000448009 +3082767012 20150731 1 900000000000207008 16212811000119105 en 900000000000013009 Tissue specimen from donor cornea 900000000000020002 +3082767012 20170731 1 900000000000207008 16212811000119105 en 900000000000013009 Tissue specimen from donor cornea 900000000000448009 +3082768019 20150731 1 900000000000207008 16216491000119102 en 900000000000003001 Urinary bladder specimen obtained by lavage (specimen) 900000000000020002 +3082768019 20170731 1 900000000000207008 16216491000119102 en 900000000000003001 Urinary bladder specimen obtained by lavage (specimen) 900000000000448009 +3082769010 20150731 1 900000000000207008 16216491000119102 en 900000000000013009 Urinary bladder specimen obtained by lavage 900000000000020002 +3082769010 20170731 1 900000000000207008 16216491000119102 en 900000000000013009 Urinary bladder specimen obtained by lavage 900000000000448009 +3082771010 20150731 1 900000000000207008 16221371000119107 en 900000000000013009 Urine specimen obtained from pedibag 900000000000020002 +3082771010 20170731 1 900000000000207008 16221371000119107 en 900000000000013009 Urine specimen obtained from pedibag 900000000000448009 +3082772015 20150731 1 900000000000207008 16221251000119108 en 900000000000003001 Urine specimen obtained via straight catheter (specimen) 900000000000020002 +3082772015 20170731 1 900000000000207008 16221251000119108 en 900000000000003001 Urine specimen obtained via straight catheter (specimen) 900000000000448009 +3082773013 20150731 1 900000000000207008 16221251000119108 en 900000000000013009 Urine specimen obtained via straight catheter 900000000000020002 +3082773013 20170731 1 900000000000207008 16221251000119108 en 900000000000013009 Urine specimen obtained via straight catheter 900000000000448009 +3082774019 20150731 1 900000000000207008 16210611000119105 en 900000000000003001 Uterine cervix cyst sample (specimen) 900000000000020002 +3082774019 20170731 1 900000000000207008 16210611000119105 en 900000000000003001 Uterine cervix cyst sample (specimen) 900000000000448009 +3082774019 20220630 0 900000000000207008 16210611000119105 en 900000000000003001 Uterine cervix cyst sample (specimen) 900000000000448009 +3082775018 20150731 1 900000000000207008 16210611000119105 en 900000000000013009 Uterine cervix cyst sample 900000000000020002 +3082775018 20170731 1 900000000000207008 16210611000119105 en 900000000000013009 Uterine cervix cyst sample 900000000000448009 +3082776017 20150731 1 900000000000207008 16222771000119104 en 900000000000003001 Uvula tissue specimen obtained by simple excision (specimen) 900000000000020002 +3082776017 20170731 1 900000000000207008 16222771000119104 en 900000000000003001 Uvula tissue specimen obtained by simple excision (specimen) 900000000000448009 +3082777014 20150731 1 900000000000207008 16222771000119104 en 900000000000013009 Uvula tissue specimen obtained by simple excision 900000000000020002 +3082777014 20170731 1 900000000000207008 16222771000119104 en 900000000000013009 Uvula tissue specimen obtained by simple excision 900000000000448009 +3082778016 20150731 1 900000000000207008 16221011000119101 en 900000000000003001 Vaginal discharge specimen (specimen) 900000000000020002 +3082778016 20170731 1 900000000000207008 16221011000119101 en 900000000000003001 Vaginal discharge specimen (specimen) 900000000000448009 +3082779012 20150731 1 900000000000207008 16221011000119101 en 900000000000013009 Vaginal discharge specimen 900000000000020002 +3082779012 20170731 1 900000000000207008 16221011000119101 en 900000000000013009 Vaginal discharge specimen 900000000000448009 +3082780010 20150731 1 900000000000207008 16221491000119104 en 900000000000003001 Voided urine specimen (specimen) 900000000000020002 +3082780010 20170731 1 900000000000207008 16221491000119104 en 900000000000003001 Voided urine specimen (specimen) 900000000000448009 +3082781014 20150731 1 900000000000207008 16221491000119104 en 900000000000013009 Voided urine specimen 900000000000020002 +3082781014 20170731 1 900000000000207008 16221491000119104 en 900000000000013009 Voided urine specimen 900000000000448009 +3082782019 20150731 1 900000000000207008 16216611000119108 en 900000000000003001 Aortic valve specimen obtained by lavage (specimen) 900000000000020002 +3082782019 20170731 1 900000000000207008 16216611000119108 en 900000000000003001 Aortic valve specimen obtained by lavage (specimen) 900000000000448009 +3082783012 20150731 1 900000000000207008 16216611000119108 en 900000000000013009 Aortic valve specimen obtained by lavage 900000000000020002 +3082783012 20170731 1 900000000000207008 16216611000119108 en 900000000000013009 Aortic valve specimen obtained by lavage 900000000000448009 +3082784018 20150731 1 900000000000207008 16213171000119103 en 900000000000003001 Balloon catheter tip submitted as specimen (specimen) 900000000000020002 +3082784018 20170731 1 900000000000207008 16213171000119103 en 900000000000003001 Balloon catheter tip submitted as specimen (specimen) 900000000000448009 +3082785017 20150731 1 900000000000207008 16213171000119103 en 900000000000013009 Balloon catheter tip submitted as specimen 900000000000020002 +3082785017 20170731 1 900000000000207008 16213171000119103 en 900000000000013009 Balloon catheter tip submitted as specimen 900000000000448009 +3082786016 20150731 1 900000000000207008 16210651000119106 en 900000000000003001 Branchial cleft cyst sample (specimen) 900000000000020002 +3082786016 20170731 1 900000000000207008 16210651000119106 en 900000000000003001 Branchial cleft cyst sample (specimen) 900000000000448009 +3082786016 20220630 0 900000000000207008 16210651000119106 en 900000000000003001 Branchial cleft cyst sample (specimen) 900000000000448009 +3082787013 20150731 1 900000000000207008 16210651000119106 en 900000000000013009 Branchial cleft cyst sample 900000000000020002 +3082787013 20170731 1 900000000000207008 16210651000119106 en 900000000000013009 Branchial cleft cyst sample 900000000000448009 +3082791015 20150731 1 900000000000207008 16216451000119107 en 900000000000003001 Colonic specimen obtained by lavage (specimen) 900000000000020002 +3082791015 20170731 1 900000000000207008 16216451000119107 en 900000000000003001 Colonic specimen obtained by lavage (specimen) 900000000000448009 +3082792010 20150731 1 900000000000207008 16216451000119107 en 900000000000013009 Colonic specimen obtained by lavage 900000000000020002 +3082792010 20170731 1 900000000000207008 16216451000119107 en 900000000000013009 Colonic specimen obtained by lavage 900000000000448009 +3082793017 20150731 1 900000000000207008 16213691000119107 en 900000000000003001 Common bile duct brushings sample (specimen) 900000000000020002 +3082793017 20170731 1 900000000000207008 16213691000119107 en 900000000000003001 Common bile duct brushings sample (specimen) 900000000000448009 +3082793017 20220630 0 900000000000207008 16213691000119107 en 900000000000003001 Common bile duct brushings sample (specimen) 900000000000448009 +3082794011 20150731 1 900000000000207008 16213691000119107 en 900000000000013009 Common bile duct brushings sample 900000000000020002 +3082794011 20170731 1 900000000000207008 16213691000119107 en 900000000000013009 Common bile duct brushings sample 900000000000448009 +3082795012 20150731 1 900000000000207008 16216531000119102 en 900000000000003001 Common bile duct specimen obtained by lavage (specimen) 900000000000020002 +3082795012 20170731 1 900000000000207008 16216531000119102 en 900000000000003001 Common bile duct specimen obtained by lavage (specimen) 900000000000448009 +3082796013 20150731 1 900000000000207008 16216531000119102 en 900000000000013009 Common bile duct specimen obtained by lavage 900000000000020002 +3082796013 20170731 1 900000000000207008 16216531000119102 en 900000000000013009 Common bile duct specimen obtained by lavage 900000000000448009 +3082797016 20150731 1 900000000000207008 16210571000119101 en 900000000000003001 Dental cyst sample (specimen) 900000000000020002 +3082797016 20170731 1 900000000000207008 16210571000119101 en 900000000000003001 Dental cyst sample (specimen) 900000000000448009 +3082797016 20220630 0 900000000000207008 16210571000119101 en 900000000000003001 Dental cyst sample (specimen) 900000000000448009 +3082798014 20150731 1 900000000000207008 16210571000119101 en 900000000000013009 Dental cyst sample 900000000000020002 +3082798014 20170731 1 900000000000207008 16210571000119101 en 900000000000013009 Dental cyst sample 900000000000448009 +3082799018 20150731 1 900000000000207008 16216091000119108 en 900000000000003001 Duodenal brushings sample (specimen) 900000000000020002 +3082799018 20170731 1 900000000000207008 16216091000119108 en 900000000000003001 Duodenal brushings sample (specimen) 900000000000448009 +3082799018 20220630 0 900000000000207008 16216091000119108 en 900000000000003001 Duodenal brushings sample (specimen) 900000000000448009 +3082800019 20150731 1 900000000000207008 16216091000119108 en 900000000000013009 Duodenal brushings sample 900000000000020002 +3082800019 20170731 1 900000000000207008 16216091000119108 en 900000000000013009 Duodenal brushings sample 900000000000448009 +3082801015 20150731 1 900000000000207008 16216211000119105 en 900000000000003001 Endocervical aspirate (specimen) 900000000000020002 +3082801015 20170731 1 900000000000207008 16216211000119105 en 900000000000003001 Endocervical aspirate (specimen) 900000000000448009 +3082802010 20150731 1 900000000000207008 16216211000119105 en 900000000000013009 Endocervical aspirate 900000000000020002 +3082802010 20170731 1 900000000000207008 16216211000119105 en 900000000000013009 Endocervical aspirate 900000000000448009 +3082803017 20150731 1 900000000000207008 16210931000119105 en 900000000000003001 Endocervical polyp sample (specimen) 900000000000020002 +3082803017 20170731 1 900000000000207008 16210931000119105 en 900000000000003001 Endocervical polyp sample (specimen) 900000000000448009 +3082803017 20220630 0 900000000000207008 16210931000119105 en 900000000000003001 Endocervical polyp sample (specimen) 900000000000448009 +3082804011 20150731 1 900000000000207008 16210931000119105 en 900000000000013009 Endocervical polyp sample 900000000000020002 +3082804011 20170731 1 900000000000207008 16210931000119105 en 900000000000013009 Endocervical polyp sample 900000000000448009 +3082806013 20150731 1 900000000000207008 16213211000119101 en 900000000000013009 Endotracheal catheter tip specimen 900000000000020002 +3082806013 20170731 1 900000000000207008 16213211000119101 en 900000000000013009 Endotracheal catheter tip specimen 900000000000448009 +3082807016 20150731 1 900000000000207008 16211131000119102 en 900000000000003001 Epidural lesion sample (specimen) 900000000000020002 +3082807016 20170731 1 900000000000207008 16211131000119102 en 900000000000003001 Epidural lesion sample (specimen) 900000000000448009 +3082807016 20220630 0 900000000000207008 16211131000119102 en 900000000000003001 Epidural lesion sample (specimen) 900000000000448009 +3082808014 20150731 1 900000000000207008 16211131000119102 en 900000000000013009 Epidural lesion sample 900000000000020002 +3082808014 20170731 1 900000000000207008 16211131000119102 en 900000000000013009 Epidural lesion sample 900000000000448009 +3082809018 20150731 1 900000000000207008 16216571000119104 en 900000000000003001 Esophageal specimen obtained by lavage (specimen) 900000000000020002 +3082809018 20170731 1 900000000000207008 16216571000119104 en 900000000000003001 Esophageal specimen obtained by lavage (specimen) 900000000000448009 +3082810011 20150731 1 900000000000207008 16216571000119104 en 900000000000013009 Esophageal specimen obtained by lavage 900000000000020002 +3082810011 20170731 1 900000000000207008 16216571000119104 en 900000000000013009 Esophageal specimen obtained by lavage 900000000000448009 +3082811010 20150731 1 900000000000207008 16216571000119104 en 900000000000013009 Oesophageal specimen obtained by lavage 900000000000020002 +3082811010 20170731 1 900000000000207008 16216571000119104 en 900000000000013009 Oesophageal specimen obtained by lavage 900000000000448009 +3082812015 20150731 1 900000000000207008 16213091000119103 en 900000000000003001 External shunt submitted as specimen (specimen) 900000000000020002 +3082812015 20170731 1 900000000000207008 16213091000119103 en 900000000000003001 External shunt submitted as specimen (specimen) 900000000000448009 +3082813013 20150731 1 900000000000207008 16213091000119103 en 900000000000013009 External shunt submitted as specimen 900000000000020002 +3082813013 20170731 1 900000000000207008 16213091000119103 en 900000000000013009 External shunt submitted as specimen 900000000000448009 +3082814019 20150731 1 900000000000207008 16211251000119101 en 900000000000003001 Extradural lesion sample (specimen) 900000000000020002 +3082814019 20170731 1 900000000000207008 16211251000119101 en 900000000000003001 Extradural lesion sample (specimen) 900000000000448009 +3082814019 20220630 0 900000000000207008 16211251000119101 en 900000000000003001 Extradural lesion sample (specimen) 900000000000448009 +3082815018 20150731 1 900000000000207008 16211251000119101 en 900000000000013009 Extradural lesion sample 900000000000020002 +3082815018 20170731 1 900000000000207008 16211251000119101 en 900000000000013009 Extradural lesion sample 900000000000448009 +3082816017 20150731 1 900000000000207008 16209331000119103 en 900000000000003001 Eye discharge specimen (specimen) 900000000000020002 +3082816017 20170731 1 900000000000207008 16209331000119103 en 900000000000003001 Eye discharge specimen (specimen) 900000000000448009 +3082817014 20150731 1 900000000000207008 16209331000119103 en 900000000000013009 Eye discharge specimen 900000000000020002 +3082817014 20170731 1 900000000000207008 16209331000119103 en 900000000000013009 Eye discharge specimen 900000000000448009 +3082819012 20150731 1 900000000000207008 16222091000119100 en 900000000000013009 Frozen section skin sample obtained by excision 900000000000020002 +3082819012 20170731 1 900000000000207008 16222091000119100 en 900000000000013009 Frozen section skin sample obtained by excision 900000000000448009 +3082822014 20150731 1 900000000000207008 16213051000119108 en 900000000000003001 Indwelling catheter tip submitted as specimen (specimen) 900000000000020002 +3082822014 20170731 1 900000000000207008 16213051000119108 en 900000000000003001 Indwelling catheter tip submitted as specimen (specimen) 900000000000448009 +3082823016 20150731 1 900000000000207008 16213051000119108 en 900000000000013009 Indwelling catheter tip submitted as specimen 900000000000020002 +3082823016 20170731 1 900000000000207008 16213051000119108 en 900000000000013009 Indwelling catheter tip submitted as specimen 900000000000448009 +3082824010 20150731 1 900000000000207008 16213251000119100 en 900000000000003001 Introducer catheter tip submitted as specimen (specimen) 900000000000020002 +3082824010 20170731 1 900000000000207008 16213251000119100 en 900000000000003001 Introducer catheter tip submitted as specimen (specimen) 900000000000448009 +3082825011 20150731 1 900000000000207008 16213251000119100 en 900000000000013009 Introducer catheter tip submitted as specimen 900000000000020002 +3082825011 20170731 1 900000000000207008 16213251000119100 en 900000000000013009 Introducer catheter tip submitted as specimen 900000000000448009 +3083000010 20150731 1 900000000000207008 712560001 en 900000000000013009 Two hours specimen 900000000000020002 +3083000010 20170731 1 900000000000207008 712560001 en 900000000000013009 Two hours specimen 900000000000448009 +3083003012 20150731 1 900000000000207008 712559006 en 900000000000003001 Seventy minutes specimen (specimen) 900000000000020002 +3083003012 20170731 1 900000000000207008 712559006 en 900000000000003001 Seventy minutes specimen (specimen) 900000000000448009 +3083006016 20150731 1 900000000000207008 712562009 en 900000000000003001 Twenty four hours specimen (specimen) 900000000000020002 +3083006016 20170731 1 900000000000207008 712562009 en 900000000000003001 Twenty four hours specimen (specimen) 900000000000448009 +3083009011 20150731 1 900000000000207008 712562009 en 900000000000013009 24H specimen 900000000000020002 +3083013016 20150731 1 900000000000207008 712559006 en 900000000000013009 70M specimen 900000000000020002 +3083018013 20150731 1 900000000000207008 16213211000119101 en 900000000000013009 Endotracheal catheter tip submitted as specimen 900000000000020002 +3083018013 20170731 1 900000000000207008 16213211000119101 en 900000000000013009 Endotracheal catheter tip submitted as specimen 900000000000448009 +3083026017 20150731 1 900000000000207008 712560001 en 900000000000013009 2H specimen 900000000000020002 +3083031015 20150731 1 900000000000207008 712560001 en 900000000000003001 Two hours specimen (specimen) 900000000000020002 +3083031015 20170731 1 900000000000207008 712560001 en 900000000000003001 Two hours specimen (specimen) 900000000000448009 +3083034011 20150731 1 900000000000207008 16214131000119104 en 900000000000003001 Frozen tissue section sample (specimen) 900000000000020002 +3083034011 20170731 1 900000000000207008 16214131000119104 en 900000000000003001 Frozen tissue section sample (specimen) 900000000000448009 +3083034011 20220630 0 900000000000207008 16214131000119104 en 900000000000003001 Frozen tissue section sample (specimen) 900000000000448009 +3083038014 20150731 1 900000000000207008 16213211000119101 en 900000000000003001 Endotracheal catheter tip submitted as specimen (specimen) 900000000000020002 +3083038014 20170731 1 900000000000207008 16213211000119101 en 900000000000003001 Endotracheal catheter tip submitted as specimen (specimen) 900000000000448009 +3083039018 20150731 1 900000000000207008 16214131000119104 en 900000000000013009 Frozen tissue section sample 900000000000020002 +3083039018 20170731 1 900000000000207008 16214131000119104 en 900000000000013009 Frozen tissue section sample 900000000000448009 +3083040016 20150731 1 900000000000207008 712559006 en 900000000000013009 Seventy minutes specimen 900000000000020002 +3083040016 20170731 1 900000000000207008 712559006 en 900000000000013009 Seventy minutes specimen 900000000000448009 +3083051016 20150731 1 900000000000207008 712562009 en 900000000000013009 Twenty four hours specimen 900000000000020002 +3083051016 20170731 1 900000000000207008 712562009 en 900000000000013009 Twenty four hours specimen 900000000000448009 +3083107010 20150731 1 900000000000207008 16216011000119104 en 900000000000003001 Hilum of lung specimen obtained by fine needle aspiration procedure (specimen) 900000000000020002 +3083107010 20170731 1 900000000000207008 16216011000119104 en 900000000000003001 Hilum of lung specimen obtained by fine needle aspiration procedure (specimen) 900000000000448009 +3083108017 20150731 1 900000000000207008 16216011000119104 en 900000000000013009 Hilum of lung specimen obtained by fine needle aspiration procedure 900000000000020002 +3083108017 20170731 1 900000000000207008 16216011000119104 en 900000000000013009 Hilum of lung specimen obtained by fine needle aspiration procedure 900000000000448009 +3083286011 20150731 1 900000000000207008 16215171000119102 en 900000000000013009 Specimen from abscess of Bartholin gland 900000000000020002 +3083357011 20150731 1 900000000000207008 16215211000119100 en 900000000000013009 Bartholin's gland fluid specimen 900000000000017005 +3083482010 20150731 1 900000000000207008 16215171000119102 en 900000000000003001 Specimen from abscess of Bartholin gland (specimen) 900000000000020002 +3083591011 20150731 1 900000000000207008 16210211000119107 en 900000000000003001 Body fluid specimen obtained via cystostomy tube (specimen) 900000000000020002 +3083591011 20170731 1 900000000000207008 16210211000119107 en 900000000000003001 Body fluid specimen obtained via cystostomy tube (specimen) 900000000000448009 +3083592016 20150731 1 900000000000207008 16210211000119107 en 900000000000013009 Body fluid specimen obtained via cystostomy tube 900000000000020002 +3083592016 20170731 1 900000000000207008 16210211000119107 en 900000000000013009 Body fluid specimen obtained via cystostomy tube 900000000000448009 +3083595019 20150731 1 900000000000207008 16221371000119107 en 900000000000003001 Urine specimen obtained from pediatric urine collection bag (specimen) 900000000000020002 +3083595019 20170731 1 900000000000207008 16221371000119107 en 900000000000003001 Urine specimen obtained from pediatric urine collection bag (specimen) 900000000000448009 +3083596018 20150731 1 900000000000207008 16221371000119107 en 900000000000013009 Urine specimen obtained from pediatric urine collection bag 900000000000020002 +3083596018 20170731 1 900000000000207008 16221371000119107 en 900000000000013009 Urine specimen obtained from pediatric urine collection bag 900000000000448009 +3083597010 20150731 1 900000000000207008 16221371000119107 en 900000000000013009 Urine specimen obtained from pedi bag 900000000000020002 +3083597010 20170731 1 900000000000207008 16221371000119107 en 900000000000013009 Urine specimen obtained from pedi bag 900000000000448009 +3083598017 20150731 1 900000000000207008 16221371000119107 en 900000000000013009 Urine specimen obtained from paediatric urine collection bag 900000000000020002 +3083598017 20170731 1 900000000000207008 16221371000119107 en 900000000000013009 Urine specimen obtained from paediatric urine collection bag 900000000000448009 +3083758016 20150731 1 900000000000207008 16216131000119105 en 900000000000013009 Specimen obtained from rectouterine pouch by aspiration 900000000000020002 +3083758016 20170731 1 900000000000207008 16216131000119105 en 900000000000013009 Specimen obtained from rectouterine pouch by aspiration 900000000000448009 +3083759012 20150731 1 900000000000207008 16210851000119107 en 900000000000013009 Cerebellar neoplasm sample 900000000000020002 +3083759012 20170731 1 900000000000207008 16210851000119107 en 900000000000013009 Cerebellar neoplasm sample 900000000000448009 +3083760019 20150731 1 900000000000207008 16210851000119107 en 900000000000003001 Cerebellar neoplasm sample (specimen) 900000000000020002 +3083760019 20170731 1 900000000000207008 16210851000119107 en 900000000000003001 Cerebellar neoplasm sample (specimen) 900000000000448009 +3083760019 20220630 0 900000000000207008 16210851000119107 en 900000000000003001 Cerebellar neoplasm sample (specimen) 900000000000448009 +3083987014 20150731 1 900000000000207008 16222091000119100 en 900000000000013009 Skin sample obtained by excision, frozen section 900000000000020002 +3083987014 20170731 1 900000000000207008 16222091000119100 en 900000000000013009 Skin sample obtained by excision, frozen section 900000000000448009 +3083988016 20150731 1 900000000000207008 16222091000119100 en 900000000000003001 Skin sample obtained by excision, frozen section (specimen) 900000000000020002 +3083988016 20170731 1 900000000000207008 16222091000119100 en 900000000000003001 Skin sample obtained by excision, frozen section (specimen) 900000000000448009 +3083988016 20220630 0 900000000000207008 16222091000119100 en 900000000000003001 Skin sample obtained by excision, frozen section (specimen) 900000000000448009 +3285306012 20160131 1 900000000000207008 16210971000119108 en 900000000000013009 Lesion swab 900000000000020002 +3285306012 20170731 1 900000000000207008 16210971000119108 en 900000000000013009 Lesion swab 900000000000448009 +3285307015 20160131 1 900000000000207008 16210811000119106 en 900000000000013009 Desmoid tumor sample 900000000000020002 +3285307015 20170731 1 900000000000207008 16210811000119106 en 900000000000013009 Desmoid tumor sample 900000000000448009 +3285335016 20160131 1 900000000000207008 16210971000119108 en 900000000000003001 Swab from lesion (specimen) 900000000000020002 +3285335016 20170731 1 900000000000207008 16210971000119108 en 900000000000003001 Swab from lesion (specimen) 900000000000448009 +3285362012 20160131 1 900000000000207008 16221811000119106 en 900000000000003001 Specimen obtained by bronchoscopy (specimen) 900000000000020002 +3285362012 20170731 1 900000000000207008 16221811000119106 en 900000000000003001 Specimen obtained by bronchoscopy (specimen) 900000000000448009 +3285372010 20160131 1 900000000000207008 16210811000119106 en 900000000000003001 Desmoid tumor sample (specimen) 900000000000020002 +3285372010 20170731 1 900000000000207008 16210811000119106 en 900000000000003001 Desmoid tumor sample (specimen) 900000000000448009 +3285372010 20220630 0 900000000000207008 16210811000119106 en 900000000000003001 Desmoid tumor sample (specimen) 900000000000448009 +3285388010 20160131 1 900000000000207008 16210971000119108 en 900000000000013009 Swab from lesion 900000000000020002 +3285388010 20170731 1 900000000000207008 16210971000119108 en 900000000000013009 Swab from lesion 900000000000448009 +3285397014 20160131 1 900000000000207008 16210811000119106 en 900000000000013009 Desmoid tumour sample 900000000000020002 +3285397014 20170731 1 900000000000207008 16210811000119106 en 900000000000013009 Desmoid tumour sample 900000000000448009 +3285402013 20160131 1 900000000000207008 16221811000119106 en 900000000000013009 Specimen obtained by bronchoscopy 900000000000020002 +3285402013 20170731 1 900000000000207008 16221811000119106 en 900000000000013009 Specimen obtained by bronchoscopy 900000000000448009 +3288078018 20160131 1 900000000000207008 16210891000119102 en 900000000000003001 Brain neoplasm tissue sample (specimen) 900000000000020002 +3288078018 20170731 1 900000000000207008 16210891000119102 en 900000000000003001 Brain neoplasm tissue sample (specimen) 900000000000448009 +3288078018 20220630 0 900000000000207008 16210891000119102 en 900000000000003001 Brain neoplasm tissue sample (specimen) 900000000000448009 +3288096010 20160131 1 900000000000207008 15650531000119105 en 900000000000003001 Colorectal junction neoplasm tissue sample (specimen) 900000000000020002 +3288096010 20170731 1 900000000000207008 15650531000119105 en 900000000000003001 Colorectal junction neoplasm tissue sample (specimen) 900000000000448009 +3288096010 20220630 0 900000000000207008 15650531000119105 en 900000000000003001 Colorectal junction neoplasm tissue sample (specimen) 900000000000448009 +3288118014 20160131 1 900000000000207008 15650531000119105 en 900000000000013009 Colorectal junction neoplasm tissue sample 900000000000020002 +3288118014 20170731 1 900000000000207008 15650531000119105 en 900000000000013009 Colorectal junction neoplasm tissue sample 900000000000448009 +3288121011 20160131 1 900000000000207008 15650601000119102 en 900000000000013009 Thyroid neoplasm tissue sample 900000000000020002 +3288121011 20170731 1 900000000000207008 15650601000119102 en 900000000000013009 Thyroid neoplasm tissue sample 900000000000448009 +3288137017 20160131 1 900000000000207008 16210891000119102 en 900000000000013009 Brain neoplasm tissue sample 900000000000020002 +3288137017 20170731 1 900000000000207008 16210891000119102 en 900000000000013009 Brain neoplasm tissue sample 900000000000448009 +3288143015 20160131 1 900000000000207008 15650601000119102 en 900000000000003001 Thyroid neoplasm tissue sample (specimen) 900000000000020002 +3288143015 20170731 1 900000000000207008 15650601000119102 en 900000000000003001 Thyroid neoplasm tissue sample (specimen) 900000000000448009 +3288143015 20220630 0 900000000000207008 15650601000119102 en 900000000000003001 Thyroid neoplasm tissue sample (specimen) 900000000000448009 +3289081019 20160131 1 900000000000207008 16219801000119102 en 900000000000003001 Pinworm paddle submitted as specimen (specimen) 900000000000020002 +3289081019 20170731 1 900000000000207008 16219801000119102 en 900000000000003001 Pinworm paddle submitted as specimen (specimen) 900000000000448009 +3289101015 20160131 1 900000000000207008 16219801000119102 en 900000000000013009 Pinworm paddle submitted as specimen 900000000000020002 +3289101015 20170731 1 900000000000207008 16219801000119102 en 900000000000013009 Pinworm paddle submitted as specimen 900000000000448009 +3289336011 20160131 1 900000000000207008 16213851000119101 en 900000000000013009 Tissue specimen from larynx obtained by total resection 900000000000020002 +3289336011 20170731 1 900000000000207008 16213851000119101 en 900000000000013009 Tissue specimen from larynx obtained by total resection 900000000000448009 +3289347016 20160131 1 900000000000207008 16212331000119108 en 900000000000013009 Autoclave ampoule submitted as specimen 900000000000020002 +3289347016 20170731 1 900000000000207008 16212331000119108 en 900000000000013009 Autoclave ampoule submitted as specimen 900000000000448009 +3289375019 20160131 1 900000000000207008 16211651000119103 en 900000000000013009 Excised bone sample 900000000000020002 +3289375019 20170731 1 900000000000207008 16211651000119103 en 900000000000013009 Excised bone sample 900000000000448009 +3289387014 20160131 1 900000000000207008 16212171000119109 en 900000000000013009 Specimen from urinary bladder obtained by transurethral cystectomy 900000000000020002 +3289387014 20170731 1 900000000000207008 16212171000119109 en 900000000000013009 Specimen from urinary bladder obtained by transurethral cystectomy 900000000000448009 +3289394012 20160131 1 900000000000207008 16210411000119108 en 900000000000013009 Specimen from lip obtained by wedge resection 900000000000020002 +3289394012 20170731 1 900000000000207008 16210411000119108 en 900000000000013009 Specimen from lip obtained by wedge resection 900000000000448009 +3289397017 20160131 1 900000000000207008 16213851000119101 en 900000000000003001 Tissue specimen from larynx obtained by total resection (specimen) 900000000000020002 +3289397017 20170731 1 900000000000207008 16213851000119101 en 900000000000003001 Tissue specimen from larynx obtained by total resection (specimen) 900000000000448009 +3289414014 20160131 1 900000000000207008 16212091000119109 en 900000000000013009 Specimen from liver obtained by partial lobectomy 900000000000020002 +3289414014 20170731 1 900000000000207008 16212091000119109 en 900000000000013009 Specimen from liver obtained by partial lobectomy 900000000000448009 +3289421014 20160131 1 900000000000207008 16212331000119108 en 900000000000013009 Autoclave ampule submitted as specimen 900000000000020002 +3289421014 20170731 1 900000000000207008 16212331000119108 en 900000000000013009 Autoclave ampule submitted as specimen 900000000000448009 +3289427013 20160131 1 900000000000207008 16211651000119103 en 900000000000003001 Excised bone sample (specimen) 900000000000020002 +3289427013 20170731 1 900000000000207008 16211651000119103 en 900000000000003001 Excised bone sample (specimen) 900000000000448009 +3289427013 20220630 0 900000000000207008 16211651000119103 en 900000000000003001 Excised bone sample (specimen) 900000000000448009 +3289434010 20160131 1 900000000000207008 16212091000119109 en 900000000000003001 Specimen from liver obtained by partial lobectomy (specimen) 900000000000020002 +3289434010 20170731 1 900000000000207008 16212091000119109 en 900000000000003001 Specimen from liver obtained by partial lobectomy (specimen) 900000000000448009 +3289444012 20160131 1 900000000000207008 16212171000119109 en 900000000000003001 Specimen from urinary bladder obtained by transurethral cystectomy (specimen) 900000000000020002 +3289444012 20170731 1 900000000000207008 16212171000119109 en 900000000000003001 Specimen from urinary bladder obtained by transurethral cystectomy (specimen) 900000000000448009 +3289451015 20160131 1 900000000000207008 16212131000119106 en 900000000000003001 Specimen from liver obtained by partial resection (specimen) 900000000000020002 +3289451015 20170731 1 900000000000207008 16212131000119106 en 900000000000003001 Specimen from liver obtained by partial resection (specimen) 900000000000448009 +3289491017 20160131 1 900000000000207008 16212131000119106 en 900000000000013009 Specimen from liver obtained by partial resection 900000000000020002 +3289491017 20170731 1 900000000000207008 16212131000119106 en 900000000000013009 Specimen from liver obtained by partial resection 900000000000448009 +3289496010 20160131 1 900000000000207008 16210411000119108 en 900000000000003001 Specimen from lip obtained by wedge resection (specimen) 900000000000020002 +3289496010 20170731 1 900000000000207008 16210411000119108 en 900000000000003001 Specimen from lip obtained by wedge resection (specimen) 900000000000448009 +3289714010 20160131 1 900000000000207008 16212331000119108 en 900000000000003001 Autoclave ampule submitted as specimen (specimen) 900000000000020002 +3289714010 20170731 1 900000000000207008 16212331000119108 en 900000000000003001 Autoclave ampule submitted as specimen (specimen) 900000000000448009 +3290019017 20160131 1 900000000000207008 16222611000119100 en 900000000000013009 Specimen from prostate obtained by subtotal prostatectomy 900000000000020002 +3290019017 20170731 1 900000000000207008 16222611000119100 en 900000000000013009 Specimen from prostate obtained by subtotal prostatectomy 900000000000448009 +3290085015 20160131 1 900000000000207008 16222611000119100 en 900000000000003001 Specimen from prostate obtained by subtotal prostatectomy (specimen) 900000000000020002 +3290085015 20170731 1 900000000000207008 16222611000119100 en 900000000000003001 Specimen from prostate obtained by subtotal prostatectomy (specimen) 900000000000448009 +3305810016 20170131 1 900000000000207008 718684005 en 900000000000003001 Endocervical brush specimen (specimen) 900000000000020002 +3305810016 20170731 1 900000000000207008 718684005 en 900000000000003001 Endocervical brush specimen (specimen) 900000000000448009 +3311627014 20160731 1 900000000000207008 258654007 en 900000000000003001 Soy milk sample (specimen) 900000000000020002 +3311627014 20170731 1 900000000000207008 258654007 en 900000000000003001 Soy milk sample (specimen) 900000000000448009 +3311627014 20220630 0 900000000000207008 258654007 en 900000000000003001 Soy milk sample (specimen) 900000000000448009 +3311628016 20160731 1 900000000000207008 258654007 en 900000000000013009 Soy milk sample 900000000000020002 +3311628016 20170731 1 900000000000207008 258654007 en 900000000000013009 Soy milk sample 900000000000448009 +3313203012 20170131 1 900000000000207008 718684005 en 900000000000013009 Endocervical brush specimen 900000000000020002 +3313203012 20170731 1 900000000000207008 718684005 en 900000000000013009 Endocervical brush specimen 900000000000448009 +3315274019 20170131 1 900000000000207008 16220041000119107 en 900000000000003001 Tunneled catheter tip submitted as specimen (specimen) 900000000000448009 +3315275018 20170131 1 900000000000207008 16220041000119107 en 900000000000013009 Tunneled catheter tip submitted as specimen 900000000000448009 +3315276017 20170131 1 900000000000207008 16220041000119107 en 900000000000013009 Tunnelled catheter tip submitted as specimen 900000000000448009 +3441829015 20170731 1 900000000000207008 725372003 en 900000000000003001 Tissue specimen from aorta (specimen) 900000000000448009 +3441830013 20170731 1 900000000000207008 725372003 en 900000000000013009 Tissue specimen from aorta 900000000000448009 +3441831012 20170731 1 900000000000207008 725372003 en 900000000000013009 Aorta tissue sample 900000000000448009 +3441832017 20170731 1 900000000000207008 725372003 en 900000000000013009 Aorta tissue specimen 900000000000448009 +3441833010 20170731 1 900000000000207008 725372003 en 900000000000013009 Aortic tissue 900000000000448009 +3441834016 20170731 1 900000000000207008 725372003 en 900000000000013009 Tissue from aorta 900000000000448009 +3446700014 20170731 1 900000000000207008 725946000 en 900000000000003001 Reticulocyte specimen (specimen) 900000000000448009 +3446701013 20170731 1 900000000000207008 725946000 en 900000000000013009 Reticulocyte specimen 900000000000448009 +3446702018 20170731 1 900000000000207008 725946000 en 900000000000013009 Reticulocyte sample 900000000000448009 +3446796010 20170731 1 900000000000207008 725957005 en 900000000000003001 Formalin-fixed placenta tissue specimen (specimen) 900000000000448009 +3446797018 20170731 1 900000000000207008 725957005 en 900000000000013009 Formalin-fixed placenta tissue specimen 900000000000448009 +3463756012 20170731 1 900000000000207008 732211001 en 900000000000003001 Twelve hour urine specimen (specimen) 900000000000448009 +3463757015 20170731 1 900000000000207008 732211001 en 900000000000013009 12 hour urine specimen 900000000000448009 +3463758013 20170731 1 900000000000207008 732211001 en 900000000000013009 Twelve hour urine specimen 900000000000448009 +3463909015 20170731 1 900000000000207008 732217002 en 900000000000003001 Eight hour urine specimen (specimen) 900000000000448009 +3463910013 20170731 1 900000000000207008 732217002 en 900000000000013009 8 hour urine specimen 900000000000448009 +3463911012 20170731 1 900000000000207008 732217002 en 900000000000013009 Eight hour urine specimen 900000000000448009 +3463959012 20170731 1 900000000000207008 732220005 en 900000000000003001 Forty eight hour urine specimen (specimen) 900000000000448009 +3463960019 20170731 1 900000000000207008 732220005 en 900000000000013009 48 hour urine specimen 900000000000448009 +3463961015 20170731 1 900000000000207008 732220005 en 900000000000013009 Forty eight hour urine specimen 900000000000448009 +3463980018 20170731 1 900000000000207008 732222002 en 900000000000003001 Seventy two hour urine specimen (specimen) 900000000000448009 +3463981019 20170731 1 900000000000207008 732222002 en 900000000000013009 72 hour urine specimen 900000000000448009 +3463982014 20170731 1 900000000000207008 732222002 en 900000000000013009 Seventy two hour urine specimen 900000000000448009 +3464080010 20170731 1 900000000000207008 732227008 en 900000000000003001 Twenty four hour stool specimen (specimen) 900000000000448009 +3464081014 20170731 1 900000000000207008 732227008 en 900000000000013009 24 hour stool specimen 900000000000448009 +3464082019 20170731 1 900000000000207008 732227008 en 900000000000013009 Twenty four hour stool specimen 900000000000448009 +3464083012 20170731 1 900000000000207008 732227008 en 900000000000013009 24 hour fecal specimen 900000000000448009 +3464084018 20170731 1 900000000000207008 732227008 en 900000000000013009 24 hour feces specimen 900000000000448009 +3464085017 20170731 1 900000000000207008 732227008 en 900000000000013009 24 hour faeces specimen 900000000000448009 +3465294010 20170731 1 900000000000207008 732295009 en 900000000000003001 Discharge specimen from penis (specimen) 900000000000448009 +3465295011 20170731 1 900000000000207008 732295009 en 900000000000013009 Discharge specimen from penis 900000000000448009 +3465296012 20170731 1 900000000000207008 732295009 en 900000000000013009 Penile discharge specimen 900000000000448009 +3465297015 20170731 1 900000000000207008 732226004 en 900000000000003001 Forty eight hour stool specimen (specimen) 900000000000448009 +3465298013 20170731 1 900000000000207008 732226004 en 900000000000013009 48 hour stool specimen 900000000000448009 +3465299017 20170731 1 900000000000207008 732226004 en 900000000000013009 Forty eight hour stool specimen 900000000000448009 +3465300013 20170731 1 900000000000207008 732226004 en 900000000000013009 48 hour fecal specimen 900000000000448009 +3465301012 20170731 1 900000000000207008 732226004 en 900000000000013009 48 hour faecal specimen 900000000000448009 +3465302017 20170731 1 900000000000207008 732226004 en 900000000000013009 48 hour faeces specimen 900000000000448009 +3465303010 20170731 1 900000000000207008 732293002 en 900000000000003001 Salivary calculus specimen (specimen) 900000000000448009 +3465304016 20170731 1 900000000000207008 732293002 en 900000000000013009 Salivary calculus specimen 900000000000448009 +3465305015 20170731 1 900000000000207008 732293002 en 900000000000013009 Salivary stone specimen 900000000000448009 +3473685012 20170731 1 900000000000207008 733056005 en 900000000000003001 Fluid specimen from ear (specimen) 900000000000448009 +3473686013 20170731 1 900000000000207008 733056005 en 900000000000013009 Fluid specimen from ear 900000000000448009 +3473687016 20170731 1 900000000000207008 732976006 en 900000000000003001 Fluid specimen from external auditory canal (specimen) 900000000000448009 +3473688014 20170731 1 900000000000207008 732976006 en 900000000000013009 Fluid specimen from external auditory canal 900000000000448009 +3482916017 20170731 1 900000000000207008 732972008 en 900000000000003001 Fluid specimen from cyst of ovary (specimen) 900000000000448009 +3482917014 20170731 1 900000000000207008 732972008 en 900000000000013009 Fluid specimen from cyst of ovary 900000000000448009 +3482918016 20170731 1 900000000000207008 732972008 en 900000000000013009 Fluid specimen from ovarian cyst 900000000000448009 +3498471017 20170731 1 900000000000207008 732964006 en 900000000000013009 Gastric tube submitted as specimen 900000000000448009 +3498472012 20170731 1 900000000000207008 732964006 en 900000000000013009 Gastrostomy tube submitted as specimen 900000000000448009 +3498473019 20170731 1 900000000000207008 732964006 en 900000000000003001 Gastrostomy tube submitted as specimen (specimen) 900000000000448009 +3498497011 20170731 1 900000000000207008 732975005 en 900000000000003001 Fluid specimen from epididymis (specimen) 900000000000448009 +3498498018 20170731 1 900000000000207008 732975005 en 900000000000013009 Fluid specimen from epididymis 900000000000448009 +3498754017 20170731 1 900000000000207008 733101007 en 900000000000003001 Fluid specimen from perirenal region (specimen) 900000000000448009 +3498755016 20170731 1 900000000000207008 733101007 en 900000000000013009 Fluid specimen from perirenal region 900000000000448009 +3498756015 20170731 1 900000000000207008 733101007 en 900000000000013009 Fluid specimen from perinephric region 900000000000448009 +3498759010 20170731 1 900000000000207008 733103005 en 900000000000013009 Tissue specimen from scar 900000000000448009 +3498760017 20170731 1 900000000000207008 733103005 en 900000000000003001 Tissue specimen from scar (specimen) 900000000000448009 +3498761018 20170731 1 900000000000207008 733104004 en 900000000000013009 Buccal swab 900000000000448009 +3498762013 20170731 1 900000000000207008 733104004 en 900000000000013009 Swab from buccal mucosa 900000000000448009 +3498763015 20170731 1 900000000000207008 733104004 en 900000000000003001 Swab from buccal mucosa (specimen) 900000000000448009 +3498764014 20170731 1 900000000000207008 733105003 en 900000000000013009 Cytologic material from lymph node of neck obtained by fine needle aspiration 900000000000448009 +3498765010 20170731 1 900000000000207008 733105003 en 900000000000003001 Cytologic material from lymph node of neck obtained by fine needle aspiration (specimen) 900000000000448009 +3499513017 20170731 1 900000000000207008 733475007 en 900000000000003001 Cytologic material from mass of neck obtained by fine needle aspiration (specimen) 900000000000448009 +3499514011 20170731 1 900000000000207008 733475007 en 900000000000013009 Cytologic material from mass of neck obtained by fine needle aspiration 900000000000448009 +3499515012 20170731 1 900000000000207008 733476008 en 900000000000003001 Cytologic material from neck obtained by fine needle aspiration (specimen) 900000000000448009 +3499516013 20170731 1 900000000000207008 733476008 en 900000000000013009 Cytologic material from neck obtained by fine needle aspiration 900000000000448009 +3499528017 20170731 1 900000000000207008 733482006 en 900000000000013009 Second void urine specimen 900000000000448009 +3499529013 20170731 1 900000000000207008 733482006 en 900000000000013009 Second void urine sample 900000000000448009 +3499530015 20170731 1 900000000000207008 733482006 en 900000000000003001 Second void urine specimen (specimen) 900000000000448009 +3499534012 20170731 1 900000000000207008 733484007 en 900000000000013009 Specimen from lesion of penis obtained by scraping 900000000000448009 +3499535013 20170731 1 900000000000207008 733484007 en 900000000000013009 Specimen from penile lesion obtained by scraping 900000000000448009 +3499536014 20170731 1 900000000000207008 733484007 en 900000000000003001 Specimen from lesion of penis obtained by scraping (specimen) 900000000000448009 +3499537017 20170731 1 900000000000207008 733485008 en 900000000000003001 Specimen from lesion of perianal region obtained by scraping (specimen) 900000000000448009 +3499538010 20170731 1 900000000000207008 733485008 en 900000000000013009 Specimen from perianal lesion obtained by scraping 900000000000448009 +3499539019 20170731 1 900000000000207008 733485008 en 900000000000013009 Specimen from lesion of perianal region obtained by scraping 900000000000448009 +3504478010 20180131 1 900000000000207008 734307008 en 900000000000003001 Specimen from jejunostomy stoma (specimen) 900000000000448009 +3504479019 20180131 1 900000000000207008 734307008 en 900000000000013009 Specimen from jejunostomy stoma 900000000000448009 +3504484013 20180131 1 900000000000207008 16220931000119104 en 900000000000013009 Pancreatic cyst fluid specimen 900000000000448009 +3504865015 20180131 1 900000000000207008 734333000 en 900000000000003001 Specimen from epidermoid cyst (specimen) 900000000000448009 +3504866019 20180131 1 900000000000207008 734333000 en 900000000000013009 Specimen from epidermoid cyst 900000000000448009 +3504869014 20180131 1 900000000000207008 734335007 en 900000000000003001 Specimen from scar (specimen) 900000000000448009 +3504870010 20180131 1 900000000000207008 734335007 en 900000000000013009 Specimen from scar 900000000000448009 +3504871014 20180131 1 900000000000207008 734334006 en 900000000000003001 Specimen from sebaceous cyst (specimen) 900000000000448009 +3504872019 20180131 1 900000000000207008 734334006 en 900000000000013009 Specimen from sebaceous cyst 900000000000448009 +3504873012 20180131 1 900000000000207008 734336008 en 900000000000003001 Specimen from aorta (specimen) 900000000000448009 +3504874018 20180131 1 900000000000207008 734336008 en 900000000000013009 Specimen from aorta 900000000000448009 +3504889010 20180131 1 900000000000207008 734338009 en 900000000000003001 Arthropod material submitted as specimen (specimen) 900000000000448009 +3504890018 20180131 1 900000000000207008 734338009 en 900000000000013009 Arthropod material submitted as specimen 900000000000448009 +3504895011 20180131 1 900000000000207008 734341000 en 900000000000003001 Specimen from mass of posterior mediastinum (specimen) 900000000000448009 +3504896012 20180131 1 900000000000207008 734341000 en 900000000000013009 Specimen from mass of posterior mediastinum 900000000000448009 +3504897015 20180131 1 900000000000207008 734341000 en 900000000000013009 Specimen from posterior mediastinal mass 900000000000448009 +3504898013 20180131 1 900000000000207008 734337004 en 900000000000003001 Specimen from mass of nasopharynx (specimen) 900000000000448009 +3504899017 20180131 1 900000000000207008 734337004 en 900000000000013009 Specimen from mass of nasopharynx 900000000000448009 +3504900010 20180131 1 900000000000207008 734337004 en 900000000000013009 Specimen from nasopharyngeal mass 900000000000448009 +3504901014 20180131 1 900000000000207008 734342007 en 900000000000003001 Specimen from mass of anterior mediastinum (specimen) 900000000000448009 +3504903012 20180131 1 900000000000207008 734342007 en 900000000000013009 Specimen from mass of anterior mediastinum 900000000000448009 +3504905017 20180131 1 900000000000207008 734342007 en 900000000000013009 Specimen from anterior mediastinal mass 900000000000448009 +3504911019 20180131 1 900000000000207008 734343002 en 900000000000003001 Specimen from mass of breast (specimen) 900000000000448009 +3504912014 20180131 1 900000000000207008 734343002 en 900000000000013009 Specimen from mass of breast 900000000000448009 +3505736013 20180131 1 900000000000207008 734375004 en 900000000000003001 Specimen from mass of retroperitoneum (specimen) 900000000000448009 +3505737016 20180131 1 900000000000207008 734375004 en 900000000000013009 Specimen from mass of retroperitoneum 900000000000448009 +3505738014 20180131 1 900000000000207008 734375004 en 900000000000013009 Specimen from retroperitoneal mass 900000000000448009 +3505743019 20180131 1 900000000000207008 734377007 en 900000000000003001 Specimen from mass of subcutaneous tissue (specimen) 900000000000448009 +3505744013 20180131 1 900000000000207008 734377007 en 900000000000013009 Specimen from mass of subcutaneous tissue 900000000000448009 +3505790017 20180131 1 900000000000207008 734379005 en 900000000000003001 Specimen from periodontal tissue (specimen) 900000000000448009 +3505791018 20180131 1 900000000000207008 734379005 en 900000000000013009 Specimen from periodontal tissue 900000000000448009 +3505798012 20180131 1 900000000000207008 734380008 en 900000000000003001 Specimen from surgical wound (specimen) 900000000000448009 +3505799016 20180131 1 900000000000207008 734380008 en 900000000000013009 Specimen from surgical wound 900000000000448009 +3505800017 20180131 1 900000000000207008 734381007 en 900000000000003001 Specimen from superficial wound (specimen) 900000000000448009 +3505801018 20180131 1 900000000000207008 734381007 en 900000000000013009 Specimen from superficial wound 900000000000448009 +3506531013 20180131 1 900000000000207008 734419001 en 900000000000003001 Specimen from mass of axillary lymph node (specimen) 900000000000448009 +3506532018 20180131 1 900000000000207008 734419001 en 900000000000013009 Specimen from mass of axillary lymph node 900000000000448009 +3506533011 20180131 1 900000000000207008 734420007 en 900000000000003001 Specimen from mass of inguinal lymph node (specimen) 900000000000448009 +3506534017 20180131 1 900000000000207008 734420007 en 900000000000013009 Specimen from mass of inguinal lymph node 900000000000448009 +3506535016 20180131 1 900000000000207008 734417004 en 900000000000003001 Specimen from mass of thoracic cavity (specimen) 900000000000448009 +3506536015 20180131 1 900000000000207008 734417004 en 900000000000013009 Specimen from mass of thoracic cavity 900000000000448009 +3506537012 20180131 1 900000000000207008 734417004 en 900000000000013009 Specimen from intrathoracic mass 900000000000448009 +3506538019 20180131 1 900000000000207008 734421006 en 900000000000003001 Specimen from mass of mediastinal lymph node (specimen) 900000000000448009 +3506539010 20180131 1 900000000000207008 734421006 en 900000000000013009 Specimen from mass of mediastinal lymph node 900000000000448009 +3506540012 20180131 1 900000000000207008 734421006 en 900000000000013009 Specimen from mass of lymph node of mediastinum 900000000000448009 +3506541011 20180131 1 900000000000207008 734422004 en 900000000000003001 Specimen from duodenal mucosa (specimen) 900000000000448009 +3506542016 20180131 1 900000000000207008 734422004 en 900000000000013009 Specimen from duodenal mucosa 900000000000448009 +3506566010 20180131 1 900000000000207008 734425002 en 900000000000003001 Specimen from ear obtained by aspiration (specimen) 900000000000448009 +3506567018 20180131 1 900000000000207008 734425002 en 900000000000013009 Specimen from ear obtained by aspiration 900000000000448009 +3506568011 20180131 1 900000000000207008 734425002 en 900000000000013009 Ear aspirate specimen 900000000000448009 +3506569015 20180131 1 900000000000207008 734426001 en 900000000000003001 Specimen from jejunum obtained by aspiration (specimen) 900000000000448009 +3506570019 20180131 1 900000000000207008 734426001 en 900000000000013009 Specimen from jejunum obtained by aspiration 900000000000448009 +3506571015 20180131 1 900000000000207008 734426001 en 900000000000013009 Jejunal aspirate specimen 900000000000448009 +3506572010 20180131 1 900000000000207008 734427005 en 900000000000003001 Specimen from duodenum obtained by aspiration (specimen) 900000000000448009 +3506573017 20180131 1 900000000000207008 734427005 en 900000000000013009 Specimen from duodenum obtained by aspiration 900000000000448009 +3506574011 20180131 1 900000000000207008 734427005 en 900000000000013009 Duodenal aspirate specimen 900000000000448009 +3506773019 20180131 1 900000000000207008 734442008 en 900000000000003001 Specimen from calf of leg (specimen) 900000000000448009 +3506774013 20180131 1 900000000000207008 734442008 en 900000000000013009 Specimen from calf of leg 900000000000448009 +3506804016 20180131 1 900000000000207008 734443003 en 900000000000003001 Urine specimen from ureter obtained by cystoscopy (specimen) 900000000000448009 +3506805015 20180131 1 900000000000207008 734443003 en 900000000000013009 Urine specimen from ureter obtained by cystoscopy 900000000000448009 +3506811017 20180131 1 900000000000207008 446817004 en 900000000000003001 Bile specimen from gallbladder (specimen) 900000000000448009 +3506812012 20180131 1 900000000000207008 446817004 en 900000000000013009 Bile specimen from gallbladder 900000000000448009 +3506815014 20180131 1 900000000000207008 122656001 en 900000000000003001 Tissue specimen from gallbladder (specimen) 900000000000448009 +3506816010 20180131 1 900000000000207008 122656001 en 900000000000013009 Tissue specimen from gallbladder 900000000000448009 +3513564014 20180131 1 900000000000207008 735197003 en 900000000000003001 Specimen from right breast (specimen) 900000000000448009 +3513565010 20180131 1 900000000000207008 735197003 en 900000000000013009 Specimen from right breast 900000000000448009 +3513567019 20180131 1 900000000000207008 735198008 en 900000000000003001 Specimen from left breast (specimen) 900000000000448009 +3513568012 20180131 1 900000000000207008 735198008 en 900000000000013009 Specimen from left breast 900000000000448009 +3515798017 20180131 1 900000000000207008 735950000 en 900000000000003001 Swab of vascular catheter insertion site (specimen) 900000000000448009 +3515799013 20180131 1 900000000000207008 735950000 en 900000000000013009 Swab of vascular catheter insertion site 900000000000448009 +3526247019 20180131 1 900000000000207008 737016007 en 900000000000013009 Tissue sample from aneurysm obtained by surgical resection 900000000000448009 +3526248012 20180131 1 900000000000207008 737016007 en 900000000000013009 Tissue specimen from aneurysm obtained by surgical resection 900000000000448009 +3526249016 20180131 1 900000000000207008 737016007 en 900000000000003001 Tissue specimen from aneurysm obtained by surgical excision (specimen) 900000000000448009 +3526250016 20180131 1 900000000000207008 737016007 en 900000000000013009 Tissue specimen from aneurysm obtained by surgical excision 900000000000448009 +3526251017 20180131 1 900000000000207008 737017003 en 900000000000003001 Joint loose body specimen (specimen) 900000000000448009 +3526252012 20180131 1 900000000000207008 737017003 en 900000000000013009 Loose body specimen from joint 900000000000448009 +3526253019 20180131 1 900000000000207008 737017003 en 900000000000013009 Joint loose body specimen 900000000000448009 +3526765019 20180131 1 900000000000207008 737087006 en 900000000000013009 Specimen from control 900000000000448009 +3526766018 20180131 1 900000000000207008 737087006 en 900000000000003001 Specimen from control (specimen) 900000000000448009 +3526852016 20180131 1 900000000000207008 737089009 en 900000000000013009 Serum specimen from control 900000000000448009 +3526853014 20180131 1 900000000000207008 737089009 en 900000000000003001 Serum specimen from control (specimen) 900000000000448009 +3527062016 20180131 1 900000000000207008 737357006 en 900000000000013009 Foetal blood specimen 900000000000448009 +3527503017 20180131 1 900000000000207008 737356002 en 900000000000013009 Pooled platelet poor plasma specimen 900000000000448009 +3527504011 20180131 1 900000000000207008 737356002 en 900000000000003001 Pooled platelet poor plasma specimen (specimen) 900000000000448009 +3527505012 20180131 1 900000000000207008 737357006 en 900000000000003001 Fetal blood specimen (specimen) 900000000000448009 +3527506013 20180131 1 900000000000207008 737357006 en 900000000000013009 Fetal blood specimen 900000000000448009 +3533707010 20180131 1 900000000000207008 440500007 en 900000000000013009 Dried blood spot specimen 900000000000448009 +3533708017 20180131 1 900000000000207008 440500007 en 900000000000003001 Dried blood spot specimen (specimen) 900000000000448009 +3644836010 20180731 1 900000000000207008 258470000 en 900000000000013009 Expressed prostatic fluid 900000000000448009 +3658893019 20180731 1 900000000000207008 765469005 en 900000000000013009 Hysterectomy and left salpingo-oophorectomy sample 900000000000448009 +3658894013 20180731 1 900000000000207008 765469005 en 900000000000003001 Hysterectomy and left salpingo-oophorectomy sample (specimen) 900000000000448009 +3658894013 20220630 0 900000000000207008 765469005 en 900000000000003001 Hysterectomy and left salpingo-oophorectomy sample (specimen) 900000000000448009 +3658895014 20180731 1 900000000000207008 765469005 en 900000000000013009 Excised uterus and left fallopian tube and ovary sample 900000000000448009 +3658896010 20180731 1 900000000000207008 765470006 en 900000000000013009 Excised uterus and right fallopian tube and ovary sample 900000000000448009 +3658897018 20180731 1 900000000000207008 765470006 en 900000000000013009 Hysterectomy and right salpingo-oophorectomy sample 900000000000448009 +3658898011 20180731 1 900000000000207008 765470006 en 900000000000003001 Hysterectomy and right salpingo-oophorectomy sample (specimen) 900000000000448009 +3658898011 20220630 0 900000000000207008 765470006 en 900000000000003001 Hysterectomy and right salpingo-oophorectomy sample (specimen) 900000000000448009 +3724465018 20190131 1 900000000000207008 773611006 en 900000000000013009 Haemodialysis catheter submitted as specimen 900000000000448009 +3724466017 20190131 1 900000000000207008 773611006 en 900000000000013009 Hemodialysis catheter submitted as specimen 900000000000448009 +3724467014 20190131 1 900000000000207008 773611006 en 900000000000003001 Hemodialysis catheter submitted as specimen (specimen) 900000000000448009 +3724899011 20190131 1 900000000000207008 773630006 en 900000000000013009 Urinary catheter submitted as specimen 900000000000448009 +3724900018 20190131 1 900000000000207008 773630006 en 900000000000003001 Urinary catheter submitted as specimen (specimen) 900000000000448009 +3774562015 20190731 1 900000000000207008 787149001 en 900000000000003001 Unstained slide of tissue section (specimen) 900000000000448009 +3774563013 20190731 1 900000000000207008 787149001 en 900000000000013009 Unstained slide of tissue section 900000000000448009 +3774564019 20190731 1 900000000000207008 787150001 en 900000000000013009 Stained slide of tissue section 900000000000448009 +3774565018 20190731 1 900000000000207008 787150001 en 900000000000003001 Stained slide of tissue section (specimen) 900000000000448009 +3774566017 20190731 1 900000000000207008 787151002 en 900000000000013009 Specimen in tissue fixative 900000000000448009 +3774567014 20190731 1 900000000000207008 787151002 en 900000000000003001 Specimen in tissue fixative (specimen) 900000000000448009 +3774568016 20190731 1 900000000000207008 787152009 en 900000000000003001 Specimen in non-fixative preservation fluid (specimen) 900000000000448009 +3774569012 20190731 1 900000000000207008 787152009 en 900000000000013009 Specimen in non-fixative preservation fluid 900000000000448009 +3781784014 20200131 1 900000000000207008 788524009 en 900000000000003001 Tissue specimen obtained by segmental excision (specimen) 900000000000448009 +3781785010 20200131 1 900000000000207008 788524009 en 900000000000013009 Tissue specimen obtained by segmental excision 900000000000448009 +3784540011 20200131 1 900000000000207008 788707000 en 900000000000003001 Plasma specimen or serum specimen or whole blood specimen (specimen) 900000000000448009 +3784541010 20200131 1 900000000000207008 788707000 en 900000000000013009 Plasma specimen or serum specimen or whole blood specimen 900000000000448009 +3788821019 20200131 1 900000000000207008 621000009105 en 900000000000013009 Viral isolate specimen 900000000000448009 +3788822014 20200131 1 900000000000207008 621000009105 en 900000000000003001 Viral isolate specimen (specimen) 900000000000448009 +3880161015 20200731 1 900000000000207008 119303007 en 900000000000013009 Microbial isolate 900000000000448009 +3901789016 20200731 1 900000000000207008 840395001 en 900000000000013009 Fluid specimen from otic region 900000000000448009 +3901790013 20200731 1 900000000000207008 840395001 en 900000000000013009 Fluid specimen from auricular region 900000000000448009 +3901791012 20200731 1 900000000000207008 840395001 en 900000000000013009 Fluid specimen from ear region 900000000000448009 +3901792017 20200731 1 900000000000207008 840395001 en 900000000000003001 Fluid specimen from ear region (specimen) 900000000000448009 +3957017019 20200731 1 900000000000207008 866032008 en 900000000000013009 Blood specimen in anaerobic blood culture bottle 900000000000448009 +3957018012 20200731 1 900000000000207008 866032008 en 900000000000003001 Blood specimen in anaerobic blood culture bottle (specimen) 900000000000448009 +3957019016 20200731 1 900000000000207008 866033003 en 900000000000013009 Blood specimen in aerobic blood culture bottle 900000000000448009 +3957020010 20200731 1 900000000000207008 866033003 en 900000000000003001 Blood specimen in aerobic blood culture bottle (specimen) 900000000000448009 +3957021014 20200731 1 900000000000207008 866034009 en 900000000000003001 Acute phase serum specimen (specimen) 900000000000448009 +3957022019 20200731 1 900000000000207008 866034009 en 900000000000013009 Acute phase serum specimen 900000000000448009 +3957023012 20200731 1 900000000000207008 866035005 en 900000000000003001 Convalescent phase serum specimen (specimen) 900000000000448009 +3957024018 20200731 1 900000000000207008 866035005 en 900000000000013009 Convalescent phase serum specimen 900000000000448009 +3969025014 20200731 1 900000000000207008 442427000 en 900000000000013009 After midday serum specimen 900000000000448009 +3969026010 20200731 1 900000000000207008 442219007 en 900000000000013009 After midday specimen 900000000000448009 +3969027018 20200731 1 900000000000207008 442524009 en 900000000000013009 Before midday specimen 900000000000448009 +3969028011 20200731 1 900000000000207008 442166002 en 900000000000013009 Before midday serum specimen 900000000000448009 +3991077012 20210131 1 900000000000207008 878861003 en 900000000000003001 Blood specimen in blood culture bottle (specimen) 900000000000448009 +3991078019 20210131 1 900000000000207008 878861003 en 900000000000013009 Blood specimen in blood culture bottle 900000000000448009 +4042395018 20210131 1 900000000000207008 898201001 en 900000000000013009 Specimen from device 900000000000448009 +4042396017 20210131 1 900000000000207008 898201001 en 900000000000003001 Specimen from device (specimen) 900000000000448009 +4042473016 20210131 1 900000000000207008 898203003 en 900000000000013009 Vacuum cleaner bag submitted as specimen 900000000000448009 +4042474010 20210131 1 900000000000207008 898203003 en 900000000000003001 Vacuum cleaner bag submitted as specimen (specimen) 900000000000448009 +4042475011 20210131 1 900000000000207008 898203003 en 900000000000013009 Vacuum cleaner bag specimen 900000000000448009 +4042478013 20210131 1 900000000000207008 898205005 en 900000000000003001 Dried plasma spot specimen (specimen) 900000000000448009 +4042479017 20210131 1 900000000000207008 898205005 en 900000000000013009 Dried plasma spot specimen 900000000000448009 +4165271018 20210131 1 900000000000207008 119304001 en 900000000000013009 Specimen from blood bag 900000000000448009 +4165272013 20210131 1 900000000000207008 119304001 en 900000000000003001 Specimen from blood bag (specimen) 900000000000448009 +4165273015 20210131 1 900000000000207008 122563008 en 900000000000003001 Specimen from blood bag from patient (specimen) 900000000000448009 +4165274014 20210131 1 900000000000207008 122563008 en 900000000000013009 Specimen from blood bag from patient 900000000000448009 +4165275010 20210131 1 900000000000207008 122564002 en 900000000000003001 Specimen from blood bag from blood product (specimen) 900000000000448009 +4165276011 20210131 1 900000000000207008 122564002 en 900000000000013009 Specimen from blood bag from blood product 900000000000448009 +4165277019 20210131 1 900000000000207008 119311002 en 900000000000003001 Catheter submitted as specimen (specimen) 900000000000448009 +4165278012 20210131 1 900000000000207008 119311002 en 900000000000013009 Catheter submitted as specimen 900000000000448009 +4165279016 20210131 1 900000000000207008 1003705007 en 900000000000003001 Drain tip submitted as specimen (specimen) 900000000000448009 +4165280018 20210131 1 900000000000207008 1003705007 en 900000000000013009 Drain tip submitted as specimen 900000000000448009 +4165281019 20210131 1 900000000000207008 1003706008 en 900000000000003001 Specimen from drain tip (specimen) 900000000000448009 +4165282014 20210131 1 900000000000207008 1003706008 en 900000000000013009 Specimen from drain tip 900000000000448009 +4165285011 20210131 1 900000000000207008 1003708009 en 900000000000003001 Specimen from drain device (specimen) 900000000000448009 +4165286012 20210131 1 900000000000207008 1003708009 en 900000000000013009 Specimen from drain device 900000000000448009 +4165287015 20210131 1 900000000000207008 1003707004 en 900000000000013009 Drain device submitted as specimen 900000000000448009 +4165288013 20210131 1 900000000000207008 1003707004 en 900000000000003001 Drain device submitted as specimen (specimen) 900000000000448009 +4165289017 20210131 1 900000000000207008 119305000 en 900000000000003001 Specimen from plasma bag (specimen) 900000000000448009 +4165290014 20210131 1 900000000000207008 119305000 en 900000000000013009 Specimen from plasma bag 900000000000448009 +4165291013 20210131 1 900000000000207008 1003709001 en 900000000000003001 Tube submitted as specimen (specimen) 900000000000448009 +4165292018 20210131 1 900000000000207008 1003709001 en 900000000000013009 Tube submitted as specimen 900000000000448009 +4165293011 20210131 1 900000000000207008 1003710006 en 900000000000003001 Specimen from tube (specimen) 900000000000448009 +4165294017 20210131 1 900000000000207008 1003710006 en 900000000000013009 Specimen from tube 900000000000448009 +4165295016 20210131 1 900000000000207008 119308003 en 900000000000013009 Cannula submitted as specimen 900000000000448009 +4165297012 20210131 1 900000000000207008 119308003 en 900000000000003001 Cannula submitted as specimen (specimen) 900000000000448009 +4165298019 20210131 1 900000000000207008 258627009 en 900000000000003001 Cannula tip submitted as specimen (specimen) 900000000000448009 +4165299010 20210131 1 900000000000207008 258627009 en 900000000000013009 Cannula tip submitted as specimen 900000000000448009 +4165300019 20210131 1 900000000000207008 258631003 en 900000000000003001 Arteriovenous shunt tip submitted as specimen (specimen) 900000000000448009 +4165301015 20210131 1 900000000000207008 258631003 en 900000000000013009 Arteriovenous shunt tip submitted as specimen 900000000000448009 +4165302010 20210131 1 900000000000207008 258630002 en 900000000000003001 Venous cannula tip submitted as specimen (specimen) 900000000000448009 +4165303017 20210131 1 900000000000207008 258630002 en 900000000000013009 Venous cannula tip submitted as specimen 900000000000448009 +4165304011 20210131 1 900000000000207008 258629007 en 900000000000003001 Arterial cannula tip submitted as specimen (specimen) 900000000000448009 +4165305012 20210131 1 900000000000207008 258629007 en 900000000000013009 Arterial cannula tip submitted as specimen 900000000000448009 +4165306013 20210131 1 900000000000207008 258628004 en 900000000000013009 Vascular cannula tip submitted as specimen 900000000000448009 +4165307016 20210131 1 900000000000207008 258628004 en 900000000000003001 Vascular cannula tip submitted as specimen (specimen) 900000000000448009 +4165308014 20210131 1 900000000000207008 119309006 en 900000000000013009 Arterial line submitted as specimen 900000000000448009 +4165309018 20210131 1 900000000000207008 119309006 en 900000000000003001 Arterial line submitted as specimen (specimen) 900000000000448009 +4165310011 20210131 1 900000000000207008 119313004 en 900000000000013009 Implantable venous catheter submitted as specimen 900000000000448009 +4165311010 20210131 1 900000000000207008 119313004 en 900000000000003001 Implantable venous catheter submitted as specimen (specimen) 900000000000448009 +4165312015 20210131 1 900000000000207008 119312009 en 900000000000013009 Catheter tip submitted as specimen 900000000000448009 +4165313013 20210131 1 900000000000207008 119312009 en 900000000000003001 Catheter tip submitted as specimen (specimen) 900000000000448009 +4165314019 20210131 1 900000000000207008 119314005 en 900000000000003001 Electrode submitted as specimen (specimen) 900000000000448009 +4165315018 20210131 1 900000000000207008 119314005 en 900000000000013009 Electrode submitted as specimen 900000000000448009 +4165316017 20210131 1 900000000000207008 1003711005 en 900000000000013009 Specimen from prosthetic joint 900000000000448009 +4165317014 20210131 1 900000000000207008 1003711005 en 900000000000003001 Specimen from prosthetic joint (specimen) 900000000000448009 +4165318016 20210131 1 900000000000207008 1003712003 en 900000000000013009 Prosthetic joint submitted as specimen 900000000000448009 +4165319012 20210131 1 900000000000207008 1003712003 en 900000000000003001 Prosthetic joint submitted as specimen (specimen) 900000000000448009 +4165320018 20210131 1 900000000000207008 1003713008 en 900000000000003001 Prosthetic heart valve submitted as specimen (specimen) 900000000000448009 +4165321019 20210131 1 900000000000207008 1003713008 en 900000000000013009 Prosthetic heart valve submitted as specimen 900000000000448009 +4165322014 20210131 1 900000000000207008 1003714002 en 900000000000003001 Specimen from prosthetic heart valve (specimen) 900000000000448009 +4165323016 20210131 1 900000000000207008 1003714002 en 900000000000013009 Specimen from prosthetic heart valve 900000000000448009 +4168464012 20210131 1 900000000000207008 1003517007 en 900000000000013009 Lyophilized specimen 900000000000448009 +4168465013 20210131 1 900000000000207008 1003517007 en 900000000000003001 Freeze dried specimen (specimen) 900000000000448009 +4168466014 20210131 1 900000000000207008 1003517007 en 900000000000013009 Freeze dried specimen 900000000000448009 +4168476012 20210131 1 900000000000207008 1003522007 en 900000000000013009 Burrow swab 900000000000448009 +4168478013 20210131 1 900000000000207008 1003522007 en 900000000000003001 Environmental swab from animal burrow (specimen) 900000000000448009 +4168479017 20210131 1 900000000000207008 1003522007 en 900000000000013009 Environmental swab from animal burrow 900000000000448009 +4553964012 20210731 1 900000000000207008 1149105007 en 900000000000013009 Oropharyngeal rinse 900000000000448009 +4553967017 20210731 1 900000000000207008 1149105007 en 900000000000013009 Oropharyngeal washings 900000000000448009 +4553968010 20210731 1 900000000000207008 1149105007 en 900000000000003001 Oropharyngeal washings (specimen) 900000000000448009 +4553969019 20210731 1 900000000000207008 1149105007 en 900000000000013009 Oropharyngeal gargle 900000000000448009 +4554968018 20210731 1 900000000000207008 1003517007 en 900000000000013009 Lyophilised specimen 900000000000448009 +4571447014 20210731 1 900000000000207008 122634004 en 900000000000013009 Total gastrectomy sample 900000000000448009 +4572836010 20210731 1 900000000000207008 29041000087104 en 900000000000013009 Specimen from pelvic abscess 900000000000448009 +4572837018 20210731 1 900000000000207008 29041000087104 en 900000000000003001 Specimen from pelvic abscess (specimen) 900000000000448009 +4572842014 20210731 1 900000000000207008 29011000087100 en 900000000000003001 Specimen from abscess of lung (specimen) 900000000000448009 +4572843016 20210731 1 900000000000207008 29011000087100 en 900000000000013009 Specimen from abscess of lung 900000000000448009 +4572852013 20210731 1 900000000000207008 29021000087108 en 900000000000013009 Specimen from tooth abscess 900000000000448009 +4572853015 20210731 1 900000000000207008 29021000087108 en 900000000000003001 Specimen from abscess of tooth (specimen) 900000000000448009 +4572854014 20210731 1 900000000000207008 29021000087108 en 900000000000013009 Specimen from dental abscess 900000000000448009 +4572855010 20210731 1 900000000000207008 29021000087108 en 900000000000013009 Specimen from abscess of tooth 900000000000448009 +4572862018 20210731 1 900000000000207008 29031000087105 en 900000000000003001 Specimen from graft (specimen) 900000000000448009 +4572863011 20210731 1 900000000000207008 29031000087105 en 900000000000013009 Specimen from graft 900000000000448009 +4572872015 20210731 1 900000000000207008 28971000087101 en 900000000000013009 Swab from bite wound 900000000000448009 +4572874019 20210731 1 900000000000207008 28971000087101 en 900000000000013009 Bite wound swab 900000000000448009 +4572875018 20210731 1 900000000000207008 28971000087101 en 900000000000003001 Swab from bite wound (specimen) 900000000000448009 +4572876017 20210731 1 900000000000207008 28981000087104 en 900000000000003001 Epidural catheter tip submitted as specimen (specimen) 900000000000448009 +4572877014 20210731 1 900000000000207008 28981000087104 en 900000000000013009 Epidural catheter tip submitted as specimen 900000000000448009 +4572880010 20210731 1 900000000000207008 29001000087102 en 900000000000013009 External stoma wound swab 900000000000448009 +4572883012 20210731 1 900000000000207008 28991000087102 en 900000000000013009 Swab from epiglottis 900000000000448009 +4572884018 20210731 1 900000000000207008 28991000087102 en 900000000000013009 Epiglottis swab 900000000000448009 +4572885017 20210731 1 900000000000207008 28991000087102 en 900000000000013009 Epiglottal swab 900000000000448009 +4572886016 20210731 1 900000000000207008 28991000087102 en 900000000000003001 Swab from epiglottis (specimen) 900000000000448009 +4572887013 20210731 1 900000000000207008 29001000087102 en 900000000000003001 Swab from external stoma wound (specimen) 900000000000448009 +4572888015 20210731 1 900000000000207008 29001000087102 en 900000000000013009 Swab from external stoma wound 900000000000448009 +4579248016 20210731 1 900000000000207008 3040001000004107 en 900000000000003001 Paraffin embedded tissue block specimen (specimen) 900000000000448009 +4579249012 20210731 1 900000000000207008 3040001000004107 en 900000000000013009 Paraffin embedded tissue block specimen 900000000000448009 +4597693019 20210930 1 900000000000207008 1163592005 en 900000000000013009 Swab from paraurethral gland 900000000000448009 +4597694013 20210930 1 900000000000207008 1163592005 en 900000000000003001 Swab from paraurethral gland (specimen) 900000000000448009 +4597695014 20210930 1 900000000000207008 1163592005 en 900000000000013009 Swab from Skene's gland 900000000000020002 +4597696010 20210930 1 900000000000207008 1163592005 en 900000000000013009 Swab from Skene gland 900000000000020002 +4635109013 20211031 1 900000000000207008 1172660005 en 900000000000013009 Tissue specimen from extrahepatic bile duct obtained by excision 900000000000448009 +4635110015 20211031 1 900000000000207008 1172660005 en 900000000000003001 Tissue specimen from extrahepatic bile duct obtained by excision (specimen) 900000000000448009 +4637457011 20210930 1 900000000000207008 1173097006 en 900000000000013009 Specimen from anus and/or rectum 900000000000448009 +4637458018 20210930 1 900000000000207008 1173097006 en 900000000000003001 Specimen from anus and/or rectum (specimen) 900000000000448009 +4639176014 20211031 1 900000000000207008 1173996004 en 900000000000003001 Tissue specimen from polyp obtained by excision (specimen) 900000000000448009 +4639177017 20211031 1 900000000000207008 1173996004 en 900000000000013009 Tissue specimen from polyp obtained by excision 900000000000448009 +4639178010 20211031 1 900000000000207008 1173996004 en 900000000000013009 Tissue specimen obtained by polypectomy 900000000000448009 +4643449011 20211031 1 900000000000207008 30961000087106 en 900000000000013009 Urine specimen from ileal conduit 900000000000448009 +4643450011 20211031 1 900000000000207008 30961000087106 en 900000000000003001 Urine specimen from ileal conduit (specimen) 900000000000448009 +4643454019 20211031 1 900000000000207008 30941000087105 en 900000000000003001 Swab from eyelid (specimen) 900000000000448009 +4643455018 20211031 1 900000000000207008 30941000087105 en 900000000000013009 Swab from eyelid 900000000000448009 +4643540012 20220131 1 900000000000207008 258662004 en 900000000000003001 Adhesive slide specimen (specimen) 900000000000448009 +4643541011 20220131 1 900000000000207008 258662004 en 900000000000013009 Adhesive slide specimen 900000000000448009 +4643677012 20220228 1 900000000000207008 1177151008 en 900000000000013009 Excised mesorectum sample 900000000000448009 +4643678019 20220228 1 900000000000207008 1177151008 en 900000000000003001 Excised mesorectum sample (specimen) 900000000000448009 +4643678019 20220630 0 900000000000207008 1177151008 en 900000000000003001 Excised mesorectum sample (specimen) 900000000000448009 +4643679010 20220228 1 900000000000207008 1177151008 en 900000000000013009 Resected mesorectum sample 900000000000448009 +4649507012 20211031 1 900000000000207008 433801000124107 en 900000000000003001 Combined nasopharyngeal and oropharyngeal swab (specimen) 900000000000448009 +4649508019 20211031 1 900000000000207008 433801000124107 en 900000000000013009 Combined nasopharyngeal and oropharyngeal swab 900000000000448009 +4650348013 20220131 1 900000000000207008 1179252003 en 900000000000013009 Slide submitted as specimen 900000000000448009 +4650349017 20220131 1 900000000000207008 1179252003 en 900000000000003001 Slide submitted as specimen (specimen) 900000000000448009 +4650350017 20220131 1 900000000000207008 258664003 en 900000000000013009 Scotch tape slide specimen 900000000000017005 +4650351018 20220131 1 900000000000207008 258664003 en 900000000000003001 Scotch tape slide specimen (specimen) 900000000000017005 +4650353015 20220131 1 900000000000207008 258663009 en 900000000000013009 Sellotape slide specimen 900000000000017005 +4650354014 20220131 1 900000000000207008 258663009 en 900000000000003001 Sellotape slide specimen (specimen) 900000000000017005 +4662384012 20211031 1 900000000000207008 385338007 en 900000000000013009 Specimen from anus obtained by transanal disc excision 900000000000448009 +4662385013 20211031 1 900000000000207008 122653009 en 900000000000013009 Specimen from rectum obtained by transanal disc excision 900000000000448009 +4662386014 20211031 1 900000000000207008 385339004 en 900000000000013009 Specimen from anus obtained by transanal disc excision, intact 900000000000448009 +4662387017 20211031 1 900000000000207008 122654003 en 900000000000013009 Specimen from rectum obtained by transanal disc excision, intact 900000000000448009 +4662388010 20211031 1 900000000000207008 385340002 en 900000000000013009 Specimen from anus obtained by transanal disc excision, fragmented 900000000000448009 +4662389019 20211031 1 900000000000207008 122655002 en 900000000000013009 Specimen from rectum obtained by transanal disc excision, fragmented 900000000000448009 +4694647013 20220228 1 900000000000207008 57481000052108 en 900000000000003001 Specimen from pancreas obtained by distal pancreatectomy (specimen) 900000000000448009 +4694648015 20220228 1 900000000000207008 57481000052108 en 900000000000013009 Specimen from pancreas obtained by distal pancreatectomy 900000000000448009 +4694765015 20220228 1 900000000000207008 33331000087108 en 900000000000003001 Specimen from abscess of vulva (specimen) 900000000000448009 +4694766019 20220228 1 900000000000207008 33331000087108 en 900000000000013009 Specimen from abscess of vulva 900000000000448009 +4694767011 20220228 1 900000000000207008 57731000052104 en 900000000000013009 Stem cell specimen 900000000000448009 +4694768018 20220228 1 900000000000207008 57731000052104 en 900000000000003001 Stem cell specimen (specimen) 900000000000448009 +4694789010 20220228 1 900000000000207008 57741000052105 en 900000000000013009 Tracheal secretion specimen 900000000000448009 +4694790018 20220228 1 900000000000207008 57741000052105 en 900000000000003001 Tracheal secretion specimen (specimen) 900000000000448009 +4695220017 20220228 1 900000000000207008 33501000087106 en 900000000000013009 Donor-organ preservation solution specimen 900000000000448009 +4695221018 20220228 1 900000000000207008 33501000087106 en 900000000000003001 Donor-organ preservation solution specimen (specimen) 900000000000448009 +4695224014 20220228 1 900000000000207008 33501000087106 en 900000000000013009 Donor-organ preservation solution sample 900000000000448009 +4695479015 20220228 1 900000000000207008 57711000052109 en 900000000000013009 Specimen obtained by puncture procedure 900000000000448009 +4695480017 20220228 1 900000000000207008 57711000052109 en 900000000000003001 Specimen obtained by puncture procedure (specimen) 900000000000448009 +4695520016 20220228 1 900000000000207008 33541000087109 en 900000000000003001 Specimen from abscess of epidural space (specimen) 900000000000448009 +4695521017 20220228 1 900000000000207008 33541000087109 en 900000000000013009 Specimen from epidural abscess 900000000000448009 +4695522012 20220228 1 900000000000207008 33541000087109 en 900000000000013009 Specimen from abscess of epidural space 900000000000448009 +4695528011 20220228 1 900000000000207008 32641000087102 en 900000000000013009 Specimen from abscess of ovary 900000000000448009 +4695529015 20220228 1 900000000000207008 32641000087102 en 900000000000013009 Specimen from ovarian abscess 900000000000448009 +4695530013 20220228 1 900000000000207008 32641000087102 en 900000000000003001 Specimen from abscess of ovary (specimen) 900000000000448009 +4695531012 20220228 1 900000000000207008 33521000087100 en 900000000000013009 Specimen from abscess of subgaleal area 900000000000448009 +4695532017 20220228 1 900000000000207008 33521000087100 en 900000000000013009 Specimen from subgaleal abscess 900000000000448009 +4695533010 20220228 1 900000000000207008 33521000087100 en 900000000000003001 Specimen from abscess of subgaleal area (specimen) 900000000000448009 +4695534016 20220228 1 900000000000207008 32651000087104 en 900000000000013009 Specimen obtained by transthoracic needle biopsy 900000000000448009 +4695535015 20220228 1 900000000000207008 32651000087104 en 900000000000013009 Transthoracic needle biopsy sample 900000000000448009 +4695536019 20220228 1 900000000000207008 32651000087104 en 900000000000003001 Specimen obtained by transthoracic needle biopsy (specimen) 900000000000448009 +4696100018 20220228 1 900000000000207008 57721000052101 en 900000000000003001 Rectal secretion specimen (specimen) 900000000000448009 +4696101019 20220228 1 900000000000207008 57721000052101 en 900000000000013009 Rectal secretion specimen 900000000000448009 +4696123015 20220228 1 900000000000207008 33631000087102 en 900000000000013009 Allogeneic bone graft material submitted as specimen 900000000000448009 +4696124014 20220228 1 900000000000207008 33631000087102 en 900000000000003001 Allogeneic bone graft material submitted as specimen (specimen) 900000000000448009 +4696125010 20220228 1 900000000000207008 33631000087102 en 900000000000013009 Allograft bone submitted as specimen 900000000000448009 +4696131013 20220228 1 900000000000207008 33491000087103 en 900000000000003001 Cardiac pacemaker submitted as specimen (specimen) 900000000000448009 +4696132018 20220228 1 900000000000207008 33491000087103 en 900000000000013009 Cardiac pacemaker submitted as specimen 900000000000448009 +4696133011 20220228 1 900000000000207008 33481000087100 en 900000000000013009 Cardiac pacemaker component submitted as specimen 900000000000448009 +4696134017 20220228 1 900000000000207008 33481000087100 en 900000000000003001 Cardiac pacemaker component submitted as specimen (specimen) 900000000000448009 +4696135016 20220228 1 900000000000207008 33551000087107 en 900000000000013009 Wound packing material submitted as specimen 900000000000448009 +4696136015 20220228 1 900000000000207008 33551000087107 en 900000000000003001 Wound packing material submitted as specimen (specimen) 900000000000448009 +4696139010 20220228 1 900000000000207008 33531000087103 en 900000000000013009 Ommaya reservoir submitted as specimen 900000000000017005 +4696140012 20220228 1 900000000000207008 33531000087103 en 900000000000003001 Ommaya reservoir submitted as specimen (specimen) 900000000000017005 +4696151012 20220228 1 900000000000207008 33351000087104 en 900000000000013009 Specimen of urine from ureterostomy 900000000000448009 +4696152017 20220228 1 900000000000207008 33351000087104 en 900000000000003001 Urine specimen from ureterostomy (specimen) 900000000000448009 +4696153010 20220228 1 900000000000207008 33351000087104 en 900000000000013009 Urine specimen from ureterostomy 900000000000448009 +4696410016 20220228 1 900000000000207008 33671000087100 en 900000000000013009 Combined nares and throat and anus swab 900000000000448009 +4696411017 20220228 1 900000000000207008 33671000087100 en 900000000000003001 Combined specimen from swab of anterior nares and anus and throat (specimen) 900000000000448009 +4696412012 20220228 1 900000000000207008 33671000087100 en 900000000000013009 Combined specimen from swab of anterior nares and anus and throat 900000000000448009 +4696781011 20220228 1 900000000000207008 57931000052101 en 900000000000013009 Combined cervical mucus and urine specimen 900000000000448009 +4696782016 20220228 1 900000000000207008 57931000052101 en 900000000000013009 Combined cervical secretion and urine specimen 900000000000448009 +4696783014 20220228 1 900000000000207008 57931000052101 en 900000000000003001 Combined cervical mucus and urine specimen (specimen) 900000000000448009 +4696973016 20220228 1 900000000000207008 33511000087108 en 900000000000013009 Fluid specimen from abdominopelvic cavity 900000000000448009 +4696974010 20220228 1 900000000000207008 33511000087108 en 900000000000003001 Fluid specimen from abdominopelvic cavity (specimen) 900000000000448009 +4696975011 20220228 1 900000000000207008 33511000087108 en 900000000000013009 Abdominal fluid sample 900000000000448009 +4944798010 20220228 1 900000000000207008 57921000052103 en 900000000000013009 Whole blood specimen with edetic acid 900000000000448009 +4944799019 20220228 1 900000000000207008 57921000052103 en 900000000000003001 Whole blood specimen with edetic acid (specimen) 900000000000448009 +4944804012 20220228 1 900000000000207008 57921000052103 en 900000000000013009 Whole blood specimen with EDTA (ethylenediaminetetraacetic acid) 900000000000020002 +4945032010 20220228 1 900000000000207008 33661000087109 en 900000000000013009 Combined nares and anus and umbilicus swab 900000000000448009 +4945033017 20220228 1 900000000000207008 33661000087109 en 900000000000013009 Combined specimen from swab of anterior nares and anus and umbilicus 900000000000448009 +4945034011 20220228 1 900000000000207008 33661000087109 en 900000000000003001 Combined specimen from swab of anterior nares and anus and umbilicus (specimen) 900000000000448009 +4945035012 20220228 1 900000000000207008 33651000087106 en 900000000000013009 Combined specimen from swab of anterior nares and anus 900000000000448009 +4945036013 20220228 1 900000000000207008 33651000087106 en 900000000000003001 Combined specimen from swab of anterior nares and anus (specimen) 900000000000448009 +4945037016 20220228 1 900000000000207008 33651000087106 en 900000000000013009 Combined nares and anus swab 900000000000448009 +4945038014 20220228 1 900000000000207008 33641000087108 en 900000000000013009 Combined specimen from swab of anterior nares and anus and axilla 900000000000448009 +4945039018 20220228 1 900000000000207008 33641000087108 en 900000000000003001 Combined specimen from swab of anterior nares and anus and axilla (specimen) 900000000000448009 +4945040016 20220228 1 900000000000207008 33641000087108 en 900000000000013009 Combined axilla and nares and anus swab 900000000000448009 +4946017012 20220228 1 900000000000207008 1201985008 en 900000000000003001 Tissue block specimen (specimen) 900000000000448009 +4946018019 20220228 1 900000000000207008 1201985008 en 900000000000013009 Tissue block specimen 900000000000448009 +4946019010 20220228 1 900000000000207008 1201985008 en 900000000000013009 Tissue block 900000000000448009 +4953551016 20220228 1 900000000000207008 33901000087104 en 900000000000003001 Swab from tracheostomy stoma (specimen) 900000000000448009 +4953552011 20220228 1 900000000000207008 33901000087104 en 900000000000013009 Swab from tracheostomy stoma 900000000000448009 +4953553018 20220228 1 900000000000207008 33901000087104 en 900000000000013009 Tracheostomy site swab 900000000000448009 +4953554012 20220228 1 900000000000207008 33901000087104 en 900000000000013009 Tracheostomy stoma swab 900000000000448009 +4953555013 20220228 1 900000000000207008 33911000087102 en 900000000000013009 Tissue specimen from iris 900000000000448009 +4953556014 20220228 1 900000000000207008 33911000087102 en 900000000000003001 Tissue specimen from iris (specimen) 900000000000448009 +4953557017 20220228 1 900000000000207008 33921000087105 en 900000000000003001 Tissue specimen from sclera (specimen) 900000000000448009 +4953558010 20220228 1 900000000000207008 33921000087105 en 900000000000013009 Tissue specimen from sclera 900000000000448009 +4953559019 20220228 1 900000000000207008 33931000087107 en 900000000000013009 Vagus nerve electrical stimulation system lead submitted as specimen 900000000000448009 +4953560012 20220228 1 900000000000207008 33931000087107 en 900000000000003001 Vagus nerve electrical stimulation system lead submitted as specimen (specimen) 900000000000448009 +4953780011 20220228 1 900000000000207008 33891000087100 en 900000000000003001 Fluid specimen from empyema of subdural space (specimen) 900000000000448009 +4953784019 20220228 1 900000000000207008 33891000087100 en 900000000000013009 Fluid specimen from subdural empyema 900000000000448009 +4953785018 20220228 1 900000000000207008 33891000087100 en 900000000000013009 Fluid specimen from empyema of subdural space 900000000000448009 +4970781010 20220331 1 900000000000207008 34151000087104 en 900000000000013009 Specimen from mass obtained by EBUS-TBNA (endobronchial ultrasound guided transbronchial fine needle aspiration) 900000000000020002 +4970782015 20220331 1 900000000000207008 34151000087104 en 900000000000003001 Specimen from mass obtained by endobronchial ultrasound guided transbronchial fine needle aspiration (specimen) 900000000000448009 +4970783013 20220331 1 900000000000207008 34151000087104 en 900000000000013009 Specimen from mass obtained by endobronchial ultrasound guided transbronchial fine needle aspiration 900000000000448009 +4970784019 20220331 1 900000000000207008 34141000087102 en 900000000000013009 Specimen from lymph node obtained by endobronchial ultrasound guided transbronchial fine needle aspiration 900000000000448009 +4970785018 20220331 1 900000000000207008 34141000087102 en 900000000000013009 Lymph node specimen obtained by EBUS-TBNA (endobronchial ultrasound guided transbronchial fine needle aspiration) 900000000000020002 +4970786017 20220331 1 900000000000207008 34141000087102 en 900000000000003001 Specimen from lymph node obtained by endobronchial ultrasound guided transbronchial fine needle aspiration (specimen) 900000000000448009 +5036464019 20220430 1 900000000000207008 258547005 en 900000000000003001 Cardiopulmonary bypass pump fluid sample (specimen) 900000000000448009 +5036464019 20220630 0 900000000000207008 258547005 en 900000000000003001 Cardiopulmonary bypass pump fluid sample (specimen) 900000000000448009 +5036465018 20220430 1 900000000000207008 258547005 en 900000000000013009 Cardiopulmonary bypass pump fluid sample 900000000000448009 +5048233013 20220531 1 900000000000207008 258415003 en 900000000000003001 Biopsy specimen (specimen) 900000000000448009 +5048234019 20220531 1 900000000000207008 258415003 en 900000000000013009 Biopsy specimen 900000000000448009 +5048235018 20220531 1 900000000000207008 309105004 en 900000000000013009 Bone biopsy specimen 900000000000448009 +5048236017 20220531 1 900000000000207008 309105004 en 900000000000003001 Bone biopsy specimen (specimen) 900000000000448009 +5048237014 20220531 1 900000000000207008 309181006 en 900000000000013009 Mastoid biopsy specimen 900000000000448009 +5048238016 20220531 1 900000000000207008 309181006 en 900000000000003001 Mastoid biopsy specimen (specimen) 900000000000448009 +5048239012 20220531 1 900000000000207008 309165001 en 900000000000013009 Ear specimen 900000000000448009 +5048240014 20220531 1 900000000000207008 309165001 en 900000000000003001 Ear specimen (specimen) 900000000000448009 +5048241013 20220531 1 900000000000207008 446302006 en 900000000000013009 Air specimen 900000000000448009 +5048242018 20220531 1 900000000000207008 446302006 en 900000000000003001 Air specimen (specimen) 900000000000448009 +5048243011 20220531 1 900000000000207008 258601009 en 900000000000003001 Lens specimen (specimen) 900000000000448009 +5048244017 20220531 1 900000000000207008 258601009 en 900000000000013009 Lens specimen 900000000000448009 +5048245016 20220531 1 900000000000207008 309480004 en 900000000000003001 Vein specimen (specimen) 900000000000448009 +5048246015 20220531 1 900000000000207008 309480004 en 900000000000013009 Vein specimen 900000000000448009 +5048247012 20220531 1 900000000000207008 258541006 en 900000000000013009 Cardiovascular specimen 900000000000448009 +5048248019 20220531 1 900000000000207008 258541006 en 900000000000003001 Cardiovascular specimen (specimen) 900000000000448009 +5048249010 20220531 1 900000000000207008 258465007 en 900000000000013009 Lacrimal fluid specimen 900000000000448009 +5048250010 20220531 1 900000000000207008 258465007 en 900000000000003001 Lacrimal fluid specimen (specimen) 900000000000448009 +5048251014 20220531 1 900000000000207008 258567001 en 900000000000003001 Gonad specimen (specimen) 900000000000448009 +5048252019 20220531 1 900000000000207008 258567001 en 900000000000013009 Gonad specimen 900000000000448009 +5048253012 20220531 1 900000000000207008 258615006 en 900000000000013009 Larva specimen 900000000000448009 +5048254018 20220531 1 900000000000207008 258615006 en 900000000000003001 Larva specimen (specimen) 900000000000448009 +5048255017 20220531 1 900000000000207008 258651004 en 900000000000003001 Cream specimen (specimen) 900000000000448009 +5048256016 20220531 1 900000000000207008 258651004 en 900000000000013009 Cream specimen 900000000000448009 +5048257013 20220531 1 900000000000207008 309109005 en 900000000000013009 Bursa specimen 900000000000448009 +5048258015 20220531 1 900000000000207008 309109005 en 900000000000003001 Bursa specimen (specimen) 900000000000448009 +5066255019 20220630 1 900000000000207008 16224371000119105 en 900000000000003001 Nasal lavage fluid specimen (specimen) 900000000000448009 +5066256018 20220630 1 900000000000207008 16224371000119105 en 900000000000013009 Nasal lavage fluid specimen 900000000000448009 +5066257010 20220630 1 900000000000207008 16224251000119106 en 900000000000003001 Papanicolaou smear specimen (specimen) 900000000000448009 +5066258017 20220630 1 900000000000207008 16224251000119106 en 900000000000013009 Papanicolaou smear specimen 900000000000448009 +5066259013 20220630 1 900000000000207008 258433009 en 900000000000013009 Smear specimen 900000000000448009 +5066260015 20220630 1 900000000000207008 258433009 en 900000000000003001 Smear specimen (specimen) 900000000000448009 +5066261016 20220630 1 900000000000207008 16223051000119101 en 900000000000013009 Nasal sinus contents specimen 900000000000448009 +5066262011 20220630 1 900000000000207008 16223051000119101 en 900000000000003001 Nasal sinus contents specimen (specimen) 900000000000448009 +5066277015 20220630 1 900000000000207008 16222091000119100 en 900000000000003001 Skin specimen obtained by excision, frozen section (specimen) 900000000000448009 +5066278013 20220630 1 900000000000207008 16222091000119100 en 900000000000013009 Skin specimen obtained by excision, frozen section 900000000000448009 +5066291014 20220630 1 900000000000207008 309125000 en 900000000000003001 Joint specimen (specimen) 900000000000448009 +5066292019 20220630 1 900000000000207008 309125000 en 900000000000013009 Joint specimen 900000000000448009 +5066293012 20220630 1 900000000000207008 258432004 en 900000000000003001 Sebum specimen (specimen) 900000000000448009 +5066294018 20220630 1 900000000000207008 258432004 en 900000000000013009 Sebum specimen 900000000000448009 +5066295017 20220630 1 900000000000207008 258442002 en 900000000000003001 Fluid specimen (specimen) 900000000000448009 +5066296016 20220630 1 900000000000207008 258483004 en 900000000000003001 Mucus specimen (specimen) 900000000000448009 +5066297013 20220630 1 900000000000207008 258483004 en 900000000000013009 Mucus specimen 900000000000448009 +5066298015 20220630 1 900000000000207008 16214211000119104 en 900000000000013009 Pediculus specimen 900000000000448009 +5066299011 20220630 1 900000000000207008 16214211000119104 en 900000000000003001 Pediculus specimen (specimen) 900000000000448009 +5066304012 20220630 1 900000000000207008 168145009 en 900000000000013009 Lymph specimen 900000000000448009 +5066305013 20220630 1 900000000000207008 168145009 en 900000000000003001 Lymph specimen (specimen) 900000000000448009 +5066306014 20220630 1 900000000000207008 258613004 en 900000000000003001 Living specimen (specimen) 900000000000448009 +5066307017 20220630 1 900000000000207008 258613004 en 900000000000013009 Living specimen 900000000000448009 +5066312016 20220630 1 900000000000207008 258614005 en 900000000000013009 Insect specimen 900000000000448009 +5066313014 20220630 1 900000000000207008 258614005 en 900000000000003001 Insect specimen (specimen) 900000000000448009 +5066314015 20220630 1 900000000000207008 258616007 en 900000000000003001 Maggot specimen (specimen) 900000000000448009 +5066315019 20220630 1 900000000000207008 258616007 en 900000000000013009 Maggot specimen 900000000000448009 +5066316018 20220630 1 900000000000207008 309049000 en 900000000000013009 Lesion specimen 900000000000448009 +5066317010 20220630 1 900000000000207008 309049000 en 900000000000003001 Lesion specimen (specimen) 900000000000448009 +5066318017 20220630 1 900000000000207008 309107007 en 900000000000003001 Tendon specimen (specimen) 900000000000448009 +5066319013 20220630 1 900000000000207008 309107007 en 900000000000013009 Tendon specimen 900000000000448009 +5066320019 20220630 1 900000000000207008 309117002 en 900000000000003001 Fascia specimen (specimen) 900000000000448009 +5066321015 20220630 1 900000000000207008 309117002 en 900000000000013009 Fascia specimen 900000000000448009 +5066322010 20220630 1 900000000000207008 309479002 en 900000000000013009 Artery specimen 900000000000448009 +5066323017 20220630 1 900000000000207008 309479002 en 900000000000003001 Artery specimen (specimen) 900000000000448009 +5066324011 20220630 1 900000000000207008 309131002 en 900000000000003001 Neuroma specimen (specimen) 900000000000448009 +5066325012 20220630 1 900000000000207008 309131002 en 900000000000013009 Neuroma specimen 900000000000448009 +5066326013 20220630 1 900000000000207008 258441009 en 900000000000013009 Exudate specimen 900000000000448009 +5066327016 20220630 1 900000000000207008 258441009 en 900000000000003001 Exudate specimen (specimen) 900000000000448009 +5066328014 20220630 1 900000000000207008 258562007 en 900000000000013009 Genetic specimen 900000000000448009 +5066329018 20220630 1 900000000000207008 258562007 en 900000000000003001 Genetic specimen (specimen) 900000000000448009 +5066330011 20220630 1 900000000000207008 258588005 en 900000000000013009 Hematoma specimen 900000000000448009 +5066331010 20220630 1 900000000000207008 258588005 en 900000000000003001 Hematoma specimen (specimen) 900000000000448009 +5066332015 20220630 1 900000000000207008 258588005 en 900000000000013009 Haematoma specimen 900000000000448009 +5066333013 20220630 1 900000000000207008 258617003 en 900000000000003001 Parasite specimen (specimen) 900000000000448009 +5066334019 20220630 1 900000000000207008 258617003 en 900000000000013009 Parasite specimen 900000000000448009 +5066335018 20220630 1 900000000000207008 258618008 en 900000000000003001 Helminth specimen (specimen) 900000000000448009 +5066336017 20220630 1 900000000000207008 258618008 en 900000000000013009 Helminth specimen 900000000000448009 +5066337014 20220630 1 900000000000207008 309114009 en 900000000000013009 Ligament specimen 900000000000448009 +5066338016 20220630 1 900000000000207008 309114009 en 900000000000003001 Ligament specimen (specimen) 900000000000448009 +5066339012 20220630 1 900000000000207008 309121009 en 900000000000013009 Synovial tissue specimen 900000000000448009 +5066340014 20220630 1 900000000000207008 309121009 en 900000000000003001 Synovial tissue specimen (specimen) 900000000000448009 +5066341013 20220630 1 900000000000207008 309123007 en 900000000000003001 Synovial specimen (specimen) 900000000000448009 +5066342018 20220630 1 900000000000207008 309123007 en 900000000000013009 Synovial specimen 900000000000448009 +5066343011 20220630 1 900000000000207008 309166000 en 900000000000003001 Ear swab specimen (specimen) 900000000000448009 +5066344017 20220630 1 900000000000207008 309166000 en 900000000000013009 Ear swab specimen 900000000000448009 +5066345016 20220630 1 900000000000207008 309222007 en 900000000000003001 Appendix specimen (specimen) 900000000000448009 +5066346015 20220630 1 900000000000207008 309222007 en 900000000000013009 Appendix specimen 900000000000448009 +5066347012 20220630 1 900000000000207008 309478005 en 900000000000013009 Thrombus specimen 900000000000448009 +5066348019 20220630 1 900000000000207008 309478005 en 900000000000003001 Thrombus specimen (specimen) 900000000000448009 +5066349010 20220630 1 900000000000207008 258440005 en 900000000000003001 Effusion specimen (specimen) 900000000000448009 +5066350010 20220630 1 900000000000207008 258440005 en 900000000000013009 Effusion specimen 900000000000448009 +5066351014 20220630 1 900000000000207008 258654007 en 900000000000003001 Soy milk specimen (specimen) 900000000000448009 +5066352019 20220630 1 900000000000207008 258654007 en 900000000000013009 Soy milk specimen 900000000000448009 +5066353012 20220630 1 900000000000207008 258652006 en 900000000000003001 Ice cream specimen (specimen) 900000000000448009 +5066354018 20220630 1 900000000000207008 258652006 en 900000000000013009 Ice cream specimen 900000000000448009 +5066355017 20220630 1 900000000000207008 309048008 en 900000000000013009 Endocrine specimen 900000000000448009 +5066356016 20220630 1 900000000000207008 309048008 en 900000000000003001 Endocrine specimen (specimen) 900000000000448009 +5066357013 20220630 1 900000000000207008 309075001 en 900000000000013009 Skin cyst specimen 900000000000448009 +5066358015 20220630 1 900000000000207008 309075001 en 900000000000003001 Skin cyst specimen (specimen) 900000000000448009 +5066359011 20220630 1 900000000000207008 309101008 en 900000000000003001 Cartilage specimen (specimen) 900000000000448009 +5066360018 20220630 1 900000000000207008 309101008 en 900000000000013009 Cartilage specimen 900000000000448009 +5066361019 20220630 1 900000000000207008 309128003 en 900000000000013009 Eye fluid specimen 900000000000448009 +5066362014 20220630 1 900000000000207008 309128003 en 900000000000003001 Eye fluid specimen (specimen) 900000000000448009 +5066363016 20220630 1 900000000000207008 309135006 en 900000000000013009 Hydrocele specimen 900000000000448009 +5066364010 20220630 1 900000000000207008 309135006 en 900000000000003001 Hydrocele specimen (specimen) 900000000000448009 +5066365011 20220630 1 900000000000207008 309154006 en 900000000000013009 Pituitary specimen 900000000000448009 +5066366012 20220630 1 900000000000207008 309154006 en 900000000000003001 Pituitary specimen (specimen) 900000000000448009 +5066367015 20220630 1 900000000000207008 309223002 en 900000000000003001 Colectomy specimen (specimen) 900000000000448009 +5066368013 20220630 1 900000000000207008 309223002 en 900000000000013009 Colectomy specimen 900000000000448009 +5066369017 20220630 1 900000000000207008 258423001 en 900000000000003001 Hair bulb specimen (specimen) 900000000000448009 +5066370016 20220630 1 900000000000207008 258423001 en 900000000000013009 Hair bulb specimen 900000000000448009 +5066371017 20220630 1 900000000000207008 258454002 en 900000000000013009 Dialysate specimen 900000000000448009 +5066372012 20220630 1 900000000000207008 258454002 en 900000000000003001 Dialysate specimen (specimen) 900000000000448009 +5066373019 20220630 1 900000000000207008 258492001 en 900000000000003001 Gallstone specimen (specimen) 900000000000448009 +5066374013 20220630 1 900000000000207008 258492001 en 900000000000013009 Gallstone specimen 900000000000448009 +5066375014 20220630 1 900000000000207008 765470006 en 900000000000013009 Hysterectomy and right salpingo-oophorectomy specimen 900000000000448009 +5066376010 20220630 1 900000000000207008 765470006 en 900000000000003001 Hysterectomy and right salpingo-oophorectomy specimen (specimen) 900000000000448009 +5066377018 20220630 1 900000000000207008 16211091000119104 en 900000000000013009 Hydrocele specimen obtained by fine needle aspiration 900000000000448009 +5066378011 20220630 1 900000000000207008 16211091000119104 en 900000000000003001 Hydrocele specimen obtained by fine needle aspiration (specimen) 900000000000448009 +5066379015 20220630 1 900000000000207008 16211091000119104 en 900000000000013009 Hydrocoele specimen obtained by fine needle aspiration 900000000000448009 +5066380017 20220630 1 900000000000207008 765469005 en 900000000000003001 Hysterectomy and left salpingo-oophorectomy specimen (specimen) 900000000000448009 +5066381018 20220630 1 900000000000207008 765469005 en 900000000000013009 Hysterectomy and left salpingo-oophorectomy specimen 900000000000448009 +5066382013 20220630 1 900000000000207008 309287004 en 900000000000013009 Hysterectomy and bilateral salpingo-oophorectomy specimen 900000000000448009 +5066383015 20220630 1 900000000000207008 309287004 en 900000000000003001 Hysterectomy and bilateral salpingo-oophorectomy specimen (specimen) 900000000000448009 +5066384014 20220630 1 900000000000207008 309508006 en 900000000000013009 Soft tissue lesion fine needle aspirate specimen 900000000000448009 +5066385010 20220630 1 900000000000207008 309508006 en 900000000000003001 Soft tissue lesion fine needle aspirate specimen (specimen) 900000000000448009 +5066386011 20220630 1 900000000000207008 271516005 en 900000000000003001 Vertebral spinous process bone marrow specimen (specimen) 900000000000448009 +5066387019 20220630 1 900000000000207008 271516005 en 900000000000013009 Vertebral spinous process bone marrow specimen 900000000000448009 +5066388012 20220630 1 900000000000207008 15650531000119105 en 900000000000003001 Colorectal junction neoplasm tissue specimen (specimen) 900000000000448009 +5066389016 20220630 1 900000000000207008 15650531000119105 en 900000000000013009 Colorectal junction neoplasm tissue specimen 900000000000448009 +5066390013 20220630 1 900000000000207008 16209251000119104 en 900000000000003001 Central nervous system cyst fluid specimen (specimen) 900000000000448009 +5066391012 20220630 1 900000000000207008 16209251000119104 en 900000000000013009 Central nervous system cyst fluid specimen 900000000000448009 +5066449014 20220630 1 900000000000207008 309291009 en 900000000000013009 Ovarian cyst specimen 900000000000448009 +5066450014 20220630 1 900000000000207008 309291009 en 900000000000003001 Ovarian cyst specimen (specimen) 900000000000448009 +5066451013 20220630 1 900000000000207008 309176002 en 900000000000013009 Bronchial brushings specimen 900000000000448009 +5066452018 20220630 1 900000000000207008 309176002 en 900000000000003001 Bronchial brushings specimen (specimen) 900000000000448009 +5066453011 20220630 1 900000000000207008 309050000 en 900000000000013009 Body substance specimen 900000000000448009 +5066454017 20220630 1 900000000000207008 309050000 en 900000000000003001 Body substance specimen (specimen) 900000000000448009 +5066455016 20220630 1 900000000000207008 271515009 en 900000000000003001 Iliac crest bone marrow specimen (specimen) 900000000000448009 +5066456015 20220630 1 900000000000207008 271515009 en 900000000000013009 Iliac crest bone marrow specimen 900000000000448009 +5066457012 20220630 1 900000000000207008 256889002 en 900000000000003001 Breast cyst fluid specimen (specimen) 900000000000448009 +5066458019 20220630 1 900000000000207008 256889002 en 900000000000013009 Breast cyst fluid specimen 900000000000448009 +5066461018 20220630 1 900000000000207008 309209004 en 900000000000013009 Esophageal biopsy specimen 900000000000448009 +5066462013 20220630 1 900000000000207008 309209004 en 900000000000013009 Oesophageal biopsy specimen 900000000000448009 +5066463015 20220630 1 900000000000207008 309209004 en 900000000000003001 Esophageal biopsy specimen (specimen) 900000000000448009 +5066486010 20220630 1 900000000000207008 309164002 en 900000000000003001 Upper respiratory swab specimen (specimen) 900000000000448009 +5066487018 20220630 1 900000000000207008 309164002 en 900000000000013009 Upper respiratory swab specimen 900000000000448009 +5066488011 20220630 1 900000000000207008 16215731000119104 en 900000000000013009 Endocardium biopsy specimen 900000000000448009 +5066489015 20220630 1 900000000000207008 16215731000119104 en 900000000000003001 Endocardium biopsy specimen (specimen) 900000000000448009 +5066490012 20220630 1 900000000000207008 309210009 en 900000000000003001 Esophageal brushings specimen (specimen) 900000000000448009 +5066491011 20220630 1 900000000000207008 309210009 en 900000000000013009 Esophageal brushings specimen 900000000000448009 +5066492016 20220630 1 900000000000207008 309210009 en 900000000000013009 Oesophageal brushings specimen 900000000000448009 +5066493014 20220630 1 900000000000207008 309119004 en 900000000000003001 Excised fascia specimen (specimen) 900000000000448009 +5066494015 20220630 1 900000000000207008 309119004 en 900000000000013009 Excised fascia specimen 900000000000448009 +5066495019 20220630 1 900000000000207008 309266009 en 900000000000003001 Anal polyp specimen (specimen) 900000000000448009 +5066496018 20220630 1 900000000000207008 309266009 en 900000000000013009 Anal polyp specimen 900000000000448009 +5066497010 20220630 1 900000000000207008 309140003 en 900000000000013009 Epididymis specimen 900000000000448009 +5066498017 20220630 1 900000000000207008 309140003 en 900000000000003001 Epididymis specimen (specimen) 900000000000448009 +5066499013 20220630 1 900000000000207008 309487001 en 900000000000013009 Total colectomy specimen 900000000000448009 +5066500016 20220630 1 900000000000207008 309487001 en 900000000000003001 Total colectomy specimen (specimen) 900000000000448009 +5066501017 20220630 1 900000000000207008 309074002 en 900000000000003001 Soft tissue biopsy specimen (specimen) 900000000000448009 +5066502012 20220630 1 900000000000207008 309074002 en 900000000000013009 Soft tissue biopsy specimen 900000000000448009 +5066503019 20220630 1 900000000000207008 258453008 en 900000000000003001 Cyst fluid specimen (specimen) 900000000000448009 +5066504013 20220630 1 900000000000207008 258453008 en 900000000000013009 Cyst fluid specimen 900000000000448009 +5066505014 20220630 1 900000000000207008 309278008 en 900000000000003001 Female genital tissue specimen (specimen) 900000000000448009 +5066506010 20220630 1 900000000000207008 309278008 en 900000000000013009 Female genital tissue specimen 900000000000448009 +5066507018 20220630 1 900000000000207008 258657000 en 900000000000013009 Semi-skimmed milk specimen 900000000000448009 +5066508011 20220630 1 900000000000207008 258657000 en 900000000000003001 Semi-skimmed milk specimen (specimen) 900000000000448009 +5066509015 20220630 1 900000000000207008 258655008 en 900000000000003001 Cow's milk specimen (specimen) 900000000000448009 +5066510013 20220630 1 900000000000207008 258655008 en 900000000000013009 Cow's milk specimen 900000000000448009 +5066511012 20220630 1 900000000000207008 258575007 en 900000000000003001 Early morning urine specimen (specimen) 900000000000448009 +5066512017 20220630 1 900000000000207008 258575007 en 900000000000013009 Early morning urine specimen 900000000000448009 +5066513010 20220630 1 900000000000207008 309268005 en 900000000000013009 Urological fluid specimen 900000000000448009 +5066514016 20220630 1 900000000000207008 309268005 en 900000000000003001 Urological fluid specimen (specimen) 900000000000448009 +5066515015 20220630 1 900000000000207008 309499008 en 900000000000003001 Foreskin biopsy specimen (specimen) 900000000000448009 +5066516019 20220630 1 900000000000207008 309499008 en 900000000000013009 Foreskin biopsy specimen 900000000000448009 +5066517011 20220630 1 900000000000207008 1177151008 en 900000000000013009 Excised mesorectum specimen 900000000000448009 +5066518018 20220630 1 900000000000207008 1177151008 en 900000000000003001 Excised mesorectum specimen (specimen) 900000000000448009 +5066519014 20220630 1 900000000000207008 309483002 en 900000000000013009 Lip biopsy specimen 900000000000448009 +5066520015 20220630 1 900000000000207008 309483002 en 900000000000003001 Lip biopsy specimen (specimen) 900000000000448009 +5066521016 20220630 1 900000000000207008 258448003 en 900000000000003001 Bursa fluid specimen (specimen) 900000000000448009 +5066522011 20220630 1 900000000000207008 258448003 en 900000000000013009 Bursa fluid specimen 900000000000448009 +5066523018 20220630 1 900000000000207008 309127008 en 900000000000013009 Resected articular tissue specimen 900000000000448009 +5066524012 20220630 1 900000000000207008 309127008 en 900000000000003001 Resected articular tissue specimen (specimen) 900000000000448009 +5066525013 20220630 1 900000000000207008 309103006 en 900000000000013009 Excised cartilage specimen 900000000000448009 +5066526014 20220630 1 900000000000207008 309103006 en 900000000000003001 Excised cartilage specimen (specimen) 900000000000448009 +5066527017 20220630 1 900000000000207008 309184003 en 900000000000003001 Vocal cord biopsy specimen (specimen) 900000000000448009 +5066528010 20220630 1 900000000000207008 309184003 en 900000000000013009 Vocal cord biopsy specimen 900000000000448009 +5066529019 20220630 1 900000000000207008 309495002 en 900000000000003001 Omentum tissue specimen (specimen) 900000000000448009 +5066530012 20220630 1 900000000000207008 309495002 en 900000000000013009 Omentum tissue specimen 900000000000448009 +5066531011 20220630 1 900000000000207008 258580003 en 900000000000013009 Whole blood specimen 900000000000448009 +5066532016 20220630 1 900000000000207008 258580003 en 900000000000003001 Whole blood specimen (specimen) 900000000000448009 +5066533014 20220630 1 900000000000207008 309139000 en 900000000000003001 Vas deferens specimen (specimen) 900000000000448009 +5066534015 20220630 1 900000000000207008 309139000 en 900000000000013009 Vas deferens specimen 900000000000448009 +5066535019 20220630 1 900000000000207008 258650003 en 900000000000013009 Intravenous lipid infusion fluid specimen 900000000000448009 +5066536018 20220630 1 900000000000207008 258650003 en 900000000000003001 Intravenous lipid infusion fluid specimen (specimen) 900000000000448009 +5066537010 20220630 1 900000000000207008 258461003 en 900000000000003001 Hydrocele fluid specimen (specimen) 900000000000448009 +5066538017 20220630 1 900000000000207008 258461003 en 900000000000013009 Hydrocele fluid specimen 900000000000448009 +5066539013 20220630 1 900000000000207008 258599007 en 900000000000003001 Contact lens solution specimen (specimen) 900000000000448009 +5066540010 20220630 1 900000000000207008 258599007 en 900000000000013009 Contact lens solution specimen 900000000000448009 +5066541014 20220630 1 900000000000207008 309286008 en 900000000000013009 Cervical polyp specimen 900000000000448009 +5066542019 20220630 1 900000000000207008 309286008 en 900000000000003001 Cervical polyp specimen (specimen) 900000000000448009 +5066543012 20220630 1 900000000000207008 309066003 en 900000000000013009 Skin biopsy specimen 900000000000448009 +5066544018 20220630 1 900000000000207008 309066003 en 900000000000003001 Skin biopsy specimen (specimen) 900000000000448009 +5066545017 20220630 1 900000000000207008 708285007 en 900000000000003001 Tissue impression smear specimen (specimen) 900000000000448009 +5066546016 20220630 1 900000000000207008 708285007 en 900000000000013009 Tissue impression smear specimen 900000000000448009 +5066547013 20220630 1 900000000000207008 258485006 en 900000000000013009 Corneal scraping specimen 900000000000448009 +5066548015 20220630 1 900000000000207008 258485006 en 900000000000003001 Corneal scraping specimen (specimen) 900000000000448009 +5066549011 20220630 1 900000000000207008 309172000 en 900000000000003001 Pleura biopsy specimen (specimen) 900000000000448009 +5066550011 20220630 1 900000000000207008 309172000 en 900000000000013009 Pleura biopsy specimen 900000000000448009 +5066551010 20220630 1 900000000000207008 309501000 en 900000000000003001 Hysterectomy specimen (specimen) 900000000000448009 +5066552015 20220630 1 900000000000207008 309501000 en 900000000000013009 Hysterectomy specimen 900000000000448009 +5066553013 20220630 1 900000000000207008 309078004 en 900000000000013009 Lymph node tissue specimen 900000000000448009 +5066554019 20220630 1 900000000000207008 309078004 en 900000000000003001 Lymph node tissue specimen (specimen) 900000000000448009 +5066555018 20220630 1 900000000000207008 258649003 en 900000000000013009 Intravenous infusion fluid specimen 900000000000448009 +5066556017 20220630 1 900000000000207008 258649003 en 900000000000003001 Intravenous infusion fluid specimen (specimen) 900000000000448009 +5066557014 20220630 1 900000000000207008 258555003 en 900000000000003001 Hot stool specimen (specimen) 900000000000448009 +5066558016 20220630 1 900000000000207008 258555003 en 900000000000013009 Hot stool specimen 900000000000448009 +5066559012 20220630 1 900000000000207008 16211131000119102 en 900000000000013009 Epidural lesion specimen 900000000000448009 +5066560019 20220630 1 900000000000207008 16211131000119102 en 900000000000003001 Epidural lesion specimen (specimen) 900000000000448009 +5066561015 20220630 1 900000000000207008 16215131000119100 en 900000000000013009 Endocervical smear specimen 900000000000448009 +5066562010 20220630 1 900000000000207008 16215131000119100 en 900000000000003001 Endocervical smear specimen (specimen) 900000000000448009 +5066563017 20220630 1 900000000000207008 309115005 en 900000000000013009 Ligament biopsy specimen 900000000000448009 +5066564011 20220630 1 900000000000207008 309115005 en 900000000000003001 Ligament biopsy specimen (specimen) 900000000000448009 +5066565012 20220630 1 900000000000207008 258428005 en 900000000000003001 Products of conception tissue specimen (specimen) 900000000000448009 +5066566013 20220630 1 900000000000207008 258428005 en 900000000000013009 Products of conception tissue specimen 900000000000448009 +5066567016 20220630 1 900000000000207008 309262006 en 900000000000003001 Rectal biopsy specimen (specimen) 900000000000448009 +5066568014 20220630 1 900000000000207008 309262006 en 900000000000013009 Rectal biopsy specimen 900000000000448009 +5066569018 20220630 1 900000000000207008 309124001 en 900000000000003001 Joint biopsy specimen (specimen) 900000000000448009 +5066570017 20220630 1 900000000000207008 309124001 en 900000000000013009 Joint biopsy specimen 900000000000448009 +5066573015 20220630 1 900000000000207008 258583001 en 900000000000003001 Bone marrow clot specimen (specimen) 900000000000448009 +5066574014 20220630 1 900000000000207008 258583001 en 900000000000013009 Bone marrow clot specimen 900000000000448009 +5066575010 20220630 1 900000000000207008 258457009 en 900000000000013009 Faecal fluid specimen 900000000000448009 +5066576011 20220630 1 900000000000207008 258457009 en 900000000000013009 Fecal fluid specimen 900000000000448009 +5066577019 20220630 1 900000000000207008 258457009 en 900000000000003001 Fecal fluid specimen (specimen) 900000000000448009 +5066578012 20220630 1 900000000000207008 309193002 en 900000000000003001 Pharyngeal biopsy specimen (specimen) 900000000000448009 +5066579016 20220630 1 900000000000207008 309193002 en 900000000000013009 Pharyngeal biopsy specimen 900000000000448009 +5066580018 20220630 1 900000000000207008 16211651000119103 en 900000000000013009 Excised bone specimen 900000000000448009 +5066581019 20220630 1 900000000000207008 16211651000119103 en 900000000000003001 Excised bone specimen (specimen) 900000000000448009 +5066582014 20220630 1 900000000000207008 309274005 en 900000000000003001 Bladder curettings specimen (specimen) 900000000000448009 +5066582014 20240101 0 900000000000207008 309274005 en 900000000000003001 Bladder curettings specimen (specimen) 900000000000448009 +5066583016 20220630 1 900000000000207008 309274005 en 900000000000013009 Bladder curettings specimen 900000000000448009 +5066584010 20220630 1 900000000000207008 16213651000119102 en 900000000000013009 Duodenal ulcer specimen 900000000000448009 +5066585011 20220630 1 900000000000207008 16213651000119102 en 900000000000003001 Duodenal ulcer specimen (specimen) 900000000000448009 +5066586012 20220630 1 900000000000207008 698276005 en 900000000000013009 First stream urine specimen 900000000000448009 +5066587015 20220630 1 900000000000207008 698276005 en 900000000000003001 First stream urine specimen (specimen) 900000000000448009 +5066588013 20220630 1 900000000000207008 309549006 en 900000000000003001 Minor salivary gland specimen (specimen) 900000000000448009 +5066589017 20220630 1 900000000000207008 309549006 en 900000000000013009 Minor salivary gland specimen 900000000000448009 +5066590014 20220630 1 900000000000207008 258571003 en 900000000000013009 Machine haemodialysate specimen 900000000000448009 +5066591013 20220630 1 900000000000207008 258571003 en 900000000000003001 Machine hemodialysate specimen (specimen) 900000000000448009 +5066592018 20220630 1 900000000000207008 258571003 en 900000000000013009 Machine hemodialysate specimen 900000000000448009 +5066593011 20220630 1 900000000000207008 16216331000119107 en 900000000000013009 Cerebrospinal fluid smear specimen 900000000000448009 +5066594017 20220630 1 900000000000207008 16216331000119107 en 900000000000003001 Cerebrospinal fluid smear specimen (specimen) 900000000000448009 +5066595016 20220630 1 900000000000207008 258421004 en 900000000000013009 Embryo biopsy specimen 900000000000448009 +5066596015 20220630 1 900000000000207008 258421004 en 900000000000003001 Embryo biopsy specimen (specimen) 900000000000448009 +5066597012 20220630 1 900000000000207008 258482009 en 900000000000013009 Vesicle fluid specimen 900000000000448009 +5066598019 20220630 1 900000000000207008 258482009 en 900000000000003001 Vesicle fluid specimen (specimen) 900000000000448009 +5066599010 20220630 1 900000000000207008 258470000 en 900000000000003001 Prostatic fluid specimen (specimen) 900000000000448009 +5066600013 20220630 1 900000000000207008 258470000 en 900000000000013009 Prostatic fluid specimen 900000000000448009 +5066601012 20220630 1 900000000000207008 309205005 en 900000000000003001 Cholecystectomy specimen (specimen) 900000000000448009 +5066602017 20220630 1 900000000000207008 309205005 en 900000000000013009 Cholecystectomy specimen 900000000000448009 +5066603010 20220630 1 900000000000207008 303247002 en 900000000000013009 Adrenal tissue specimen 900000000000448009 +5066604016 20220630 1 900000000000207008 303247002 en 900000000000003001 Adrenal tissue specimen (specimen) 900000000000448009 +5066605015 20220630 1 900000000000207008 309168004 en 900000000000013009 Upper respiratory tissue specimen 900000000000448009 +5066606019 20220630 1 900000000000207008 309168004 en 900000000000003001 Upper respiratory tissue specimen (specimen) 900000000000448009 +5066607011 20220630 1 900000000000207008 258558001 en 900000000000003001 Oral secretion specimen (specimen) 900000000000448009 +5066608018 20220630 1 900000000000207008 258558001 en 900000000000013009 Oral secretion specimen 900000000000448009 +5066609014 20220630 1 900000000000207008 309112008 en 900000000000013009 Excised bursa specimen 900000000000448009 +5066610016 20220630 1 900000000000207008 309112008 en 900000000000003001 Excised bursa specimen (specimen) 900000000000448009 +5066611017 20220630 1 900000000000207008 309217007 en 900000000000003001 Ileal biopsy specimen (specimen) 900000000000448009 +5066612012 20220630 1 900000000000207008 309217007 en 900000000000013009 Ileal biopsy specimen 900000000000448009 +5066613019 20220630 1 900000000000207008 309058007 en 900000000000013009 Breast tru-cut biopsy specimen 900000000000448009 +5066614013 20220630 1 900000000000207008 309058007 en 900000000000003001 Breast tru-cut biopsy specimen (specimen) 900000000000448009 +5066615014 20220630 1 900000000000207008 258563002 en 900000000000003001 Amniotic cell specimen (specimen) 900000000000448009 +5066616010 20220630 1 900000000000207008 258563002 en 900000000000013009 Amniotic cell specimen 900000000000448009 +5066617018 20220630 1 900000000000207008 309144007 en 900000000000003001 Thyroid lobe specimen (specimen) 900000000000448009 +5066618011 20220630 1 900000000000207008 309144007 en 900000000000013009 Thyroid lobe specimen 900000000000448009 +5066619015 20220630 1 900000000000207008 16213371000119101 en 900000000000013009 Left colic flexure biopsy specimen 900000000000448009 +5066620014 20220630 1 900000000000207008 16213371000119101 en 900000000000003001 Left colic flexure biopsy specimen (specimen) 900000000000448009 +5066621013 20220630 1 900000000000207008 309505009 en 900000000000013009 Skin incision biopsy specimen 900000000000448009 +5066622018 20220630 1 900000000000207008 309505009 en 900000000000003001 Skin incision biopsy specimen (specimen) 900000000000448009 +5066623011 20220630 1 900000000000207008 309201001 en 900000000000003001 Ascitic fluid specimen (specimen) 900000000000448009 +5066624017 20220630 1 900000000000207008 309201001 en 900000000000013009 Ascitic fluid specimen 900000000000448009 +5066625016 20220630 1 900000000000207008 309071005 en 900000000000003001 Penis skin biopsy specimen (specimen) 900000000000448009 +5066626015 20220630 1 900000000000207008 309071005 en 900000000000013009 Penis skin biopsy specimen 900000000000448009 +5066627012 20220630 1 900000000000207008 309213006 en 900000000000003001 Gastric brushings specimen (specimen) 900000000000448009 +5066628019 20220630 1 900000000000207008 309213006 en 900000000000013009 Gastric brushings specimen 900000000000448009 +5066629010 20220630 1 900000000000207008 309269002 en 900000000000013009 Kidney biopsy specimen 900000000000448009 +5066630017 20220630 1 900000000000207008 309269002 en 900000000000003001 Kidney biopsy specimen (specimen) 900000000000448009 +5066639016 20220630 1 900000000000207008 258538002 en 900000000000013009 Transudate specimen 900000000000448009 +5066640019 20220630 1 900000000000207008 258538002 en 900000000000003001 Transudate specimen (specimen) 900000000000448009 +5066641015 20220630 1 900000000000207008 399484009 en 900000000000013009 Superficial parotidectomy specimen 900000000000448009 +5066642010 20220630 1 900000000000207008 399484009 en 900000000000003001 Superficial parotidectomy specimen (specimen) 900000000000448009 +5066643017 20220630 1 900000000000207008 309120005 en 900000000000013009 Head of femur specimen 900000000000448009 +5066644011 20220630 1 900000000000207008 309120005 en 900000000000003001 Head of femur specimen (specimen) 900000000000448009 +5066645012 20220630 1 900000000000207008 309132009 en 900000000000003001 Prostate biopsy specimen (specimen) 900000000000448009 +5066646013 20220630 1 900000000000207008 309132009 en 900000000000013009 Prostate biopsy specimen 900000000000448009 +5066647016 20220630 1 900000000000207008 16210691000119101 en 900000000000013009 Breast cyst specimen 900000000000448009 +5066648014 20220630 1 900000000000207008 16210691000119101 en 900000000000003001 Breast cyst specimen (specimen) 900000000000448009 +5066649018 20220630 1 900000000000207008 399693002 en 900000000000003001 Total parotidectomy specimen (specimen) 900000000000448009 +5066650018 20220630 1 900000000000207008 399693002 en 900000000000013009 Total parotidectomy specimen 900000000000448009 +5066651019 20220630 1 900000000000207008 309225009 en 900000000000003001 Colonic biopsy specimen (specimen) 900000000000448009 +5066652014 20220630 1 900000000000207008 309225009 en 900000000000013009 Colonic biopsy specimen 900000000000448009 +5066653016 20220630 1 900000000000207008 168138009 en 900000000000013009 Gastric lavage aspirate specimen 900000000000448009 +5066654010 20220630 1 900000000000207008 168138009 en 900000000000003001 Gastric lavage aspirate specimen (specimen) 900000000000448009 +5066655011 20220630 1 900000000000207008 258490009 en 900000000000003001 Biliary stone specimen (specimen) 900000000000448009 +5066656012 20220630 1 900000000000207008 258490009 en 900000000000013009 Biliary stone specimen 900000000000448009 +5066657015 20220630 1 900000000000207008 309188000 en 900000000000003001 Mouth biopsy specimen (specimen) 900000000000448009 +5066658013 20220630 1 900000000000207008 309188000 en 900000000000013009 Mouth biopsy specimen 900000000000448009 +5066659017 20220630 1 900000000000207008 309491006 en 900000000000013009 Biliary tract tissue specimen 900000000000448009 +5066660010 20220630 1 900000000000207008 309491006 en 900000000000003001 Biliary tract tissue specimen (specimen) 900000000000448009 +5066661014 20220630 1 900000000000207008 309153000 en 900000000000003001 Excised parathyroid specimen (specimen) 900000000000448009 +5066662019 20220630 1 900000000000207008 309153000 en 900000000000013009 Excised parathyroid specimen 900000000000448009 +5066663012 20220630 1 900000000000207008 258566005 en 900000000000003001 Deoxyribonucleic acid specimen (specimen) 900000000000448009 +5066664018 20220630 1 900000000000207008 258566005 en 900000000000013009 Deoxyribonucleic acid specimen 900000000000448009 +5066665017 20220630 1 900000000000207008 309141004 en 900000000000003001 Adrenal gland specimen (specimen) 900000000000448009 +5066666016 20220630 1 900000000000207008 309141004 en 900000000000013009 Adrenal gland specimen 900000000000448009 +5066667013 20220630 1 900000000000207008 309486005 en 900000000000013009 Excised submandibular gland specimen 900000000000448009 +5066668015 20220630 1 900000000000207008 309486005 en 900000000000003001 Excised submandibular gland specimen (specimen) 900000000000448009 +5066669011 20220630 1 900000000000207008 258452003 en 900000000000003001 Chylous fluid specimen (specimen) 900000000000448009 +5066670012 20220630 1 900000000000207008 258452003 en 900000000000013009 Chylous fluid specimen 900000000000448009 +5066671011 20220630 1 900000000000207008 258658005 en 900000000000013009 Skim milk specimen 900000000000448009 +5066672016 20220630 1 900000000000207008 258658005 en 900000000000003001 Skim milk specimen (specimen) 900000000000448009 +5066673014 20220630 1 900000000000207008 410581002 en 900000000000013009 Upper respiratory fluid specimen 900000000000448009 +5066674015 20220630 1 900000000000207008 410581002 en 900000000000003001 Upper respiratory fluid specimen (specimen) 900000000000448009 +5066675019 20220630 1 900000000000207008 309280002 en 900000000000013009 Vaginal biopsy specimen 900000000000448009 +5066676018 20220630 1 900000000000207008 309280002 en 900000000000003001 Vaginal biopsy specimen (specimen) 900000000000448009 +5066677010 20220630 1 900000000000207008 309051001 en 900000000000003001 Body fluid specimen (specimen) 900000000000448009 +5066678017 20220630 1 900000000000207008 309498000 en 900000000000013009 Partial nephrectomy specimen 900000000000448009 +5066679013 20220630 1 900000000000207008 309498000 en 900000000000003001 Partial nephrectomy specimen (specimen) 900000000000448009 +5066680011 20220630 1 900000000000207008 16210931000119105 en 900000000000013009 Endocervical polyp specimen 900000000000448009 +5066681010 20220630 1 900000000000207008 16210931000119105 en 900000000000003001 Endocervical polyp specimen (specimen) 900000000000448009 +5066682015 20220630 1 900000000000207008 256912003 en 900000000000003001 Red blood cell fluid specimen (specimen) 900000000000448009 +5066683013 20220630 1 900000000000207008 256912003 en 900000000000013009 Red blood cell fluid specimen 900000000000448009 +5066684019 20220630 1 900000000000207008 258554004 en 900000000000003001 Fecal concretion specimen (specimen) 900000000000448009 +5066685018 20220630 1 900000000000207008 258554004 en 900000000000013009 Faecal concretion specimen 900000000000448009 +5066686017 20220630 1 900000000000207008 258554004 en 900000000000013009 Fecal concretion specimen 900000000000448009 +5066687014 20220630 1 900000000000207008 278020009 en 900000000000003001 Spot urine specimen (specimen) 900000000000448009 +5066688016 20220630 1 900000000000207008 278020009 en 900000000000013009 Spot urine specimen 900000000000448009 +5066689012 20220630 1 900000000000207008 258591005 en 900000000000003001 White blood cell specimen (specimen) 900000000000448009 +5066690015 20220630 1 900000000000207008 258591005 en 900000000000013009 White blood cell specimen 900000000000448009 +5066691016 20220630 1 900000000000207008 309211008 en 900000000000013009 Gastric biopsy specimen 900000000000448009 +5066692011 20220630 1 900000000000207008 309211008 en 900000000000003001 Gastric biopsy specimen (specimen) 900000000000448009 +5066693018 20220630 1 900000000000207008 168136008 en 900000000000013009 Colostomy fluid specimen 900000000000448009 +5066694012 20220630 1 900000000000207008 168136008 en 900000000000003001 Colostomy fluid specimen (specimen) 900000000000448009 +5066695013 20220630 1 900000000000207008 258542004 en 900000000000003001 Heart valve specimen (specimen) 900000000000448009 +5066696014 20220630 1 900000000000207008 258542004 en 900000000000013009 Heart valve specimen 900000000000448009 +5066756019 20220630 1 900000000000207008 309267000 en 900000000000013009 Anal resection specimen 900000000000448009 +5066757011 20220630 1 900000000000207008 309267000 en 900000000000003001 Anal resection specimen (specimen) 900000000000448009 +5066758018 20220630 1 900000000000207008 309185002 en 900000000000013009 Oral cavity specimen 900000000000448009 +5066759014 20220630 1 900000000000207008 309185002 en 900000000000003001 Oral cavity specimen (specimen) 900000000000448009 +5066760016 20220630 1 900000000000207008 258476006 en 900000000000003001 Subretinal fluid specimen (specimen) 900000000000448009 +5066761017 20220630 1 900000000000207008 258476006 en 900000000000013009 Subretinal fluid specimen 900000000000448009 +5066762012 20220630 1 900000000000207008 309218002 en 900000000000003001 Ileal resection specimen (specimen) 900000000000448009 +5066763019 20220630 1 900000000000207008 309218002 en 900000000000013009 Ileal resection specimen 900000000000448009 +5066764013 20220630 1 900000000000207008 309494003 en 900000000000013009 Ampulla of Vater biopsy specimen 900000000000020002 +5066765014 20220630 1 900000000000207008 309494003 en 900000000000003001 Ampulla of Vater biopsy specimen (specimen) 900000000000020002 +5066768011 20220630 1 900000000000207008 309173005 en 900000000000013009 Transbronchial lung biopsy specimen 900000000000448009 +5066769015 20220630 1 900000000000207008 309173005 en 900000000000003001 Transbronchial lung biopsy specimen (specimen) 900000000000448009 +5066770019 20220630 1 900000000000207008 271518006 en 900000000000013009 Rib bone marrow specimen 900000000000448009 +5066771015 20220630 1 900000000000207008 271518006 en 900000000000003001 Rib bone marrow specimen (specimen) 900000000000448009 +5066772010 20220630 1 900000000000207008 258602002 en 900000000000013009 Intraocular lens specimen 900000000000448009 +5066773017 20220630 1 900000000000207008 258602002 en 900000000000003001 Intraocular lens specimen (specimen) 900000000000448009 +5066774011 20220630 1 900000000000207008 15650601000119102 en 900000000000013009 Thyroid neoplasm tissue specimen 900000000000448009 +5066775012 20220630 1 900000000000207008 15650601000119102 en 900000000000003001 Thyroid neoplasm tissue specimen (specimen) 900000000000448009 +5066776013 20220630 1 900000000000207008 309116006 en 900000000000003001 Excised ligament specimen (specimen) 900000000000448009 +5066777016 20220630 1 900000000000207008 309116006 en 900000000000013009 Excised ligament specimen 900000000000448009 +5066778014 20220630 1 900000000000207008 309546004 en 900000000000003001 Lumpectomy breast specimen (specimen) 900000000000448009 +5066779018 20220630 1 900000000000207008 309546004 en 900000000000013009 Lumpectomy breast specimen 900000000000448009 +5066780015 20220630 1 900000000000207008 258472008 en 900000000000013009 Renal pelvis fluid specimen 900000000000448009 +5066781016 20220630 1 900000000000207008 258472008 en 900000000000003001 Renal pelvis fluid specimen (specimen) 900000000000448009 +5066782011 20220630 1 900000000000207008 258496003 en 900000000000003001 Ureteric stone specimen (specimen) 900000000000448009 +5066783018 20220630 1 900000000000207008 258496003 en 900000000000013009 Ureteric stone specimen 900000000000448009 +5066784012 20220630 1 900000000000207008 276446009 en 900000000000013009 Cervical smear specimen 900000000000448009 +5066785013 20220630 1 900000000000207008 276446009 en 900000000000003001 Cervical smear specimen (specimen) 900000000000448009 +5066786014 20220630 1 900000000000207008 16212691000119100 en 900000000000003001 Gingiva biopsy specimen (specimen) 900000000000448009 +5066787017 20220630 1 900000000000207008 16212691000119100 en 900000000000013009 Gingiva biopsy specimen 900000000000448009 +5066788010 20220630 1 900000000000207008 309275006 en 900000000000003001 Cystectomy specimen (specimen) 900000000000448009 +5066789019 20220630 1 900000000000207008 309275006 en 900000000000013009 Cystectomy specimen 900000000000448009 +5066790011 20220630 1 900000000000207008 309148005 en 900000000000003001 Thyroid direct smear specimen (specimen) 900000000000448009 +5066791010 20220630 1 900000000000207008 309148005 en 900000000000013009 Thyroid direct smear specimen 900000000000448009 +5066792015 20220630 1 900000000000207008 258484005 en 900000000000003001 Postmortem tissue specimen (specimen) 900000000000448009 +5066793013 20220630 1 900000000000207008 258484005 en 900000000000013009 Postmortem tissue specimen 900000000000448009 +5066794019 20220630 1 900000000000207008 309104000 en 900000000000013009 Musculoskeletal specimen 900000000000448009 +5066795018 20220630 1 900000000000207008 309104000 en 900000000000003001 Musculoskeletal specimen (specimen) 900000000000448009 +5066796017 20220630 1 900000000000207008 309055005 en 900000000000013009 Breast fluid specimen 900000000000448009 +5066797014 20220630 1 900000000000207008 309055005 en 900000000000003001 Breast fluid specimen (specimen) 900000000000448009 +5066798016 20220630 1 900000000000207008 309182004 en 900000000000013009 Larynx biopsy specimen 900000000000448009 +5066799012 20220630 1 900000000000207008 309182004 en 900000000000003001 Larynx biopsy specimen (specimen) 900000000000448009 +5066800011 20220630 1 900000000000207008 258468009 en 900000000000013009 Oedema fluid specimen 900000000000448009 +5066801010 20220630 1 900000000000207008 258468009 en 900000000000013009 Edema fluid specimen 900000000000448009 +5066802015 20220630 1 900000000000207008 258468009 en 900000000000003001 Edema fluid specimen (specimen) 900000000000448009 +5066803013 20220630 1 900000000000207008 309113003 en 900000000000013009 Tendon biopsy specimen 900000000000448009 +5066804019 20220630 1 900000000000207008 309113003 en 900000000000003001 Tendon biopsy specimen (specimen) 900000000000448009 +5066805018 20220630 1 900000000000207008 258481002 en 900000000000013009 Vaginal washout fluid specimen 900000000000448009 +5066806017 20220630 1 900000000000207008 258481002 en 900000000000003001 Vaginal washout fluid specimen (specimen) 900000000000448009 +5066893016 20220630 1 900000000000207008 309079007 en 900000000000013009 Lymph node biopsy specimen 900000000000448009 +5066894010 20220630 1 900000000000207008 309079007 en 900000000000003001 Lymph node biopsy specimen (specimen) 900000000000448009 +5066895011 20220630 1 900000000000207008 309263001 en 900000000000013009 Rectal polyp specimen 900000000000448009 +5066896012 20220630 1 900000000000207008 309263001 en 900000000000003001 Rectal polyp specimen (specimen) 900000000000448009 +5066897015 20220630 1 900000000000207008 309170008 en 900000000000013009 Lower respiratory tissue specimen 900000000000448009 +5066898013 20220630 1 900000000000207008 309170008 en 900000000000003001 Lower respiratory tissue specimen (specimen) 900000000000448009 +5066899017 20220630 1 900000000000207008 258582006 en 900000000000003001 Blood clot specimen (specimen) 900000000000448009 +5066900010 20220630 1 900000000000207008 258582006 en 900000000000013009 Blood clot specimen 900000000000448009 +5066901014 20220630 1 900000000000207008 168140004 en 900000000000013009 Peritoneal dialysate specimen 900000000000448009 +5066902019 20220630 1 900000000000207008 168140004 en 900000000000003001 Peritoneal dialysate specimen (specimen) 900000000000448009 +5066903012 20220630 1 900000000000207008 309169007 en 900000000000003001 Tracheal biopsy specimen (specimen) 900000000000448009 +5066904018 20220630 1 900000000000207008 309169007 en 900000000000013009 Tracheal biopsy specimen 900000000000448009 +5066905017 20220630 1 900000000000207008 258606004 en 900000000000003001 Lower respiratory tract specimen (specimen) 900000000000448009 +5066906016 20220630 1 900000000000207008 258606004 en 900000000000013009 Lower respiratory tract specimen 900000000000448009 +5066907013 20220630 1 900000000000207008 309145008 en 900000000000013009 Thyroid fluid specimen 900000000000448009 +5066908015 20220630 1 900000000000207008 309145008 en 900000000000003001 Thyroid fluid specimen (specimen) 900000000000448009 +5066909011 20220630 1 900000000000207008 309482007 en 900000000000003001 Frozen section lymph node specimen (specimen) 900000000000448009 +5066910018 20220630 1 900000000000207008 309482007 en 900000000000013009 Frozen section lymph node specimen 900000000000448009 +5066911019 20220630 1 900000000000207008 258569003 en 900000000000013009 Skin fibroblast specimen 900000000000448009 +5066912014 20220630 1 900000000000207008 258569003 en 900000000000003001 Skin fibroblast specimen (specimen) 900000000000448009 +5066913016 20220630 1 900000000000207008 309206006 en 900000000000013009 Pancreas biopsy specimen 900000000000448009 +5066914010 20220630 1 900000000000207008 309206006 en 900000000000003001 Pancreas biopsy specimen (specimen) 900000000000448009 +5066915011 20220630 1 900000000000207008 16210811000119106 en 900000000000013009 Desmoid tumor specimen 900000000000448009 +5066916012 20220630 1 900000000000207008 16210811000119106 en 900000000000013009 Desmoid tumour specimen 900000000000448009 +5066917015 20220630 1 900000000000207008 16210811000119106 en 900000000000003001 Desmoid tumor specimen (specimen) 900000000000448009 +5066918013 20220630 1 900000000000207008 258570002 en 900000000000003001 Genitourinary specimen (specimen) 900000000000448009 +5066919017 20220630 1 900000000000207008 258570002 en 900000000000013009 Genitourinary specimen 900000000000448009 +5066920011 20220630 1 900000000000207008 258493006 en 900000000000013009 Bladder stone specimen 900000000000448009 +5066921010 20220630 1 900000000000207008 258493006 en 900000000000003001 Bladder stone specimen (specimen) 900000000000448009 +5066921010 20240101 0 900000000000207008 258493006 en 900000000000003001 Bladder stone specimen (specimen) 900000000000448009 +5066922015 20220630 1 900000000000207008 309133004 en 900000000000003001 Resected prostate specimen (specimen) 900000000000448009 +5066923013 20220630 1 900000000000207008 309133004 en 900000000000013009 Resected prostate specimen 900000000000448009 +5066928016 20220630 1 900000000000207008 309271002 en 900000000000003001 Ureter biopsy specimen (specimen) 900000000000448009 +5066929012 20220630 1 900000000000207008 309271002 en 900000000000013009 Ureter biopsy specimen 900000000000448009 +5066930019 20220630 1 900000000000207008 258436001 en 900000000000013009 Umbilical cord tissue specimen 900000000000448009 +5066931015 20220630 1 900000000000207008 258436001 en 900000000000003001 Umbilical cord tissue specimen (specimen) 900000000000448009 +5066932010 20220630 1 900000000000207008 309283000 en 900000000000003001 Cervical biopsy specimen (specimen) 900000000000448009 +5066933017 20220630 1 900000000000207008 309283000 en 900000000000013009 Cervical biopsy specimen 900000000000448009 +5066934011 20220630 1 900000000000207008 258574006 en 900000000000013009 Mid-stream urine specimen 900000000000448009 +5066935012 20220630 1 900000000000207008 258574006 en 900000000000003001 Mid-stream urine specimen (specimen) 900000000000448009 +5066938014 20220630 1 900000000000207008 309489003 en 900000000000013009 Anterior resection of rectum specimen 900000000000448009 +5066939018 20220630 1 900000000000207008 309489003 en 900000000000003001 Anterior resection of rectum specimen (specimen) 900000000000448009 +5066940016 20220630 1 900000000000207008 309059004 en 900000000000003001 Frozen section breast specimen (specimen) 900000000000448009 +5066941017 20220630 1 900000000000207008 309059004 en 900000000000013009 Frozen section breast specimen 900000000000448009 +5066942012 20220630 1 900000000000207008 309190004 en 900000000000003001 Excised salivary gland specimen (specimen) 900000000000448009 +5066943019 20220630 1 900000000000207008 309190004 en 900000000000013009 Excised salivary gland specimen 900000000000448009 +5066944013 20220630 1 900000000000207008 276833005 en 900000000000003001 24 hour urine specimen (specimen) 900000000000448009 +5066945014 20220630 1 900000000000207008 276833005 en 900000000000013009 24 hour urine specimen 900000000000448009 +5066946010 20220630 1 900000000000207008 258590006 en 900000000000013009 Acidified serum specimen 900000000000448009 +5066947018 20220630 1 900000000000207008 258590006 en 900000000000003001 Acidified serum specimen (specimen) 900000000000448009 +5066948011 20220630 1 900000000000207008 258414004 en 900000000000003001 Adipose tissue specimen (specimen) 900000000000448009 +5066949015 20220630 1 900000000000207008 258414004 en 900000000000013009 Adipose tissue specimen 900000000000448009 +5066950015 20220630 1 900000000000207008 309142006 en 900000000000003001 Adrenal biopsy specimen (specimen) 900000000000448009 +5066951016 20220630 1 900000000000207008 309142006 en 900000000000013009 Adrenal biopsy specimen 900000000000448009 +5066952011 20220630 1 900000000000207008 410729004 en 900000000000003001 Amniocentesis fluid specimen (specimen) 900000000000448009 +5066953018 20220630 1 900000000000207008 410729004 en 900000000000013009 Amniocentesis fluid specimen 900000000000448009 +5066954012 20220630 1 900000000000207008 309265008 en 900000000000013009 Anal biopsy specimen 900000000000448009 +5066955013 20220630 1 900000000000207008 309265008 en 900000000000003001 Anal biopsy specimen (specimen) 900000000000448009 +5066956014 20220630 1 900000000000207008 16216371000119105 en 900000000000003001 Anal smear specimen (specimen) 900000000000448009 +5066957017 20220630 1 900000000000207008 16216371000119105 en 900000000000013009 Anal smear specimen 900000000000448009 +5067288016 20220630 1 900000000000207008 309189008 en 900000000000003001 Tongue biopsy specimen (specimen) 900000000000448009 +5067289012 20220630 1 900000000000207008 309189008 en 900000000000013009 Tongue biopsy specimen 900000000000448009 +5067290015 20220630 1 900000000000207008 309108002 en 900000000000003001 Excised tendon specimen (specimen) 900000000000448009 +5067291016 20220630 1 900000000000207008 309108002 en 900000000000013009 Excised tendon specimen 900000000000448009 +5067292011 20220630 1 900000000000207008 309214000 en 900000000000003001 Gastric fundus biopsy specimen (specimen) 900000000000448009 +5067293018 20220630 1 900000000000207008 309214000 en 900000000000013009 Gastric fundus biopsy specimen 900000000000448009 +5067294012 20220630 1 900000000000207008 168139001 en 900000000000013009 Peritoneal fluid specimen 900000000000448009 +5067295013 20220630 1 900000000000207008 168139001 en 900000000000003001 Peritoneal fluid specimen (specimen) 900000000000448009 +5067323013 20220630 1 900000000000207008 258444001 en 900000000000003001 Aqueous humor specimen (specimen) 900000000000448009 +5067324019 20220630 1 900000000000207008 258444001 en 900000000000013009 Aqueous humor specimen 900000000000448009 +5067325018 20220630 1 900000000000207008 258444001 en 900000000000013009 Aqueous humour specimen 900000000000448009 +5067326017 20220630 1 900000000000207008 309506005 en 900000000000013009 Skin excision biopsy specimen 900000000000448009 +5067327014 20220630 1 900000000000207008 309506005 en 900000000000003001 Skin excision biopsy specimen (specimen) 900000000000448009 +5067328016 20220630 1 900000000000207008 309177006 en 900000000000013009 Lung direct smear specimen 900000000000448009 +5067329012 20220630 1 900000000000207008 309177006 en 900000000000003001 Lung direct smear specimen (specimen) 900000000000448009 +5067338014 20220630 1 900000000000207008 16210851000119107 en 900000000000003001 Cerebellar neoplasm specimen (specimen) 900000000000448009 +5067339018 20220630 1 900000000000207008 16210851000119107 en 900000000000013009 Cerebellar neoplasm specimen 900000000000448009 +5067342012 20220630 1 900000000000207008 309226005 en 900000000000003001 Colonic polyp specimen (specimen) 900000000000448009 +5067343019 20220630 1 900000000000207008 309226005 en 900000000000013009 Colonic polyp specimen 900000000000448009 +5067345014 20220630 1 900000000000207008 258456000 en 900000000000013009 Empyema fluid specimen 900000000000448009 +5067346010 20220630 1 900000000000207008 258456000 en 900000000000003001 Empyema fluid specimen (specimen) 900000000000448009 +5067416013 20220630 1 900000000000207008 258549008 en 900000000000003001 Skin scale specimen (specimen) 900000000000448009 +5067417016 20220630 1 900000000000207008 258549008 en 900000000000013009 Skin scale specimen 900000000000448009 +5067418014 20220630 1 900000000000207008 309072003 en 900000000000003001 Soft tissue specimen (specimen) 900000000000448009 +5067419018 20220630 1 900000000000207008 309072003 en 900000000000013009 Soft tissue specimen 900000000000448009 +5067420012 20220630 1 900000000000207008 709024005 en 900000000000013009 Paint chip specimen 900000000000448009 +5067421011 20220630 1 900000000000207008 709024005 en 900000000000003001 Paint chip specimen (specimen) 900000000000448009 +5067425019 20220630 1 900000000000207008 309497005 en 900000000000013009 Total nephrectomy specimen 900000000000448009 +5067426018 20220630 1 900000000000207008 309497005 en 900000000000003001 Total nephrectomy specimen (specimen) 900000000000448009 +5067427010 20220630 1 900000000000207008 373826004 en 900000000000003001 Surgical excision specimen (specimen) 900000000000448009 +5067428017 20220630 1 900000000000207008 373826004 en 900000000000013009 Surgical excision specimen 900000000000448009 +5067429013 20220630 1 900000000000207008 258463000 en 900000000000013009 Jejunal fluid specimen 900000000000448009 +5067430015 20220630 1 900000000000207008 258463000 en 900000000000003001 Jejunal fluid specimen (specimen) 900000000000448009 +5067434012 20220630 1 900000000000207008 258577004 en 900000000000003001 Vaginal secretion specimen (specimen) 900000000000448009 +5067435013 20220630 1 900000000000207008 258577004 en 900000000000013009 Vaginal secretion specimen 900000000000448009 +5067450016 20220630 1 900000000000207008 309130001 en 900000000000003001 Nerve biopsy specimen (specimen) 900000000000448009 +5067451017 20220630 1 900000000000207008 309130001 en 900000000000013009 Nerve biopsy specimen 900000000000448009 +5067452012 20220630 1 900000000000207008 258565009 en 900000000000003001 Chorionic villi specimen (specimen) 900000000000448009 +5067453019 20220630 1 900000000000207008 258565009 en 900000000000013009 Chorionic villi specimen 900000000000448009 +5067485016 20220630 1 900000000000207008 258438000 en 900000000000013009 Vitreous humor specimen 900000000000448009 +5067486015 20220630 1 900000000000207008 258438000 en 900000000000003001 Vitreous humor specimen (specimen) 900000000000448009 +5067487012 20220630 1 900000000000207008 258438000 en 900000000000013009 Vitreous humour specimen 900000000000448009 +5067488019 20220630 1 900000000000207008 309200000 en 900000000000013009 Rectal tissue specimen 900000000000448009 +5067489010 20220630 1 900000000000207008 309200000 en 900000000000003001 Rectal tissue specimen (specimen) 900000000000448009 +5067492014 20220630 1 900000000000207008 309186001 en 900000000000003001 Oral tissue specimen (specimen) 900000000000448009 +5067493016 20220630 1 900000000000207008 309186001 en 900000000000013009 Oral tissue specimen 900000000000448009 +5067494010 20220630 1 900000000000207008 258426009 en 900000000000003001 Placental membrane tissue specimen (specimen) 900000000000448009 +5067495011 20220630 1 900000000000207008 258426009 en 900000000000013009 Placental membrane tissue specimen 900000000000448009 +5067523012 20220630 1 900000000000207008 309212001 en 900000000000013009 Gastric antral biopsy specimen 900000000000448009 +5067524018 20220630 1 900000000000207008 309212001 en 900000000000003001 Gastric antral biopsy specimen (specimen) 900000000000448009 +5067525017 20220630 1 900000000000207008 309052008 en 900000000000003001 Male genital specimen (specimen) 900000000000448009 +5067526016 20220630 1 900000000000207008 309052008 en 900000000000013009 Male genital specimen 900000000000448009 +5067527013 20220630 1 900000000000207008 309129006 en 900000000000013009 Nerve tissue specimen 900000000000448009 +5067528015 20220630 1 900000000000207008 309129006 en 900000000000003001 Nerve tissue specimen (specimen) 900000000000448009 +5067529011 20220630 1 900000000000207008 309174004 en 900000000000003001 Bronchial biopsy specimen (specimen) 900000000000448009 +5067530018 20220630 1 900000000000207008 309174004 en 900000000000013009 Bronchial biopsy specimen 900000000000448009 +5067554011 20220630 1 900000000000207008 16210891000119102 en 900000000000003001 Brain neoplasm tissue specimen (specimen) 900000000000448009 +5067555012 20220630 1 900000000000207008 16210891000119102 en 900000000000013009 Brain neoplasm tissue specimen 900000000000448009 +5067556013 20220630 1 900000000000207008 309276007 en 900000000000013009 Frozen section bladder specimen 900000000000448009 +5067557016 20220630 1 900000000000207008 309276007 en 900000000000003001 Frozen section bladder specimen (specimen) 900000000000448009 +5067557016 20240101 0 900000000000207008 309276007 en 900000000000003001 Frozen section bladder specimen (specimen) 900000000000448009 +5067568016 20220630 1 900000000000207008 309150002 en 900000000000013009 Parathyroid tissue specimen 900000000000448009 +5067569012 20220630 1 900000000000207008 309150002 en 900000000000003001 Parathyroid tissue specimen (specimen) 900000000000448009 +5067570013 20220630 1 900000000000207008 258495004 en 900000000000013009 Renal stone specimen 900000000000448009 +5067571012 20220630 1 900000000000207008 258495004 en 900000000000003001 Renal stone specimen (specimen) 900000000000448009 +5067572017 20220630 1 900000000000207008 258603007 en 900000000000013009 Respiratory specimen 900000000000448009 +5067573010 20220630 1 900000000000207008 258603007 en 900000000000003001 Respiratory specimen (specimen) 900000000000448009 +5067573010 20230531 0 900000000000207008 258603007 en 900000000000003001 Respiratory specimen (specimen) 900000000000448009 +5067574016 20220630 1 900000000000207008 309288009 en 900000000000003001 Endometrial polyp specimen (specimen) 900000000000448009 +5067575015 20220630 1 900000000000207008 309288009 en 900000000000013009 Endometrial polyp specimen 900000000000448009 +5067576019 20220630 1 900000000000207008 16209291000119109 en 900000000000013009 Brain cyst fluid specimen 900000000000448009 +5067577011 20220630 1 900000000000207008 16209291000119109 en 900000000000003001 Brain cyst fluid specimen (specimen) 900000000000448009 +5067578018 20220630 1 900000000000207008 309207002 en 900000000000003001 Peritoneal biopsy specimen (specimen) 900000000000448009 +5067579014 20220630 1 900000000000207008 309207002 en 900000000000013009 Peritoneal biopsy specimen 900000000000448009 +5067580012 20220630 1 900000000000207008 309220004 en 900000000000003001 Small bowel resection specimen (specimen) 900000000000448009 +5067581011 20220630 1 900000000000207008 309220004 en 900000000000013009 Small bowel resection specimen 900000000000448009 +5067582016 20220630 1 900000000000207008 16211251000119101 en 900000000000003001 Extradural lesion specimen (specimen) 900000000000448009 +5067583014 20220630 1 900000000000207008 16211251000119101 en 900000000000013009 Extradural lesion specimen 900000000000448009 +5067584015 20220630 1 900000000000207008 309137003 en 900000000000003001 Testes biopsy specimen (specimen) 900000000000448009 +5067585019 20220630 1 900000000000207008 309137003 en 900000000000013009 Testes biopsy specimen 900000000000448009 +5067586018 20220630 1 900000000000207008 16213331000119104 en 900000000000013009 Rectosigmoid colon biopsy specimen 900000000000448009 +5067587010 20220630 1 900000000000207008 16213331000119104 en 900000000000003001 Rectosigmoid colon biopsy specimen (specimen) 900000000000448009 +5067588017 20220630 1 900000000000207008 258659002 en 900000000000003001 Sheep milk specimen (specimen) 900000000000448009 +5067589013 20220630 1 900000000000207008 258659002 en 900000000000013009 Sheep milk specimen 900000000000448009 +5067590016 20220630 1 900000000000207008 309219005 en 900000000000013009 Jejunal biopsy specimen 900000000000448009 +5067591017 20220630 1 900000000000207008 309219005 en 900000000000003001 Jejunal biopsy specimen (specimen) 900000000000448009 +5067597018 20220630 1 900000000000207008 309264007 en 900000000000003001 Excised rectum specimen (specimen) 900000000000448009 +5067598011 20220630 1 900000000000207008 309264007 en 900000000000013009 Excised rectum specimen 900000000000448009 +5067604014 20220630 1 900000000000207008 309149002 en 900000000000013009 Parathyroid specimen 900000000000448009 +5067605010 20220630 1 900000000000207008 309149002 en 900000000000003001 Parathyroid specimen (specimen) 900000000000448009 +5067606011 20220630 1 900000000000207008 258660007 en 900000000000013009 Goat milk specimen 900000000000448009 +5067607019 20220630 1 900000000000207008 258660007 en 900000000000003001 Goat milk specimen (specimen) 900000000000448009 +5067608012 20220630 1 900000000000207008 309485009 en 900000000000003001 Excised sublingual gland specimen (specimen) 900000000000448009 +5067609016 20220630 1 900000000000207008 309485009 en 900000000000013009 Excised sublingual gland specimen 900000000000448009 +5067614017 20220630 1 900000000000207008 258589002 en 900000000000003001 Lymph node specimen (specimen) 900000000000448009 +5067615016 20220630 1 900000000000207008 258589002 en 900000000000013009 Lymph node specimen 900000000000448009 +5067616015 20220630 1 900000000000207008 16216291000119101 en 900000000000013009 Labia smear specimen 900000000000448009 +5067617012 20220630 1 900000000000207008 16216291000119101 en 900000000000003001 Labia smear specimen (specimen) 900000000000448009 +5067618019 20220630 1 900000000000207008 309227001 en 900000000000013009 Sigmoid colonic polyp specimen 900000000000448009 +5067619010 20220630 1 900000000000207008 309227001 en 900000000000003001 Sigmoid colonic polyp specimen (specimen) 900000000000448009 +5067620016 20220630 1 900000000000207008 309215004 en 900000000000003001 Gastric ulcer specimen (specimen) 900000000000448009 +5067621017 20220630 1 900000000000207008 309215004 en 900000000000013009 Gastric ulcer specimen 900000000000448009 +5067622012 20220630 1 900000000000207008 16210651000119106 en 900000000000003001 Branchial cleft cyst specimen (specimen) 900000000000448009 +5067623019 20220630 1 900000000000207008 16210651000119106 en 900000000000013009 Branchial cleft cyst specimen 900000000000448009 +5067624013 20220630 1 900000000000207008 258480001 en 900000000000003001 Transtracheal aspirate specimen (specimen) 900000000000448009 +5067625014 20220630 1 900000000000207008 258480001 en 900000000000013009 Transtracheal aspirate specimen 900000000000448009 +5067627018 20220630 1 900000000000207008 309481000 en 900000000000003001 Temporal artery specimen (specimen) 900000000000448009 +5067628011 20220630 1 900000000000207008 309481000 en 900000000000013009 Temporal artery specimen 900000000000448009 +5067630013 20220630 1 900000000000207008 309068002 en 900000000000013009 Skin lesion specimen 900000000000448009 +5067631012 20220630 1 900000000000207008 309068002 en 900000000000003001 Skin lesion specimen (specimen) 900000000000448009 +5067632017 20220630 1 900000000000207008 258548000 en 900000000000003001 Dermatological specimen (specimen) 900000000000448009 +5067633010 20220630 1 900000000000207008 258548000 en 900000000000013009 Dermatological specimen 900000000000448009 +5067634016 20220630 1 900000000000207008 309272009 en 900000000000013009 Urinary bladder tissue specimen 900000000000448009 +5067635015 20220630 1 900000000000207008 309272009 en 900000000000003001 Urinary bladder tissue specimen (specimen) 900000000000448009 +5067636019 20220630 1 900000000000207008 309102001 en 900000000000003001 Cartilage biopsy specimen (specimen) 900000000000448009 +5067637011 20220630 1 900000000000207008 309102001 en 900000000000013009 Cartilage biopsy specimen 900000000000448009 +5067638018 20220630 1 900000000000207008 309493009 en 900000000000003001 Bile duct biopsy specimen (specimen) 900000000000448009 +5067639014 20220630 1 900000000000207008 309493009 en 900000000000013009 Bile duct biopsy specimen 900000000000448009 +5067643013 20220630 1 900000000000207008 16213691000119107 en 900000000000003001 Common bile duct brushings specimen (specimen) 900000000000448009 +5067644019 20220630 1 900000000000207008 16213691000119107 en 900000000000013009 Common bile duct brushings specimen 900000000000448009 +5067647014 20220630 1 900000000000207008 309547008 en 900000000000003001 Segmentectomy breast specimen (specimen) 900000000000448009 +5067648016 20220630 1 900000000000207008 309547008 en 900000000000013009 Segmentectomy breast specimen 900000000000448009 +5067649012 20220630 1 900000000000207008 309134005 en 900000000000013009 Prostate tru-cut biopsy specimen 900000000000448009 +5067650012 20220630 1 900000000000207008 309134005 en 900000000000003001 Prostate tru-cut biopsy specimen (specimen) 900000000000448009 +5067651011 20220630 1 900000000000207008 258607008 en 900000000000013009 Bronchoalveolar lavage fluid specimen 900000000000448009 +5067652016 20220630 1 900000000000207008 258607008 en 900000000000003001 Bronchoalveolar lavage fluid specimen (specimen) 900000000000448009 +5067653014 20220630 1 900000000000207008 309146009 en 900000000000013009 Thyroid fine needle aspirate specimen 900000000000448009 +5067654015 20220630 1 900000000000207008 309146009 en 900000000000003001 Thyroid fine needle aspirate specimen (specimen) 900000000000448009 +5067655019 20220630 1 900000000000207008 258459007 en 900000000000013009 Gastric fluid specimen 900000000000448009 +5067656018 20220630 1 900000000000207008 258459007 en 900000000000003001 Gastric fluid specimen (specimen) 900000000000448009 +5067657010 20220630 1 900000000000207008 258581004 en 900000000000013009 Clotted blood specimen 900000000000448009 +5067658017 20220630 1 900000000000207008 258581004 en 900000000000003001 Clotted blood specimen (specimen) 900000000000448009 +5067664012 20220630 1 900000000000207008 168141000 en 900000000000003001 Nasal fluid specimen (specimen) 900000000000448009 +5067665013 20220630 1 900000000000207008 168141000 en 900000000000013009 Nasal fluid specimen 900000000000448009 +5067666014 20220630 1 900000000000207008 309191000 en 900000000000003001 Tonsil biopsy specimen (specimen) 900000000000448009 +5067667017 20220630 1 900000000000207008 309191000 en 900000000000013009 Tonsil biopsy specimen 900000000000448009 +5067668010 20220630 1 900000000000207008 309503002 en 900000000000003001 Breast nipple discharge specimen (specimen) 900000000000448009 +5067669019 20220630 1 900000000000207008 309503002 en 900000000000013009 Breast nipple discharge specimen 900000000000448009 +5067670018 20220630 1 900000000000207008 309110000 en 900000000000003001 Bursa tissue specimen (specimen) 900000000000448009 +5067671019 20220630 1 900000000000207008 309110000 en 900000000000013009 Bursa tissue specimen 900000000000448009 +5067672014 20220630 1 900000000000207008 309178001 en 900000000000003001 Nasal biopsy specimen (specimen) 900000000000448009 +5067673016 20220630 1 900000000000207008 309178001 en 900000000000013009 Nasal biopsy specimen 900000000000448009 +5067674010 20220630 1 900000000000207008 309122002 en 900000000000003001 Synovium biopsy specimen (specimen) 900000000000448009 +5067675011 20220630 1 900000000000207008 309122002 en 900000000000013009 Synovium biopsy specimen 900000000000448009 +5067676012 20220630 1 900000000000207008 258455001 en 900000000000003001 Drainage fluid specimen (specimen) 900000000000448009 +5067677015 20220630 1 900000000000207008 258455001 en 900000000000013009 Drainage fluid specimen 900000000000448009 +5067681015 20220630 1 900000000000207008 258585008 en 900000000000013009 Bone marrow trephine specimen 900000000000448009 +5067682010 20220630 1 900000000000207008 258585008 en 900000000000003001 Bone marrow trephine specimen (specimen) 900000000000448009 +5067683017 20220630 1 900000000000207008 258435002 en 900000000000013009 Tumor tissue specimen 900000000000448009 +5067684011 20220630 1 900000000000207008 258435002 en 900000000000013009 Tumour tissue specimen 900000000000448009 +5067685012 20220630 1 900000000000207008 258435002 en 900000000000003001 Tumor tissue specimen (specimen) 900000000000448009 +5067686013 20220630 1 900000000000207008 16216091000119108 en 900000000000013009 Duodenal brushings specimen 900000000000448009 +5067687016 20220630 1 900000000000207008 16216091000119108 en 900000000000003001 Duodenal brushings specimen (specimen) 900000000000448009 +5067688014 20220630 1 900000000000207008 16213411000119100 en 900000000000013009 Ascending colon biopsy specimen 900000000000448009 +5067689018 20220630 1 900000000000207008 16213411000119100 en 900000000000003001 Ascending colon biopsy specimen (specimen) 900000000000448009 +5067690010 20220630 1 900000000000207008 271514008 en 900000000000013009 Sternal bone marrow specimen 900000000000448009 +5067691014 20220630 1 900000000000207008 271514008 en 900000000000003001 Sternal bone marrow specimen (specimen) 900000000000448009 +5067692019 20220630 1 900000000000207008 309292002 en 900000000000013009 Ovarian fluid specimen 900000000000448009 +5067693012 20220630 1 900000000000207008 309292002 en 900000000000003001 Ovarian fluid specimen (specimen) 900000000000448009 +5067694018 20220630 1 900000000000207008 309260003 en 900000000000013009 Sigmoid colon biopsy specimen 900000000000448009 +5067695017 20220630 1 900000000000207008 309260003 en 900000000000003001 Sigmoid colon biopsy specimen (specimen) 900000000000448009 +5067696016 20220630 1 900000000000207008 258561000 en 900000000000003001 Parotid gland saliva specimen (specimen) 900000000000448009 +5067697013 20220630 1 900000000000207008 258561000 en 900000000000013009 Parotid gland saliva specimen 900000000000448009 +5067698015 20220630 1 900000000000207008 309203003 en 900000000000003001 Liver biopsy specimen (specimen) 900000000000448009 +5067699011 20220630 1 900000000000207008 309203003 en 900000000000013009 Liver biopsy specimen 900000000000448009 +5067700012 20220630 1 900000000000207008 309061008 en 900000000000003001 Breast fine needle aspirate specimen (specimen) 900000000000448009 +5067701011 20220630 1 900000000000207008 309061008 en 900000000000013009 Breast fine needle aspirate specimen 900000000000448009 +5067702016 20220630 1 900000000000207008 309199003 en 900000000000003001 Gastrointestinal fluid specimen (specimen) 900000000000448009 +5067703014 20220630 1 900000000000207008 309199003 en 900000000000013009 Gastrointestinal fluid specimen 900000000000448009 +5067704015 20220630 1 900000000000207008 309073008 en 900000000000013009 Lipoma biopsy specimen 900000000000448009 +5067705019 20220630 1 900000000000207008 309073008 en 900000000000003001 Lipoma biopsy specimen (specimen) 900000000000448009 +5067706018 20220630 1 900000000000207008 309118007 en 900000000000013009 Fascia biopsy specimen 900000000000448009 +5067707010 20220630 1 900000000000207008 309118007 en 900000000000003001 Fascia biopsy specimen (specimen) 900000000000448009 +5067708017 20220630 1 900000000000207008 258474009 en 900000000000013009 Sinus fluid specimen 900000000000448009 +5067709013 20220630 1 900000000000207008 258474009 en 900000000000003001 Sinus fluid specimen (specimen) 900000000000448009 +5067710015 20220630 1 900000000000207008 309187005 en 900000000000013009 Dental tissue specimen 900000000000448009 +5067711016 20220630 1 900000000000207008 309187005 en 900000000000003001 Dental tissue specimen (specimen) 900000000000448009 +5067712011 20220630 1 900000000000207008 309175003 en 900000000000003001 Resected lung specimen (specimen) 900000000000448009 +5067713018 20220630 1 900000000000207008 309175003 en 900000000000013009 Resected lung specimen 900000000000448009 +5067716014 20220630 1 900000000000207008 309221000 en 900000000000013009 Terminal ileum resection specimen 900000000000448009 +5067717017 20220630 1 900000000000207008 309221000 en 900000000000003001 Terminal ileum resection specimen (specimen) 900000000000448009 +5067718010 20220630 1 900000000000207008 309507001 en 900000000000013009 Muscle biopsy specimen 900000000000448009 +5067719019 20220630 1 900000000000207008 309507001 en 900000000000003001 Muscle biopsy specimen (specimen) 900000000000448009 +5067720013 20220630 1 900000000000207008 309289001 en 900000000000013009 Endometrial resection specimen 900000000000448009 +5067721012 20220630 1 900000000000207008 309289001 en 900000000000003001 Endometrial resection specimen (specimen) 900000000000448009 +5067722017 20220630 1 900000000000207008 258576008 en 900000000000003001 Suprapubic aspirate specimen (specimen) 900000000000448009 +5067723010 20220630 1 900000000000207008 258576008 en 900000000000013009 Suprapubic aspirate specimen 900000000000448009 +5067724016 20220630 1 900000000000207008 258656009 en 900000000000003001 Whole milk specimen (specimen) 900000000000448009 +5067725015 20220630 1 900000000000207008 258656009 en 900000000000013009 Whole milk specimen 900000000000448009 +5067726019 20220630 1 900000000000207008 312494007 en 900000000000003001 Vaginal vault smear specimen (specimen) 900000000000448009 +5067727011 20220630 1 900000000000207008 312494007 en 900000000000013009 Vaginal vault smear specimen 900000000000448009 +5067728018 20220630 1 900000000000207008 309151003 en 900000000000013009 Parathyroid biopsy specimen 900000000000448009 +5067729014 20220630 1 900000000000207008 309151003 en 900000000000003001 Parathyroid biopsy specimen (specimen) 900000000000448009 +5067730016 20220630 1 900000000000207008 16213571000119107 en 900000000000013009 Ileocaecal valve biopsy specimen 900000000000448009 +5067731017 20220630 1 900000000000207008 16213571000119107 en 900000000000013009 Ileocecal valve biopsy specimen 900000000000448009 +5067732012 20220630 1 900000000000207008 16213571000119107 en 900000000000003001 Ileocecal valve biopsy specimen (specimen) 900000000000448009 +5067733019 20220630 1 900000000000207008 258564008 en 900000000000013009 Buccal smear specimen 900000000000448009 +5067734013 20220630 1 900000000000207008 258564008 en 900000000000003001 Buccal smear specimen (specimen) 900000000000448009 +5067813013 20220630 1 900000000000207008 309290005 en 900000000000013009 Fallopian tube biopsy specimen 900000000000448009 +5067814019 20220630 1 900000000000207008 309290005 en 900000000000003001 Fallopian tube biopsy specimen (specimen) 900000000000448009 +5067815018 20220630 1 900000000000207008 16216411000119106 en 900000000000013009 Conjunctival smear specimen 900000000000448009 +5067816017 20220630 1 900000000000207008 16216411000119106 en 900000000000003001 Conjunctival smear specimen (specimen) 900000000000448009 +5067817014 20220630 1 900000000000207008 16220931000119104 en 900000000000013009 Pancreas cyst fluid specimen 900000000000448009 +5067818016 20220630 1 900000000000207008 16220931000119104 en 900000000000003001 Pancreas cyst fluid specimen (specimen) 900000000000448009 +5067819012 20220630 1 900000000000207008 309488006 en 900000000000003001 Partial colectomy specimen (specimen) 900000000000448009 +5067820018 20220630 1 900000000000207008 309488006 en 900000000000013009 Partial colectomy specimen 900000000000448009 +5067821019 20220630 1 900000000000207008 309053003 en 900000000000003001 Female genital specimen (specimen) 900000000000448009 +5067822014 20220630 1 900000000000207008 309053003 en 900000000000013009 Female genital specimen 900000000000448009 +5067823016 20220630 1 900000000000207008 16210531000119104 en 900000000000013009 Labia ulcer specimen 900000000000448009 +5067824010 20220630 1 900000000000207008 16210531000119104 en 900000000000003001 Labia ulcer specimen (specimen) 900000000000448009 +5067825011 20220630 1 900000000000207008 309476009 en 900000000000013009 Neck block dissection specimen 900000000000448009 +5067826012 20220630 1 900000000000207008 309476009 en 900000000000003001 Neck block dissection specimen (specimen) 900000000000448009 +5067834018 20220630 1 900000000000207008 309138008 en 900000000000003001 Orchidectomy specimen (specimen) 900000000000448009 +5067835017 20220630 1 900000000000207008 309138008 en 900000000000013009 Orchidectomy specimen 900000000000448009 +5067836016 20220630 1 900000000000207008 258494000 en 900000000000003001 Pancreatic stone specimen (specimen) 900000000000448009 +5067837013 20220630 1 900000000000207008 258494000 en 900000000000013009 Pancreatic stone specimen 900000000000448009 +5067838015 20220630 1 900000000000207008 309277003 en 900000000000013009 Urethra biopsy specimen 900000000000448009 +5067839011 20220630 1 900000000000207008 309277003 en 900000000000003001 Urethra biopsy specimen (specimen) 900000000000448009 +5067844016 20220630 1 900000000000207008 258430007 en 900000000000003001 Rectal snip specimen (specimen) 900000000000448009 +5067845015 20220630 1 900000000000207008 258430007 en 900000000000013009 Rectal snip specimen 900000000000448009 +5067846019 20220630 1 900000000000207008 258568006 en 900000000000013009 Polar body specimen 900000000000448009 +5067847011 20220630 1 900000000000207008 258568006 en 900000000000003001 Polar body specimen (specimen) 900000000000448009 +5067848018 20220630 1 900000000000207008 16213451000119104 en 900000000000003001 Right colic flexure biopsy specimen (specimen) 900000000000448009 +5067849014 20220630 1 900000000000207008 16213451000119104 en 900000000000013009 Right colic flexure biopsy specimen 900000000000448009 +5067850014 20220630 1 900000000000207008 309077009 en 900000000000013009 Spleen resection specimen 900000000000448009 +5067851013 20220630 1 900000000000207008 309077009 en 900000000000003001 Spleen resection specimen (specimen) 900000000000448009 +5067852018 20220630 1 900000000000207008 309484008 en 900000000000003001 Parotidectomy specimen (specimen) 900000000000448009 +5067853011 20220630 1 900000000000207008 309484008 en 900000000000013009 Parotidectomy specimen 900000000000448009 +5067854017 20220630 1 900000000000207008 258450006 en 900000000000003001 Cerebrospinal fluid specimen (specimen) 900000000000448009 +5067855016 20220630 1 900000000000207008 258544003 en 900000000000003001 Native heart valve specimen (specimen) 900000000000448009 +5067856015 20220630 1 900000000000207008 258544003 en 900000000000013009 Native heart valve specimen 900000000000448009 +5067858019 20220630 1 900000000000207008 309208007 en 900000000000003001 Omentum biopsy specimen (specimen) 900000000000448009 +5067859010 20220630 1 900000000000207008 309208007 en 900000000000013009 Omentum biopsy specimen 900000000000448009 +5067860017 20220630 1 900000000000207008 258429002 en 900000000000013009 Rectal scrape specimen 900000000000448009 +5067861018 20220630 1 900000000000207008 258429002 en 900000000000003001 Rectal scrape specimen (specimen) 900000000000448009 +5067862013 20220630 1 900000000000207008 309183009 en 900000000000003001 Laryngectomy specimen (specimen) 900000000000448009 +5067863015 20220630 1 900000000000207008 309183009 en 900000000000013009 Laryngectomy specimen 900000000000448009 +5067864014 20220630 1 900000000000207008 309496001 en 900000000000013009 Omentectomy specimen 900000000000448009 +5067865010 20220630 1 900000000000207008 309496001 en 900000000000003001 Omentectomy specimen (specimen) 900000000000448009 +5067866011 20220630 1 900000000000207008 309126004 en 900000000000013009 Articular tissue specimen 900000000000448009 +5067867019 20220630 1 900000000000207008 309126004 en 900000000000003001 Articular tissue specimen (specimen) 900000000000448009 +5067868012 20220630 1 900000000000207008 258417006 en 900000000000003001 Bone tissue specimen (specimen) 900000000000448009 +5067869016 20220630 1 900000000000207008 258417006 en 900000000000013009 Bone tissue specimen 900000000000448009 +5067870015 20220630 1 900000000000207008 309171007 en 900000000000013009 Lower respiratory fluid specimen 900000000000448009 +5067871016 20220630 1 900000000000207008 309171007 en 900000000000003001 Lower respiratory fluid specimen (specimen) 900000000000448009 +5067872011 20220630 1 900000000000207008 258604001 en 900000000000013009 Upper respiratory specimen 900000000000448009 +5067873018 20220630 1 900000000000207008 258604001 en 900000000000003001 Upper respiratory specimen (specimen) 900000000000448009 +5067874012 20220630 1 900000000000207008 258462005 en 900000000000013009 Ileostomy fluid specimen 900000000000448009 +5067875013 20220630 1 900000000000207008 258462005 en 900000000000003001 Ileostomy fluid specimen (specimen) 900000000000448009 +5067876014 20220630 1 900000000000207008 309147000 en 900000000000003001 Thyroid cyst fluid specimen (specimen) 900000000000448009 +5067877017 20220630 1 900000000000207008 309147000 en 900000000000013009 Thyroid cyst fluid specimen 900000000000448009 +5067878010 20220630 1 900000000000207008 258572005 en 900000000000013009 Ultrafiltrate specimen 900000000000448009 +5067879019 20220630 1 900000000000207008 258572005 en 900000000000003001 Ultrafiltrate specimen (specimen) 900000000000448009 +5067880016 20220630 1 900000000000207008 309204009 en 900000000000013009 Liver direct smear specimen 900000000000448009 +5067881017 20220630 1 900000000000207008 309204009 en 900000000000003001 Liver direct smear specimen (specimen) 900000000000448009 +5067882012 20220630 1 900000000000207008 309548003 en 900000000000003001 Breast duct specimen (specimen) 900000000000448009 +5067883019 20220630 1 900000000000207008 309548003 en 900000000000013009 Breast duct specimen 900000000000448009 +5067884013 20220630 1 900000000000207008 309285007 en 900000000000013009 Cervical loop excision specimen 900000000000448009 +5067885014 20220630 1 900000000000207008 309285007 en 900000000000003001 Cervical loop excision specimen (specimen) 900000000000448009 +5067886010 20220630 1 900000000000207008 309216003 en 900000000000003001 Duodenal biopsy specimen (specimen) 900000000000448009 +5067887018 20220630 1 900000000000207008 309216003 en 900000000000013009 Duodenal biopsy specimen 900000000000448009 +5067888011 20220630 1 900000000000207008 258446004 en 900000000000003001 Bronchial fluid specimen (specimen) 900000000000448009 +5067889015 20220630 1 900000000000207008 258446004 en 900000000000013009 Bronchial fluid specimen 900000000000448009 +5067890012 20220630 1 900000000000207008 258559009 en 900000000000013009 Gingivocrevicular fluid specimen 900000000000448009 +5067891011 20220630 1 900000000000207008 258559009 en 900000000000003001 Gingivocrevicular fluid specimen (specimen) 900000000000448009 +5067892016 20220630 1 900000000000207008 309261004 en 900000000000003001 Sigmoid colon brushings specimen (specimen) 900000000000448009 +5067893014 20220630 1 900000000000207008 309261004 en 900000000000013009 Sigmoid colon brushings specimen 900000000000448009 +5067899013 20220630 1 900000000000207008 258560004 en 900000000000003001 Oral saliva specimen (specimen) 900000000000448009 +5067900015 20220630 1 900000000000207008 258560004 en 900000000000013009 Oral saliva specimen 900000000000448009 +5067901016 20220630 1 900000000000207008 258653001 en 900000000000013009 Formula milk specimen 900000000000448009 +5067902011 20220630 1 900000000000207008 258653001 en 900000000000003001 Formula milk specimen (specimen) 900000000000448009 +5067909019 20220630 1 900000000000207008 258458004 en 900000000000013009 Fistula fluid specimen 900000000000448009 +5067910012 20220630 1 900000000000207008 258458004 en 900000000000003001 Fistula fluid specimen (specimen) 900000000000448009 +5067916018 20220630 1 900000000000207008 258547005 en 900000000000003001 Cardiopulmonary bypass pump fluid specimen (specimen) 900000000000448009 +5067917010 20220630 1 900000000000207008 258547005 en 900000000000013009 Cardiopulmonary bypass pump fluid specimen 900000000000448009 +5067918017 20220630 1 900000000000207008 309057002 en 900000000000013009 Breast direct smear specimen 900000000000448009 +5067919013 20220630 1 900000000000207008 309057002 en 900000000000003001 Breast direct smear specimen (specimen) 900000000000448009 +5067925012 20220630 1 900000000000207008 309192007 en 900000000000003001 Tonsillectomy specimen (specimen) 900000000000448009 +5067926013 20220630 1 900000000000207008 309192007 en 900000000000013009 Tonsillectomy specimen 900000000000448009 +5067927016 20220630 1 900000000000207008 258471001 en 900000000000003001 Prostatic massage fluid specimen (specimen) 900000000000448009 +5067928014 20220630 1 900000000000207008 258471001 en 900000000000013009 Prostatic massage fluid specimen 900000000000448009 +5067929018 20220630 1 900000000000207008 309180007 en 900000000000003001 Nasopharyngeal biopsy specimen (specimen) 900000000000448009 +5067930011 20220630 1 900000000000207008 309180007 en 900000000000013009 Nasopharyngeal biopsy specimen 900000000000448009 +5067931010 20220630 1 900000000000207008 16213491000119109 en 900000000000003001 Cecum biopsy specimen (specimen) 900000000000448009 +5067932015 20220630 1 900000000000207008 16213491000119109 en 900000000000013009 Caecum biopsy specimen 900000000000448009 +5067933013 20220630 1 900000000000207008 16213491000119109 en 900000000000013009 Cecum biopsy specimen 900000000000448009 +5067934019 20220630 1 900000000000207008 309179009 en 900000000000003001 Nasal polyp specimen (specimen) 900000000000448009 +5067935018 20220630 1 900000000000207008 309179009 en 900000000000013009 Nasal polyp specimen 900000000000448009 +5067936017 20220630 1 900000000000207008 309273004 en 900000000000013009 Bladder biopsy specimen 900000000000448009 +5067937014 20220630 1 900000000000207008 309273004 en 900000000000003001 Bladder biopsy specimen (specimen) 900000000000448009 +5067937014 20240101 0 900000000000207008 309273004 en 900000000000003001 Bladder biopsy specimen (specimen) 900000000000448009 +5067938016 20220630 1 900000000000207008 16214131000119104 en 900000000000013009 Frozen tissue section specimen 900000000000448009 +5067939012 20220630 1 900000000000207008 16214131000119104 en 900000000000003001 Frozen tissue section specimen (specimen) 900000000000448009 +5067940014 20220630 1 900000000000207008 16210611000119105 en 900000000000013009 Uterine cervix cyst specimen 900000000000448009 +5067941013 20220630 1 900000000000207008 16210611000119105 en 900000000000003001 Uterine cervix cyst specimen (specimen) 900000000000448009 +5067942018 20220630 1 900000000000207008 309224008 en 900000000000013009 Colon strip specimen 900000000000448009 +5067943011 20220630 1 900000000000207008 309224008 en 900000000000003001 Colon strip specimen (specimen) 900000000000448009 +5067944017 20220630 1 900000000000207008 309167009 en 900000000000013009 Middle ear biopsy specimen 900000000000448009 +5067945016 20220630 1 900000000000207008 309167009 en 900000000000003001 Middle ear biopsy specimen (specimen) 900000000000448009 +5067946015 20220630 1 900000000000207008 409876003 en 900000000000003001 Oral mucosal transudate specimen (specimen) 900000000000448009 +5067947012 20220630 1 900000000000207008 409876003 en 900000000000013009 Oral mucosal transudate specimen 900000000000448009 +5067948019 20220630 1 900000000000207008 16212371000119106 en 900000000000013009 Kidney brushings specimen 900000000000448009 +5067949010 20220630 1 900000000000207008 16212371000119106 en 900000000000003001 Kidney brushings specimen (specimen) 900000000000448009 +5067950010 20220630 1 900000000000207008 309070006 en 900000000000003001 Vulval skin biopsy specimen (specimen) 900000000000448009 +5067951014 20220630 1 900000000000207008 309070006 en 900000000000013009 Vulval skin biopsy specimen 900000000000448009 +5067952019 20220630 1 900000000000207008 16213531000119109 en 900000000000003001 Descending colon biopsy specimen (specimen) 900000000000448009 +5067953012 20220630 1 900000000000207008 16213531000119109 en 900000000000013009 Descending colon biopsy specimen 900000000000448009 +5067954018 20220630 1 900000000000207008 303248007 en 900000000000013009 Blood film specimen 900000000000448009 +5067955017 20220630 1 900000000000207008 303248007 en 900000000000003001 Blood film specimen (specimen) 900000000000448009 +5067956016 20220630 1 900000000000207008 258539005 en 900000000000013009 Bone and joint specimen 900000000000448009 +5067957013 20220630 1 900000000000207008 258539005 en 900000000000003001 Bone and joint specimen (specimen) 900000000000448009 +5067958015 20220630 1 900000000000207008 168137004 en 900000000000013009 Gastric aspirate specimen 900000000000448009 +5067959011 20220630 1 900000000000207008 168137004 en 900000000000003001 Gastric aspirate specimen (specimen) 900000000000448009 +5067960018 20220630 1 900000000000207008 309504008 en 900000000000003001 Skin punch biopsy specimen (specimen) 900000000000448009 +5067961019 20220630 1 900000000000207008 309504008 en 900000000000013009 Skin punch biopsy specimen 900000000000448009 +5067962014 20220630 1 900000000000207008 309111001 en 900000000000003001 Bursa biopsy specimen (specimen) 900000000000448009 +5067963016 20220630 1 900000000000207008 309111001 en 900000000000013009 Bursa biopsy specimen 900000000000448009 +5067964010 20220630 1 900000000000207008 258466008 en 900000000000003001 Middle ear fluid specimen (specimen) 900000000000448009 +5067965011 20220630 1 900000000000207008 258466008 en 900000000000013009 Middle ear fluid specimen 900000000000448009 +5067966012 20220630 1 900000000000207008 309143001 en 900000000000003001 Excised adrenal gland specimen (specimen) 900000000000448009 +5067967015 20220630 1 900000000000207008 309143001 en 900000000000013009 Excised adrenal gland specimen 900000000000448009 +5067968013 20220630 1 900000000000207008 309281003 en 900000000000013009 Vaginal vault biopsy specimen 900000000000448009 +5067969017 20220630 1 900000000000207008 309281003 en 900000000000003001 Vaginal vault biopsy specimen (specimen) 900000000000448009 +5067970016 20220630 1 900000000000207008 16210571000119101 en 900000000000013009 Dental cyst specimen 900000000000448009 +5067971017 20220630 1 900000000000207008 16210571000119101 en 900000000000003001 Dental cyst specimen (specimen) 900000000000448009 +5067972012 20220630 1 900000000000207008 309293007 en 900000000000013009 Placenta biopsy specimen 900000000000448009 +5067973019 20220630 1 900000000000207008 309293007 en 900000000000003001 Placenta biopsy specimen (specimen) 900000000000448009 +5067974013 20220630 1 900000000000207008 258584007 en 900000000000003001 Bone marrow fragment specimen (specimen) 900000000000448009 +5067975014 20220630 1 900000000000207008 258584007 en 900000000000013009 Bone marrow fragment specimen 900000000000448009 +5091282017 20220831 1 900000000000207008 1237234002 en 900000000000013009 Specimen from haemorrhagic ovarian cyst obtained by aspiration 900000000000448009 +5091283010 20220831 1 900000000000207008 1237234002 en 900000000000013009 Specimen from hemorrhagic ovarian cyst obtained by aspiration 900000000000448009 +5091284016 20220831 1 900000000000207008 1237234002 en 900000000000003001 Specimen from hemorrhagic ovarian cyst obtained by aspiration (specimen) 900000000000448009 +5091285015 20220831 1 900000000000207008 1237234002 en 900000000000013009 Hemorrhagic ovarian cyst aspirate specimen 900000000000448009 +5091287011 20220831 1 900000000000207008 1237234002 en 900000000000013009 Haemorrhagic ovarian cyst aspirate specimen 900000000000448009 +5156110016 20221231 1 900000000000207008 472885008 en 900000000000003001 Swab from pressure injury (specimen) 900000000000448009 +5156111017 20221231 1 900000000000207008 472885008 en 900000000000013009 Swab from pressure injury 900000000000448009 +5158506016 20221231 1 900000000000207008 1259931002 en 900000000000003001 Hair of face specimen (specimen) 900000000000448009 +5158507013 20221231 1 900000000000207008 1259931002 en 900000000000013009 Hair of face specimen 900000000000448009 +5158736011 20221231 1 900000000000207008 433881000124103 en 900000000000003001 Combined specimen from swab of anterior nares and throat (specimen) 900000000000448009 +5158737019 20221231 1 900000000000207008 433881000124103 en 900000000000013009 Combined specimen from swab of anterior nares and throat 900000000000448009 +5158738012 20221231 1 900000000000207008 433881000124103 en 900000000000013009 Combined nares and throat swab 900000000000448009 +5179183010 20230228 1 900000000000207008 122592007 en 900000000000013009 Serum or plasma specimen 900000000000448009 +5223968010 20230430 1 900000000000207008 258454002 en 900000000000013009 Dialysis fluid sample 900000000000448009 +5223969019 20230430 1 900000000000207008 258454002 en 900000000000013009 Dialysis fluid specimen 900000000000448009 +5223970018 20230430 1 900000000000207008 168140004 en 900000000000013009 Peritoneal dialysis fluid specimen 900000000000448009 +5245432015 20230531 1 900000000000207008 258603007 en 900000000000003001 Specimen from respiratory system (specimen) 900000000000448009 +5245433013 20230531 1 900000000000207008 258603007 en 900000000000013009 Specimen from respiratory system 900000000000448009 +5245440014 20230531 1 900000000000207008 40371000087100 en 900000000000013009 Combined specimen from swab of axillary fossa and groin 900000000000448009 +5245441013 20230531 1 900000000000207008 40371000087100 en 900000000000013009 Combined specimen from swab of axillary fossa and inguinal region 900000000000448009 +5245442018 20230531 1 900000000000207008 40371000087100 en 900000000000003001 Combined specimen from swab of axillary fossa and inguinal region (specimen) 900000000000448009 +5245443011 20230531 1 900000000000207008 445444005 en 900000000000013009 Swab of inguinal region 900000000000448009 +5245444017 20230531 1 900000000000207008 445444005 en 900000000000003001 Swab of inguinal region (specimen) 900000000000448009 +5245451014 20230531 1 900000000000207008 42061000087105 en 900000000000013009 Combined specimen from swab of anterior nares and axillary fossa and groin 900000000000448009 +5245452019 20230531 1 900000000000207008 42061000087105 en 900000000000013009 Combined specimen from swab of anterior nares and axillary fossa and inguinal region 900000000000448009 +5245453012 20230531 1 900000000000207008 42061000087105 en 900000000000003001 Combined specimen from swab of anterior nares and axillary fossa and inguinal region (specimen) 900000000000448009 +5245454018 20230531 1 900000000000207008 38851000087103 en 900000000000013009 IVF (in vitro fertilisation) medium submitted as specimen 900000000000017005 +5245455017 20230531 1 900000000000207008 38851000087103 en 900000000000013009 IVF (in vitro fertilization) medium submitted as specimen 900000000000017005 +5245456016 20230531 1 900000000000207008 38851000087103 en 900000000000013009 In vitro fertilisation medium submitted as specimen 900000000000448009 +5245457013 20230531 1 900000000000207008 38851000087103 en 900000000000003001 In vitro fertilization medium submitted as specimen (specimen) 900000000000448009 +5245458015 20230531 1 900000000000207008 38851000087103 en 900000000000013009 In vitro fertilization medium submitted as specimen 900000000000448009 +5249716010 20230630 1 900000000000207008 1285640000 en 900000000000013009 Respiratory smear specimen 900000000000448009 +5249717018 20230630 1 900000000000207008 1285640000 en 900000000000013009 Smear from respiratory specimen 900000000000448009 +5249718011 20230630 1 900000000000207008 1285640000 en 900000000000003001 Smear from respiratory specimen (specimen) 900000000000448009 +5260622012 20230901 1 900000000000207008 50841000087100 en 900000000000013009 ASEDs (autologous serum eye drops) specimen 900000000000017005 +5260623019 20230901 1 900000000000207008 50841000087100 en 900000000000003001 Autologous serum eye drops specimen (specimen) 900000000000448009 +5260624013 20230901 1 900000000000207008 50841000087100 en 900000000000013009 Autologous serum eye drops specimen 900000000000448009 +5275083015 20231001 1 900000000000207008 697989009 en 900000000000013009 Anterior nasal cavity swab 900000000000448009 +5277609017 20231101 1 900000000000207008 1293160008 en 900000000000003001 Swab from middle region of inferior nasal meatus (specimen) 900000000000448009 +5277610010 20231101 1 900000000000207008 1293160008 en 900000000000013009 Swab from middle region of inferior nasal meatus 900000000000448009 +5277611014 20231101 1 900000000000207008 1293160008 en 900000000000013009 Nasal mid-turbinate swab 900000000000448009 +5289099012 20240101 1 900000000000207008 309273004 en 900000000000013009 Urinary bladder biopsy specimen 900000000000448009 +5289100016 20240101 1 900000000000207008 309273004 en 900000000000003001 Urinary bladder biopsy specimen (specimen) 900000000000448009 +5289101017 20240101 1 900000000000207008 309274005 en 900000000000013009 Urinary bladder curettings specimen 900000000000448009 +5289102012 20240101 1 900000000000207008 309274005 en 900000000000003001 Urinary bladder curettings specimen (specimen) 900000000000448009 +5289103019 20240101 1 900000000000207008 309276007 en 900000000000003001 Frozen section urinary bladder specimen (specimen) 900000000000448009 +5289104013 20240101 1 900000000000207008 309276007 en 900000000000013009 Frozen section urinary bladder specimen 900000000000448009 +5289105014 20240101 1 900000000000207008 699283007 en 900000000000013009 Mid-stream urine specimen obtained by single catheterisation of urinary bladder 900000000000448009 +5289106010 20240101 1 900000000000207008 699283007 en 900000000000013009 Mid-stream urine specimen obtained by single catheterization of urinary bladder 900000000000448009 +5289107018 20240101 1 900000000000207008 699283007 en 900000000000003001 Mid-stream urine specimen obtained by single catheterization of urinary bladder (specimen) 900000000000448009 +5289108011 20240101 1 900000000000207008 432099000 en 900000000000003001 Specimen from urinary bladder obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +5289109015 20240101 1 900000000000207008 432099000 en 900000000000013009 Specimen from urinary bladder obtained by fine needle aspiration biopsy 900000000000448009 +5289110013 20240101 1 900000000000207008 446130001 en 900000000000013009 Urine specimen from urinary bladder 900000000000448009 +5289111012 20240101 1 900000000000207008 446130001 en 900000000000003001 Urine specimen from urinary bladder (specimen) 900000000000448009 +5289112017 20240101 1 900000000000207008 447589008 en 900000000000003001 Urine specimen obtained by single catheterization of urinary bladder (specimen) 900000000000448009 +5289113010 20240101 1 900000000000207008 447589008 en 900000000000013009 Urine specimen obtained by single catheterization of urinary bladder 900000000000448009 +5289114016 20240101 1 900000000000207008 447589008 en 900000000000013009 Urine specimen obtained by single catheterisation of urinary bladder 900000000000448009 +5289115015 20240101 1 900000000000207008 699285000 en 900000000000013009 Urine specimen obtained from urinary bladder by cystoscopy 900000000000448009 +5289116019 20240101 1 900000000000207008 699285000 en 900000000000013009 Urine specimen obtained from urinary bladder via cystoscopy 900000000000448009 +5289117011 20240101 1 900000000000207008 699285000 en 900000000000003001 Urine specimen obtained from urinary bladder by cystoscopy (specimen) 900000000000448009 +5290144012 20240101 1 900000000000207008 791000009104 en 900000000000013009 Epithelial tissue specimen from vesicle 900000000000448009 +5295515017 20240101 1 900000000000207008 258493006 en 900000000000003001 Urinary bladder calculus specimen (specimen) 900000000000448009 +5295516016 20240101 1 900000000000207008 258493006 en 900000000000013009 Urinary bladder calculus specimen 900000000000448009 +5348032013 20240601 1 900000000000207008 1331990008 en 900000000000013009 Tissue specimen from left breast 900000000000448009 +5348033015 20240601 1 900000000000207008 1331990008 en 900000000000003001 Tissue specimen from left breast (specimen) 900000000000448009 +5348034014 20240601 1 900000000000207008 1331991007 en 900000000000003001 Tissue specimen from right breast (specimen) 900000000000448009 +5348035010 20240601 1 900000000000207008 1331991007 en 900000000000013009 Tissue specimen from right breast 900000000000448009 +5352087011 20240501 1 900000000000207008 52041000087106 en 900000000000003001 Swab from genital ulcer (specimen) 900000000000448009 +5352088018 20240501 1 900000000000207008 52041000087106 en 900000000000013009 Swab from genital ulcer 900000000000448009 +5352339010 20240501 1 900000000000207008 35271000087102 en 900000000000013009 Porcine cardiac valve submitted as specimen 900000000000448009 +5352340012 20240501 1 900000000000207008 35271000087102 en 900000000000003001 Porcine cardiac valve submitted as specimen (specimen) 900000000000448009 +5352341011 20240501 1 900000000000207008 35261000087106 en 900000000000003001 Bone screw submitted as specimen (specimen) 900000000000448009 +5352342016 20240501 1 900000000000207008 35261000087106 en 900000000000013009 Bone screw submitted as specimen 900000000000448009 +5352343014 20240501 1 900000000000207008 35311000087102 en 900000000000003001 Bone plate submitted as specimen (specimen) 900000000000448009 +5352344015 20240501 1 900000000000207008 35311000087102 en 900000000000013009 Bone plate submitted as specimen 900000000000448009 +5352345019 20240501 1 900000000000207008 35291000087103 en 900000000000013009 Surgical staple submitted as specimen 900000000000448009 +5352346018 20240501 1 900000000000207008 35291000087103 en 900000000000003001 Surgical staple submitted as specimen (specimen) 900000000000448009 +5353537015 20240501 1 900000000000207008 35281000087100 en 900000000000013009 Surgical stainless steel suture submitted as specimen 900000000000448009 +5353538013 20240501 1 900000000000207008 35281000087100 en 900000000000003001 Surgical stainless steel suture submitted as specimen (specimen) 900000000000448009 +5353686013 20240501 1 900000000000207008 2531000181101 en 900000000000003001 Urine specimen obtained after prostatic massage (specimen) 900000000000448009 +5353687016 20240501 1 900000000000207008 2531000181101 en 900000000000013009 Urine specimen obtained after prostatic massage 900000000000448009 +5353688014 20240501 1 900000000000207008 2531000181101 en 900000000000013009 Postprostatic massage urine specimen 900000000000448009 +5353890012 20240501 1 900000000000207008 258591005 en 900000000000013009 Leukocyte specimen 900000000000448009 +5353891011 20240501 1 900000000000207008 258591005 en 900000000000013009 Leucocyte specimen 900000000000448009 +5353915019 20240501 1 900000000000207008 35321000087105 en 900000000000013009 Implantable defibrillator component submitted as specimen 900000000000448009 +5353916018 20240501 1 900000000000207008 35321000087105 en 900000000000003001 Implantable defibrillator component submitted as specimen (specimen) 900000000000448009 +5354557013 20240501 1 900000000000207008 1332490003 en 900000000000003001 Specimen from crust on skin (specimen) 900000000000448009 +5354558015 20240501 1 900000000000207008 1332490003 en 900000000000013009 Specimen from crust on skin 900000000000448009 +5359685015 20240501 1 900000000000207008 2501000181105 en 900000000000003001 Biopsy specimen in tissue fixative (specimen) 900000000000448009 +5359686019 20240501 1 900000000000207008 2501000181105 en 900000000000013009 Biopsy specimen in tissue fixative 900000000000448009 +5362053015 20240701 1 900000000000207008 1335919003 en 900000000000013009 Specimen from head obtained by fine needle aspiration biopsy 900000000000448009 +5362054014 20240701 1 900000000000207008 1335919003 en 900000000000003001 Specimen from head obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +5362055010 20240701 1 900000000000207008 1335920009 en 900000000000013009 Specimen from neck obtained by fine needle aspiration biopsy 900000000000448009 +5362056011 20240701 1 900000000000207008 1335920009 en 900000000000003001 Specimen from neck obtained by fine needle aspiration biopsy (specimen) 900000000000448009 +5362057019 20240701 1 900000000000207008 1335921008 en 900000000000013009 Specimen from head obtained by biopsy 900000000000448009 +5362058012 20240701 1 900000000000207008 1335921008 en 900000000000003001 Specimen from head obtained by biopsy (specimen) 900000000000448009 +5362059016 20240701 1 900000000000207008 1335922001 en 900000000000003001 Specimen from neck obtained by biopsy (specimen) 900000000000448009 +5362060014 20240701 1 900000000000207008 1335922001 en 900000000000013009 Specimen from neck obtained by biopsy 900000000000448009 +5362064017 20240701 1 900000000000207008 1335924000 en 900000000000003001 Specimen from head (specimen) 900000000000448009 +5362065016 20240701 1 900000000000207008 1335924000 en 900000000000013009 Specimen from head 900000000000448009 +5362066015 20240701 1 900000000000207008 1335925004 en 900000000000013009 Specimen from neck 900000000000448009 +5362067012 20240701 1 900000000000207008 1335925004 en 900000000000003001 Specimen from neck (specimen) 900000000000448009 +5367801018 20240601 1 900000000000207008 396906004 en 900000000000003001 Specimen from thymus gland obtained by video assisted thoracoscopy (specimen) 900000000000448009 +5367802013 20240601 1 900000000000207008 396906004 en 900000000000013009 Specimen from thymus gland obtained by video assisted thoracoscopy 900000000000448009 +5367882010 20240701 1 900000000000207008 1338034005 en 900000000000003001 Tissue specimen from penis obtained by excision (specimen) 900000000000448009 +5367883017 20240701 1 900000000000207008 1338034005 en 900000000000013009 Tissue specimen from penis obtained by excision 900000000000448009 +5373450017 20240701 1 900000000000207008 1340203001 en 900000000000013009 Ectoparasite specimen 900000000000448009 +5373451018 20240701 1 900000000000207008 1340203001 en 900000000000003001 Ectoparasite specimen (specimen) 900000000000448009 +5378693011 20240701 1 900000000000207008 2511000181107 en 900000000000003001 Specimen obtained by exfoliation (specimen) 900000000000448009 +5378694017 20240701 1 900000000000207008 2511000181107 en 900000000000013009 Specimen obtained by exfoliation 900000000000448009 +5380605019 20240701 1 900000000000207008 1343300000 en 900000000000003001 Swab from fistula (specimen) 900000000000448009 +5380606018 20240701 1 900000000000207008 1343300000 en 900000000000013009 Swab from fistula 900000000000448009 +5380607010 20240701 1 900000000000207008 1343301001 en 900000000000013009 Eyelash specimen 900000000000448009 +5380608017 20240701 1 900000000000207008 1343301001 en 900000000000003001 Eyelash specimen (specimen) 900000000000448009 +5380609013 20240701 1 900000000000207008 1343301001 en 900000000000013009 Lash specimen 900000000000448009 +5389409013 20240901 1 900000000000207008 1344978009 en 900000000000003001 Swab from pustule (specimen) 900000000000448009 +5389410015 20240901 1 900000000000207008 1344978009 en 900000000000013009 Swab from pustule 900000000000448009 +5390168017 20240901 1 900000000000207008 1345107007 en 900000000000013009 Combined urethral and genital swab 900000000000448009 +5390169013 20240901 1 900000000000207008 1345107007 en 900000000000003001 Combined urethral and genital swab (specimen) 900000000000448009 +5390170014 20240901 1 900000000000207008 1345107007 en 900000000000013009 Urogenital swab 900000000000448009 +5390850017 20241001 1 900000000000207008 1345219005 en 900000000000013009 Swab from portio vaginalis cervicis 900000000000448009 +5390851018 20241001 1 900000000000207008 1345219005 en 900000000000003001 Swab from vaginal part of cervix (specimen) 900000000000448009 +5390852013 20241001 1 900000000000207008 1345219005 en 900000000000013009 Swab from portio vaginalis uteri 900000000000448009 +5390853015 20241001 1 900000000000207008 1345219005 en 900000000000013009 Swab from vaginal part of cervix 900000000000448009 +5390901010 20241001 1 900000000000207008 1345230008 en 900000000000003001 Tablet submitted as specimen (specimen) 900000000000448009 +5390902015 20241001 1 900000000000207008 1345230008 en 900000000000013009 Tablet submitted as specimen 900000000000448009 +5390905018 20241001 1 900000000000207008 57221000087106 en 900000000000013009 Urine specimen from ureter obtained by ureteroscopy 900000000000448009 +5390906017 20241001 1 900000000000207008 57221000087106 en 900000000000003001 Urine specimen from ureter obtained by ureteroscopy (specimen) 900000000000448009 +5390907014 20241001 1 900000000000207008 1345231007 en 900000000000013009 Culture plate submitted as specimen 900000000000448009 +5390908016 20241001 1 900000000000207008 1345231007 en 900000000000003001 Culture plate submitted as specimen (specimen) 900000000000448009 +5390913017 20241001 1 900000000000207008 1345234004 en 900000000000013009 Thin blood smear specimen 900000000000448009 +5390914011 20241001 1 900000000000207008 1345234004 en 900000000000003001 Thin blood smear specimen (specimen) 900000000000448009 +5390915012 20241001 1 900000000000207008 1345234004 en 900000000000013009 Thin blood film specimen 900000000000448009 +5390916013 20241001 1 900000000000207008 1345235003 en 900000000000003001 Thick blood smear specimen (specimen) 900000000000448009 +5390917016 20241001 1 900000000000207008 1345235003 en 900000000000013009 Thick blood smear specimen 900000000000448009 +5390918014 20241001 1 900000000000207008 1345235003 en 900000000000013009 Thick blood film specimen 900000000000448009 +5390919018 20241001 1 900000000000207008 303248007 en 900000000000013009 Blood smear specimen 900000000000448009 +5391033011 20241001 1 900000000000207008 1345268005 en 900000000000003001 Dip slide culture slide submitted as specimen (specimen) 900000000000448009 +5391034017 20241001 1 900000000000207008 1345268005 en 900000000000013009 Dip slide culture slide submitted as specimen 900000000000448009 +5391035016 20241001 1 900000000000207008 1345268005 en 900000000000013009 Dip slide submitted as specimen 900000000000448009 +5391036015 20241001 1 900000000000207008 1345269002 en 900000000000003001 Fungal culture plate submitted as specimen (specimen) 900000000000448009 +5391037012 20241001 1 900000000000207008 1345269002 en 900000000000013009 Fungal culture plate submitted as specimen 900000000000448009 +5391038019 20241001 1 900000000000207008 1345270001 en 900000000000013009 Blood culture plate submitted as specimen 900000000000448009 +5391039010 20241001 1 900000000000207008 1345270001 en 900000000000003001 Blood culture plate submitted as specimen (specimen) 900000000000448009 +5406087018 20241001 1 900000000000207008 46121000146104 en 900000000000013009 Urinary system calculus specimen 900000000000448009 +5406088011 20241001 1 900000000000207008 46121000146104 en 900000000000003001 Urinary system calculus specimen (specimen) 900000000000448009 +310671000181118 20240501 1 900000000000207008 2421000181104 en 900000000000013009 Capillary serum specimen 900000000000448009 +310681000181116 20240501 1 900000000000207008 2421000181104 en 900000000000003001 Capillary serum specimen (specimen) 900000000000448009 +310711000181117 20240501 1 900000000000207008 2431000181102 en 900000000000003001 Arterial plasma specimen (specimen) 900000000000448009 +310721000181114 20240501 1 900000000000207008 2431000181102 en 900000000000013009 Arterial plasma specimen 900000000000448009 +310731000181111 20240501 1 900000000000207008 2441000181109 en 900000000000003001 Capillary plasma specimen (specimen) 900000000000448009 +310751000181118 20240501 1 900000000000207008 2441000181109 en 900000000000013009 Capillary plasma specimen 900000000000448009 +310771000181113 20240501 1 900000000000207008 2451000181107 en 900000000000013009 Mixed venous plasma specimen 900000000000448009 +310781000181110 20240501 1 900000000000207008 2451000181107 en 900000000000003001 Mixed venous plasma specimen (specimen) 900000000000448009 +311151000181111 20240501 1 900000000000207008 2521000181103 en 900000000000003001 Specimen from root canal (specimen) 900000000000448009 +311161000181114 20240501 1 900000000000207008 2521000181103 en 900000000000013009 Specimen from root canal 900000000000448009 +311961000181112 20240501 1 900000000000207008 2541000181108 en 900000000000003001 Leukopheresis product specimen (specimen) 900000000000448009 +311981000181117 20240501 1 900000000000207008 2541000181108 en 900000000000013009 Leukopheresis product specimen 900000000000448009 +612001000124117 20211031 1 900000000000207008 440674008 en 900000000000013009 Wash fluid sample 900000000000448009 +620271000124113 20211031 1 900000000000207008 429931000124105 en 900000000000003001 Nasal aspirate specimen (specimen) 900000000000448009 +620281000124111 20211031 1 900000000000207008 429931000124105 en 900000000000013009 Nasal aspirate specimen 900000000000448009 +632401000124116 20230630 1 900000000000207008 433781000124108 en 900000000000003001 Tissue specimen from mass (specimen) 900000000000448009 +632411000124118 20230630 1 900000000000207008 433781000124108 en 900000000000013009 Tissue specimen from mass 900000000000448009 +632451000124117 20211031 1 900000000000207008 433801000124107 en 900000000000013009 Nasopharyngeal and oropharyngeal swab 900000000000448009 +632601000124119 20211031 1 900000000000207008 433871000124101 en 900000000000003001 Nasal washings (specimen) 900000000000448009 +632611000124116 20211031 1 900000000000207008 433871000124101 en 900000000000013009 Nasal washings 900000000000448009 +638111000124110 20230430 1 900000000000207008 435541000124108 en 900000000000003001 Scab specimen (specimen) 900000000000448009 +638121000124119 20230430 1 900000000000207008 435541000124108 en 900000000000013009 Scab specimen 900000000000448009 +740311000146113 20241001 1 900000000000207008 46121000146104 en 900000000000013009 Urinary system calculus sample 900000000000448009 +753631000124111 20230630 1 900000000000207008 454911000124104 en 900000000000003001 Swab from face (specimen) 900000000000448009 +753641000124118 20230630 1 900000000000207008 454911000124104 en 900000000000013009 Swab from face 900000000000448009 +753711000124113 20200731 1 900000000000207008 454951000124103 en 900000000000003001 Swab from head (specimen) 900000000000448009 +753721000124117 20200731 1 900000000000207008 454951000124103 en 900000000000013009 Swab from head 900000000000448009 +806301000124114 20200731 1 900000000000207008 461911000124106 en 900000000000003001 Swab specimen from oropharynx (specimen) 900000000000448009 +806311000124112 20200731 1 900000000000207008 461911000124106 en 900000000000013009 Oropharyngeal swab 900000000000448009 +806321000124116 20200731 1 900000000000207008 461911000124106 en 900000000000013009 Swab specimen from oropharynx 900000000000448009 +934251000009119 20240101 1 900000000000207008 791000009104 en 900000000000003001 Epithelial tissue specimen from vesicle (specimen) 900000000000448009 +934261000009116 20240101 1 900000000000207008 791000009104 en 900000000000013009 Epithelial tissue sample from vesicle 900000000000448009 +9820001000004114 20210731 1 900000000000207008 3040001000004107 en 900000000000013009 Surgical tissue block specimen 900000000000448009 +11438081000146114 20240501 1 900000000000207008 142261000146106 en 900000000000013009 Lymphoblast specimen 900000000000448009 +11438091000146111 20240501 1 900000000000207008 142261000146106 en 900000000000003001 Lymphoblast specimen (specimen) 900000000000448009 +14228011000146113 20240501 1 900000000000207008 290211000146104 en 900000000000013009 Monocyte specimen 900000000000448009 +14228021000146115 20240501 1 900000000000207008 290211000146104 en 900000000000003001 Monocyte specimen (specimen) 900000000000448009 +2520801001000113 20230501 1 11000274103 123038009 de 900000000000013009 Untersuchungsmaterial 900000000000017005 +2520811001000111 20230501 1 11000274103 123038009 de 900000000000013009 Probenmaterial 900000000000017005 +2520821001000118 20230501 1 11000274103 123038009 de 900000000000013009 Probe 900000000000017005 +758381000274117 20241115 1 11000274103 258497007 de 900000000000013009 Abszessabstrich 900000000000017005 +758451000274116 20241115 1 11000274103 258527002 de 900000000000013009 Analabstrich 900000000000017005 +758471000274114 20241115 1 11000274103 697989009 de 900000000000013009 Nasenvorhofabstrich 900000000000017005 +758551000274117 20241115 1 11000274103 309201001 de 900000000000013009 Aszitespunktat 900000000000017005 +758691000274110 20241115 1 11000274103 309105004 de 900000000000013009 Knochenbiopsat 900000000000017005 +770721000274117 20241115 1 11000274103 309061008 de 900000000000013009 Brustfeinnadelaspirat 900000000000017005 +770741000274113 20241115 1 11000274103 309061008 de 900000000000013009 Brustfeinnadelpunktat 900000000000017005 +770761000274114 20241115 1 11000274103 309174004 de 900000000000013009 Bronchialbiopsat 900000000000017005 +770781000274116 20241115 1 11000274103 309176002 de 900000000000013009 Bronchienbürstenbiopsat 900000000000017005 +771441000274111 20241115 1 11000274103 258418001 de 900000000000013009 Verbrennungsgewebe 900000000000017005 +771661000274110 20241115 1 11000274103 258524009 de 900000000000013009 Gebärmutterhalsabstrich 900000000000017005 +771681000274117 20241115 1 11000274103 258524009 de 900000000000013009 Zervixabstrich 900000000000017005 +771731000274110 20241115 1 11000274103 258498002 de 900000000000013009 Bindehautabstrich 900000000000017005 +771761000274116 20241115 1 11000274103 258498002 de 900000000000013009 Konjunktivalabstrich 900000000000017005 +771861000274114 20241115 1 11000274103 440500007 de 900000000000013009 Trockenblutkarte 900000000000017005 +771901000274118 20241115 1 11000274103 309216003 de 900000000000013009 Duodenalbiopsat 900000000000017005 +771941000274115 20241115 1 11000274103 309165001 de 900000000000013009 Probenmaterial vom Ohr 900000000000017005 +771951000274117 20241115 1 11000274103 309166000 de 900000000000013009 Ohrabstrich 900000000000017005 +771991000274114 20241115 1 11000274103 309210009 de 900000000000013009 Ösophagusbürstenbiopsat 900000000000017005 +772301000274110 20241115 1 11000274103 309211008 de 900000000000013009 Magenbiopsat 900000000000017005 +772321000274117 20241115 1 11000274103 309213006 de 900000000000013009 Magenbürstenbiopsat 900000000000017005 +772441000274118 20241115 1 11000274103 258508008 de 900000000000013009 Genitalabstrich 900000000000017005 +772471000274113 20241115 1 11000274103 258570002 de 900000000000013009 Urogenitales Probenmaterial 900000000000020002 +772581000274111 20241115 1 11000274103 309124001 de 900000000000013009 Gelenkbiopsat 900000000000017005 +772631000274113 20241115 1 11000274103 309269002 de 900000000000013009 Nierenbiopsat 900000000000017005 +772661000274119 20241115 1 11000274103 309203003 de 900000000000013009 Leberbiopsat 900000000000017005 +772701000274114 20241115 1 11000274103 258606004 de 900000000000013009 Probenmaterial der unteren Atemwege 900000000000017005 +772711000274111 20241115 1 11000274103 302795002 de 900000000000013009 Lymphknotenaspirat 900000000000017005 +772731000274119 20241115 1 11000274103 309079007 de 900000000000013009 Lymphknotenbiopsat 900000000000017005 +772751000274110 20241115 1 11000274103 258488008 de 900000000000013009 Lymphknotenausstrich 900000000000017005 +772951000274112 20241115 1 11000274103 119377007 de 900000000000013009 Probenmaterial vom Myokard 900000000000017005 +773001000274116 20241115 1 11000274103 16223051000119101 de 900000000000013009 Nasennebenhöhlensekret 900000000000017005 +773011000274119 20241115 1 11000274103 16223051000119101 de 900000000000013009 Material aus Nasennebenhöhle 900000000000017005 +773021000274114 20241115 1 11000274103 447339001 de 900000000000013009 Nasensekretausstrich 900000000000017005 +773041000274118 20241115 1 11000274103 258411007 de 900000000000013009 Nasopharyngeales Aspirat 900000000000020002 +773061000274117 20241115 1 11000274103 258500001 de 900000000000013009 Nasopharynxabstrich 900000000000017005 +773081000274110 20241115 1 11000274103 258467004 de 900000000000013009 Nasopharyngeale Spülflüssigkeit 900000000000020002 +773131000274110 20241115 1 11000274103 418932006 de 900000000000013009 Mundabstrich 900000000000017005 +773161000274116 20241115 1 11000274103 258511009 de 900000000000013009 Urethralabstrich des Penis 900000000000017005 +773181000274114 20241115 1 11000274103 258510005 de 900000000000013009 Penisabstrich 900000000000017005 +773201000274113 20241115 1 11000274103 258526006 de 900000000000013009 Perianaler Abstrich 900000000000020002 +773251000274114 20241115 1 11000274103 258525005 de 900000000000013009 Perineumabstrich 900000000000017005 +773301000274118 20241115 1 11000274103 258469001 de 900000000000013009 Rachenspülflüssigkeit 900000000000017005 +773391000274114 20241115 1 11000274103 309172000 de 900000000000013009 Pleurabiopsat 900000000000017005 +773451000274113 20241115 1 11000274103 258484005 de 900000000000013009 Postmortales Gewebe 900000000000020002 +773501000274111 20241115 1 11000274103 258471001 de 900000000000013009 Prostataexprimat 900000000000017005 +773521000274118 20241115 1 11000274103 258502009 de 900000000000013009 Eiterabstrich 900000000000017005 +773541000274114 20241115 1 11000274103 258528007 de 900000000000013009 Rektalabstrich 900000000000017005 +773601000274110 20241115 1 11000274103 258664003 de 900000000000013009 Klebestreifenpräparat 900000000000017005 +773701000274119 20241115 1 11000274103 258475005 de 900000000000013009 Nasennebenhöhlenspülflüssigkeit 900000000000017005 +773741000274116 20241115 1 11000274103 309066003 de 900000000000013009 Hautbiopsat 900000000000017005 +773771000274111 20241115 1 11000274103 258503004 de 900000000000013009 Hautabstrich 900000000000017005 +773791000274110 20241115 1 11000274103 258505006 de 900000000000013009 Hautulkusabstrich 900000000000017005 +773831000274119 20241115 1 11000274103 258489000 de 900000000000013009 Hautschlitzausstrich 900000000000017005 +773841000274112 20241115 1 11000274103 258489000 de 900000000000013009 Skarifikationsausstrich 900000000000017005 +773871000274117 20241115 1 11000274103 309508006 de 900000000000013009 Weichteilläsionaspirat mittels Feinnadel 900000000000017005 +773911000274115 20241115 1 11000274103 446972001 de 900000000000013009 Abszessaspirat 900000000000017005 +773931000274112 20241115 1 11000274103 119392008 de 900000000000013009 Probenmaterial vom Anus 900000000000017005 +773941000274119 20241115 1 11000274103 119392008 de 900000000000013009 Anales Probenmaterial 900000000000020002 +773991000274113 20241115 1 11000274103 119398007 de 900000000000013009 Probenmaterial vom Gehirn 900000000000017005 +774171000274110 20241115 1 11000274103 119400006 de 900000000000013009 Probenmaterial der Kornea 900000000000017005 +774181000274112 20241115 1 11000274103 16215931000119102 de 900000000000013009 Zystenaspirat mittels Feinnadel 900000000000017005 +774281000274117 20241115 1 11000274103 440229008 de 900000000000013009 Probenmaterial aus der Umgebung 900000000000017005 +774431000274115 20241115 1 11000274103 122610009 de 900000000000013009 Lungenbiopsat 900000000000017005 +774491000274119 20241115 1 11000274103 434250007 de 900000000000013009 Perikardbiopsat 900000000000017005 +774521000274116 20241115 1 11000274103 122618002 de 900000000000013009 Pleuraaspirat mittels Feinnadel 900000000000017005 +774541000274112 20241115 1 11000274103 438660002 de 900000000000013009 Probenmaterial einer Prothese 900000000000017005 +774571000274117 20241115 1 11000274103 432134009 de 900000000000013009 Hautaspirat mittels Feinnadelbiopsie 900000000000017005 +774661000274112 20241115 1 11000274103 445447003 de 900000000000013009 Tracheaaspirat 900000000000017005 +774671000274116 20241115 1 11000274103 119369008 de 900000000000013009 Probenmaterial eines Ulkus 900000000000017005 +774701000274117 20241115 1 11000274103 119395005 de 900000000000013009 Probenmaterial der Zervix 900000000000017005 +774711000274115 20241115 1 11000274103 119365002 de 900000000000013009 Probenmaterial einer Wunde 900000000000017005 +774721000274110 20241115 1 11000274103 119365002 de 900000000000013009 Wundmaterial 900000000000017005 +774741000274119 20241115 1 11000274103 119295008 de 900000000000013009 Aspirat 900000000000017005 +774751000274116 20241115 1 11000274103 440674008 de 900000000000013009 Spülflüssigkeit 900000000000017005 +774761000274118 20241115 1 11000274103 440674008 de 900000000000013009 Lavage 900000000000017005 +774771000274114 20241115 1 11000274103 57711000052109 de 900000000000013009 Punktat 900000000000017005 +774781000274111 20241115 1 11000274103 119324002 de 900000000000013009 Unbekanntes Probenmaterial 900000000000020002 +774811000274114 20241115 1 11000274103 278020009 de 900000000000013009 Spontanurin 900000000000017005 +774891000274116 20241115 1 11000274103 373826004 de 900000000000013009 Exzidat 900000000000017005 +774901000274115 20241115 1 11000274103 373826004 de 900000000000013009 Chirurgisches Exzisionspräparat 900000000000020002 +774911000274118 20241115 1 11000274103 257261003 de 900000000000013009 Abstrich 900000000000017005 +774921000274113 20241115 1 11000274103 472896000 de 900000000000013009 Bläschenabstrich 900000000000017005 +774961000274116 20241115 1 11000274103 733104004 de 900000000000013009 Wangenschleimhautabstrich 900000000000017005 +774971000274112 20241115 1 11000274103 472894002 de 900000000000013009 Hornhautabstrich 900000000000017005 +775061000274116 20241115 1 11000274103 472900002 de 900000000000013009 Zahnfleischabstrich 900000000000017005 +775081000274114 20241115 1 11000274103 472862007 de 900000000000013009 Hautläsionsabstrich 900000000000017005 +775101000274119 20241115 1 11000274103 472901003 de 900000000000013009 Nasennebenhöhlenabstrich 900000000000017005 +775171000274111 20241115 1 11000274103 472879001 de 900000000000013009 Plazentaabstrich 900000000000017005 +775211000274114 20241115 1 11000274103 472866005 de 900000000000013009 Zungenabstrich 900000000000017005 +775231000274117 20241115 1 11000274103 472867001 de 900000000000013009 Tonsillenabstrich 900000000000017005 +775251000274113 20241115 1 11000274103 33901000087104 de 900000000000013009 Tracheostomaabstrich 900000000000017005 +775271000274115 20241115 1 11000274103 472871003 de 900000000000013009 Ulkusabstrich 900000000000017005 +775291000274116 20241115 1 11000274103 445364004 de 900000000000013009 Axillaabstrich 900000000000017005 +775311000274115 20241115 1 11000274103 445369009 de 900000000000013009 Endometriumabstrich 900000000000017005 +775331000274112 20241115 1 11000274103 445160003 de 900000000000013009 Augenabstrich 900000000000017005 +775351000274116 20241115 1 11000274103 445444005 de 900000000000013009 Leistenabstrich 900000000000017005 +775371000274114 20241115 1 11000274103 445367006 de 900000000000013009 Nabelabstrich 900000000000017005 +775391000274113 20241115 1 11000274103 461911000124106 de 900000000000013009 Oropharyngealer Abstrich 900000000000020002 +775411000274113 20241115 1 11000274103 461911000124106 de 900000000000013009 Mundrachenabstrich 900000000000017005 +775451000274112 20241115 1 11000274103 258529004 de 900000000000013009 Rachenabstrich 900000000000017005 +775791000274114 20241115 1 11000274103 309164002 de 900000000000013009 Abstrich der oberen Atemwege 900000000000017005 +775811000274110 20241115 1 11000274103 309277003 de 900000000000013009 Urethralbiopsat 900000000000017005 +775831000274118 20241115 1 11000274103 258530009 de 900000000000013009 Harnröhrenabstrich 900000000000017005 +775851000274114 20241115 1 11000274103 258530009 de 900000000000013009 Urethralabstrich 900000000000017005 +776041000274114 20241115 1 11000274103 258520000 de 900000000000013009 Vaginalabstrich 900000000000017005 +776241000274116 20241115 1 11000274103 258523003 de 900000000000013009 Vulvaabstrich 900000000000017005 +776331000274119 20241115 1 11000274103 258531008 de 900000000000013009 Wundabstrich 900000000000017005 +778391000274117 20241115 1 11000274103 258604001 de 900000000000013009 Probenmaterial der oberen Atemwege 900000000000017005 +800081000274111 20241115 1 11000274103 276833005 de 900000000000013009 24-h-Sammelurin 900000000000017005 +800111000274119 20241115 1 11000274103 122592007 de 900000000000013009 Azelluläre Blutprobe 900000000000020002 +800121000274114 20241115 1 11000274103 119373006 de 900000000000013009 Fruchtwasserprobe 900000000000017005 +800131000274111 20241115 1 11000274103 119373006 de 900000000000013009 Amnionflüssigkeitsprobe 900000000000017005 +800141000274118 20241115 1 11000274103 122552005 de 900000000000013009 Arterielle Blutprobe 900000000000020002 +800171000274113 20241115 1 11000274103 309201001 de 900000000000013009 Aszitesflüssigkeitsprobe 900000000000017005 +800181000274110 20241115 1 11000274103 119341000 de 900000000000013009 Gallenflüssigkeitsprobe 900000000000017005 +800221000274116 20241115 1 11000274103 258415003 de 900000000000013009 Biopsieprobe 900000000000017005 +800231000274119 20241115 1 11000274103 258415003 de 900000000000013009 Biopsiepräparat 900000000000017005 +800241000274112 20241115 1 11000274103 258415003 de 900000000000013009 Biopsatprobe 900000000000017005 +800271000274117 20241115 1 11000274103 119297000 de 900000000000013009 Blutprobe 900000000000017005 +800281000274115 20241115 1 11000274103 122560006 de 900000000000013009 Spenderblutprobe 900000000000017005 +800341000274116 20241115 1 11000274103 866033003 de 900000000000013009 Blutprobe in aerober Blutkulturflasche 900000000000017005 +800361000274115 20241115 1 11000274103 866032008 de 900000000000013009 Blutprobe in anaerober Blutkulturflasche 900000000000017005 +800401000274113 20241115 1 11000274103 445295009 de 900000000000013009 Blutprobe mit EDTA-Zusatz 900000000000017005 +800411000274110 20241115 1 11000274103 445295009 de 900000000000013009 Blutprobe mit Ethylendiamintetraacetat 900000000000017005 +800431000274118 20241115 1 11000274103 309051001 de 900000000000013009 Körperflüssigkeitsprobe 900000000000017005 +800441000274111 20241115 1 11000274103 119359002 de 900000000000013009 Knochenmarkprobe 900000000000017005 +800521000274119 20241115 1 11000274103 258446004 de 900000000000013009 Bronchialflüssigkeitsprobe 900000000000017005 +800561000274111 20241115 1 11000274103 258448003 de 900000000000013009 Bursaflüssigkeitsprobe 900000000000017005 +800571000274115 20241115 1 11000274103 309110000 de 900000000000013009 Bursagewebeprobe 900000000000017005 +800581000274118 20241115 1 11000274103 119350003 de 900000000000013009 Calculusprobe 900000000000017005 +800591000274116 20241115 1 11000274103 119350003 de 900000000000013009 Konkrementprobe 900000000000017005 +800621000274118 20241115 1 11000274103 122554006 de 900000000000013009 Kapillarblutprobe 900000000000017005 +800671000274119 20241115 1 11000274103 258450006 de 900000000000013009 Liquorprobe 900000000000017005 +800691000274115 20241115 1 11000274103 445372002 de 900000000000013009 Ventrikelliquorprobe 900000000000017005 +800701000274115 20241115 1 11000274103 122580007 de 900000000000013009 Ohrenschmalzprobe 900000000000017005 +800711000274118 20241115 1 11000274103 122580007 de 900000000000013009 Cerumenprobe 900000000000017005 +800771000274112 20241115 1 11000274103 122556008 de 900000000000013009 Nabelschnurblutprobe 900000000000017005 +800791000274111 20241115 1 11000274103 258454002 de 900000000000013009 Dialysatprobe 900000000000017005 +800811000274112 20241115 1 11000274103 258455001 de 900000000000013009 Drainageflüssigkeitsprobe 900000000000017005 +800821000274117 20241115 1 11000274103 119294007 de 900000000000013009 Trockenblutprobe 900000000000017005 +800851000274111 20241115 1 11000274103 119319000 de 900000000000013009 Arzneimittelprobe 900000000000017005 +800861000274114 20241115 1 11000274103 122574004 de 900000000000013009 Duodenalflüssigkeitsprobe 900000000000017005 +800871000274118 20241115 1 11000274103 122574004 de 900000000000013009 Duodenalsekretprobe 900000000000017005 +800881000274116 20241115 1 11000274103 258575007 de 900000000000013009 Probe von erstem Morgenurin 900000000000017005 +800951000274117 20241115 1 11000274103 258487003 de 900000000000013009 Stuhlabstrich 900000000000017005 +801001000274113 20241115 1 11000274103 309502007 de 900000000000013009 Fetusprobe 900000000000017005 +801011000274110 20241115 1 11000274103 309502007 de 900000000000013009 Fötuspräparat 900000000000017005 +801031000274118 20241115 1 11000274103 258458004 de 900000000000013009 Fistelflüssigkeitsprobe 900000000000017005 +801041000274111 20241115 1 11000274103 258442002 de 900000000000013009 Flüssigkeitsprobe 900000000000017005 +801171000274117 20241115 1 11000274103 122576002 de 900000000000013009 Genitalschleimhautabstrich 900000000000017005 +801181000274115 20241115 1 11000274103 122576002 de 900000000000013009 Abstrich von genitaler Schleimhaut 900000000000017005 +801211000274119 20241115 1 11000274103 119326000 de 900000000000013009 Haarprobe 900000000000017005 +801221000274114 20241115 1 11000274103 258424007 de 900000000000013009 Herzklappengewebeprobe 900000000000017005 +803341000274110 20241115 1 11000274103 1345107007 de 900000000000013009 Kombinierter Urethral- und Genitalabstrich 900000000000017005 +803411000274116 20241115 1 11000274103 1343300000 de 900000000000013009 Fistelabstrich 900000000000017005 +803421000274111 20241115 1 11000274103 1344978009 de 900000000000013009 Pustelabstrich 900000000000017005 +808361000274118 20241115 1 11000274103 276833005 de 900000000000013009 24-Stunden-Sammelurin 900000000000017005 +808381000274111 20241115 1 11000274103 309052008 de 900000000000013009 Probenmaterial der männlichen Genitalien 900000000000017005 +808441000274114 20241115 1 11000274103 472884007 de 900000000000013009 Tiefer Wundabstrich 900000000000020002 +808491000274115 20241115 1 11000274103 472882006 de 900000000000013009 Oberflächlicher Wundabstrich 900000000000020002 +808511000274112 20241115 1 11000274103 122877000 de 900000000000013009 Trachealaspirat der oberen Atemwege 900000000000017005 +808521000274117 20241115 1 11000274103 122877000 de 900000000000013009 Trachealaspirat des oberen Atmungstrakts 900000000000017005 +808621000274116 20241115 1 11000274103 258662004 de 900000000000013009 Abklatschpräparat 900000000000017005 +808651000274110 20241115 1 11000274103 258575007 de 900000000000013009 Morgenurin 900000000000017005 +808691000274118 20241115 1 11000274103 258512002 de 900000000000013009 Glansabstrich 900000000000017005 +808711000274116 20241115 1 11000274103 258513007 de 900000000000013009 Präputialabstrich 900000000000017005 +808731000274113 20241115 1 11000274103 258662004 de 900000000000013009 Probenmaterial auf Adhäsionsobjektträger 900000000000017005 +808751000274117 20241115 1 11000274103 122560006 de 900000000000013009 Blutprobe eines Spenders / einer Spenderin 900000000000017005 +808781000274112 20241115 1 11000274103 878861003 de 900000000000013009 Blutprobe in Blutkulturflasche 900000000000017005 +808791000274114 20241115 1 11000274103 258417006 de 900000000000013009 Knochengewebsprobe 900000000000017005 +809401000274116 20241115 1 11000274103 258446004 de 900000000000013009 Bronchialsekretprobe 900000000000017005 +809411000274119 20241115 1 11000274103 122580007 de 900000000000013009 Zerumenprobe 900000000000017005 +809421000274114 20241115 1 11000274103 258452003 de 900000000000013009 Lymphflüssigkeitsprobe 900000000000017005 +809431000274111 20241115 1 11000274103 258452003 de 900000000000013009 Chylusprobe 900000000000017005 +809441000274118 20241115 1 11000274103 119329007 de 900000000000013009 Kolostrumprobe 900000000000017005 +809451000274115 20241115 1 11000274103 258453008 de 900000000000013009 Zystenflüssigkeitsprobe 900000000000017005 +809461000274117 20241115 1 11000274103 119341000 de 900000000000013009 Gallensekretprobe 900000000000017005 +809471000274113 20241115 1 11000274103 446212001 de 900000000000013009 Biologischer Sporenteststreifen eingereicht als Probenmaterial 900000000000020002 +809481000274110 20241115 1 11000274103 119308003 de 900000000000013009 Kanüle eingereicht als Probenmaterial 900000000000017005 +809491000274112 20241115 1 11000274103 258627009 de 900000000000013009 Kanülenspitze eingereicht als Probenmaterial 900000000000017005 +809501000274117 20241115 1 11000274103 119311002 de 900000000000013009 Katheter eingereicht als Probenmaterial 900000000000017005 +809511000274115 20241115 1 11000274103 119312009 de 900000000000013009 Katheterspitze eingereicht als Probenmaterial 900000000000017005 +809521000274110 20241115 1 11000274103 473409003 de 900000000000013009 Zentralvenöser Katheter (ZVK) eingereicht als Probenmaterial 900000000000017005 +809531000274112 20241115 1 11000274103 472929000 de 900000000000013009 Zentralvenöse Katheterspitze eingereicht als Probenmaterial 900000000000017005 +809541000274119 20241115 1 11000274103 440473005 de 900000000000013009 Kontaktlinse eingereicht als Probenmaterial 900000000000017005 +809551000274116 20241115 1 11000274103 1003705007 de 900000000000013009 Drainagespitze eingereicht als Probenmaterial 900000000000017005 +809561000274118 20241115 1 11000274103 447103002 de 900000000000013009 Fremdkörper eingereicht als Probenmaterial 900000000000017005 +809571000274114 20241115 1 11000274103 473415003 de 900000000000013009 Intrauterinpessar eingereicht als Probenmaterial 900000000000017005 +809581000274111 20241115 1 11000274103 472923004 de 900000000000013009 Periphere Gefäßkatheterspitze eingereicht als Probenmaterial 900000000000020002 +809591000274113 20241115 1 11000274103 1179252003 de 900000000000013009 Objektträger eingereicht als Probenmaterial 900000000000017005 +809601000274118 20241115 1 11000274103 472938003 de 900000000000013009 Trachealtubus eingereicht als Probenmaterial 900000000000017005 +809611000274116 20241115 1 11000274103 472932002 de 900000000000013009 Gefäßkatheter eingereicht als Probenmaterial 900000000000017005 +809621000274111 20241115 1 11000274103 472942000 de 900000000000013009 Ventrikuloperitonealer Shunt eingereicht als Probenmaterial 900000000000020002 +809631000274113 20241115 1 11000274103 703430008 de 900000000000013009 Probenmaterial aus arteriellem Nabelschnurblut 900000000000017005 +809641000274115 20241115 1 11000274103 309503002 de 900000000000013009 Mammillensekretprobe 900000000000017005 +809651000274117 20241115 1 11000274103 258607008 de 900000000000013009 Probenmaterial der bronchoalveolären Lavageflüssigkeit 900000000000017005 +809661000274119 20241115 1 11000274103 432981006 de 900000000000013009 Augenaspirat mittels Feinnadelbiopsie 900000000000017005 +809671000274110 20241115 1 11000274103 432981006 de 900000000000013009 Augenprobe mittels Feinnadelaspirationsbiopsie 900000000000017005 +809681000274112 20241115 1 11000274103 16212771000119105 de 900000000000013009 Augenlidbiopsat 900000000000017005 +809691000274114 20241115 1 11000274103 432419006 de 900000000000013009 Gelenkaspirat mittels Feinnadelbiopsie 900000000000017005 +809701000274114 20241115 1 11000274103 432419006 de 900000000000013009 Gelenkprobe mittels Feinnadelaspirationsbiospie 900000000000017005 +809711000274111 20241115 1 11000274103 432134009 de 900000000000013009 Hautprobe mittels Feinnadelaspirationsbiopsie 900000000000017005 +809721000274116 20241115 1 11000274103 258564008 de 900000000000013009 Probenmaterial aus Wangenschleimhautabstrich 900000000000017005 +809731000274119 20241115 1 11000274103 258450006 de 900000000000013009 Probenmaterial aus zerebrospinaler Flüssigkeit 900000000000017005 +809741000274112 20241115 1 11000274103 258565009 de 900000000000013009 Chorionzottenprobe 900000000000017005 +809751000274110 20241115 1 11000274103 697989009 de 900000000000013009 Abstrich aus vorderer Nasenhöhle 900000000000017005 +809761000274113 20241115 1 11000274103 258513007 de 900000000000013009 Präputiumabstrich 900000000000017005 +809771000274117 20241115 1 11000274103 472894002 de 900000000000013009 Korneaabstrich 900000000000017005 +809781000274115 20241115 1 11000274103 472886009 de 900000000000013009 Gastrostomaabstrich 900000000000017005 +809791000274118 20241115 1 11000274103 258519006 de 900000000000013009 Weiblicher Genitalabstrich 900000000000020002 +809821000274112 20241115 1 11000274103 430268003 de 900000000000013009 Knochenprobe 900000000000017005 +809831000274114 20241115 1 11000274103 119327009 de 900000000000013009 Nagelprobe 900000000000017005 +809841000274116 20241115 1 11000274103 127456000 de 900000000000013009 Probenmaterial der Brust 900000000000017005 +809851000274118 20241115 1 11000274103 119391001 de 900000000000013009 Probenmaterial der Bronchien 900000000000017005 +809861000274115 20241115 1 11000274103 119382000 de 900000000000013009 Probenmaterial des Kolons 900000000000017005 +809871000274111 20241115 1 11000274103 119401005 de 900000000000013009 Probenmaterial der Bindehaut 900000000000017005 +809881000274113 20241115 1 11000274103 119401005 de 900000000000013009 Probenmaterial der Konjunktiva 900000000000017005 +809891000274110 20241115 1 11000274103 119400006 de 900000000000013009 Probenmaterial der Hornhaut 900000000000017005 +809901000274111 20241115 1 11000274103 119396006 de 900000000000013009 Probenmaterial des Endometriums 900000000000017005 +809911000274113 20241115 1 11000274103 119399004 de 900000000000013009 Probenmaterial des Auges 900000000000017005 +809921000274118 20241115 1 11000274103 127476006 de 900000000000013009 Probenmaterial des Eileiters 900000000000017005 +809931000274116 20241115 1 11000274103 449446003 de 900000000000013009 Probenmaterial der Gallenblase 900000000000017005 +809951000274112 20241115 1 11000274103 119381007 de 900000000000013009 Probenmaterial des Dickdarms 900000000000017005 +809961000274110 20241115 1 11000274103 119383005 de 900000000000013009 Probenmaterial der Leber 900000000000017005 +809971000274119 20241115 1 11000274103 430248009 de 900000000000013009 Probenmaterial des Nasopharynx 900000000000017005 +809981000274117 20241115 1 11000274103 447154002 de 900000000000013009 Probenmaterial der Nase 900000000000017005 +810011000274117 20241115 1 11000274103 1003711005 de 900000000000013009 Probenmaterial einer Gelenkprothese 900000000000017005 +810041000274116 20241115 1 11000274103 119395005 de 900000000000013009 Probenmaterial des Gebärmutterhalses 900000000000017005 +810051000274118 20241115 1 11000274103 119393003 de 900000000000013009 Probenmaterial der Urethra 900000000000017005 +810061000274115 20241115 1 11000274103 119390000 de 900000000000013009 Probenmaterial der Trachea 900000000000017005 +810071000274111 20241115 1 11000274103 119389009 de 900000000000013009 Probenmaterial des Rachens 900000000000017005 +810091000274110 20241115 1 11000274103 119380008 de 900000000000013009 Probenmaterial des Dünndarms 900000000000017005 +810101000274118 20241115 1 11000274103 119403008 de 900000000000013009 Probenmaterial der Plazenta 900000000000017005 +810111000274116 20241115 1 11000274103 119397002 de 900000000000013009 Probenmaterial des Penis 900000000000017005 +810121000274111 20241115 1 11000274103 119344008 de 900000000000013009 Probenmaterial des Genitals 900000000000017005 +810131000274113 20241115 1 11000274103 440500007 de 900000000000013009 Dried Blood Spot Sample 900000000000017005 +810141000274115 20241115 1 11000274103 119319000 de 900000000000013009 Medikamentenprobe 900000000000017005 +810151000274117 20241115 1 11000274103 258456000 de 900000000000013009 Empyemprobe 900000000000017005 +810161000274119 20241115 1 11000274103 119336008 de 900000000000013009 Probenmaterial der Ausatemluft 900000000000017005 +810171000274110 20241115 1 11000274103 119336008 de 900000000000013009 Probenmaterial des Exhalats 900000000000017005 +810181000274112 20241115 1 11000274103 446676001 de 900000000000013009 Probenmaterial der ausgestrichenen Muttermilch 900000000000017005 +810191000274114 20241115 1 11000274103 258441009 de 900000000000013009 Probenmaterial aus Exsudat 900000000000017005 +810201000274111 20241115 1 11000274103 122568004 de 900000000000013009 Probenmaterial aus Wundexsudat 900000000000017005 +810211000274113 20241115 1 11000274103 309128003 de 900000000000013009 Probenmaterial der Augenflüssigkeit 900000000000017005 +810221000274118 20241115 1 11000274103 122578001 de 900000000000013009 Probenmaterial der weiblichen Genitalflüssigkeit 900000000000017005 +810231000274116 20241115 1 11000274103 737357006 de 900000000000013009 Fetalblutprobe 900000000000017005 +810241000274114 20241115 1 11000274103 698276005 de 900000000000013009 Erststrahlurinprobe 900000000000017005 +810251000274112 20241115 1 11000274103 733056005 de 900000000000013009 Ohrflüssigkeitprobe 900000000000017005 +810261000274110 20241115 1 11000274103 732976006 de 900000000000013009 Flüssigkeitsprobe des äußeren Gehörgangs 900000000000017005 +810311000274119 20241115 1 11000274103 1343301001 de 900000000000013009 Wimpernprobe 900000000000017005 +810421000274117 20241115 1 11000274103 445744006 de 900000000000013009 Seromflüssigkeitsprobe 900000000000017005 +810431000274115 20241115 1 11000274103 445744006 de 900000000000013009 Seromprobe 900000000000017005 +810441000274113 20241115 1 11000274103 122566000 de 900000000000013009 Wundexsudatprobe 900000000000017005 +810451000274111 20241115 1 11000274103 122571007 de 900000000000013009 Perikardflüssigkeitprobe 900000000000017005 +810461000274114 20241115 1 11000274103 258492001 de 900000000000013009 Gallensteinprobe 900000000000017005 +810471000274118 20241115 1 11000274103 122573005 de 900000000000013009 Probe des Mageninhalts 900000000000017005 +810481000274116 20241115 1 11000274103 258459007 de 900000000000013009 Magenflüssigkeitprobe 900000000000017005 +810491000274119 20241115 1 11000274103 309199003 de 900000000000013009 Gastrointestinalflüssigkeitsprobe 900000000000017005 +810501000274114 20241115 1 11000274103 16214171000119101 de 900000000000013009 Genitalflüssigkeitsprobe 900000000000017005 +810511000274111 20241115 1 11000274103 122579009 de 900000000000013009 Wochenflussprobe 900000000000017005 +810521000274116 20241115 1 11000274103 258559009 de 900000000000013009 Zahntaschenflüssigkeitsprobe 900000000000017005 +810531000274119 20241115 1 11000274103 258588005 de 900000000000013009 Hämatomprobe 900000000000017005 +810541000274112 20241115 1 11000274103 431361003 de 900000000000013009 Gelenkflüssigkeitsprobe 900000000000017005 +810551000274110 20241115 1 11000274103 258465007 de 900000000000013009 Tränenflüssigkeitprobe 900000000000017005 +810561000274113 20241115 1 11000274103 309170008 de 900000000000013009 Probenmaterial von Gewebe der unteren Atemwege 900000000000017005 +810571000274117 20241115 1 11000274103 258589002 de 900000000000013009 Lymphknotenprobe 900000000000017005 +810581000274115 20241115 1 11000274103 309078004 de 900000000000013009 Probenmaterial des Lymphknotengewebes 900000000000017005 +810591000274118 20241115 1 11000274103 119340004 de 900000000000013009 Mekoniumprobe 900000000000017005 +810601000274113 20241115 1 11000274103 119345009 de 900000000000013009 Menstrualblutprobe 900000000000017005 +810611000274110 20241115 1 11000274103 119303007 de 900000000000013009 Probenmaterial von mikrobiellem Isolat 900000000000017005 +810621000274115 20241115 1 11000274103 258574006 de 900000000000013009 Probenmaterial aus Mittelstrahlurin 900000000000017005 +810631000274118 20241115 1 11000274103 258466008 de 900000000000013009 Flüssigkeitsprobe des Mittelohrs 900000000000017005 +810641000274111 20241115 1 11000274103 119321005 de 900000000000013009 Milchprobe 900000000000017005 +810651000274114 20241115 1 11000274103 119298005 de 900000000000013009 Gemischt-venöse Blutprobe 900000000000020002 +810661000274112 20241115 1 11000274103 119328004 de 900000000000013009 Muttermilchprobe 900000000000017005 +810671000274116 20241115 1 11000274103 258483004 de 900000000000013009 Schleimprobe 900000000000017005 +810681000274119 20241115 1 11000274103 258483004 de 900000000000013009 Mucusprobe 900000000000017005 +810691000274117 20241115 1 11000274103 705054005 de 900000000000013009 Muskelprobe 900000000000017005 +810701000274117 20241115 1 11000274103 168141000 de 900000000000013009 Nasensekretprobe 900000000000017005 +810711000274115 20241115 1 11000274103 16224371000119105 de 900000000000013009 Probenmaterial aus Nasenspülflüssigkeit 900000000000017005 +810721000274110 20241115 1 11000274103 309129006 de 900000000000013009 Nervengewebeprobe 900000000000017005 +810731000274112 20241115 1 11000274103 441620008 de 900000000000013009 Probenmaterial aus Mundflüssigkeit 900000000000017005 +810741000274119 20241115 1 11000274103 258494000 de 900000000000013009 Pankreassteinprobe 900000000000017005 +810751000274116 20241115 1 11000274103 168140004 de 900000000000013009 Probenmaterial aus Peritonealdialysat 900000000000017005 +810761000274118 20241115 1 11000274103 168139001 de 900000000000013009 Peritonealflüssigkeitsprobe 900000000000017005 +810771000274114 20241115 1 11000274103 119361006 de 900000000000013009 Plasmaprobe 900000000000017005 +810781000274111 20241115 1 11000274103 788707000 de 900000000000013009 Plasma-, Serum- oder Vollblutprobe 900000000000017005 +810791000274113 20241115 1 11000274103 708048008 de 900000000000013009 Citratplasma 900000000000017005 +810801000274112 20241115 1 11000274103 708048008 de 900000000000013009 Plasma mit Citrat-Zusatz 900000000000017005 +810811000274114 20241115 1 11000274103 418564007 de 900000000000013009 Pleuraflüssigkeitprobe 900000000000017005 +810821000274119 20241115 1 11000274103 418564007 de 900000000000013009 Pleurasekretprobe 900000000000017005 +810831000274117 20241115 1 11000274103 258484005 de 900000000000013009 Postmortale Gewebeprobe 900000000000020002 +810841000274110 20241115 1 11000274103 258470000 de 900000000000013009 Prostataflüssigkeitprobe 900000000000017005 +810851000274113 20241115 1 11000274103 119323008 de 900000000000013009 Eiterprobe 900000000000017005 +810861000274111 20241115 1 11000274103 258495004 de 900000000000013009 Nierensteinprobe 900000000000017005 +810871000274115 20241115 1 11000274103 410580001 de 900000000000013009 Atemwegssekretprobe 900000000000017005 +810881000274118 20241115 1 11000274103 708112008 de 900000000000013009 Douglassekretprobe 900000000000017005 +810891000274116 20241115 1 11000274103 119342007 de 900000000000013009 Speichelprobe 900000000000017005 +810911000274118 20241115 1 11000274103 258431006 de 900000000000013009 Geschabselprobe 900000000000017005 +810921000274113 20241115 1 11000274103 119347001 de 900000000000013009 Samenflüssigkeitprobe 900000000000017005 +810931000274110 20241115 1 11000274103 119347001 de 900000000000013009 Spermaprobe 900000000000017005 +810941000274117 20241115 1 11000274103 119347001 de 900000000000013009 Ejakulatprobe 900000000000017005 +810951000274119 20241115 1 11000274103 119348006 de 900000000000013009 Probenmaterial aus Samenplasma 900000000000017005 +810961000274116 20241115 1 11000274103 119364003 de 900000000000013009 Serumprobe 900000000000017005 +810971000274112 20241115 1 11000274103 122589008 de 900000000000013009 Probenmaterial aus Spenderserum 900000000000017005 +810981000274114 20241115 1 11000274103 122590004 de 900000000000013009 Probenmaterial aus Patientenserum 900000000000017005 +810991000274111 20241115 1 11000274103 119331003 de 900000000000013009 Skelettmuskelprobe 900000000000017005 +811001000274110 20241115 1 11000274103 119325001 de 900000000000013009 Hautgewebeprobe 900000000000017005 +811011000274112 20241115 1 11000274103 258549008 de 900000000000013009 Hautschuppenprobe 900000000000017005 +811021000274117 20241115 1 11000274103 258433009 de 900000000000013009 Ausstrichprobe 900000000000017005 +811031000274115 20241115 1 11000274103 119371008 de 900000000000013009 Abszessprobe 900000000000017005 +811041000274113 20241115 1 11000274103 1003706008 de 900000000000013009 Probenmaterial von Drainagespitze 900000000000017005 +811051000274111 20241115 1 11000274103 734422004 de 900000000000013009 Duodenalschleimhautprobe 900000000000017005 +811061000274114 20241115 1 11000274103 447098004 de 900000000000013009 Nagelgeschabselprobe 900000000000017005 +811071000274118 20241115 1 11000274103 1335922001 de 900000000000013009 Halsbiopsat 900000000000017005 +811081000274116 20241115 1 11000274103 608969007 de 900000000000013009 Hautprobe 900000000000017005 +811091000274119 20241115 1 11000274103 446952006 de 900000000000013009 Hautgeschabselprobe 900000000000017005 +811101000274111 20241115 1 11000274103 119349003 de 900000000000013009 Spermienprobe 900000000000017005 +811111000274113 20241115 1 11000274103 703691002 de 900000000000013009 Zentrifugierte Liquorprobe 900000000000020002 +811121000274118 20241115 1 11000274103 119334006 de 900000000000013009 Sputumprobe 900000000000017005 +811131000274116 20241115 1 11000274103 258434003 de 900000000000013009 Zentrifugierte Urinsedimentprobe 900000000000020002 +811141000274114 20241115 1 11000274103 122567009 de 900000000000013009 Urinsedimentprobe 900000000000017005 +811151000274112 20241115 1 11000274103 258609006 de 900000000000013009 Sputumprobe mittels Trachealaspiration 900000000000017005 +811161000274110 20241115 1 11000274103 119339001 de 900000000000013009 Stuhlprobe 900000000000017005 +811171000274119 20241115 1 11000274103 447488002 de 900000000000013009 Suprapubische Urinprobe 900000000000020002 +811181000274117 20241115 1 11000274103 122569007 de 900000000000013009 Schweißprobe 900000000000017005 +811191000274115 20241115 1 11000274103 119332005 de 900000000000013009 Synovialflüssigkeitsprobe 900000000000017005 +811201000274118 20241115 1 11000274103 309123007 de 900000000000013009 Synovialisprobe 900000000000017005 +811211000274116 20241115 1 11000274103 710069003 de 900000000000013009 Zeckenprobe 900000000000017005 +811221000274111 20241115 1 11000274103 119376003 de 900000000000013009 Gewebeprobe 900000000000017005 +811231000274113 20241115 1 11000274103 128157004 de 900000000000013009 Gehirngewebeprobe 900000000000017005 +811241000274115 20241115 1 11000274103 128159001 de 900000000000013009 Kolongewebeprobe 900000000000017005 +811251000274117 20241115 1 11000274103 127474009 de 900000000000013009 Nierengewebeprobe 900000000000017005 +811261000274119 20241115 1 11000274103 122643008 de 900000000000013009 Dickdarmgewebeprobe 900000000000017005 +811271000274110 20241115 1 11000274103 128168004 de 900000000000013009 Lebergewebeprobe 900000000000017005 +811281000274112 20241115 1 11000274103 399492000 de 900000000000013009 Lungengewebeprobe 900000000000017005 +811291000274114 20241115 1 11000274103 699874006 de 900000000000013009 Perikardgewebeprobe 900000000000017005 +811301000274113 20241115 1 11000274103 127460002 de 900000000000013009 Pleuragewebeprobe 900000000000017005 +811311000274110 20241115 1 11000274103 363329003 de 900000000000013009 Gewebsprobe der Atemwege 900000000000017005 +811321000274115 20241115 1 11000274103 363329003 de 900000000000013009 Gewebsprobe des Respirationstrakts 900000000000017005 +811331000274118 20241115 1 11000274103 122638001 de 900000000000013009 Dünndarmgewebeprobe 900000000000017005 +811341000274111 20241115 1 11000274103 57741000052105 de 900000000000013009 Trachealsekretprobe 900000000000017005 +811351000274114 20241115 1 11000274103 258538002 de 900000000000013009 Transsudatprobe 900000000000017005 +811361000274112 20241115 1 11000274103 258436001 de 900000000000013009 Nabelschnurgewebeprobe 900000000000017005 +811371000274116 20241115 1 11000274103 258493006 de 900000000000013009 Blasensteinprobe 900000000000017005 +811381000274119 20241115 1 11000274103 122565001 de 900000000000013009 Katheterurinprobe 900000000000017005 +811391000274117 20241115 1 11000274103 122575003 de 900000000000013009 Urinprobe 900000000000017005 +811401000274119 20241115 1 11000274103 442173007 de 900000000000013009 Nephrostomieurinprobe 900000000000017005 +811411000274117 20241115 1 11000274103 442173007 de 900000000000013009 Nephrostomieharnprobe 900000000000017005 +811421000274112 20241115 1 11000274103 444937002 de 900000000000013009 Ureterurinprobe 900000000000017005 +811431000274114 20241115 1 11000274103 444937002 de 900000000000013009 Ureterharnprobe 900000000000017005 +811441000274116 20241115 1 11000274103 446130001 de 900000000000013009 Harnblasenurinprobe 900000000000017005 +811451000274118 20241115 1 11000274103 447589008 de 900000000000013009 Urinprobe aus Einmalkatheterisierung 900000000000017005 +811461000274115 20241115 1 11000274103 446306009 de 900000000000013009 Beutelurinprobe 900000000000017005 +811471000274111 20241115 1 11000274103 446846006 de 900000000000013009 Urinprobe aus Dauerkatheter 900000000000017005 +811481000274113 20241115 1 11000274103 446846006 de 900000000000013009 Harnprobe aus Dauerkatheter 900000000000017005 +811491000274110 20241115 1 11000274103 16221251000119108 de 900000000000013009 Urinprobe aus geradem Einmalkatheter 900000000000017005 +811501000274115 20241115 1 11000274103 258577004 de 900000000000013009 Vaginalsekretprobe 900000000000017005 +811511000274118 20241115 1 11000274103 122555007 de 900000000000013009 Venöse Blutprobe 900000000000020002 +811521000274113 20241115 1 11000274103 703431007 de 900000000000013009 Venöse Nabelschnurblutprobe 900000000000020002 +811531000274110 20241115 1 11000274103 703432000 de 900000000000013009 Venöse Plasmaprobe 900000000000020002 +811541000274117 20241115 1 11000274103 258482009 de 900000000000013009 Bläschenflüssigkeitsprobe 900000000000017005 +811551000274119 20241115 1 11000274103 258438000 de 900000000000013009 Glaskörperflüssigkeitsprobe 900000000000017005 +811561000274116 20241115 1 11000274103 122572000 de 900000000000013009 Probenmaterial aus Erbrochenem 900000000000017005 +811571000274112 20241115 1 11000274103 122572000 de 900000000000013009 Vomitusprobe 900000000000017005 +811581000274114 20241115 1 11000274103 119318008 de 900000000000013009 Wasserprobe 900000000000017005 +811591000274111 20241115 1 11000274103 258591005 de 900000000000013009 Leukozytenprobe 900000000000017005 +811601000274116 20241115 1 11000274103 258580003 de 900000000000013009 Vollblutprobe 900000000000017005 +811611000274119 20241115 1 11000274103 57921000052103 de 900000000000013009 Vollblutprobe mit EDTA-Zusatz 900000000000017005 +811621000274114 20241115 1 11000274103 57921000052103 de 900000000000013009 Vollblutprobe mit Ethylendiamintetraacetat 900000000000017005 +811631000274111 20241115 1 11000274103 57921000052103 de 900000000000013009 EDTA-Vollblutprobe 900000000000017005 +811641000274118 20241115 1 11000274103 708049000 de 900000000000013009 Plasmaprobe mit EDTA-Zusatz 900000000000017005 +811651000274115 20241115 1 11000274103 708049000 de 900000000000013009 EDTA-Plasmaprobe 900000000000017005 +811661000274117 20241115 1 11000274103 708049000 de 900000000000013009 Plasmaprobe mit Ethylendiamintetraacetat 900000000000017005 +811671000274113 20241115 1 11000274103 445295009 de 900000000000013009 EDTA-Blutprobe 900000000000017005 +812251000274113 20241115 1 11000274103 472881004 de 900000000000013009 Abstrich aus Pharynx 900000000000017005 +812271000274115 20241115 1 11000274103 16211051000119109 de 900000000000013009 Probenmaterial aus tiefer Wunde 900000000000017005 +900000000000436010 20020131 1 900000000000012004 900000000000207008 en 900000000000013009 SNOMED CT core module 900000000000017005 +900000000000437018 20020131 1 900000000000012004 900000000000207008 en 900000000000013009 SNOMED CT core 900000000000017005 +900000000000438011 20020131 1 900000000000012004 900000000000207008 en 900000000000003001 SNOMED CT core module (core metadata concept) 900000000000017005 +11000274119 20230331 1 11000274103 11000274103 en 900000000000003001 German module (core metadata concept) 900000000000020002 +21000274114 20230331 1 11000274103 11000274103 en 900000000000013009 German module 900000000000020002 +241000274117 20231115 1 11000274103 11000274103 en 900000000000003001 Germany National Extension module (core metadata concept) 900000000000020002 +251000274119 20231115 1 11000274103 11000274103 en 900000000000013009 Germany National Extension module 900000000000020002 +3947071015 20200731 1 900000000000207008 860958002 en 900000000000013009 Temperature of blood 900000000000448009 +3947072010 20200731 1 900000000000207008 860958002 en 900000000000013009 Blood temperature 900000000000448009 +3947073017 20200731 1 900000000000207008 860958002 en 900000000000003001 Temperature of blood (observable entity) 900000000000448009 +18491001000112 20230501 1 11000274103 860958002 de 900000000000013009 Bluttemperatur 900000000000017005 +2201001000116 20230501 1 11000274103 860958002 de 900000000000013009 Temperatur des Blutes 900000000000017005 +1460904011 20030131 1 900000000000207008 386725007 en 900000000000003001 Body temperature (observable entity) 900000000000020002 +1460904011 20170731 1 900000000000207008 386725007 en 900000000000003001 Body temperature (observable entity) 900000000000448009 +1480858013 20030131 1 900000000000207008 386725007 en 900000000000013009 Body temperature 900000000000020002 +1480858013 20170731 1 900000000000207008 386725007 en 900000000000013009 Body temperature 900000000000448009 +1491745014 20030131 1 900000000000207008 386725007 en 900000000000013009 BT - Body temperature 900000000000020002 +1491745014 20030731 1 900000000000207008 386725007 en 900000000000013009 BT - Body temperature 900000000000017005 +1491746010 20030131 1 900000000000207008 386725007 en 900000000000013009 Body temperature - observation 900000000000020002 +1491746010 20170731 1 900000000000207008 386725007 en 900000000000013009 Body temperature - observation 900000000000448009 +2071001000116 20230501 1 11000274103 386725007 de 900000000000013009 Körpertemperatur 900000000000017005 diff --git a/modules/terminology-service/sct-release/Full/Terminology/sct2_Relationship_Full_GermanyEdition_20241115.txt b/modules/terminology-service/sct-release/Full/Terminology/sct2_Relationship_Full_GermanyEdition_20241115.txt new file mode 100644 index 000000000..25d0bdb9f --- /dev/null +++ b/modules/terminology-service/sct-release/Full/Terminology/sct2_Relationship_Full_GermanyEdition_20241115.txt @@ -0,0 +1,22496 @@ +id effectiveTime active moduleId sourceId destinationId relationshipGroup typeId characteristicTypeId modifierId +6465028 20020131 1 900000000000207008 167867009 119332005 0 116680003 900000000000011006 900000000000451002 +6466027 20020131 1 900000000000207008 167868004 119332005 0 116680003 900000000000011006 900000000000451002 +6467020 20020131 1 900000000000207008 167869007 119332005 0 116680003 900000000000011006 900000000000451002 +6468026 20020131 1 900000000000207008 167870008 119332005 0 116680003 900000000000011006 900000000000451002 +6469023 20020131 1 900000000000207008 167871007 119332005 0 116680003 900000000000011006 900000000000451002 +6470024 20020131 1 900000000000207008 167872000 119332005 0 116680003 900000000000011006 900000000000451002 +6470024 20080731 0 900000000000207008 167872000 119332005 0 116680003 900000000000011006 900000000000451002 +6471023 20020131 1 900000000000207008 167873005 119332005 0 116680003 900000000000011006 900000000000451002 +6472027 20020131 1 900000000000207008 167874004 119332005 0 116680003 900000000000011006 900000000000451002 +6474026 20020131 1 900000000000207008 167875003 119332005 0 116680003 900000000000011006 900000000000451002 +6475025 20020131 1 900000000000207008 167876002 119332005 0 116680003 900000000000011006 900000000000451002 +6476029 20020131 1 900000000000207008 167877006 119332005 0 116680003 900000000000011006 900000000000451002 +6476029 20080731 0 900000000000207008 167877006 119332005 0 116680003 900000000000011006 900000000000451002 +6523021 20020131 1 900000000000207008 168136008 309199003 0 116680003 900000000000011006 900000000000451002 +6524026 20020131 1 900000000000207008 168137004 258459007 0 116680003 900000000000011006 900000000000451002 +6525025 20020131 1 900000000000207008 168138009 258459007 0 116680003 900000000000011006 900000000000451002 +6525025 20070731 0 900000000000207008 168138009 258459007 0 116680003 900000000000011006 900000000000451002 +6525025 20080131 1 900000000000207008 168138009 258459007 0 116680003 900000000000011006 900000000000451002 +6525025 20080731 0 900000000000207008 168138009 258459007 0 116680003 900000000000011006 900000000000451002 +6526029 20020131 1 900000000000207008 168139001 309199003 0 116680003 900000000000011006 900000000000451002 +6526029 20040131 0 900000000000207008 168139001 309199003 0 116680003 900000000000011006 900000000000451002 +6527022 20020131 1 900000000000207008 168140004 258454002 0 116680003 900000000000011006 900000000000451002 +6530026 20020131 1 900000000000207008 168141000 122878005 0 116680003 900000000000011006 900000000000451002 +6530026 20040731 0 900000000000207008 168141000 122878005 0 116680003 900000000000011006 900000000000451002 +53187024 20020131 1 900000000000207008 110893002 48469005 0 116680003 900000000000011006 900000000000451002 +53187024 20050131 0 900000000000207008 110893002 48469005 0 116680003 900000000000011006 900000000000451002 +53188025 20020131 1 900000000000207008 110893002 309064000 0 116680003 900000000000011006 900000000000451002 +53188025 20020731 0 900000000000207008 110893002 309064000 0 116680003 900000000000011006 900000000000451002 +53189022 20020131 1 900000000000207008 110893002 258431006 0 116680003 900000000000011006 900000000000451002 +53189022 20080731 0 900000000000207008 110893002 258431006 0 116680003 900000000000011006 900000000000451002 +53203028 20020131 1 900000000000207008 110894008 48469005 0 116680003 900000000000011006 900000000000451002 +53218027 20020131 1 900000000000207008 110896005 48469005 0 116680003 900000000000011006 900000000000451002 +53230022 20020131 1 900000000000207008 110897001 4421005 0 116680003 900000000000011006 900000000000451002 +53230022 20070731 0 900000000000207008 110897001 4421005 0 116680003 900000000000011006 900000000000451002 +53240020 20020131 1 900000000000207008 110898006 48469005 0 116680003 900000000000011006 900000000000451002 +53251020 20020131 1 900000000000207008 110899003 48469005 0 116680003 900000000000011006 900000000000451002 +53251020 20080731 0 900000000000207008 110899003 48469005 0 116680003 900000000000011006 900000000000451002 +53263026 20020131 1 900000000000207008 110900008 48469005 0 116680003 900000000000011006 900000000000451002 +53275020 20020131 1 900000000000207008 110901007 48469005 0 116680003 900000000000011006 900000000000451002 +53275020 20050131 0 900000000000207008 110901007 48469005 0 116680003 900000000000011006 900000000000451002 +53275020 20080731 1 900000000000207008 110901007 48469005 0 116680003 900000000000011006 900000000000451002 +53285021 20020131 1 900000000000207008 110902000 48469005 0 116680003 900000000000011006 900000000000451002 +53285021 20080731 0 900000000000207008 110902000 48469005 0 116680003 900000000000011006 900000000000451002 +53297022 20020131 1 900000000000207008 110903005 48469005 0 116680003 900000000000011006 900000000000451002 +53307025 20020131 1 900000000000207008 110904004 48469005 0 116680003 900000000000011006 900000000000451002 +53307025 20080731 0 900000000000207008 110904004 48469005 0 116680003 900000000000011006 900000000000451002 +53318025 20020131 1 900000000000207008 110905003 48469005 0 116680003 900000000000011006 900000000000451002 +53318025 20080731 0 900000000000207008 110905003 48469005 0 116680003 900000000000011006 900000000000451002 +53324020 20020131 1 900000000000207008 110906002 48469005 0 116680003 900000000000011006 900000000000451002 +53335026 20020131 1 900000000000207008 110907006 48469005 0 116680003 900000000000011006 900000000000451002 +53335026 20080731 0 900000000000207008 110907006 48469005 0 116680003 900000000000011006 900000000000451002 +53346028 20020131 1 900000000000207008 110908001 48469005 0 116680003 900000000000011006 900000000000451002 +53346028 20080731 0 900000000000207008 110908001 48469005 0 116680003 900000000000011006 900000000000451002 +53353021 20020131 1 900000000000207008 110909009 48469005 0 116680003 900000000000011006 900000000000451002 +53353021 20080731 0 900000000000207008 110909009 48469005 0 116680003 900000000000011006 900000000000451002 +53365020 20020131 1 900000000000207008 110910004 48469005 0 116680003 900000000000011006 900000000000451002 +53365020 20080731 0 900000000000207008 110910004 48469005 0 116680003 900000000000011006 900000000000451002 +53386020 20020131 1 900000000000207008 110912007 48469005 0 116680003 900000000000011006 900000000000451002 +53386020 20080731 0 900000000000207008 110912007 48469005 0 116680003 900000000000011006 900000000000451002 +53396027 20020131 1 900000000000207008 110913002 48469005 0 116680003 900000000000011006 900000000000451002 +53402024 20020131 1 900000000000207008 110914008 48469005 0 116680003 900000000000011006 900000000000451002 +53402024 20080731 0 900000000000207008 110914008 48469005 0 116680003 900000000000011006 900000000000451002 +53409026 20020131 1 900000000000207008 110915009 110913002 0 116680003 900000000000011006 900000000000451002 +53417023 20020131 1 900000000000207008 110916005 48469005 0 116680003 900000000000011006 900000000000451002 +53417023 20080731 0 900000000000207008 110916005 48469005 0 116680003 900000000000011006 900000000000451002 +53432027 20020131 1 900000000000207008 110917001 110913002 0 116680003 900000000000011006 900000000000451002 +53437022 20020131 1 900000000000207008 110918006 48469005 0 116680003 900000000000011006 900000000000451002 +53437022 20080731 0 900000000000207008 110918006 48469005 0 116680003 900000000000011006 900000000000451002 +53446027 20020131 1 900000000000207008 110919003 48469005 0 116680003 900000000000011006 900000000000451002 +53454025 20020131 1 900000000000207008 110920009 110902000 0 116680003 900000000000011006 900000000000451002 +53454025 20090131 0 900000000000207008 110920009 110902000 0 116680003 900000000000011006 900000000000451002 +53465024 20020131 1 900000000000207008 110921008 48469005 0 116680003 900000000000011006 900000000000451002 +53465024 20080731 0 900000000000207008 110921008 48469005 0 116680003 900000000000011006 900000000000451002 +53470028 20020131 1 900000000000207008 110922001 48469005 0 116680003 900000000000011006 900000000000451002 +53470028 20080731 0 900000000000207008 110922001 48469005 0 116680003 900000000000011006 900000000000451002 +53477025 20020131 1 900000000000207008 110923006 48469005 0 116680003 900000000000011006 900000000000451002 +53477025 20080731 0 900000000000207008 110923006 48469005 0 116680003 900000000000011006 900000000000451002 +53483027 20020131 1 900000000000207008 110924000 48469005 0 116680003 900000000000011006 900000000000451002 +53483027 20080731 0 900000000000207008 110924000 48469005 0 116680003 900000000000011006 900000000000451002 +53497024 20020131 1 900000000000207008 110925004 4421005 0 116680003 900000000000011006 900000000000451002 +53497024 20070731 0 900000000000207008 110925004 4421005 0 116680003 900000000000011006 900000000000451002 +53502021 20020131 1 900000000000207008 110926003 48469005 0 116680003 900000000000011006 900000000000451002 +53507026 20020131 1 900000000000207008 110927007 48469005 0 116680003 900000000000011006 900000000000451002 +53511021 20020131 1 900000000000207008 110928002 48469005 0 116680003 900000000000011006 900000000000451002 +53524021 20020131 1 900000000000207008 110929005 48469005 0 116680003 900000000000011006 900000000000451002 +53531020 20020131 1 900000000000207008 110930000 48469005 0 116680003 900000000000011006 900000000000451002 +53531020 20080731 0 900000000000207008 110930000 48469005 0 116680003 900000000000011006 900000000000451002 +53536026 20020131 1 900000000000207008 110931001 48469005 0 116680003 900000000000011006 900000000000451002 +53541023 20020131 1 900000000000207008 110932008 48469005 0 116680003 900000000000011006 900000000000451002 +53541023 20080731 0 900000000000207008 110932008 48469005 0 116680003 900000000000011006 900000000000451002 +53546029 20020131 1 900000000000207008 110933003 48469005 0 116680003 900000000000011006 900000000000451002 +53549020 20020131 1 900000000000207008 110934009 48469005 0 116680003 900000000000011006 900000000000451002 +53549020 20080731 0 900000000000207008 110934009 48469005 0 116680003 900000000000011006 900000000000451002 +53556025 20020131 1 900000000000207008 110935005 48469005 0 116680003 900000000000011006 900000000000451002 +53560027 20020131 1 900000000000207008 110936006 48469005 0 116680003 900000000000011006 900000000000451002 +53560027 20080731 0 900000000000207008 110936006 48469005 0 116680003 900000000000011006 900000000000451002 +53569026 20020131 1 900000000000207008 110937002 48469005 0 116680003 900000000000011006 900000000000451002 +53574023 20020131 1 900000000000207008 110938007 48469005 0 116680003 900000000000011006 900000000000451002 +53574023 20080731 0 900000000000207008 110938007 48469005 0 116680003 900000000000011006 900000000000451002 +53576020 20020131 1 900000000000207008 110939004 48469005 0 116680003 900000000000011006 900000000000451002 +53581027 20020131 1 900000000000207008 110940002 48469005 0 116680003 900000000000011006 900000000000451002 +53581027 20080731 0 900000000000207008 110940002 48469005 0 116680003 900000000000011006 900000000000451002 +53588022 20020131 1 900000000000207008 110941003 48469005 0 116680003 900000000000011006 900000000000451002 +53594025 20020131 1 900000000000207008 110942005 48469005 0 116680003 900000000000011006 900000000000451002 +53594025 20080731 0 900000000000207008 110942005 48469005 0 116680003 900000000000011006 900000000000451002 +53603024 20020131 1 900000000000207008 110943000 48469005 0 116680003 900000000000011006 900000000000451002 +53603024 20080731 0 900000000000207008 110943000 48469005 0 116680003 900000000000011006 900000000000451002 +53606027 20020131 1 900000000000207008 110944006 48469005 0 116680003 900000000000011006 900000000000451002 +53613027 20020131 1 900000000000207008 110945007 48469005 0 116680003 900000000000011006 900000000000451002 +53626028 20020131 1 900000000000207008 110946008 48469005 0 116680003 900000000000011006 900000000000451002 +53626028 20080731 0 900000000000207008 110946008 48469005 0 116680003 900000000000011006 900000000000451002 +53634023 20020131 1 900000000000207008 110947004 48469005 0 116680003 900000000000011006 900000000000451002 +53643025 20020131 1 900000000000207008 110948009 48469005 0 116680003 900000000000011006 900000000000451002 +53643025 20080731 0 900000000000207008 110948009 48469005 0 116680003 900000000000011006 900000000000451002 +53646022 20020131 1 900000000000207008 110949001 48469005 0 116680003 900000000000011006 900000000000451002 +53656021 20020131 1 900000000000207008 110950001 48469005 0 116680003 900000000000011006 900000000000451002 +53656021 20080731 0 900000000000207008 110950001 48469005 0 116680003 900000000000011006 900000000000451002 +53668028 20020131 1 900000000000207008 110951002 48469005 0 116680003 900000000000011006 900000000000451002 +53668028 20080731 0 900000000000207008 110951002 48469005 0 116680003 900000000000011006 900000000000451002 +53677024 20020131 1 900000000000207008 110952009 48469005 0 116680003 900000000000011006 900000000000451002 +53677024 20080731 0 900000000000207008 110952009 48469005 0 116680003 900000000000011006 900000000000451002 +53681024 20020131 1 900000000000207008 110953004 48469005 0 116680003 900000000000011006 900000000000451002 +53681024 20080731 0 900000000000207008 110953004 48469005 0 116680003 900000000000011006 900000000000451002 +53684027 20020131 1 900000000000207008 110954005 48469005 0 116680003 900000000000011006 900000000000451002 +53684027 20080731 0 900000000000207008 110954005 48469005 0 116680003 900000000000011006 900000000000451002 +53691029 20020131 1 900000000000207008 110955006 48469005 0 116680003 900000000000011006 900000000000451002 +53694021 20020131 1 900000000000207008 110956007 48469005 0 116680003 900000000000011006 900000000000451002 +53694021 20080731 0 900000000000207008 110956007 48469005 0 116680003 900000000000011006 900000000000451002 +53696023 20020131 1 900000000000207008 110957003 48469005 0 116680003 900000000000011006 900000000000451002 +53699027 20020131 1 900000000000207008 110958008 48469005 0 116680003 900000000000011006 900000000000451002 +53707028 20020131 1 900000000000207008 110959000 48469005 0 116680003 900000000000011006 900000000000451002 +53714026 20020131 1 900000000000207008 110960005 48469005 0 116680003 900000000000011006 900000000000451002 +53714026 20080731 0 900000000000207008 110960005 48469005 0 116680003 900000000000011006 900000000000451002 +53725024 20020131 1 900000000000207008 110961009 48469005 0 116680003 900000000000011006 900000000000451002 +53733020 20020131 1 900000000000207008 110962002 48469005 0 116680003 900000000000011006 900000000000451002 +53733020 20080731 0 900000000000207008 110962002 48469005 0 116680003 900000000000011006 900000000000451002 +53742029 20020131 1 900000000000207008 110963007 48469005 0 116680003 900000000000011006 900000000000451002 +53742029 20080731 0 900000000000207008 110963007 48469005 0 116680003 900000000000011006 900000000000451002 +53757020 20020131 1 900000000000207008 110964001 48469005 0 116680003 900000000000011006 900000000000451002 +53757020 20080731 0 900000000000207008 110964001 48469005 0 116680003 900000000000011006 900000000000451002 +53768020 20020131 1 900000000000207008 110965000 48469005 0 116680003 900000000000011006 900000000000451002 +53768020 20080731 0 900000000000207008 110965000 48469005 0 116680003 900000000000011006 900000000000451002 +53776022 20020131 1 900000000000207008 110966004 48469005 0 116680003 900000000000011006 900000000000451002 +53776022 20080731 0 900000000000207008 110966004 48469005 0 116680003 900000000000011006 900000000000451002 +53785022 20020131 1 900000000000207008 110967008 48469005 0 116680003 900000000000011006 900000000000451002 +53790020 20020131 1 900000000000207008 110968003 48469005 0 116680003 900000000000011006 900000000000451002 +53795026 20020131 1 900000000000207008 110969006 48469005 0 116680003 900000000000011006 900000000000451002 +53807023 20020131 1 900000000000207008 110970007 48469005 0 116680003 900000000000011006 900000000000451002 +53807023 20080731 0 900000000000207008 110970007 48469005 0 116680003 900000000000011006 900000000000451002 +77880021 20020131 1 900000000000207008 256889002 309055005 0 116680003 900000000000011006 900000000000451002 +77880021 20170731 0 900000000000207008 256889002 309055005 0 116680003 900000000000011006 900000000000451002 +77909023 20020131 1 900000000000207008 256912003 258442002 0 116680003 900000000000011006 900000000000451002 +77910029 20020131 1 900000000000207008 256912003 258578009 0 116680003 900000000000011006 900000000000451002 +77910029 20040731 0 900000000000207008 256912003 258578009 0 116680003 900000000000011006 900000000000451002 +78342027 20020131 1 900000000000207008 257261003 302793009 0 116680003 900000000000011006 900000000000451002 +78342027 20040731 0 900000000000207008 257261003 302793009 0 116680003 900000000000011006 900000000000451002 +79667027 20020131 1 900000000000207008 258407001 309049000 0 116680003 900000000000011006 900000000000451002 +79667027 20040731 0 900000000000207008 258407001 309049000 0 116680003 900000000000011006 900000000000451002 +79673026 20020131 1 900000000000207008 258411007 122878005 0 116680003 900000000000011006 900000000000451002 +79673026 20040731 0 900000000000207008 258411007 122878005 0 116680003 900000000000011006 900000000000451002 +79674021 20020131 1 900000000000207008 258412000 122878005 0 116680003 900000000000011006 900000000000451002 +79674021 20040731 0 900000000000207008 258412000 122878005 0 116680003 900000000000011006 900000000000451002 +79676023 20020131 1 900000000000207008 258414004 309072003 0 116680003 900000000000011006 900000000000451002 +79677025 20020131 1 900000000000207008 258415003 302793009 0 116680003 900000000000011006 900000000000451002 +79677025 20040731 0 900000000000207008 258415003 302793009 0 116680003 900000000000011006 900000000000451002 +79679027 20020131 1 900000000000207008 258417006 119330002 0 116680003 900000000000011006 900000000000451002 +79679027 20080731 0 900000000000207008 258417006 119330002 0 116680003 900000000000011006 900000000000451002 +79680029 20020131 1 900000000000207008 258418001 309049000 0 116680003 900000000000011006 900000000000451002 +79680029 20040731 0 900000000000207008 258418001 309049000 0 116680003 900000000000011006 900000000000451002 +79681025 20020131 1 900000000000207008 258419009 302793009 0 116680003 900000000000011006 900000000000451002 +79681025 20040731 0 900000000000207008 258419009 302793009 0 116680003 900000000000011006 900000000000451002 +79683027 20020131 1 900000000000207008 258420003 309049000 0 116680003 900000000000011006 900000000000451002 +79683027 20040731 0 900000000000207008 258420003 309049000 0 116680003 900000000000011006 900000000000451002 +79684022 20020131 1 900000000000207008 258421004 258597009 0 116680003 900000000000011006 900000000000451002 +79684022 20040731 0 900000000000207008 258421004 258597009 0 116680003 900000000000011006 900000000000451002 +79685023 20020131 1 900000000000207008 258422006 258567001 0 116680003 900000000000011006 900000000000451002 +79686024 20020131 1 900000000000207008 258423001 258548000 0 116680003 900000000000011006 900000000000451002 +79686024 20040731 0 900000000000207008 258423001 258548000 0 116680003 900000000000011006 900000000000451002 +79687026 20020131 1 900000000000207008 258424007 258542004 0 116680003 900000000000011006 900000000000451002 +79688020 20020131 1 900000000000207008 258425008 258601009 0 116680003 900000000000011006 900000000000451002 +79689028 20020131 1 900000000000207008 258426009 122736005 0 116680003 900000000000011006 900000000000451002 +79691020 20020131 1 900000000000207008 258428005 258597009 0 116680003 900000000000011006 900000000000451002 +79691020 20040731 0 900000000000207008 258428005 258597009 0 116680003 900000000000011006 900000000000451002 +79692029 20020131 1 900000000000207008 258429002 309200000 0 116680003 900000000000011006 900000000000451002 +79692029 20080731 0 900000000000207008 258429002 309200000 0 116680003 900000000000011006 900000000000451002 +79693023 20020131 1 900000000000207008 258430007 309200000 0 116680003 900000000000011006 900000000000451002 +79694028 20020131 1 900000000000207008 258431006 302793009 0 116680003 900000000000011006 900000000000451002 +79694028 20040731 0 900000000000207008 258431006 302793009 0 116680003 900000000000011006 900000000000451002 +79695027 20020131 1 900000000000207008 258432004 258548000 0 116680003 900000000000011006 900000000000451002 +79695027 20190731 0 900000000000207008 258432004 258548000 0 116680003 900000000000011006 900000000000451002 +79696026 20020131 1 900000000000207008 258433009 302793009 0 116680003 900000000000011006 900000000000451002 +79696026 20040731 0 900000000000207008 258433009 302793009 0 116680003 900000000000011006 900000000000451002 +79697024 20020131 1 900000000000207008 258434003 127471001 0 116680003 900000000000011006 900000000000451002 +79697024 20080731 0 900000000000207008 258434003 127471001 0 116680003 900000000000011006 900000000000451002 +79699022 20020131 1 900000000000207008 258435002 309049000 0 116680003 900000000000011006 900000000000451002 +79699022 20060731 0 900000000000207008 258435002 309049000 0 116680003 900000000000011006 900000000000451002 +79700023 20020131 1 900000000000207008 258436001 258597009 0 116680003 900000000000011006 900000000000451002 +79700023 20040731 0 900000000000207008 258436001 258597009 0 116680003 900000000000011006 900000000000451002 +79701022 20020131 1 900000000000207008 258437005 258542004 0 116680003 900000000000011006 900000000000451002 +79702026 20020131 1 900000000000207008 258437005 309049000 0 116680003 900000000000011006 900000000000451002 +79703020 20020131 1 900000000000207008 258438000 309128003 0 116680003 900000000000011006 900000000000451002 +79704025 20020131 1 900000000000207008 258439008 309050000 0 116680003 900000000000011006 900000000000451002 +79704025 20030731 0 900000000000207008 258439008 309050000 0 116680003 900000000000011006 900000000000451002 +79705029 20020131 1 900000000000207008 258440005 309050000 0 116680003 900000000000011006 900000000000451002 +79705029 20080731 0 900000000000207008 258440005 309050000 0 116680003 900000000000011006 900000000000451002 +79706028 20020131 1 900000000000207008 258441009 309050000 0 116680003 900000000000011006 900000000000451002 +79706028 20030731 0 900000000000207008 258441009 309050000 0 116680003 900000000000011006 900000000000451002 +79707021 20020131 1 900000000000207008 258442002 302793009 0 116680003 900000000000011006 900000000000451002 +79707021 20040731 0 900000000000207008 258442002 302793009 0 116680003 900000000000011006 900000000000451002 +79711026 20020131 1 900000000000207008 258444001 309128003 0 116680003 900000000000011006 900000000000451002 +79714023 20020131 1 900000000000207008 258446004 309171007 0 116680003 900000000000011006 900000000000451002 +79715024 20020131 1 900000000000207008 258448003 309109005 0 116680003 900000000000011006 900000000000451002 +79716020 20020131 1 900000000000207008 258448003 258442002 0 116680003 900000000000011006 900000000000451002 +79716020 20080731 0 900000000000207008 258448003 258442002 0 116680003 900000000000011006 900000000000451002 +79718021 20020131 1 900000000000207008 258450006 258442002 0 116680003 900000000000011006 900000000000451002 +79718021 20030731 0 900000000000207008 258450006 258442002 0 116680003 900000000000011006 900000000000451002 +79719029 20020131 1 900000000000207008 258450006 258592003 0 116680003 900000000000011006 900000000000451002 +79719029 20040731 0 900000000000207008 258450006 258592003 0 116680003 900000000000011006 900000000000451002 +79722027 20020131 1 900000000000207008 258452003 309199003 0 116680003 900000000000011006 900000000000451002 +79723021 20020131 1 900000000000207008 258453008 258442002 0 116680003 900000000000011006 900000000000451002 +79723021 20080731 0 900000000000207008 258453008 258442002 0 116680003 900000000000011006 900000000000451002 +79724026 20020131 1 900000000000207008 258454002 258442002 0 116680003 900000000000011006 900000000000451002 +79724026 20220630 0 900000000000207008 258454002 258442002 0 116680003 900000000000011006 900000000000451002 +79724026 20230430 1 900000000000207008 258454002 258442002 0 116680003 900000000000011006 900000000000451002 +79725025 20020131 1 900000000000207008 258454002 258619000 0 116680003 900000000000011006 900000000000451002 +79725025 20040731 0 900000000000207008 258454002 258619000 0 116680003 900000000000011006 900000000000451002 +79726029 20020131 1 900000000000207008 258455001 258442002 0 116680003 900000000000011006 900000000000451002 +79727022 20020131 1 900000000000207008 258456000 258442002 0 116680003 900000000000011006 900000000000451002 +79727022 20080731 0 900000000000207008 258456000 258442002 0 116680003 900000000000011006 900000000000451002 +79728028 20020131 1 900000000000207008 258457009 258442002 0 116680003 900000000000011006 900000000000451002 +79728028 20110731 0 900000000000207008 258457009 258442002 0 116680003 900000000000011006 900000000000451002 +79729020 20020131 1 900000000000207008 258457009 119339001 0 116680003 900000000000011006 900000000000451002 +79730026 20020131 1 900000000000207008 258458004 258442002 0 116680003 900000000000011006 900000000000451002 +79730026 20080731 0 900000000000207008 258458004 258442002 0 116680003 900000000000011006 900000000000451002 +79731027 20020131 1 900000000000207008 258459007 309199003 0 116680003 900000000000011006 900000000000451002 +79734024 20020131 1 900000000000207008 258461003 258442002 0 116680003 900000000000011006 900000000000451002 +79734024 20110731 0 900000000000207008 258461003 258442002 0 116680003 900000000000011006 900000000000451002 +79735020 20020131 1 900000000000207008 258461003 309049000 0 116680003 900000000000011006 900000000000451002 +79735020 20080731 0 900000000000207008 258461003 309049000 0 116680003 900000000000011006 900000000000451002 +79736021 20020131 1 900000000000207008 258462005 309199003 0 116680003 900000000000011006 900000000000451002 +79737028 20020131 1 900000000000207008 258463000 309199003 0 116680003 900000000000011006 900000000000451002 +79738022 20020131 1 900000000000207008 258465007 309128003 0 116680003 900000000000011006 900000000000451002 +79738022 20080731 0 900000000000207008 258465007 309128003 0 116680003 900000000000011006 900000000000451002 +79739025 20020131 1 900000000000207008 258466008 309165001 0 116680003 900000000000011006 900000000000451002 +79739025 20170731 0 900000000000207008 258466008 309165001 0 116680003 900000000000011006 900000000000451002 +79740028 20020131 1 900000000000207008 258466008 258442002 0 116680003 900000000000011006 900000000000451002 +79740028 20040731 0 900000000000207008 258466008 258442002 0 116680003 900000000000011006 900000000000451002 +79741029 20020131 1 900000000000207008 258467004 122878005 0 116680003 900000000000011006 900000000000451002 +79741029 20040731 0 900000000000207008 258467004 122878005 0 116680003 900000000000011006 900000000000451002 +79742020 20020131 1 900000000000207008 258468009 258442002 0 116680003 900000000000011006 900000000000451002 +79742020 20080731 0 900000000000207008 258468009 258442002 0 116680003 900000000000011006 900000000000451002 +79744021 20020131 1 900000000000207008 258469001 122878005 0 116680003 900000000000011006 900000000000451002 +79744021 20040731 0 900000000000207008 258469001 122878005 0 116680003 900000000000011006 900000000000451002 +79745022 20020131 1 900000000000207008 258470000 258442002 0 116680003 900000000000011006 900000000000451002 +79745022 20040731 0 900000000000207008 258470000 258442002 0 116680003 900000000000011006 900000000000451002 +79745022 20080731 1 900000000000207008 258470000 258442002 0 116680003 900000000000011006 900000000000451002 +79745022 20110131 0 900000000000207008 258470000 258442002 0 116680003 900000000000011006 900000000000451002 +79746023 20020131 1 900000000000207008 258470000 119386002 0 116680003 900000000000011006 900000000000451002 +79746023 20040731 0 900000000000207008 258470000 119386002 0 116680003 900000000000011006 900000000000451002 +79746023 20080731 1 900000000000207008 258470000 119386002 0 116680003 900000000000011006 900000000000451002 +79747025 20020131 1 900000000000207008 258471001 258470000 0 116680003 900000000000011006 900000000000451002 +79748024 20020131 1 900000000000207008 258472008 309268005 0 116680003 900000000000011006 900000000000451002 +79749027 20020131 1 900000000000207008 258474009 122878005 0 116680003 900000000000011006 900000000000451002 +79749027 20040731 0 900000000000207008 258474009 122878005 0 116680003 900000000000011006 900000000000451002 +79750027 20020131 1 900000000000207008 258475005 122878005 0 116680003 900000000000011006 900000000000451002 +79750027 20040731 0 900000000000207008 258475005 122878005 0 116680003 900000000000011006 900000000000451002 +79752024 20020131 1 900000000000207008 258476006 309128003 0 116680003 900000000000011006 900000000000451002 +79755021 20020131 1 900000000000207008 258479004 258442002 0 116680003 900000000000011006 900000000000451002 +79755021 20080731 0 900000000000207008 258479004 258442002 0 116680003 900000000000011006 900000000000451002 +79756022 20020131 1 900000000000207008 258480001 122878005 0 116680003 900000000000011006 900000000000451002 +79756022 20040731 0 900000000000207008 258480001 122878005 0 116680003 900000000000011006 900000000000451002 +79757029 20020131 1 900000000000207008 258481002 122578001 0 116680003 900000000000011006 900000000000451002 +79758023 20020131 1 900000000000207008 258482009 309049000 0 116680003 900000000000011006 900000000000451002 +79759026 20020131 1 900000000000207008 258482009 258442002 0 116680003 900000000000011006 900000000000451002 +79759026 20080731 0 900000000000207008 258482009 258442002 0 116680003 900000000000011006 900000000000451002 +79761024 20020131 1 900000000000207008 258483004 309050000 0 116680003 900000000000011006 900000000000451002 +79761024 20080731 0 900000000000207008 258483004 309050000 0 116680003 900000000000011006 900000000000451002 +79762028 20020131 1 900000000000207008 258484005 302793009 0 116680003 900000000000011006 900000000000451002 +79762028 20040731 0 900000000000207008 258484005 302793009 0 116680003 900000000000011006 900000000000451002 +79763022 20020131 1 900000000000207008 258485006 128164002 0 116680003 900000000000011006 900000000000451002 +79763022 20080731 0 900000000000207008 258485006 128164002 0 116680003 900000000000011006 900000000000451002 +79764027 20020131 1 900000000000207008 258487003 258433009 0 116680003 900000000000011006 900000000000451002 +79765026 20020131 1 900000000000207008 258487003 119339001 0 116680003 900000000000011006 900000000000451002 +79766025 20020131 1 900000000000207008 258488008 258433009 0 116680003 900000000000011006 900000000000451002 +79767023 20020131 1 900000000000207008 258488008 258589002 0 116680003 900000000000011006 900000000000451002 +79768029 20020131 1 900000000000207008 258489000 258433009 0 116680003 900000000000011006 900000000000451002 +79769021 20020131 1 900000000000207008 258489000 119325001 0 116680003 900000000000011006 900000000000451002 +79769021 20080731 0 900000000000207008 258489000 119325001 0 116680003 900000000000011006 900000000000451002 +79770022 20020131 1 900000000000207008 258490009 119350003 0 116680003 900000000000011006 900000000000451002 +79770022 20200731 0 900000000000207008 258490009 119350003 0 116680003 900000000000011006 900000000000451002 +79773024 20020131 1 900000000000207008 258492001 258490009 0 116680003 900000000000011006 900000000000451002 +79773024 20200731 0 900000000000207008 258492001 258490009 0 116680003 900000000000011006 900000000000451002 +79776027 20020131 1 900000000000207008 258493006 119350003 0 116680003 900000000000011006 900000000000451002 +79776027 20241001 0 900000000000207008 258493006 119350003 0 116680003 900000000000011006 900000000000451002 +79777020 20020131 1 900000000000207008 258494000 119350003 0 116680003 900000000000011006 900000000000451002 +79778026 20020131 1 900000000000207008 258495004 119350003 0 116680003 900000000000011006 900000000000451002 +79778026 20241001 0 900000000000207008 258495004 119350003 0 116680003 900000000000011006 900000000000451002 +79779023 20020131 1 900000000000207008 258496003 119350003 0 116680003 900000000000011006 900000000000451002 +79779023 20241001 0 900000000000207008 258496003 119350003 0 116680003 900000000000011006 900000000000451002 +79780021 20020131 1 900000000000207008 258497007 257261003 0 116680003 900000000000011006 900000000000451002 +79780021 20160131 0 900000000000207008 258497007 257261003 0 116680003 900000000000011006 900000000000451002 +79781020 20020131 1 900000000000207008 258498002 257261003 0 116680003 900000000000011006 900000000000451002 +79781020 20100731 0 900000000000207008 258498002 257261003 0 116680003 900000000000011006 900000000000451002 +79782029 20020131 1 900000000000207008 258498002 258598004 0 116680003 900000000000011006 900000000000451002 +79782029 20080731 0 900000000000207008 258498002 258598004 0 116680003 900000000000011006 900000000000451002 +79783023 20020131 1 900000000000207008 258499005 257261003 0 116680003 900000000000011006 900000000000451002 +79783023 20040731 0 900000000000207008 258499005 257261003 0 116680003 900000000000011006 900000000000451002 +79784028 20020131 1 900000000000207008 258499005 309164002 0 116680003 900000000000011006 900000000000451002 +79785027 20020131 1 900000000000207008 258500001 309164002 0 116680003 900000000000011006 900000000000451002 +79785027 20130131 0 900000000000207008 258500001 309164002 0 116680003 900000000000011006 900000000000451002 +79786026 20020131 1 900000000000207008 258500001 257261003 0 116680003 900000000000011006 900000000000451002 +79786026 20040731 0 900000000000207008 258500001 257261003 0 116680003 900000000000011006 900000000000451002 +79790029 20020131 1 900000000000207008 258502009 257261003 0 116680003 900000000000011006 900000000000451002 +79791025 20020131 1 900000000000207008 258503004 257261003 0 116680003 900000000000011006 900000000000451002 +79792021 20020131 1 900000000000207008 258503004 119325001 0 116680003 900000000000011006 900000000000451002 +79792021 20080731 0 900000000000207008 258503004 119325001 0 116680003 900000000000011006 900000000000451002 +79793027 20020131 1 900000000000207008 258504005 258503004 0 116680003 900000000000011006 900000000000451002 +79793027 20080731 0 900000000000207008 258504005 258503004 0 116680003 900000000000011006 900000000000451002 +79794022 20020131 1 900000000000207008 258505006 258503004 0 116680003 900000000000011006 900000000000451002 +79794022 20130131 0 900000000000207008 258505006 258503004 0 116680003 900000000000011006 900000000000451002 +79795023 20020131 1 900000000000207008 258506007 258503004 0 116680003 900000000000011006 900000000000451002 +79795023 20080731 0 900000000000207008 258506007 258503004 0 116680003 900000000000011006 900000000000451002 +79796024 20020131 1 900000000000207008 258507003 258503004 0 116680003 900000000000011006 900000000000451002 +79796024 20080731 0 900000000000207008 258507003 258503004 0 116680003 900000000000011006 900000000000451002 +79797026 20020131 1 900000000000207008 258508008 257261003 0 116680003 900000000000011006 900000000000451002 +79797026 20130131 0 900000000000207008 258508008 257261003 0 116680003 900000000000011006 900000000000451002 +79798020 20020131 1 900000000000207008 258509000 258508008 0 116680003 900000000000011006 900000000000451002 +79799028 20020131 1 900000000000207008 258510005 258509000 0 116680003 900000000000011006 900000000000451002 +79800029 20020131 1 900000000000207008 258511009 258510005 0 116680003 900000000000011006 900000000000451002 +79802021 20020131 1 900000000000207008 258512002 258510005 0 116680003 900000000000011006 900000000000451002 +79802021 20190731 0 900000000000207008 258512002 258510005 0 116680003 900000000000011006 900000000000451002 +79803027 20020131 1 900000000000207008 258513007 258510005 0 116680003 900000000000011006 900000000000451002 +79804022 20020131 1 900000000000207008 258514001 258510005 0 116680003 900000000000011006 900000000000451002 +79805023 20020131 1 900000000000207008 258515000 258510005 0 116680003 900000000000011006 900000000000451002 +79805023 20080731 0 900000000000207008 258515000 258510005 0 116680003 900000000000011006 900000000000451002 +79806024 20020131 1 900000000000207008 258516004 258510005 0 116680003 900000000000011006 900000000000451002 +79806024 20080731 0 900000000000207008 258516004 258510005 0 116680003 900000000000011006 900000000000451002 +79807026 20020131 1 900000000000207008 258517008 258510005 0 116680003 900000000000011006 900000000000451002 +79808020 20020131 1 900000000000207008 258518003 258509000 0 116680003 900000000000011006 900000000000451002 +79809028 20020131 1 900000000000207008 258519006 258508008 0 116680003 900000000000011006 900000000000451002 +79810022 20020131 1 900000000000207008 258520000 258519006 0 116680003 900000000000011006 900000000000451002 +79811021 20020131 1 900000000000207008 258520000 309053003 0 116680003 900000000000011006 900000000000451002 +79811021 20040731 0 900000000000207008 258520000 309053003 0 116680003 900000000000011006 900000000000451002 +79812025 20020131 1 900000000000207008 258521001 258520000 0 116680003 900000000000011006 900000000000451002 +79814029 20020131 1 900000000000207008 258522008 258520000 0 116680003 900000000000011006 900000000000451002 +79815028 20020131 1 900000000000207008 258523003 258519006 0 116680003 900000000000011006 900000000000451002 +79816027 20020131 1 900000000000207008 258523003 309053003 0 116680003 900000000000011006 900000000000451002 +79816027 20030731 0 900000000000207008 258523003 309053003 0 116680003 900000000000011006 900000000000451002 +79817020 20020131 1 900000000000207008 258524009 258519006 0 116680003 900000000000011006 900000000000451002 +79817020 20130131 0 900000000000207008 258524009 258519006 0 116680003 900000000000011006 900000000000451002 +79818026 20020131 1 900000000000207008 258525005 257261003 0 116680003 900000000000011006 900000000000451002 +79818026 20130131 0 900000000000207008 258525005 257261003 0 116680003 900000000000011006 900000000000451002 +79819023 20020131 1 900000000000207008 258526006 257261003 0 116680003 900000000000011006 900000000000451002 +79819023 20080731 0 900000000000207008 258526006 257261003 0 116680003 900000000000011006 900000000000451002 +79820028 20020131 1 900000000000207008 258527002 257261003 0 116680003 900000000000011006 900000000000451002 +79820028 20080731 0 900000000000207008 258527002 257261003 0 116680003 900000000000011006 900000000000451002 +79821029 20020131 1 900000000000207008 258528007 257261003 0 116680003 900000000000011006 900000000000451002 +79821029 20130131 0 900000000000207008 258528007 257261003 0 116680003 900000000000011006 900000000000451002 +79822020 20020131 1 900000000000207008 258529004 257261003 0 116680003 900000000000011006 900000000000451002 +79822020 20040731 0 900000000000207008 258529004 257261003 0 116680003 900000000000011006 900000000000451002 +79823026 20020131 1 900000000000207008 258529004 309164002 0 116680003 900000000000011006 900000000000451002 +79823026 20130131 0 900000000000207008 258529004 309164002 0 116680003 900000000000011006 900000000000451002 +79824021 20020131 1 900000000000207008 258530009 257261003 0 116680003 900000000000011006 900000000000451002 +79824021 20130131 0 900000000000207008 258530009 257261003 0 116680003 900000000000011006 900000000000451002 +79825022 20020131 1 900000000000207008 258530009 127471001 0 116680003 900000000000011006 900000000000451002 +79825022 20050131 0 900000000000207008 258530009 127471001 0 116680003 900000000000011006 900000000000451002 +79826023 20020131 1 900000000000207008 258531008 257261003 0 116680003 900000000000011006 900000000000451002 +79826023 20160131 0 900000000000207008 258531008 257261003 0 116680003 900000000000011006 900000000000451002 +79828024 20020131 1 900000000000207008 258532001 257261003 0 116680003 900000000000011006 900000000000451002 +79831020 20020131 1 900000000000207008 258535004 258532001 0 116680003 900000000000011006 900000000000451002 +79832029 20020131 1 900000000000207008 258536003 258532001 0 116680003 900000000000011006 900000000000451002 +79833023 20020131 1 900000000000207008 258537007 258532001 0 116680003 900000000000011006 900000000000451002 +79834028 20020131 1 900000000000207008 258538002 309050000 0 116680003 900000000000011006 900000000000451002 +79834028 20080731 0 900000000000207008 258538002 309050000 0 116680003 900000000000011006 900000000000451002 +79835027 20020131 1 900000000000207008 258539005 309104000 0 116680003 900000000000011006 900000000000451002 +79835027 20040731 0 900000000000207008 258539005 309104000 0 116680003 900000000000011006 900000000000451002 +79837024 20020131 1 900000000000207008 258541006 271360006 0 116680003 900000000000011006 900000000000451002 +79837024 20040731 0 900000000000207008 258541006 271360006 0 116680003 900000000000011006 900000000000451002 +79839022 20020131 1 900000000000207008 258542004 258541006 0 116680003 900000000000011006 900000000000451002 +79839022 20040731 0 900000000000207008 258542004 258541006 0 116680003 900000000000011006 900000000000451002 +79841023 20020131 1 900000000000207008 258544003 258542004 0 116680003 900000000000011006 900000000000451002 +79842027 20020131 1 900000000000207008 258545002 258437005 0 116680003 900000000000011006 900000000000451002 +79843021 20020131 1 900000000000207008 258546001 258437005 0 116680003 900000000000011006 900000000000451002 +79844026 20020131 1 900000000000207008 258547005 258619000 0 116680003 900000000000011006 900000000000451002 +79844026 20040731 0 900000000000207008 258547005 258619000 0 116680003 900000000000011006 900000000000451002 +79845025 20020131 1 900000000000207008 258548000 271360006 0 116680003 900000000000011006 900000000000451002 +79845025 20040731 0 900000000000207008 258548000 271360006 0 116680003 900000000000011006 900000000000451002 +79846029 20020131 1 900000000000207008 258549008 119325001 0 116680003 900000000000011006 900000000000451002 +79851024 20020131 1 900000000000207008 258554004 119339001 0 116680003 900000000000011006 900000000000451002 +79852028 20020131 1 900000000000207008 258555003 119339001 0 116680003 900000000000011006 900000000000451002 +79853022 20020131 1 900000000000207008 258558001 119342007 0 116680003 900000000000011006 900000000000451002 +79853022 20080731 0 900000000000207008 258558001 119342007 0 116680003 900000000000011006 900000000000451002 +79854027 20020131 1 900000000000207008 258559009 119342007 0 116680003 900000000000011006 900000000000451002 +79854027 20080731 0 900000000000207008 258559009 119342007 0 116680003 900000000000011006 900000000000451002 +79855026 20020131 1 900000000000207008 258560004 119342007 0 116680003 900000000000011006 900000000000451002 +79857023 20020131 1 900000000000207008 258561000 119342007 0 116680003 900000000000011006 900000000000451002 +79858029 20020131 1 900000000000207008 258562007 271360006 0 116680003 900000000000011006 900000000000451002 +79858029 20040731 0 900000000000207008 258562007 271360006 0 116680003 900000000000011006 900000000000451002 +79859021 20020131 1 900000000000207008 258563002 256898004 0 116680003 900000000000011006 900000000000451002 +79859021 20080731 0 900000000000207008 258563002 256898004 0 116680003 900000000000011006 900000000000451002 +79860027 20020131 1 900000000000207008 258564008 309185002 0 116680003 900000000000011006 900000000000451002 +79860027 20220630 0 900000000000207008 258564008 309185002 0 116680003 900000000000011006 900000000000451002 +79861028 20020131 1 900000000000207008 258565009 258597009 0 116680003 900000000000011006 900000000000451002 +79861028 20040731 0 900000000000207008 258565009 258597009 0 116680003 900000000000011006 900000000000451002 +79862024 20020131 1 900000000000207008 258566005 258562007 0 116680003 900000000000011006 900000000000451002 +79862024 20110731 0 900000000000207008 258566005 258562007 0 116680003 900000000000011006 900000000000451002 +79863025 20020131 1 900000000000207008 258567001 119344008 0 116680003 900000000000011006 900000000000451002 +79864020 20020131 1 900000000000207008 258568006 258562007 0 116680003 900000000000011006 900000000000451002 +79865021 20020131 1 900000000000207008 258569003 119333000 0 116680003 900000000000011006 900000000000451002 +79867029 20020131 1 900000000000207008 258570002 271360006 0 116680003 900000000000011006 900000000000451002 +79867029 20040731 0 900000000000207008 258570002 271360006 0 116680003 900000000000011006 900000000000451002 +79868023 20020131 1 900000000000207008 258571003 258454002 0 116680003 900000000000011006 900000000000451002 +79868023 20080731 0 900000000000207008 258571003 258454002 0 116680003 900000000000011006 900000000000451002 +79868023 20220630 1 900000000000207008 258571003 258454002 0 116680003 900000000000011006 900000000000451002 +79869026 20020131 1 900000000000207008 258572005 258454002 0 116680003 900000000000011006 900000000000451002 +79870025 20020131 1 900000000000207008 258574006 122575003 0 116680003 900000000000011006 900000000000451002 +79871026 20020131 1 900000000000207008 258575007 122575003 0 116680003 900000000000011006 900000000000451002 +79871026 20080731 0 900000000000207008 258575007 122575003 0 116680003 900000000000011006 900000000000451002 +79872022 20020131 1 900000000000207008 258576008 122575003 0 116680003 900000000000011006 900000000000451002 +79872022 20110131 0 900000000000207008 258576008 122575003 0 116680003 900000000000011006 900000000000451002 +79873028 20020131 1 900000000000207008 258577004 122578001 0 116680003 900000000000011006 900000000000451002 +79877027 20020131 1 900000000000207008 258580003 119297000 0 116680003 900000000000011006 900000000000451002 +79877027 20200131 0 900000000000207008 258580003 119297000 0 116680003 900000000000011006 900000000000451002 +79878021 20020131 1 900000000000207008 258581004 119297000 0 116680003 900000000000011006 900000000000451002 +79879029 20020131 1 900000000000207008 258582006 119297000 0 116680003 900000000000011006 900000000000451002 +79879029 20080731 0 900000000000207008 258582006 119297000 0 116680003 900000000000011006 900000000000451002 +79880026 20020131 1 900000000000207008 258583001 119359002 0 116680003 900000000000011006 900000000000451002 +79881027 20020131 1 900000000000207008 258584007 119359002 0 116680003 900000000000011006 900000000000451002 +79882023 20020131 1 900000000000207008 258585008 119359002 0 116680003 900000000000011006 900000000000451002 +79885020 20020131 1 900000000000207008 258587000 258578009 0 116680003 900000000000011006 900000000000451002 +79885020 20040731 0 900000000000207008 258587000 258578009 0 116680003 900000000000011006 900000000000451002 +79889025 20020131 1 900000000000207008 258588005 309049000 0 116680003 900000000000011006 900000000000451002 +79889025 20080731 0 900000000000207008 258588005 309049000 0 116680003 900000000000011006 900000000000451002 +79890023 20020131 1 900000000000207008 258589002 258578009 0 116680003 900000000000011006 900000000000451002 +79890023 20040731 0 900000000000207008 258589002 258578009 0 116680003 900000000000011006 900000000000451002 +79891022 20020131 1 900000000000207008 258590006 119364003 0 116680003 900000000000011006 900000000000451002 +79892026 20020131 1 900000000000207008 258591005 258578009 0 116680003 900000000000011006 900000000000451002 +79892026 20040731 0 900000000000207008 258591005 258578009 0 116680003 900000000000011006 900000000000451002 +79901026 20020131 1 900000000000207008 258599007 258619000 0 116680003 900000000000011006 900000000000451002 +79901026 20040731 0 900000000000207008 258599007 258619000 0 116680003 900000000000011006 900000000000451002 +79902022 20020131 1 900000000000207008 258601009 128164002 0 116680003 900000000000011006 900000000000451002 +79902022 20030731 0 900000000000207008 258601009 128164002 0 116680003 900000000000011006 900000000000451002 +79904023 20020131 1 900000000000207008 258602002 258601009 0 116680003 900000000000011006 900000000000451002 +79905024 20020131 1 900000000000207008 258603007 271360006 0 116680003 900000000000011006 900000000000451002 +79905024 20040731 0 900000000000207008 258603007 271360006 0 116680003 900000000000011006 900000000000451002 +79906020 20020131 1 900000000000207008 258604001 258603007 0 116680003 900000000000011006 900000000000451002 +79907027 20020131 1 900000000000207008 258606004 258603007 0 116680003 900000000000011006 900000000000451002 +79908021 20020131 1 900000000000207008 258607008 309171007 0 116680003 900000000000011006 900000000000451002 +79908021 20170731 0 900000000000207008 258607008 309171007 0 116680003 900000000000011006 900000000000451002 +79909029 20020131 1 900000000000207008 258608003 119334006 0 116680003 900000000000011006 900000000000451002 +79911022 20020131 1 900000000000207008 258609006 258608003 0 116680003 900000000000011006 900000000000451002 +79912026 20020131 1 900000000000207008 258610001 119334006 0 116680003 900000000000011006 900000000000451002 +79913020 20020131 1 900000000000207008 258611002 119334006 0 116680003 900000000000011006 900000000000451002 +79914025 20020131 1 900000000000207008 258613004 271360006 0 116680003 900000000000011006 900000000000451002 +79914025 20040731 0 900000000000207008 258613004 271360006 0 116680003 900000000000011006 900000000000451002 +79915029 20020131 1 900000000000207008 258614005 258613004 0 116680003 900000000000011006 900000000000451002 +79916028 20020131 1 900000000000207008 258615006 258613004 0 116680003 900000000000011006 900000000000451002 +79917021 20020131 1 900000000000207008 258616007 258613004 0 116680003 900000000000011006 900000000000451002 +79917021 20120731 0 900000000000207008 258616007 258613004 0 116680003 900000000000011006 900000000000451002 +79918027 20020131 1 900000000000207008 258617003 258613004 0 116680003 900000000000011006 900000000000451002 +79920029 20020131 1 900000000000207008 258618008 258613004 0 116680003 900000000000011006 900000000000451002 +79933024 20020131 1 900000000000207008 258627009 258626000 0 116680003 900000000000011006 900000000000451002 +79933024 20080731 0 900000000000207008 258627009 258626000 0 116680003 900000000000011006 900000000000451002 +79934029 20020131 1 900000000000207008 258628004 258627009 0 116680003 900000000000011006 900000000000451002 +79935028 20020131 1 900000000000207008 258629007 258628004 0 116680003 900000000000011006 900000000000451002 +79936027 20020131 1 900000000000207008 258630002 258628004 0 116680003 900000000000011006 900000000000451002 +79938026 20020131 1 900000000000207008 258631003 258628004 0 116680003 900000000000011006 900000000000451002 +79959022 20020131 1 900000000000207008 258649003 258619000 0 116680003 900000000000011006 900000000000451002 +79959022 20040731 0 900000000000207008 258649003 258619000 0 116680003 900000000000011006 900000000000451002 +79960028 20020131 1 900000000000207008 258650003 258649003 0 116680003 900000000000011006 900000000000451002 +79961029 20020131 1 900000000000207008 258651004 119320006 0 116680003 900000000000011006 900000000000451002 +79962020 20020131 1 900000000000207008 258652006 258651004 0 116680003 900000000000011006 900000000000451002 +79962020 20040731 0 900000000000207008 258652006 258651004 0 116680003 900000000000011006 900000000000451002 +79963026 20020131 1 900000000000207008 258653001 119321005 0 116680003 900000000000011006 900000000000451002 +79964021 20020131 1 900000000000207008 258654007 119321005 0 116680003 900000000000011006 900000000000451002 +79964021 20080731 0 900000000000207008 258654007 119321005 0 116680003 900000000000011006 900000000000451002 +79965022 20020131 1 900000000000207008 258655008 119321005 0 116680003 900000000000011006 900000000000451002 +79967025 20020131 1 900000000000207008 258656009 258655008 0 116680003 900000000000011006 900000000000451002 +79968024 20020131 1 900000000000207008 258657000 258655008 0 116680003 900000000000011006 900000000000451002 +79969027 20020131 1 900000000000207008 258658005 258655008 0 116680003 900000000000011006 900000000000451002 +79970026 20020131 1 900000000000207008 258659002 119321005 0 116680003 900000000000011006 900000000000451002 +79971027 20020131 1 900000000000207008 258660007 119321005 0 116680003 900000000000011006 900000000000451002 +79973029 20020131 1 900000000000207008 258662004 258661006 0 116680003 900000000000011006 900000000000451002 +79973029 20220131 0 900000000000207008 258662004 258661006 0 116680003 900000000000011006 900000000000451002 +79974024 20020131 1 900000000000207008 258663009 258662004 0 116680003 900000000000011006 900000000000451002 +79975020 20020131 1 900000000000207008 258664003 258662004 0 116680003 900000000000011006 900000000000451002 +86929024 20020131 1 900000000000207008 264380007 309123007 0 116680003 900000000000011006 900000000000451002 +86929024 20110731 0 900000000000207008 264380007 309123007 0 116680003 900000000000011006 900000000000451002 +90148027 20020131 1 900000000000207008 271514008 119359002 0 116680003 900000000000011006 900000000000451002 +90149024 20020131 1 900000000000207008 271515009 119359002 0 116680003 900000000000011006 900000000000451002 +90150024 20020131 1 900000000000207008 271516005 119359002 0 116680003 900000000000011006 900000000000451002 +90153021 20020131 1 900000000000207008 271518006 119359002 0 116680003 900000000000011006 900000000000451002 +93871029 20020131 1 900000000000207008 276446009 309053003 0 116680003 900000000000011006 900000000000451002 +93871029 20040731 0 900000000000207008 276446009 309053003 0 116680003 900000000000011006 900000000000451002 +93872020 20020131 1 900000000000207008 276446009 258433009 0 116680003 900000000000011006 900000000000451002 +94450022 20020131 1 900000000000207008 276833005 122575003 0 116680003 900000000000011006 900000000000451002 +94450022 20080731 0 900000000000207008 276833005 122575003 0 116680003 900000000000011006 900000000000451002 +96155022 20020131 1 900000000000207008 278020009 122575003 0 116680003 900000000000011006 900000000000451002 +101568021 20020131 1 900000000000207008 116155002 48469005 0 116680003 900000000000011006 900000000000451002 +101568021 20080731 0 900000000000207008 116155002 48469005 0 116680003 900000000000011006 900000000000451002 +101583027 20020131 1 900000000000207008 116156001 48469005 0 116680003 900000000000011006 900000000000451002 +101594028 20020131 1 900000000000207008 116157005 48469005 0 116680003 900000000000011006 900000000000451002 +101608029 20020131 1 900000000000207008 116158000 48469005 0 116680003 900000000000011006 900000000000451002 +101608029 20080731 0 900000000000207008 116158000 48469005 0 116680003 900000000000011006 900000000000451002 +101623023 20020131 1 900000000000207008 116159008 48469005 0 116680003 900000000000011006 900000000000451002 +101638024 20020131 1 900000000000207008 116160003 48469005 0 116680003 900000000000011006 900000000000451002 +101654022 20020131 1 900000000000207008 116161004 116160003 0 116680003 900000000000011006 900000000000451002 +101655023 20020131 1 900000000000207008 116161004 127478007 0 116680003 900000000000011006 900000000000451002 +101655023 20030731 0 900000000000207008 116161004 127478007 0 116680003 900000000000011006 900000000000451002 +101656024 20020131 1 900000000000207008 116161004 122550002 0 116680003 900000000000011006 900000000000451002 +101656024 20040731 0 900000000000207008 116161004 122550002 0 116680003 900000000000011006 900000000000451002 +101669023 20020131 1 900000000000207008 116162006 116160003 0 116680003 900000000000011006 900000000000451002 +102395029 20020131 1 900000000000207008 116213003 48469005 0 116680003 900000000000011006 900000000000451002 +128510020 20020131 1 900000000000207008 302794003 168137004 0 116680003 900000000000011006 900000000000451002 +128510020 20060131 0 900000000000207008 302794003 168137004 0 116680003 900000000000011006 900000000000451002 +128511024 20020131 1 900000000000207008 302795002 258589002 0 116680003 900000000000011006 900000000000451002 +129063026 20020131 1 900000000000207008 303247002 309141004 0 116680003 900000000000011006 900000000000451002 +129064021 20020131 1 900000000000207008 303248007 258578009 0 116680003 900000000000011006 900000000000451002 +129064021 20040731 0 900000000000207008 303248007 258578009 0 116680003 900000000000011006 900000000000451002 +136278020 20020131 1 900000000000207008 309048008 271360006 0 116680003 900000000000011006 900000000000451002 +136278020 20040731 0 900000000000207008 309048008 271360006 0 116680003 900000000000011006 900000000000451002 +136279028 20020131 1 900000000000207008 309049000 302793009 0 116680003 900000000000011006 900000000000451002 +136279028 20040731 0 900000000000207008 309049000 302793009 0 116680003 900000000000011006 900000000000451002 +136280025 20020131 1 900000000000207008 309050000 302793009 0 116680003 900000000000011006 900000000000451002 +136280025 20040731 0 900000000000207008 309050000 302793009 0 116680003 900000000000011006 900000000000451002 +136281026 20020131 1 900000000000207008 309051001 309050000 0 116680003 900000000000011006 900000000000451002 +136282022 20020131 1 900000000000207008 309052008 119344008 0 116680003 900000000000011006 900000000000451002 +136283028 20020131 1 900000000000207008 309053003 119344008 0 116680003 900000000000011006 900000000000451002 +136284023 20020131 1 900000000000207008 309053003 258597009 0 116680003 900000000000011006 900000000000451002 +136284023 20040731 0 900000000000207008 309053003 258597009 0 116680003 900000000000011006 900000000000451002 +136287027 20020131 1 900000000000207008 309055005 127456000 0 116680003 900000000000011006 900000000000451002 +136289029 20020131 1 900000000000207008 309057002 127456000 0 116680003 900000000000011006 900000000000451002 +136290022 20020131 1 900000000000207008 309058007 122601001 0 116680003 900000000000011006 900000000000451002 +136290022 20080731 0 900000000000207008 309058007 122601001 0 116680003 900000000000011006 900000000000451002 +136291021 20020131 1 900000000000207008 309059004 122601001 0 116680003 900000000000011006 900000000000451002 +136291021 20030731 0 900000000000207008 309059004 122601001 0 116680003 900000000000011006 900000000000451002 +136293024 20020131 1 900000000000207008 309061008 309055005 0 116680003 900000000000011006 900000000000451002 +136293024 20040731 0 900000000000207008 309061008 309055005 0 116680003 900000000000011006 900000000000451002 +136301027 20020131 1 900000000000207008 309066003 309064000 0 116680003 900000000000011006 900000000000451002 +136301027 20020731 0 900000000000207008 309066003 309064000 0 116680003 900000000000011006 900000000000451002 +136302023 20020131 1 900000000000207008 309067007 309064000 0 116680003 900000000000011006 900000000000451002 +136302023 20020731 0 900000000000207008 309067007 309064000 0 116680003 900000000000011006 900000000000451002 +136303029 20020131 1 900000000000207008 309068002 309064000 0 116680003 900000000000011006 900000000000451002 +136303029 20020731 0 900000000000207008 309068002 309064000 0 116680003 900000000000011006 900000000000451002 +136304024 20020131 1 900000000000207008 309070006 309066003 0 116680003 900000000000011006 900000000000451002 +136304024 20080731 0 900000000000207008 309070006 309066003 0 116680003 900000000000011006 900000000000451002 +136305020 20020131 1 900000000000207008 309070006 309278008 0 116680003 900000000000011006 900000000000451002 +136305020 20080731 0 900000000000207008 309070006 309278008 0 116680003 900000000000011006 900000000000451002 +136306021 20020131 1 900000000000207008 309071005 128169007 0 116680003 900000000000011006 900000000000451002 +136306021 20080731 0 900000000000207008 309071005 128169007 0 116680003 900000000000011006 900000000000451002 +136307028 20020131 1 900000000000207008 309071005 309066003 0 116680003 900000000000011006 900000000000451002 +136308022 20020131 1 900000000000207008 309072003 271360006 0 116680003 900000000000011006 900000000000451002 +136308022 20040731 0 900000000000207008 309072003 271360006 0 116680003 900000000000011006 900000000000451002 +136311023 20020131 1 900000000000207008 309073008 258414004 0 116680003 900000000000011006 900000000000451002 +136311023 20080731 0 900000000000207008 309073008 258414004 0 116680003 900000000000011006 900000000000451002 +136312027 20020131 1 900000000000207008 309073008 258435002 0 116680003 900000000000011006 900000000000451002 +136312027 20080731 0 900000000000207008 309073008 258435002 0 116680003 900000000000011006 900000000000451002 +136313021 20020131 1 900000000000207008 309074002 309072003 0 116680003 900000000000011006 900000000000451002 +136314026 20020131 1 900000000000207008 309075001 309068002 0 116680003 900000000000011006 900000000000451002 +136315025 20020131 1 900000000000207008 309075001 258420003 0 116680003 900000000000011006 900000000000451002 +136315025 20080731 0 900000000000207008 309075001 258420003 0 116680003 900000000000011006 900000000000451002 +136318028 20020131 1 900000000000207008 309077009 258578009 0 116680003 900000000000011006 900000000000451002 +136318028 20040731 0 900000000000207008 309077009 258578009 0 116680003 900000000000011006 900000000000451002 +136319020 20020131 1 900000000000207008 309078004 258589002 0 116680003 900000000000011006 900000000000451002 +136320025 20020131 1 900000000000207008 309079007 309078004 0 116680003 900000000000011006 900000000000451002 +136320025 20080731 0 900000000000207008 309079007 309078004 0 116680003 900000000000011006 900000000000451002 +136320025 20090131 1 900000000000207008 309079007 309078004 0 116680003 900000000000011006 900000000000451002 +136345027 20020131 1 900000000000207008 309101008 258539005 0 116680003 900000000000011006 900000000000451002 +136345027 20080731 0 900000000000207008 309101008 258539005 0 116680003 900000000000011006 900000000000451002 +136346026 20020131 1 900000000000207008 309102001 309101008 0 116680003 900000000000011006 900000000000451002 +136347024 20020131 1 900000000000207008 309103006 309101008 0 116680003 900000000000011006 900000000000451002 +136348025 20020131 1 900000000000207008 309104000 271360006 0 116680003 900000000000011006 900000000000451002 +136348025 20040731 0 900000000000207008 309104000 271360006 0 116680003 900000000000011006 900000000000451002 +136349022 20020131 1 900000000000207008 309105004 258417006 0 116680003 900000000000011006 900000000000451002 +136349022 20080731 0 900000000000207008 309105004 258417006 0 116680003 900000000000011006 900000000000451002 +136351021 20020131 1 900000000000207008 309107007 309104000 0 116680003 900000000000011006 900000000000451002 +136351021 20080731 0 900000000000207008 309107007 309104000 0 116680003 900000000000011006 900000000000451002 +136352025 20020131 1 900000000000207008 309108002 309107007 0 116680003 900000000000011006 900000000000451002 +136355028 20020131 1 900000000000207008 309109005 309104000 0 116680003 900000000000011006 900000000000451002 +136355028 20080731 0 900000000000207008 309109005 309104000 0 116680003 900000000000011006 900000000000451002 +136355028 20190131 1 900000000000207008 309109005 309104000 0 116680003 900000000000011006 900000000000451002 +136356027 20020131 1 900000000000207008 309110000 309109005 0 116680003 900000000000011006 900000000000451002 +136357020 20020131 1 900000000000207008 309111001 309110000 0 116680003 900000000000011006 900000000000451002 +136357020 20080731 0 900000000000207008 309111001 309110000 0 116680003 900000000000011006 900000000000451002 +136358026 20020131 1 900000000000207008 309112008 309110000 0 116680003 900000000000011006 900000000000451002 +136359023 20020131 1 900000000000207008 309113003 309107007 0 116680003 900000000000011006 900000000000451002 +136360029 20020131 1 900000000000207008 309114009 309104000 0 116680003 900000000000011006 900000000000451002 +136360029 20080731 0 900000000000207008 309114009 309104000 0 116680003 900000000000011006 900000000000451002 +136361025 20020131 1 900000000000207008 309115005 309114009 0 116680003 900000000000011006 900000000000451002 +136362021 20020131 1 900000000000207008 309116006 309114009 0 116680003 900000000000011006 900000000000451002 +136363027 20020131 1 900000000000207008 309117002 309104000 0 116680003 900000000000011006 900000000000451002 +136363027 20220630 0 900000000000207008 309117002 309104000 0 116680003 900000000000011006 900000000000451002 +136364022 20020131 1 900000000000207008 309118007 309117002 0 116680003 900000000000011006 900000000000451002 +136367026 20020131 1 900000000000207008 309119004 309117002 0 116680003 900000000000011006 900000000000451002 +136368020 20020131 1 900000000000207008 309120005 258417006 0 116680003 900000000000011006 900000000000451002 +136368020 20080731 0 900000000000207008 309120005 258417006 0 116680003 900000000000011006 900000000000451002 +136369028 20020131 1 900000000000207008 309121009 309123007 0 116680003 900000000000011006 900000000000451002 +136370027 20020131 1 900000000000207008 309122002 309121009 0 116680003 900000000000011006 900000000000451002 +136370027 20080731 0 900000000000207008 309122002 309121009 0 116680003 900000000000011006 900000000000451002 +136371028 20020131 1 900000000000207008 309123007 309125000 0 116680003 900000000000011006 900000000000451002 +136371028 20080731 0 900000000000207008 309123007 309125000 0 116680003 900000000000011006 900000000000451002 +136372024 20020131 1 900000000000207008 309124001 309125000 0 116680003 900000000000011006 900000000000451002 +136373025 20020131 1 900000000000207008 309125000 258539005 0 116680003 900000000000011006 900000000000451002 +136373025 20080731 0 900000000000207008 309125000 258539005 0 116680003 900000000000011006 900000000000451002 +136374020 20020131 1 900000000000207008 309126004 309125000 0 116680003 900000000000011006 900000000000451002 +136375021 20020131 1 900000000000207008 309127008 309126004 0 116680003 900000000000011006 900000000000451002 +136376022 20020131 1 900000000000207008 309128003 258598004 0 116680003 900000000000011006 900000000000451002 +136376022 20080731 0 900000000000207008 309128003 258598004 0 116680003 900000000000011006 900000000000451002 +136377029 20020131 1 900000000000207008 309129006 258592003 0 116680003 900000000000011006 900000000000451002 +136377029 20040731 0 900000000000207008 309129006 258592003 0 116680003 900000000000011006 900000000000451002 +136378023 20020131 1 900000000000207008 309130001 309129006 0 116680003 900000000000011006 900000000000451002 +136378023 20080731 0 900000000000207008 309130001 309129006 0 116680003 900000000000011006 900000000000451002 +136379026 20020131 1 900000000000207008 309131002 309129006 0 116680003 900000000000011006 900000000000451002 +136379026 20080731 0 900000000000207008 309131002 309129006 0 116680003 900000000000011006 900000000000451002 +136380028 20020131 1 900000000000207008 309132009 128170008 0 116680003 900000000000011006 900000000000451002 +136380028 20080731 0 900000000000207008 309132009 128170008 0 116680003 900000000000011006 900000000000451002 +136381029 20020131 1 900000000000207008 309133004 128170008 0 116680003 900000000000011006 900000000000451002 +136382020 20020131 1 900000000000207008 309134005 309132009 0 116680003 900000000000011006 900000000000451002 +136382020 20080731 0 900000000000207008 309134005 309132009 0 116680003 900000000000011006 900000000000451002 +136383026 20020131 1 900000000000207008 309135006 309052008 0 116680003 900000000000011006 900000000000451002 +136383026 20080731 0 900000000000207008 309135006 309052008 0 116680003 900000000000011006 900000000000451002 +136387025 20020131 1 900000000000207008 309137003 127475005 0 116680003 900000000000011006 900000000000451002 +136387025 20080731 0 900000000000207008 309137003 127475005 0 116680003 900000000000011006 900000000000451002 +136388024 20020131 1 900000000000207008 309138008 127475005 0 116680003 900000000000011006 900000000000451002 +136389027 20020131 1 900000000000207008 309139000 309052008 0 116680003 900000000000011006 900000000000451002 +136389027 20080731 0 900000000000207008 309139000 309052008 0 116680003 900000000000011006 900000000000451002 +136390020 20020131 1 900000000000207008 309140003 309052008 0 116680003 900000000000011006 900000000000451002 +136390020 20040731 0 900000000000207008 309140003 309052008 0 116680003 900000000000011006 900000000000451002 +136391024 20020131 1 900000000000207008 309141004 309048008 0 116680003 900000000000011006 900000000000451002 +136391024 20130731 0 900000000000207008 309141004 309048008 0 116680003 900000000000011006 900000000000451002 +136392028 20020131 1 900000000000207008 309142006 303247002 0 116680003 900000000000011006 900000000000451002 +136392028 20080731 0 900000000000207008 309142006 303247002 0 116680003 900000000000011006 900000000000451002 +136393022 20020131 1 900000000000207008 309143001 303247002 0 116680003 900000000000011006 900000000000451002 +136396025 20020131 1 900000000000207008 309144007 127477002 0 116680003 900000000000011006 900000000000451002 +136396025 20030731 0 900000000000207008 309144007 127477002 0 116680003 900000000000011006 900000000000451002 +136397023 20020131 1 900000000000207008 309145008 127478007 0 116680003 900000000000011006 900000000000451002 +136397023 20030731 0 900000000000207008 309145008 127478007 0 116680003 900000000000011006 900000000000451002 +136398029 20020131 1 900000000000207008 309146009 309145008 0 116680003 900000000000011006 900000000000451002 +136398029 20040731 0 900000000000207008 309146009 309145008 0 116680003 900000000000011006 900000000000451002 +136399021 20020131 1 900000000000207008 309147000 309145008 0 116680003 900000000000011006 900000000000451002 +136400025 20020131 1 900000000000207008 309148005 127478007 0 116680003 900000000000011006 900000000000451002 +136400025 20030731 0 900000000000207008 309148005 127478007 0 116680003 900000000000011006 900000000000451002 +136401026 20020131 1 900000000000207008 309149002 309048008 0 116680003 900000000000011006 900000000000451002 +136401026 20130731 0 900000000000207008 309149002 309048008 0 116680003 900000000000011006 900000000000451002 +136402022 20020131 1 900000000000207008 309150002 309149002 0 116680003 900000000000011006 900000000000451002 +136403028 20020131 1 900000000000207008 309151003 309150002 0 116680003 900000000000011006 900000000000451002 +136403028 20080731 0 900000000000207008 309151003 309150002 0 116680003 900000000000011006 900000000000451002 +136408021 20020131 1 900000000000207008 309153000 309150002 0 116680003 900000000000011006 900000000000451002 +136410023 20020131 1 900000000000207008 309154006 309048008 0 116680003 900000000000011006 900000000000451002 +136410023 20130731 0 900000000000207008 309154006 309048008 0 116680003 900000000000011006 900000000000451002 +136422021 20020131 1 900000000000207008 309164002 258604001 0 116680003 900000000000011006 900000000000451002 +136423027 20020131 1 900000000000207008 309165001 271360006 0 116680003 900000000000011006 900000000000451002 +136423027 20040731 0 900000000000207008 309165001 271360006 0 116680003 900000000000011006 900000000000451002 +136424022 20020131 1 900000000000207008 309166000 309165001 0 116680003 900000000000011006 900000000000451002 +136427026 20020131 1 900000000000207008 309167009 128162003 0 116680003 900000000000011006 900000000000451002 +136427026 20080731 0 900000000000207008 309167009 128162003 0 116680003 900000000000011006 900000000000451002 +136428020 20020131 1 900000000000207008 309168004 258604001 0 116680003 900000000000011006 900000000000451002 +136429028 20020131 1 900000000000207008 309169007 309168004 0 116680003 900000000000011006 900000000000451002 +136429028 20080731 0 900000000000207008 309169007 309168004 0 116680003 900000000000011006 900000000000451002 +136430022 20020131 1 900000000000207008 309170008 258606004 0 116680003 900000000000011006 900000000000451002 +136431021 20020131 1 900000000000207008 309171007 258606004 0 116680003 900000000000011006 900000000000451002 +136432025 20020131 1 900000000000207008 309172000 309170008 0 116680003 900000000000011006 900000000000451002 +136432025 20030731 0 900000000000207008 309172000 309170008 0 116680003 900000000000011006 900000000000451002 +136433024 20020131 1 900000000000207008 309173005 309170008 0 116680003 900000000000011006 900000000000451002 +136433024 20080731 0 900000000000207008 309173005 309170008 0 116680003 900000000000011006 900000000000451002 +136434029 20020131 1 900000000000207008 309174004 309170008 0 116680003 900000000000011006 900000000000451002 +136434029 20080731 0 900000000000207008 309174004 309170008 0 116680003 900000000000011006 900000000000451002 +136437020 20020131 1 900000000000207008 309175003 309170008 0 116680003 900000000000011006 900000000000451002 +136437020 20030731 0 900000000000207008 309175003 309170008 0 116680003 900000000000011006 900000000000451002 +136438026 20020131 1 900000000000207008 309176002 258606004 0 116680003 900000000000011006 900000000000451002 +136438026 20080731 0 900000000000207008 309176002 258606004 0 116680003 900000000000011006 900000000000451002 +136439023 20020131 1 900000000000207008 309177006 258606004 0 116680003 900000000000011006 900000000000451002 +136439023 20080731 0 900000000000207008 309177006 258606004 0 116680003 900000000000011006 900000000000451002 +136440020 20020131 1 900000000000207008 309178001 309168004 0 116680003 900000000000011006 900000000000451002 +136440020 20080731 0 900000000000207008 309178001 309168004 0 116680003 900000000000011006 900000000000451002 +136441024 20020131 1 900000000000207008 309179009 309168004 0 116680003 900000000000011006 900000000000451002 +136441024 20080731 0 900000000000207008 309179009 309168004 0 116680003 900000000000011006 900000000000451002 +136442028 20020131 1 900000000000207008 309180007 309168004 0 116680003 900000000000011006 900000000000451002 +136442028 20080731 0 900000000000207008 309180007 309168004 0 116680003 900000000000011006 900000000000451002 +136443022 20020131 1 900000000000207008 309181006 128162003 0 116680003 900000000000011006 900000000000451002 +136443022 20080731 0 900000000000207008 309181006 128162003 0 116680003 900000000000011006 900000000000451002 +136444027 20020131 1 900000000000207008 309182004 309168004 0 116680003 900000000000011006 900000000000451002 +136444027 20080731 0 900000000000207008 309182004 309168004 0 116680003 900000000000011006 900000000000451002 +136445026 20020131 1 900000000000207008 309183009 309168004 0 116680003 900000000000011006 900000000000451002 +136448029 20020131 1 900000000000207008 309184003 309168004 0 116680003 900000000000011006 900000000000451002 +136448029 20080731 0 900000000000207008 309184003 309168004 0 116680003 900000000000011006 900000000000451002 +136449021 20020131 1 900000000000207008 309185002 271360006 0 116680003 900000000000011006 900000000000451002 +136449021 20040731 0 900000000000207008 309185002 271360006 0 116680003 900000000000011006 900000000000451002 +136450021 20020131 1 900000000000207008 309186001 309185002 0 116680003 900000000000011006 900000000000451002 +136450021 20220630 0 900000000000207008 309186001 309185002 0 116680003 900000000000011006 900000000000451002 +136451020 20020131 1 900000000000207008 309187005 309186001 0 116680003 900000000000011006 900000000000451002 +136452029 20020131 1 900000000000207008 309188000 309186001 0 116680003 900000000000011006 900000000000451002 +136452029 20080731 0 900000000000207008 309188000 309186001 0 116680003 900000000000011006 900000000000451002 +136453023 20020131 1 900000000000207008 309189008 309186001 0 116680003 900000000000011006 900000000000451002 +136453023 20080731 0 900000000000207008 309189008 309186001 0 116680003 900000000000011006 900000000000451002 +136454028 20020131 1 900000000000207008 309190004 309186001 0 116680003 900000000000011006 900000000000451002 +136454028 20080731 0 900000000000207008 309190004 309186001 0 116680003 900000000000011006 900000000000451002 +136454028 20220630 1 900000000000207008 309190004 309186001 0 116680003 900000000000011006 900000000000451002 +136455027 20020131 1 900000000000207008 309191000 309186001 0 116680003 900000000000011006 900000000000451002 +136455027 20080731 0 900000000000207008 309191000 309186001 0 116680003 900000000000011006 900000000000451002 +136456026 20020131 1 900000000000207008 309192007 309186001 0 116680003 900000000000011006 900000000000451002 +136456026 20080731 0 900000000000207008 309192007 309186001 0 116680003 900000000000011006 900000000000451002 +136457024 20020131 1 900000000000207008 309193002 309168004 0 116680003 900000000000011006 900000000000451002 +136457024 20080731 0 900000000000207008 309193002 309168004 0 116680003 900000000000011006 900000000000451002 +136468024 20020131 1 900000000000207008 309199003 258550008 0 116680003 900000000000011006 900000000000451002 +136468024 20050131 0 900000000000207008 309199003 258550008 0 116680003 900000000000011006 900000000000451002 +136469027 20020131 1 900000000000207008 309200000 122643008 0 116680003 900000000000011006 900000000000451002 +136470026 20020131 1 900000000000207008 309201001 168139001 0 116680003 900000000000011006 900000000000451002 +136471027 20020131 1 900000000000207008 309202008 258550008 0 116680003 900000000000011006 900000000000451002 +136471027 20050131 0 900000000000207008 309202008 258550008 0 116680003 900000000000011006 900000000000451002 +136474024 20020131 1 900000000000207008 309203003 128168004 0 116680003 900000000000011006 900000000000451002 +136474024 20080731 0 900000000000207008 309203003 128168004 0 116680003 900000000000011006 900000000000451002 +136475020 20020131 1 900000000000207008 309204009 309202008 0 116680003 900000000000011006 900000000000451002 +136475020 20080731 0 900000000000207008 309204009 309202008 0 116680003 900000000000011006 900000000000451002 +136476021 20020131 1 900000000000207008 309205005 309491006 0 116680003 900000000000011006 900000000000451002 +136476021 20030731 0 900000000000207008 309205005 309491006 0 116680003 900000000000011006 900000000000451002 +136477028 20020131 1 900000000000207008 309206006 127470000 0 116680003 900000000000011006 900000000000451002 +136477028 20080731 0 900000000000207008 309206006 127470000 0 116680003 900000000000011006 900000000000451002 +136478022 20020131 1 900000000000207008 309207002 127466008 0 116680003 900000000000011006 900000000000451002 +136478022 20080731 0 900000000000207008 309207002 127466008 0 116680003 900000000000011006 900000000000451002 +136479025 20020131 1 900000000000207008 309208007 309495002 0 116680003 900000000000011006 900000000000451002 +136479025 20080731 0 900000000000207008 309208007 309495002 0 116680003 900000000000011006 900000000000451002 +136480027 20020131 1 900000000000207008 309209004 127464006 0 116680003 900000000000011006 900000000000451002 +136480027 20080731 0 900000000000207008 309209004 127464006 0 116680003 900000000000011006 900000000000451002 +136481028 20020131 1 900000000000207008 309210009 258550008 0 116680003 900000000000011006 900000000000451002 +136481028 20030731 0 900000000000207008 309210009 258550008 0 116680003 900000000000011006 900000000000451002 +136484020 20020131 1 900000000000207008 309211008 128171007 0 116680003 900000000000011006 900000000000451002 +136484020 20080731 0 900000000000207008 309211008 128171007 0 116680003 900000000000011006 900000000000451002 +136485021 20020131 1 900000000000207008 309212001 309211008 0 116680003 900000000000011006 900000000000451002 +136486022 20020131 1 900000000000207008 309213006 258550008 0 116680003 900000000000011006 900000000000451002 +136486022 20030731 0 900000000000207008 309213006 258550008 0 116680003 900000000000011006 900000000000451002 +136487029 20020131 1 900000000000207008 309214000 309211008 0 116680003 900000000000011006 900000000000451002 +136488023 20020131 1 900000000000207008 309215004 128171007 0 116680003 900000000000011006 900000000000451002 +136488023 20080731 0 900000000000207008 309215004 128171007 0 116680003 900000000000011006 900000000000451002 +136489026 20020131 1 900000000000207008 309216003 122638001 0 116680003 900000000000011006 900000000000451002 +136489026 20080731 0 900000000000207008 309216003 122638001 0 116680003 900000000000011006 900000000000451002 +136490024 20020131 1 900000000000207008 309217007 122638001 0 116680003 900000000000011006 900000000000451002 +136490024 20080731 0 900000000000207008 309217007 122638001 0 116680003 900000000000011006 900000000000451002 +136493021 20020131 1 900000000000207008 309218002 122638001 0 116680003 900000000000011006 900000000000451002 +136493021 20080731 0 900000000000207008 309218002 122638001 0 116680003 900000000000011006 900000000000451002 +136494026 20020131 1 900000000000207008 309219005 122638001 0 116680003 900000000000011006 900000000000451002 +136494026 20080731 0 900000000000207008 309219005 122638001 0 116680003 900000000000011006 900000000000451002 +136495025 20020131 1 900000000000207008 309220004 122638001 0 116680003 900000000000011006 900000000000451002 +136496029 20020131 1 900000000000207008 309221000 122638001 0 116680003 900000000000011006 900000000000451002 +136496029 20080731 0 900000000000207008 309221000 122638001 0 116680003 900000000000011006 900000000000451002 +136497022 20020131 1 900000000000207008 309222007 122643008 0 116680003 900000000000011006 900000000000451002 +136497022 20080731 0 900000000000207008 309222007 122643008 0 116680003 900000000000011006 900000000000451002 +136498028 20020131 1 900000000000207008 309223002 128159001 0 116680003 900000000000011006 900000000000451002 +136499020 20020131 1 900000000000207008 309224008 128159001 0 116680003 900000000000011006 900000000000451002 +136500027 20020131 1 900000000000207008 309225009 128159001 0 116680003 900000000000011006 900000000000451002 +136500027 20080731 0 900000000000207008 309225009 128159001 0 116680003 900000000000011006 900000000000451002 +136503025 20020131 1 900000000000207008 309226005 128159001 0 116680003 900000000000011006 900000000000451002 +136504020 20020131 1 900000000000207008 309227001 309226005 0 116680003 900000000000011006 900000000000451002 +136551022 20020131 1 900000000000207008 309260003 309225009 0 116680003 900000000000011006 900000000000451002 +136552026 20020131 1 900000000000207008 309261004 258550008 0 116680003 900000000000011006 900000000000451002 +136552026 20030731 0 900000000000207008 309261004 258550008 0 116680003 900000000000011006 900000000000451002 +136555029 20020131 1 900000000000207008 309262006 309200000 0 116680003 900000000000011006 900000000000451002 +136555029 20080731 0 900000000000207008 309262006 309200000 0 116680003 900000000000011006 900000000000451002 +136556028 20020131 1 900000000000207008 309263001 309200000 0 116680003 900000000000011006 900000000000451002 +136557021 20020131 1 900000000000207008 309264007 309200000 0 116680003 900000000000011006 900000000000451002 +136558027 20020131 1 900000000000207008 309265008 128156008 0 116680003 900000000000011006 900000000000451002 +136558027 20080731 0 900000000000207008 309265008 128156008 0 116680003 900000000000011006 900000000000451002 +136559024 20020131 1 900000000000207008 309266009 128156008 0 116680003 900000000000011006 900000000000451002 +136560025 20020131 1 900000000000207008 309267000 128156008 0 116680003 900000000000011006 900000000000451002 +136561026 20020131 1 900000000000207008 309268005 127471001 0 116680003 900000000000011006 900000000000451002 +136563028 20020131 1 900000000000207008 309269002 127474009 0 116680003 900000000000011006 900000000000451002 +136563028 20080731 0 900000000000207008 309269002 127474009 0 116680003 900000000000011006 900000000000451002 +136564023 20020131 1 900000000000207008 309270001 127474009 0 116680003 900000000000011006 900000000000451002 +136565024 20020131 1 900000000000207008 309271002 127472008 0 116680003 900000000000011006 900000000000451002 +136565024 20030731 0 900000000000207008 309271002 127472008 0 116680003 900000000000011006 900000000000451002 +136566020 20020131 1 900000000000207008 309272009 127472008 0 116680003 900000000000011006 900000000000451002 +136566020 20050131 0 900000000000207008 309272009 127472008 0 116680003 900000000000011006 900000000000451002 +136566020 20080731 1 900000000000207008 309272009 127472008 0 116680003 900000000000011006 900000000000451002 +136567027 20020131 1 900000000000207008 309273004 309272009 0 116680003 900000000000011006 900000000000451002 +136567027 20080731 0 900000000000207008 309273004 309272009 0 116680003 900000000000011006 900000000000451002 +136568021 20020131 1 900000000000207008 309274005 309272009 0 116680003 900000000000011006 900000000000451002 +136569029 20020131 1 900000000000207008 309275006 309272009 0 116680003 900000000000011006 900000000000451002 +136570028 20020131 1 900000000000207008 309276007 309272009 0 116680003 900000000000011006 900000000000451002 +136571029 20020131 1 900000000000207008 309277003 127472008 0 116680003 900000000000011006 900000000000451002 +136571029 20030731 0 900000000000207008 309277003 127472008 0 116680003 900000000000011006 900000000000451002 +136572020 20020131 1 900000000000207008 309278008 309053003 0 116680003 900000000000011006 900000000000451002 +136577025 20020131 1 900000000000207008 309280002 128175003 0 116680003 900000000000011006 900000000000451002 +136577025 20080731 0 900000000000207008 309280002 128175003 0 116680003 900000000000011006 900000000000451002 +136578024 20020131 1 900000000000207008 309281003 309280002 0 116680003 900000000000011006 900000000000451002 +136580029 20020131 1 900000000000207008 309283000 127481002 0 116680003 900000000000011006 900000000000451002 +136580029 20080731 0 900000000000207008 309283000 127481002 0 116680003 900000000000011006 900000000000451002 +136582021 20020131 1 900000000000207008 309285007 127481002 0 116680003 900000000000011006 900000000000451002 +136582021 20080731 0 900000000000207008 309285007 127481002 0 116680003 900000000000011006 900000000000451002 +136583027 20020131 1 900000000000207008 309286008 127481002 0 116680003 900000000000011006 900000000000451002 +136585023 20020131 1 900000000000207008 309287004 309501000 0 116680003 900000000000011006 900000000000451002 +136585023 20180731 0 900000000000207008 309287004 309501000 0 116680003 900000000000011006 900000000000451002 +136586024 20020131 1 900000000000207008 309288009 127480001 0 116680003 900000000000011006 900000000000451002 +136586024 20040731 0 900000000000207008 309288009 127480001 0 116680003 900000000000011006 900000000000451002 +136587026 20020131 1 900000000000207008 309289001 127480001 0 116680003 900000000000011006 900000000000451002 +136587026 20040731 0 900000000000207008 309289001 127480001 0 116680003 900000000000011006 900000000000451002 +136588020 20020131 1 900000000000207008 309290005 309278008 0 116680003 900000000000011006 900000000000451002 +136588020 20030731 0 900000000000207008 309290005 309278008 0 116680003 900000000000011006 900000000000451002 +136589028 20020131 1 900000000000207008 309291009 127482009 0 116680003 900000000000011006 900000000000451002 +136589028 20080731 0 900000000000207008 309291009 127482009 0 116680003 900000000000011006 900000000000451002 +136590021 20020131 1 900000000000207008 309292002 122578001 0 116680003 900000000000011006 900000000000451002 +136592029 20020131 1 900000000000207008 309293007 122736005 0 116680003 900000000000011006 900000000000451002 +136592029 20080731 0 900000000000207008 309293007 122736005 0 116680003 900000000000011006 900000000000451002 +136823021 20020131 1 900000000000207008 309476009 309078004 0 116680003 900000000000011006 900000000000451002 +136827022 20020131 1 900000000000207008 309478005 258578009 0 116680003 900000000000011006 900000000000451002 +136827022 20040731 0 900000000000207008 309478005 258578009 0 116680003 900000000000011006 900000000000451002 +136829020 20020131 1 900000000000207008 309479002 258541006 0 116680003 900000000000011006 900000000000451002 +136830026 20020131 1 900000000000207008 309480004 258541006 0 116680003 900000000000011006 900000000000451002 +136830026 20040731 0 900000000000207008 309480004 258541006 0 116680003 900000000000011006 900000000000451002 +136830026 20080731 1 900000000000207008 309480004 258541006 0 116680003 900000000000011006 900000000000451002 +136831027 20020131 1 900000000000207008 309481000 309479002 0 116680003 900000000000011006 900000000000451002 +136832023 20020131 1 900000000000207008 309482007 309079007 0 116680003 900000000000011006 900000000000451002 +136832023 20080731 0 900000000000207008 309482007 309079007 0 116680003 900000000000011006 900000000000451002 +136833029 20020131 1 900000000000207008 309483002 309188000 0 116680003 900000000000011006 900000000000451002 +136834024 20020131 1 900000000000207008 309484008 309190004 0 116680003 900000000000011006 900000000000451002 +136835020 20020131 1 900000000000207008 309485009 309190004 0 116680003 900000000000011006 900000000000451002 +136836021 20020131 1 900000000000207008 309486005 309190004 0 116680003 900000000000011006 900000000000451002 +136837028 20020131 1 900000000000207008 309487001 309223002 0 116680003 900000000000011006 900000000000451002 +136840028 20020131 1 900000000000207008 309488006 309223002 0 116680003 900000000000011006 900000000000451002 +136841029 20020131 1 900000000000207008 309489003 309264007 0 116680003 900000000000011006 900000000000451002 +136842020 20020131 1 900000000000207008 309490007 127470000 0 116680003 900000000000011006 900000000000451002 +136843026 20020131 1 900000000000207008 309491006 127466008 0 116680003 900000000000011006 900000000000451002 +136843026 20080731 0 900000000000207008 309491006 127466008 0 116680003 900000000000011006 900000000000451002 +136844021 20020131 1 900000000000207008 309493009 309491006 0 116680003 900000000000011006 900000000000451002 +136844021 20080731 0 900000000000207008 309493009 309491006 0 116680003 900000000000011006 900000000000451002 +136845022 20020131 1 900000000000207008 309494003 309206006 0 116680003 900000000000011006 900000000000451002 +136846023 20020131 1 900000000000207008 309495002 127466008 0 116680003 900000000000011006 900000000000451002 +136846023 20050131 0 900000000000207008 309495002 127466008 0 116680003 900000000000011006 900000000000451002 +136849027 20020131 1 900000000000207008 309496001 309495002 0 116680003 900000000000011006 900000000000451002 +136850027 20020131 1 900000000000207008 309497005 309270001 0 116680003 900000000000011006 900000000000451002 +136851028 20020131 1 900000000000207008 309498000 309270001 0 116680003 900000000000011006 900000000000451002 +136852024 20020131 1 900000000000207008 309499008 309071005 0 116680003 900000000000011006 900000000000451002 +136852024 20180131 0 900000000000207008 309499008 309071005 0 116680003 900000000000011006 900000000000451002 +136852024 20190731 1 900000000000207008 309499008 309071005 0 116680003 900000000000011006 900000000000451002 +136854020 20020131 1 900000000000207008 309501000 127480001 0 116680003 900000000000011006 900000000000451002 +136855021 20020131 1 900000000000207008 309502007 258597009 0 116680003 900000000000011006 900000000000451002 +136855021 20040731 0 900000000000207008 309502007 258597009 0 116680003 900000000000011006 900000000000451002 +136856022 20020131 1 900000000000207008 309503002 309055005 0 116680003 900000000000011006 900000000000451002 +136857029 20020131 1 900000000000207008 309504008 309066003 0 116680003 900000000000011006 900000000000451002 +136860020 20020131 1 900000000000207008 309505009 309066003 0 116680003 900000000000011006 900000000000451002 +136861024 20020131 1 900000000000207008 309506005 309066003 0 116680003 900000000000011006 900000000000451002 +136862028 20020131 1 900000000000207008 309507001 309072003 0 116680003 900000000000011006 900000000000451002 +136862028 20080731 0 900000000000207008 309507001 309072003 0 116680003 900000000000011006 900000000000451002 +136863022 20020131 1 900000000000207008 309508006 309072003 0 116680003 900000000000011006 900000000000451002 +136909023 20020131 1 900000000000207008 309546004 258416002 0 116680003 900000000000011006 900000000000451002 +136909023 20020731 0 900000000000207008 309546004 258416002 0 116680003 900000000000011006 900000000000451002 +136910029 20020131 1 900000000000207008 309547008 258416002 0 116680003 900000000000011006 900000000000451002 +136910029 20020731 0 900000000000207008 309547008 258416002 0 116680003 900000000000011006 900000000000451002 +136911025 20020131 1 900000000000207008 309548003 258416002 0 116680003 900000000000011006 900000000000451002 +136911025 20020731 0 900000000000207008 309548003 258416002 0 116680003 900000000000011006 900000000000451002 +136912021 20020131 1 900000000000207008 309549006 309190004 0 116680003 900000000000011006 900000000000451002 +136912021 20080731 0 900000000000207008 309549006 309190004 0 116680003 900000000000011006 900000000000451002 +137060027 20020131 1 900000000000207008 119294007 119297000 0 116680003 900000000000011006 900000000000451002 +137064020 20020131 1 900000000000207008 119295008 271360006 0 116680003 900000000000011006 900000000000451002 +137064020 20020731 0 900000000000207008 119295008 271360006 0 116680003 900000000000011006 900000000000451002 +137079029 20020131 1 900000000000207008 119297000 258578009 0 116680003 900000000000011006 900000000000451002 +137079029 20040731 0 900000000000207008 119297000 258578009 0 116680003 900000000000011006 900000000000451002 +137084024 20020131 1 900000000000207008 119298005 122555007 0 116680003 900000000000011006 900000000000451002 +137092026 20020131 1 900000000000207008 119299002 271360006 0 116680003 900000000000011006 900000000000451002 +137092026 20040731 0 900000000000207008 119299002 271360006 0 116680003 900000000000011006 900000000000451002 +137096028 20020131 1 900000000000207008 119300005 258578009 0 116680003 900000000000011006 900000000000451002 +137096028 20040731 0 900000000000207008 119300005 258578009 0 116680003 900000000000011006 900000000000451002 +137101028 20020131 1 900000000000207008 119301009 258619000 0 116680003 900000000000011006 900000000000451002 +137101028 20040731 0 900000000000207008 119301009 258619000 0 116680003 900000000000011006 900000000000451002 +137115026 20020131 1 900000000000207008 119302002 258619000 0 116680003 900000000000011006 900000000000451002 +137115026 20040731 0 900000000000207008 119302002 258619000 0 116680003 900000000000011006 900000000000451002 +137131023 20020131 1 900000000000207008 119303007 258619000 0 116680003 900000000000011006 900000000000451002 +137131023 20040731 0 900000000000207008 119303007 258619000 0 116680003 900000000000011006 900000000000451002 +137143024 20020131 1 900000000000207008 119304001 127454002 0 116680003 900000000000011006 900000000000451002 +137143024 20210131 0 900000000000207008 119304001 127454002 0 116680003 900000000000011006 900000000000451002 +137144029 20020131 1 900000000000207008 119304001 258578009 0 116680003 900000000000011006 900000000000451002 +137144029 20040731 0 900000000000207008 119304001 258578009 0 116680003 900000000000011006 900000000000451002 +137155029 20020131 1 900000000000207008 119305000 258578009 0 116680003 900000000000011006 900000000000451002 +137155029 20040731 0 900000000000207008 119305000 258578009 0 116680003 900000000000011006 900000000000451002 +137156028 20020131 1 900000000000207008 119305000 127454002 0 116680003 900000000000011006 900000000000451002 +137156028 20210131 0 900000000000207008 119305000 127454002 0 116680003 900000000000011006 900000000000451002 +137178024 20020131 1 900000000000207008 119307008 122878005 0 116680003 900000000000011006 900000000000451002 +137178024 20040731 0 900000000000207008 119307008 122878005 0 116680003 900000000000011006 900000000000451002 +137179027 20020131 1 900000000000207008 119307008 127454002 0 116680003 900000000000011006 900000000000451002 +137179027 20080731 0 900000000000207008 119307008 127454002 0 116680003 900000000000011006 900000000000451002 +137190021 20020131 1 900000000000207008 119308003 127454002 0 116680003 900000000000011006 900000000000451002 +137190021 20210131 0 900000000000207008 119308003 127454002 0 116680003 900000000000011006 900000000000451002 +137201024 20020131 1 900000000000207008 119309006 127454002 0 116680003 900000000000011006 900000000000451002 +137201024 20080731 0 900000000000207008 119309006 127454002 0 116680003 900000000000011006 900000000000451002 +137202028 20020131 1 900000000000207008 119309006 309479002 0 116680003 900000000000011006 900000000000451002 +137202028 20080731 0 900000000000207008 119309006 309479002 0 116680003 900000000000011006 900000000000451002 +137227024 20020131 1 900000000000207008 119311002 122575003 0 116680003 900000000000011006 900000000000451002 +137227024 20040731 0 900000000000207008 119311002 122575003 0 116680003 900000000000011006 900000000000451002 +137228025 20020131 1 900000000000207008 119311002 127454002 0 116680003 900000000000011006 900000000000451002 +137228025 20210131 0 900000000000207008 119311002 127454002 0 116680003 900000000000011006 900000000000451002 +137239027 20020131 1 900000000000207008 119312009 127454002 0 116680003 900000000000011006 900000000000451002 +137239027 20080731 0 900000000000207008 119312009 127454002 0 116680003 900000000000011006 900000000000451002 +137250029 20020131 1 900000000000207008 119313004 127454002 0 116680003 900000000000011006 900000000000451002 +137250029 20040731 0 900000000000207008 119313004 127454002 0 116680003 900000000000011006 900000000000451002 +137261021 20020131 1 900000000000207008 119314005 127454002 0 116680003 900000000000011006 900000000000451002 +137261021 20130131 0 900000000000207008 119314005 127454002 0 116680003 900000000000011006 900000000000451002 +137283020 20020131 1 900000000000207008 119316007 119315006 0 116680003 900000000000011006 900000000000451002 +137283020 20040731 0 900000000000207008 119316007 119315006 0 116680003 900000000000011006 900000000000451002 +137294024 20020131 1 900000000000207008 119317003 258619000 0 116680003 900000000000011006 900000000000451002 +137294024 20040731 0 900000000000207008 119317003 258619000 0 116680003 900000000000011006 900000000000451002 +137304029 20020131 1 900000000000207008 119318008 119315006 0 116680003 900000000000011006 900000000000451002 +137304029 20040731 0 900000000000207008 119318008 119315006 0 116680003 900000000000011006 900000000000451002 +137315023 20020131 1 900000000000207008 119319000 258619000 0 116680003 900000000000011006 900000000000451002 +137315023 20040731 0 900000000000207008 119319000 258619000 0 116680003 900000000000011006 900000000000451002 +137327021 20020131 1 900000000000207008 119320006 258619000 0 116680003 900000000000011006 900000000000451002 +137327021 20040731 0 900000000000207008 119320006 258619000 0 116680003 900000000000011006 900000000000451002 +137340027 20020131 1 900000000000207008 119321005 123038009 0 116680003 900000000000011006 900000000000451002 +137340027 20040731 0 900000000000207008 119321005 123038009 0 116680003 900000000000011006 900000000000451002 +137360024 20020131 1 900000000000207008 119323008 309050000 0 116680003 900000000000011006 900000000000451002 +137360024 20030731 0 900000000000207008 119323008 309050000 0 116680003 900000000000011006 900000000000451002 +137371020 20020131 1 900000000000207008 119324002 258619000 0 116680003 900000000000011006 900000000000451002 +137371020 20040731 0 900000000000207008 119324002 258619000 0 116680003 900000000000011006 900000000000451002 +137381024 20020131 1 900000000000207008 119325001 258548000 0 116680003 900000000000011006 900000000000451002 +137381024 20130731 0 900000000000207008 119325001 258548000 0 116680003 900000000000011006 900000000000451002 +137382028 20020131 1 900000000000207008 119325001 119376003 0 116680003 900000000000011006 900000000000451002 +137382028 20210131 0 900000000000207008 119325001 119376003 0 116680003 900000000000011006 900000000000451002 +137393026 20020131 1 900000000000207008 119326000 258548000 0 116680003 900000000000011006 900000000000451002 +137393026 20190731 0 900000000000207008 119326000 258548000 0 116680003 900000000000011006 900000000000451002 +137404025 20020131 1 900000000000207008 119327009 258548000 0 116680003 900000000000011006 900000000000451002 +137404025 20221231 0 900000000000207008 119327009 258548000 0 116680003 900000000000011006 900000000000451002 +137415024 20020131 1 900000000000207008 119328004 119321005 0 116680003 900000000000011006 900000000000451002 +137416020 20020131 1 900000000000207008 119328004 309055005 0 116680003 900000000000011006 900000000000451002 +137417027 20020131 1 900000000000207008 119328004 119372001 0 116680003 900000000000011006 900000000000451002 +137417027 20040731 0 900000000000207008 119328004 119372001 0 116680003 900000000000011006 900000000000451002 +137428028 20020131 1 900000000000207008 119329007 119328004 0 116680003 900000000000011006 900000000000451002 +137428028 20080731 0 900000000000207008 119329007 119328004 0 116680003 900000000000011006 900000000000451002 +137453025 20020131 1 900000000000207008 119331003 309072003 0 116680003 900000000000011006 900000000000451002 +137453025 20210131 0 900000000000207008 119331003 309072003 0 116680003 900000000000011006 900000000000451002 +137454020 20020131 1 900000000000207008 119331003 119376003 0 116680003 900000000000011006 900000000000451002 +137454020 20030731 0 900000000000207008 119331003 119376003 0 116680003 900000000000011006 900000000000451002 +137465026 20020131 1 900000000000207008 119332005 309051001 0 116680003 900000000000011006 900000000000451002 +137466025 20020131 1 900000000000207008 119332005 309123007 0 116680003 900000000000011006 900000000000451002 +137466025 20080731 0 900000000000207008 119332005 309123007 0 116680003 900000000000011006 900000000000451002 +137467023 20020131 1 900000000000207008 119332005 119372001 0 116680003 900000000000011006 900000000000451002 +137467023 20040731 0 900000000000207008 119332005 119372001 0 116680003 900000000000011006 900000000000451002 +137476027 20020131 1 900000000000207008 119333000 256898004 0 116680003 900000000000011006 900000000000451002 +137476027 20080731 0 900000000000207008 119333000 256898004 0 116680003 900000000000011006 900000000000451002 +137487024 20020131 1 900000000000207008 119334006 122878005 0 116680003 900000000000011006 900000000000451002 +137487024 20040731 0 900000000000207008 119334006 122878005 0 116680003 900000000000011006 900000000000451002 +137488025 20020131 1 900000000000207008 119334006 258442002 0 116680003 900000000000011006 900000000000451002 +137488025 20040731 0 900000000000207008 119334006 258442002 0 116680003 900000000000011006 900000000000451002 +137489022 20020131 1 900000000000207008 119334006 258606004 0 116680003 900000000000011006 900000000000451002 +137499028 20020131 1 900000000000207008 119335007 119334006 0 116680003 900000000000011006 900000000000451002 +137512020 20020131 1 900000000000207008 119336008 119317003 0 116680003 900000000000011006 900000000000451002 +137523024 20020131 1 900000000000207008 119337004 119317003 0 116680003 900000000000011006 900000000000451002 +137542023 20020131 1 900000000000207008 119338009 309187005 0 116680003 900000000000011006 900000000000451002 +137542023 20080731 0 900000000000207008 119338009 309187005 0 116680003 900000000000011006 900000000000451002 +137552022 20020131 1 900000000000207008 119339001 309050000 0 116680003 900000000000011006 900000000000451002 +137568027 20020131 1 900000000000207008 119340004 258442002 0 116680003 900000000000011006 900000000000451002 +137568027 20040731 0 900000000000207008 119340004 258442002 0 116680003 900000000000011006 900000000000451002 +137569024 20020131 1 900000000000207008 119340004 258597009 0 116680003 900000000000011006 900000000000451002 +137569024 20040731 0 900000000000207008 119340004 258597009 0 116680003 900000000000011006 900000000000451002 +137570020 20020131 1 900000000000207008 119341000 119372001 0 116680003 900000000000011006 900000000000451002 +137570020 20040731 0 900000000000207008 119341000 119372001 0 116680003 900000000000011006 900000000000451002 +137571024 20020131 1 900000000000207008 119341000 309199003 0 116680003 900000000000011006 900000000000451002 +137571024 20080731 0 900000000000207008 119341000 309199003 0 116680003 900000000000011006 900000000000451002 +137574027 20020131 1 900000000000207008 119342007 309185002 0 116680003 900000000000011006 900000000000451002 +137574027 20040731 0 900000000000207008 119342007 309185002 0 116680003 900000000000011006 900000000000451002 +137575026 20020131 1 900000000000207008 119342007 119372001 0 116680003 900000000000011006 900000000000451002 +137575026 20040731 0 900000000000207008 119342007 119372001 0 116680003 900000000000011006 900000000000451002 +137576025 20020131 1 900000000000207008 119342007 258442002 0 116680003 900000000000011006 900000000000451002 +137576025 20040731 0 900000000000207008 119342007 258442002 0 116680003 900000000000011006 900000000000451002 +137577023 20020131 1 900000000000207008 119343002 119372001 0 116680003 900000000000011006 900000000000451002 +137577023 20040731 0 900000000000207008 119343002 119372001 0 116680003 900000000000011006 900000000000451002 +137578029 20020131 1 900000000000207008 119343002 309199003 0 116680003 900000000000011006 900000000000451002 +137578029 20080731 0 900000000000207008 119343002 309199003 0 116680003 900000000000011006 900000000000451002 +137582027 20020131 1 900000000000207008 119344008 258570002 0 116680003 900000000000011006 900000000000451002 +137583021 20020131 1 900000000000207008 119345009 119372001 0 116680003 900000000000011006 900000000000451002 +137583021 20040731 0 900000000000207008 119345009 119372001 0 116680003 900000000000011006 900000000000451002 +137584026 20020131 1 900000000000207008 119345009 119297000 0 116680003 900000000000011006 900000000000451002 +137589020 20020131 1 900000000000207008 119346005 123038009 0 116680003 900000000000011006 900000000000451002 +137589020 20040731 0 900000000000207008 119346005 123038009 0 116680003 900000000000011006 900000000000451002 +137590027 20020131 1 900000000000207008 119347001 309052008 0 116680003 900000000000011006 900000000000451002 +137590027 20080731 0 900000000000207008 119347001 309052008 0 116680003 900000000000011006 900000000000451002 +137591028 20020131 1 900000000000207008 119347001 119372001 0 116680003 900000000000011006 900000000000451002 +137591028 20040731 0 900000000000207008 119347001 119372001 0 116680003 900000000000011006 900000000000451002 +137592024 20020131 1 900000000000207008 119347001 258442002 0 116680003 900000000000011006 900000000000451002 +137592024 20040731 0 900000000000207008 119347001 258442002 0 116680003 900000000000011006 900000000000451002 +137593025 20020131 1 900000000000207008 119348006 119347001 0 116680003 900000000000011006 900000000000451002 +137595021 20020131 1 900000000000207008 119349003 309052008 0 116680003 900000000000011006 900000000000451002 +137601029 20020131 1 900000000000207008 119350003 309049000 0 116680003 900000000000011006 900000000000451002 +137601029 20040731 0 900000000000207008 119350003 309049000 0 116680003 900000000000011006 900000000000451002 +137605022 20020131 1 900000000000207008 119351004 258578009 0 116680003 900000000000011006 900000000000451002 +137605022 20040731 0 900000000000207008 119351004 258578009 0 116680003 900000000000011006 900000000000451002 +137609027 20020131 1 900000000000207008 119352006 258591005 0 116680003 900000000000011006 900000000000451002 +137609027 20240501 0 900000000000207008 119352006 258591005 0 116680003 900000000000011006 900000000000451002 +137618025 20020131 1 900000000000207008 119353001 119354007 0 116680003 900000000000011006 900000000000451002 +137618025 20080731 0 900000000000207008 119353001 119354007 0 116680003 900000000000011006 900000000000451002 +137633022 20020131 1 900000000000207008 119355008 119354007 0 116680003 900000000000011006 900000000000451002 +137633022 20080731 0 900000000000207008 119355008 119354007 0 116680003 900000000000011006 900000000000451002 +137645029 20020131 1 900000000000207008 119356009 119354007 0 116680003 900000000000011006 900000000000451002 +137645029 20080731 0 900000000000207008 119356009 119354007 0 116680003 900000000000011006 900000000000451002 +137657022 20020131 1 900000000000207008 119357000 119354007 0 116680003 900000000000011006 900000000000451002 +137657022 20080731 0 900000000000207008 119357000 119354007 0 116680003 900000000000011006 900000000000451002 +137670029 20020131 1 900000000000207008 119358005 258578009 0 116680003 900000000000011006 900000000000451002 +137670029 20040731 0 900000000000207008 119358005 258578009 0 116680003 900000000000011006 900000000000451002 +137679028 20020131 1 900000000000207008 119359002 119376003 0 116680003 900000000000011006 900000000000451002 +137679028 20040731 0 900000000000207008 119359002 119376003 0 116680003 900000000000011006 900000000000451002 +137680025 20020131 1 900000000000207008 119359002 258578009 0 116680003 900000000000011006 900000000000451002 +137680025 20040731 0 900000000000207008 119359002 258578009 0 116680003 900000000000011006 900000000000451002 +137699023 20020131 1 900000000000207008 119361006 122592007 0 116680003 900000000000011006 900000000000451002 +137707022 20020131 1 900000000000207008 119362004 119361006 0 116680003 900000000000011006 900000000000451002 +137730027 20020131 1 900000000000207008 119363009 119361006 0 116680003 900000000000011006 900000000000451002 +137738023 20020131 1 900000000000207008 119364003 122592007 0 116680003 900000000000011006 900000000000451002 +137748020 20020131 1 900000000000207008 119365002 123038009 0 116680003 900000000000011006 900000000000451002 +137748020 20040731 0 900000000000207008 119365002 123038009 0 116680003 900000000000011006 900000000000451002 +137752020 20020131 1 900000000000207008 119366001 119365002 0 116680003 900000000000011006 900000000000451002 +137753026 20020131 1 900000000000207008 119366001 119371008 0 116680003 900000000000011006 900000000000451002 +137763023 20020131 1 900000000000207008 119367005 123038009 0 116680003 900000000000011006 900000000000451002 +137763023 20040731 0 900000000000207008 119367005 123038009 0 116680003 900000000000011006 900000000000451002 +137772026 20020131 1 900000000000207008 119368000 123038009 0 116680003 900000000000011006 900000000000451002 +137772026 20040731 0 900000000000207008 119368000 123038009 0 116680003 900000000000011006 900000000000451002 +137779024 20020131 1 900000000000207008 119369008 123038009 0 116680003 900000000000011006 900000000000451002 +137779024 20040731 0 900000000000207008 119369008 123038009 0 116680003 900000000000011006 900000000000451002 +137786027 20020131 1 900000000000207008 119370009 123038009 0 116680003 900000000000011006 900000000000451002 +137786027 20040731 0 900000000000207008 119370009 123038009 0 116680003 900000000000011006 900000000000451002 +137793028 20020131 1 900000000000207008 119371008 123038009 0 116680003 900000000000011006 900000000000451002 +137793028 20040731 0 900000000000207008 119371008 123038009 0 116680003 900000000000011006 900000000000451002 +137808021 20020131 1 900000000000207008 119373006 119372001 0 116680003 900000000000011006 900000000000451002 +137808021 20040731 0 900000000000207008 119373006 119372001 0 116680003 900000000000011006 900000000000451002 +137827026 20020131 1 900000000000207008 119376003 123038009 0 116680003 900000000000011006 900000000000451002 +137827026 20080731 0 900000000000207008 119376003 123038009 0 116680003 900000000000011006 900000000000451002 +137837020 20020131 1 900000000000207008 119377007 127462005 0 116680003 900000000000011006 900000000000451002 +137857024 20020131 1 900000000000207008 119378002 127462005 0 116680003 900000000000011006 900000000000451002 +137893021 20020131 1 900000000000207008 119379005 127465007 0 116680003 900000000000011006 900000000000451002 +137893021 20130731 0 900000000000207008 119379005 127465007 0 116680003 900000000000011006 900000000000451002 +137900026 20020131 1 900000000000207008 119380008 127465007 0 116680003 900000000000011006 900000000000451002 +137900026 20130731 0 900000000000207008 119380008 127465007 0 116680003 900000000000011006 900000000000451002 +137900026 20240501 1 900000000000207008 119380008 127465007 0 116680003 900000000000011006 900000000000451002 +137901027 20020131 1 900000000000207008 119380008 119299002 0 116680003 900000000000011006 900000000000451002 +137901027 20030731 0 900000000000207008 119380008 119299002 0 116680003 900000000000011006 900000000000451002 +137909025 20020131 1 900000000000207008 119381007 127465007 0 116680003 900000000000011006 900000000000451002 +137909025 20130731 0 900000000000207008 119381007 127465007 0 116680003 900000000000011006 900000000000451002 +137911023 20020131 1 900000000000207008 119382000 119381007 0 116680003 900000000000011006 900000000000451002 +137915025 20020131 1 900000000000207008 119383005 123038009 0 116680003 900000000000011006 900000000000451002 +137915025 20040731 0 900000000000207008 119383005 123038009 0 116680003 900000000000011006 900000000000451002 +137916029 20020131 1 900000000000207008 119384004 127476006 0 116680003 900000000000011006 900000000000451002 +137918028 20020131 1 900000000000207008 119385003 127476006 0 116680003 900000000000011006 900000000000451002 +137919020 20020131 1 900000000000207008 119386002 309052008 0 116680003 900000000000011006 900000000000451002 +137922022 20020131 1 900000000000207008 119388001 309168004 0 116680003 900000000000011006 900000000000451002 +137922022 20080731 0 900000000000207008 119388001 309168004 0 116680003 900000000000011006 900000000000451002 +137923028 20020131 1 900000000000207008 119389009 123038009 0 116680003 900000000000011006 900000000000451002 +137923028 20040731 0 900000000000207008 119389009 123038009 0 116680003 900000000000011006 900000000000451002 +137925024 20020131 1 900000000000207008 119390000 309168004 0 116680003 900000000000011006 900000000000451002 +137925024 20080731 0 900000000000207008 119390000 309168004 0 116680003 900000000000011006 900000000000451002 +137929029 20020131 1 900000000000207008 119391001 309170008 0 116680003 900000000000011006 900000000000451002 +137929029 20080731 0 900000000000207008 119391001 309170008 0 116680003 900000000000011006 900000000000451002 +137930023 20020131 1 900000000000207008 119392008 123038009 0 116680003 900000000000011006 900000000000451002 +137930023 20040731 0 900000000000207008 119392008 123038009 0 116680003 900000000000011006 900000000000451002 +137931022 20020131 1 900000000000207008 119393003 127472008 0 116680003 900000000000011006 900000000000451002 +137931022 20050131 0 900000000000207008 119393003 127472008 0 116680003 900000000000011006 900000000000451002 +137932026 20020131 1 900000000000207008 119394009 123038009 0 116680003 900000000000011006 900000000000451002 +137932026 20040731 0 900000000000207008 119394009 123038009 0 116680003 900000000000011006 900000000000451002 +137933020 20020131 1 900000000000207008 119395005 123038009 0 116680003 900000000000011006 900000000000451002 +137933020 20040731 0 900000000000207008 119395005 123038009 0 116680003 900000000000011006 900000000000451002 +137941020 20020131 1 900000000000207008 119396006 127480001 0 116680003 900000000000011006 900000000000451002 +137941020 20080731 0 900000000000207008 119396006 127480001 0 116680003 900000000000011006 900000000000451002 +137956027 20020131 1 900000000000207008 119397002 123038009 0 116680003 900000000000011006 900000000000451002 +137956027 20040731 0 900000000000207008 119397002 123038009 0 116680003 900000000000011006 900000000000451002 +137967026 20020131 1 900000000000207008 119398007 258592003 0 116680003 900000000000011006 900000000000451002 +137967026 20040731 0 900000000000207008 119398007 258592003 0 116680003 900000000000011006 900000000000451002 +137978023 20020131 1 900000000000207008 119399004 123038009 0 116680003 900000000000011006 900000000000451002 +137978023 20080731 0 900000000000207008 119399004 123038009 0 116680003 900000000000011006 900000000000451002 +137996025 20020131 1 900000000000207008 119400006 128164002 0 116680003 900000000000011006 900000000000451002 +137996025 20030731 0 900000000000207008 119400006 128164002 0 116680003 900000000000011006 900000000000451002 +138010024 20020131 1 900000000000207008 119401005 128164002 0 116680003 900000000000011006 900000000000451002 +138010024 20030731 0 900000000000207008 119401005 128164002 0 116680003 900000000000011006 900000000000451002 +138023028 20020131 1 900000000000207008 119403008 123038009 0 116680003 900000000000011006 900000000000451002 +138023028 20040731 0 900000000000207008 119403008 123038009 0 116680003 900000000000011006 900000000000451002 +139789026 20020131 1 900000000000207008 312494007 309053003 0 116680003 900000000000011006 900000000000451002 +139789026 20080731 0 900000000000207008 312494007 309053003 0 116680003 900000000000011006 900000000000451002 +139790024 20020131 1 900000000000207008 312494007 258433009 0 116680003 900000000000011006 900000000000451002 +139790024 20080731 0 900000000000207008 312494007 258433009 0 116680003 900000000000011006 900000000000451002 +139790024 20110731 1 900000000000207008 312494007 258433009 0 116680003 900000000000011006 900000000000451002 +145315022 20020131 1 900000000000207008 123038009 138875005 0 116680003 900000000000011006 900000000000451002 +153231020 20020131 1 900000000000207008 122550002 119295008 0 116680003 900000000000011006 900000000000451002 +153232029 20020131 1 900000000000207008 122550002 48469005 0 116680003 900000000000011006 900000000000451002 +153232029 20040731 0 900000000000207008 122550002 48469005 0 116680003 900000000000011006 900000000000451002 +153234028 20020131 1 900000000000207008 122551003 119297000 0 116680003 900000000000011006 900000000000451002 +153235027 20020131 1 900000000000207008 122552005 119297000 0 116680003 900000000000011006 900000000000451002 +153236026 20020131 1 900000000000207008 122553000 119297000 0 116680003 900000000000011006 900000000000451002 +153237024 20020131 1 900000000000207008 122554006 119297000 0 116680003 900000000000011006 900000000000451002 +153239022 20020131 1 900000000000207008 122555007 119297000 0 116680003 900000000000011006 900000000000451002 +153240024 20020131 1 900000000000207008 122556008 119297000 0 116680003 900000000000011006 900000000000451002 +153240024 20110731 0 900000000000207008 122556008 119297000 0 116680003 900000000000011006 900000000000451002 +153241023 20020131 1 900000000000207008 122557004 122556008 0 116680003 900000000000011006 900000000000451002 +153242027 20020131 1 900000000000207008 122558009 119297000 0 116680003 900000000000011006 900000000000451002 +153243021 20020131 1 900000000000207008 122559001 119297000 0 116680003 900000000000011006 900000000000451002 +153245025 20020131 1 900000000000207008 122560006 119297000 0 116680003 900000000000011006 900000000000451002 +153247022 20020131 1 900000000000207008 122561005 119297000 0 116680003 900000000000011006 900000000000451002 +153248028 20020131 1 900000000000207008 122562003 119297000 0 116680003 900000000000011006 900000000000451002 +153249020 20020131 1 900000000000207008 122563008 119304001 0 116680003 900000000000011006 900000000000451002 +153250020 20020131 1 900000000000207008 122564002 119304001 0 116680003 900000000000011006 900000000000451002 +153251024 20020131 1 900000000000207008 122565001 122575003 0 116680003 900000000000011006 900000000000451002 +153252028 20020131 1 900000000000207008 122565001 127454002 0 116680003 900000000000011006 900000000000451002 +153252028 20040731 0 900000000000207008 122565001 127454002 0 116680003 900000000000011006 900000000000451002 +153253022 20020131 1 900000000000207008 122566000 119315006 0 116680003 900000000000011006 900000000000451002 +153253022 20040731 0 900000000000207008 122566000 119315006 0 116680003 900000000000011006 900000000000451002 +153254027 20020131 1 900000000000207008 122566000 258442002 0 116680003 900000000000011006 900000000000451002 +153254027 20080731 0 900000000000207008 122566000 258442002 0 116680003 900000000000011006 900000000000451002 +153255026 20020131 1 900000000000207008 122567009 122575003 0 116680003 900000000000011006 900000000000451002 +153255026 20080731 0 900000000000207008 122567009 122575003 0 116680003 900000000000011006 900000000000451002 +153256025 20020131 1 900000000000207008 122568004 123038009 0 116680003 900000000000011006 900000000000451002 +153256025 20030131 0 900000000000207008 122568004 123038009 0 116680003 900000000000011006 900000000000451002 +153257023 20020131 1 900000000000207008 122569007 258442002 0 116680003 900000000000011006 900000000000451002 +153257023 20040731 0 900000000000207008 122569007 258442002 0 116680003 900000000000011006 900000000000451002 +153258029 20020131 1 900000000000207008 122569007 258548000 0 116680003 900000000000011006 900000000000451002 +153258029 20190731 0 900000000000207008 122569007 258548000 0 116680003 900000000000011006 900000000000451002 +153259021 20020131 1 900000000000207008 122569007 119372001 0 116680003 900000000000011006 900000000000451002 +153259021 20040731 0 900000000000207008 122569007 119372001 0 116680003 900000000000011006 900000000000451002 +153264020 20020131 1 900000000000207008 122571007 119372001 0 116680003 900000000000011006 900000000000451002 +153264020 20040731 0 900000000000207008 122571007 119372001 0 116680003 900000000000011006 900000000000451002 +153265021 20020131 1 900000000000207008 122571007 258442002 0 116680003 900000000000011006 900000000000451002 +153265021 20040731 0 900000000000207008 122571007 258442002 0 116680003 900000000000011006 900000000000451002 +153266022 20020131 1 900000000000207008 122571007 258541006 0 116680003 900000000000011006 900000000000451002 +153266022 20080731 0 900000000000207008 122571007 258541006 0 116680003 900000000000011006 900000000000451002 +153267029 20020131 1 900000000000207008 122572000 119372001 0 116680003 900000000000011006 900000000000451002 +153267029 20040731 0 900000000000207008 122572000 119372001 0 116680003 900000000000011006 900000000000451002 +153268023 20020131 1 900000000000207008 122572000 309199003 0 116680003 900000000000011006 900000000000451002 +153268023 20040731 0 900000000000207008 122572000 309199003 0 116680003 900000000000011006 900000000000451002 +153268023 20080731 1 900000000000207008 122572000 309199003 0 116680003 900000000000011006 900000000000451002 +153269026 20020131 1 900000000000207008 122573005 309199003 0 116680003 900000000000011006 900000000000451002 +153270025 20020131 1 900000000000207008 122573005 119372001 0 116680003 900000000000011006 900000000000451002 +153270025 20040731 0 900000000000207008 122573005 119372001 0 116680003 900000000000011006 900000000000451002 +153271026 20020131 1 900000000000207008 122574004 119372001 0 116680003 900000000000011006 900000000000451002 +153271026 20040731 0 900000000000207008 122574004 119372001 0 116680003 900000000000011006 900000000000451002 +153272022 20020131 1 900000000000207008 122574004 309199003 0 116680003 900000000000011006 900000000000451002 +153274023 20020131 1 900000000000207008 122575003 309268005 0 116680003 900000000000011006 900000000000451002 +153275024 20020131 1 900000000000207008 122575003 119372001 0 116680003 900000000000011006 900000000000451002 +153275024 20040731 0 900000000000207008 122575003 119372001 0 116680003 900000000000011006 900000000000451002 +153277027 20020131 1 900000000000207008 122576002 119344008 0 116680003 900000000000011006 900000000000451002 +153278021 20020131 1 900000000000207008 122577006 258451005 0 116680003 900000000000011006 900000000000451002 +153278021 20080731 0 900000000000207008 122577006 258451005 0 116680003 900000000000011006 900000000000451002 +153279029 20020131 1 900000000000207008 122578001 309053003 0 116680003 900000000000011006 900000000000451002 +153281027 20020131 1 900000000000207008 122579009 122578001 0 116680003 900000000000011006 900000000000451002 +153283029 20020131 1 900000000000207008 122580007 123038009 0 116680003 900000000000011006 900000000000451002 +153283029 20030731 0 900000000000207008 122580007 123038009 0 116680003 900000000000011006 900000000000451002 +153284024 20020131 1 900000000000207008 122581006 119351004 0 116680003 900000000000011006 900000000000451002 +153284024 20090731 0 900000000000207008 122581006 119351004 0 116680003 900000000000011006 900000000000451002 +153285020 20020131 1 900000000000207008 122582004 119351004 0 116680003 900000000000011006 900000000000451002 +153286021 20020131 1 900000000000207008 122583009 119351004 0 116680003 900000000000011006 900000000000451002 +153286021 20090731 0 900000000000207008 122583009 119351004 0 116680003 900000000000011006 900000000000451002 +153287028 20020131 1 900000000000207008 122584003 119354007 0 116680003 900000000000011006 900000000000451002 +153287028 20080731 0 900000000000207008 122584003 119354007 0 116680003 900000000000011006 900000000000451002 +153288022 20020131 1 900000000000207008 122585002 119354007 0 116680003 900000000000011006 900000000000451002 +153288022 20080731 0 900000000000207008 122585002 119354007 0 116680003 900000000000011006 900000000000451002 +153290023 20020131 1 900000000000207008 122587005 119362004 0 116680003 900000000000011006 900000000000451002 +153292026 20020131 1 900000000000207008 122588000 119362004 0 116680003 900000000000011006 900000000000451002 +153293020 20020131 1 900000000000207008 122589008 119364003 0 116680003 900000000000011006 900000000000451002 +153296028 20020131 1 900000000000207008 122590004 119364003 0 116680003 900000000000011006 900000000000451002 +153297021 20020131 1 900000000000207008 122591000 119364003 0 116680003 900000000000011006 900000000000451002 +153298027 20020131 1 900000000000207008 122592007 258578009 0 116680003 900000000000011006 900000000000451002 +153298027 20040731 0 900000000000207008 122592007 258578009 0 116680003 900000000000011006 900000000000451002 +153299024 20020131 1 900000000000207008 122592007 119315006 0 116680003 900000000000011006 900000000000451002 +153299024 20040731 0 900000000000207008 122592007 119315006 0 116680003 900000000000011006 900000000000451002 +153300027 20020131 1 900000000000207008 122593002 119369008 0 116680003 900000000000011006 900000000000451002 +153301028 20020131 1 900000000000207008 122593002 119376003 0 116680003 900000000000011006 900000000000451002 +153302024 20020131 1 900000000000207008 122594008 119372001 0 116680003 900000000000011006 900000000000451002 +153302024 20040731 0 900000000000207008 122594008 119372001 0 116680003 900000000000011006 900000000000451002 +153303025 20020131 1 900000000000207008 122595009 309060009 0 116680003 900000000000011006 900000000000451002 +153303025 20200731 0 900000000000207008 122595009 309060009 0 116680003 900000000000011006 900000000000451002 +153304020 20020131 1 900000000000207008 122595009 127457009 0 116680003 900000000000011006 900000000000451002 +153304020 20020731 0 900000000000207008 122595009 127457009 0 116680003 900000000000011006 900000000000451002 +153305021 20020131 1 900000000000207008 122596005 127457009 0 116680003 900000000000011006 900000000000451002 +153305021 20020731 0 900000000000207008 122596005 127457009 0 116680003 900000000000011006 900000000000451002 +153306022 20020131 1 900000000000207008 122596005 309060009 0 116680003 900000000000011006 900000000000451002 +153306022 20030731 0 900000000000207008 122596005 309060009 0 116680003 900000000000011006 900000000000451002 +153307029 20020131 1 900000000000207008 122597001 122596005 0 116680003 900000000000011006 900000000000451002 +153307029 20080731 0 900000000000207008 122597001 122596005 0 116680003 900000000000011006 900000000000451002 +153308023 20020131 1 900000000000207008 122598006 122596005 0 116680003 900000000000011006 900000000000451002 +153308023 20080731 0 900000000000207008 122598006 122596005 0 116680003 900000000000011006 900000000000451002 +153309026 20020131 1 900000000000207008 122599003 122595009 0 116680003 900000000000011006 900000000000451002 +153309026 20080731 0 900000000000207008 122599003 122595009 0 116680003 900000000000011006 900000000000451002 +153311024 20020131 1 900000000000207008 122600000 122595009 0 116680003 900000000000011006 900000000000451002 +153311024 20080731 0 900000000000207008 122600000 122595009 0 116680003 900000000000011006 900000000000451002 +153313022 20020131 1 900000000000207008 122601001 258416002 0 116680003 900000000000011006 900000000000451002 +153313022 20020731 0 900000000000207008 122601001 258416002 0 116680003 900000000000011006 900000000000451002 +153314027 20020131 1 900000000000207008 122601001 127457009 0 116680003 900000000000011006 900000000000451002 +153314027 20080731 0 900000000000207008 122601001 127457009 0 116680003 900000000000011006 900000000000451002 +153315026 20020131 1 900000000000207008 122602008 119376003 0 116680003 900000000000011006 900000000000451002 +153316025 20020131 1 900000000000207008 122602008 271360006 0 116680003 900000000000011006 900000000000451002 +153316025 20040731 0 900000000000207008 122602008 271360006 0 116680003 900000000000011006 900000000000451002 +153319021 20020131 1 900000000000207008 122604009 122603003 0 116680003 900000000000011006 900000000000451002 +153319021 20030731 0 900000000000207008 122604009 122603003 0 116680003 900000000000011006 900000000000451002 +153320026 20020131 1 900000000000207008 122604009 309175003 0 116680003 900000000000011006 900000000000451002 +153321027 20020131 1 900000000000207008 122605005 122603003 0 116680003 900000000000011006 900000000000451002 +153321027 20030731 0 900000000000207008 122605005 122603003 0 116680003 900000000000011006 900000000000451002 +153322023 20020131 1 900000000000207008 122606006 122603003 0 116680003 900000000000011006 900000000000451002 +153322023 20030731 0 900000000000207008 122606006 122603003 0 116680003 900000000000011006 900000000000451002 +153323029 20020131 1 900000000000207008 122607002 122603003 0 116680003 900000000000011006 900000000000451002 +153323029 20030731 0 900000000000207008 122607002 122603003 0 116680003 900000000000011006 900000000000451002 +153324024 20020131 1 900000000000207008 122608007 122603003 0 116680003 900000000000011006 900000000000451002 +153324024 20030731 0 900000000000207008 122608007 122603003 0 116680003 900000000000011006 900000000000451002 +153325020 20020131 1 900000000000207008 122608007 309175003 0 116680003 900000000000011006 900000000000451002 +153325020 20080731 0 900000000000207008 122608007 309175003 0 116680003 900000000000011006 900000000000451002 +153326021 20020131 1 900000000000207008 122609004 309171007 0 116680003 900000000000011006 900000000000451002 +153326021 20080731 0 900000000000207008 122609004 309171007 0 116680003 900000000000011006 900000000000451002 +153327028 20020131 1 900000000000207008 122609004 127458004 0 116680003 900000000000011006 900000000000451002 +153327028 20150731 0 900000000000207008 122609004 127458004 0 116680003 900000000000011006 900000000000451002 +153328022 20020131 1 900000000000207008 122609004 258442002 0 116680003 900000000000011006 900000000000451002 +153328022 20030731 0 900000000000207008 122609004 258442002 0 116680003 900000000000011006 900000000000451002 +153330024 20020131 1 900000000000207008 122610009 122603003 0 116680003 900000000000011006 900000000000451002 +153330024 20030731 0 900000000000207008 122610009 122603003 0 116680003 900000000000011006 900000000000451002 +153333021 20020131 1 900000000000207008 122611008 122610009 0 116680003 900000000000011006 900000000000451002 +153333021 20080731 0 900000000000207008 122611008 122610009 0 116680003 900000000000011006 900000000000451002 +153334026 20020131 1 900000000000207008 122611008 309174004 0 116680003 900000000000011006 900000000000451002 +153334026 20080731 0 900000000000207008 122611008 309174004 0 116680003 900000000000011006 900000000000451002 +153337022 20020131 1 900000000000207008 122613006 122610009 0 116680003 900000000000011006 900000000000451002 +153338028 20020131 1 900000000000207008 122614000 122610009 0 116680003 900000000000011006 900000000000451002 +153338028 20150731 0 900000000000207008 122614000 122610009 0 116680003 900000000000011006 900000000000451002 +153339020 20020131 1 900000000000207008 122614000 309171007 0 116680003 900000000000011006 900000000000451002 +153339020 20080731 0 900000000000207008 122614000 309171007 0 116680003 900000000000011006 900000000000451002 +153341021 20020131 1 900000000000207008 122616003 122615004 0 116680003 900000000000011006 900000000000451002 +153341021 20030731 0 900000000000207008 122616003 122615004 0 116680003 900000000000011006 900000000000451002 +153342025 20020131 1 900000000000207008 122617007 122615004 0 116680003 900000000000011006 900000000000451002 +153342025 20030731 0 900000000000207008 122617007 122615004 0 116680003 900000000000011006 900000000000451002 +153343024 20020131 1 900000000000207008 122618002 122615004 0 116680003 900000000000011006 900000000000451002 +153343024 20030731 0 900000000000207008 122618002 122615004 0 116680003 900000000000011006 900000000000451002 +153344029 20020131 1 900000000000207008 122619005 127459007 0 116680003 900000000000011006 900000000000451002 +153344029 20060131 0 900000000000207008 122619005 127459007 0 116680003 900000000000011006 900000000000451002 +153346027 20020131 1 900000000000207008 122620004 127459007 0 116680003 900000000000011006 900000000000451002 +153348026 20020131 1 900000000000207008 122621000 122615004 0 116680003 900000000000011006 900000000000451002 +153348026 20030731 0 900000000000207008 122621000 122615004 0 116680003 900000000000011006 900000000000451002 +153349023 20020131 1 900000000000207008 122621000 122620004 0 116680003 900000000000011006 900000000000451002 +153350023 20020131 1 900000000000207008 122622007 122615004 0 116680003 900000000000011006 900000000000451002 +153350023 20030731 0 900000000000207008 122622007 122615004 0 116680003 900000000000011006 900000000000451002 +153351022 20020131 1 900000000000207008 122623002 127462005 0 116680003 900000000000011006 900000000000451002 +153351022 20030731 0 900000000000207008 122623002 127462005 0 116680003 900000000000011006 900000000000451002 +153351022 20080731 1 900000000000207008 122623002 127462005 0 116680003 900000000000011006 900000000000451002 +153352026 20020131 1 900000000000207008 122624008 122623002 0 116680003 900000000000011006 900000000000451002 +153353020 20020131 1 900000000000207008 122625009 122623002 0 116680003 900000000000011006 900000000000451002 +153354025 20020131 1 900000000000207008 122626005 122623002 0 116680003 900000000000011006 900000000000451002 +153355029 20020131 1 900000000000207008 122627001 127466008 0 116680003 900000000000011006 900000000000451002 +153356028 20020131 1 900000000000207008 122628006 127464006 0 116680003 900000000000011006 900000000000451002 +153356028 20030731 0 900000000000207008 122628006 127464006 0 116680003 900000000000011006 900000000000451002 +153356028 20190131 1 900000000000207008 122628006 127464006 0 116680003 900000000000011006 900000000000451002 +153357021 20020131 1 900000000000207008 122629003 127464006 0 116680003 900000000000011006 900000000000451002 +153357021 20030731 0 900000000000207008 122629003 127464006 0 116680003 900000000000011006 900000000000451002 +153360025 20020131 1 900000000000207008 122630008 127464006 0 116680003 900000000000011006 900000000000451002 +153363028 20020131 1 900000000000207008 122631007 127464006 0 116680003 900000000000011006 900000000000451002 +153363028 20080731 0 900000000000207008 122631007 127464006 0 116680003 900000000000011006 900000000000451002 +153364023 20020131 1 900000000000207008 122632000 122627001 0 116680003 900000000000011006 900000000000451002 +153365024 20020131 1 900000000000207008 122632000 119379005 0 116680003 900000000000011006 900000000000451002 +153365024 20030731 0 900000000000207008 122632000 119379005 0 116680003 900000000000011006 900000000000451002 +153366020 20020131 1 900000000000207008 122633005 128171007 0 116680003 900000000000011006 900000000000451002 +153366020 20030731 0 900000000000207008 122633005 128171007 0 116680003 900000000000011006 900000000000451002 +153367027 20020131 1 900000000000207008 122634004 128171007 0 116680003 900000000000011006 900000000000451002 +153367027 20030731 0 900000000000207008 122634004 128171007 0 116680003 900000000000011006 900000000000451002 +153368021 20020131 1 900000000000207008 122635003 122634004 0 116680003 900000000000011006 900000000000451002 +153368021 20030131 0 900000000000207008 122635003 122634004 0 116680003 900000000000011006 900000000000451002 +153370028 20020131 1 900000000000207008 122636002 122635003 0 116680003 900000000000011006 900000000000451002 +153371029 20020131 1 900000000000207008 122637006 122635003 0 116680003 900000000000011006 900000000000451002 +153372020 20020131 1 900000000000207008 122638001 119376003 0 116680003 900000000000011006 900000000000451002 +153372020 20080731 0 900000000000207008 122638001 119376003 0 116680003 900000000000011006 900000000000451002 +153373026 20020131 1 900000000000207008 122638001 119380008 0 116680003 900000000000011006 900000000000451002 +153374021 20020131 1 900000000000207008 122639009 122638001 0 116680003 900000000000011006 900000000000451002 +153374021 20080731 0 900000000000207008 122639009 122638001 0 116680003 900000000000011006 900000000000451002 +153376023 20020131 1 900000000000207008 122640006 122638001 0 116680003 900000000000011006 900000000000451002 +153376023 20080731 0 900000000000207008 122640006 122638001 0 116680003 900000000000011006 900000000000451002 +153380029 20020131 1 900000000000207008 122641005 122638001 0 116680003 900000000000011006 900000000000451002 +153380029 20080731 0 900000000000207008 122641005 122638001 0 116680003 900000000000011006 900000000000451002 +153381025 20020131 1 900000000000207008 122642003 122638001 0 116680003 900000000000011006 900000000000451002 +153382021 20020131 1 900000000000207008 122642003 122643008 0 116680003 900000000000011006 900000000000451002 +153382021 20030731 0 900000000000207008 122642003 122643008 0 116680003 900000000000011006 900000000000451002 +153383027 20020131 1 900000000000207008 122643008 119376003 0 116680003 900000000000011006 900000000000451002 +153383027 20080731 0 900000000000207008 122643008 119376003 0 116680003 900000000000011006 900000000000451002 +153384022 20020131 1 900000000000207008 122643008 119381007 0 116680003 900000000000011006 900000000000451002 +153385023 20020131 1 900000000000207008 122644002 122643008 0 116680003 900000000000011006 900000000000451002 +153386024 20020131 1 900000000000207008 122645001 122643008 0 116680003 900000000000011006 900000000000451002 +153387026 20020131 1 900000000000207008 122646000 122643008 0 116680003 900000000000011006 900000000000451002 +153388020 20020131 1 900000000000207008 122647009 309487001 0 116680003 900000000000011006 900000000000451002 +153389028 20020131 1 900000000000207008 122648004 309488006 0 116680003 900000000000011006 900000000000451002 +153389028 20170731 0 900000000000207008 122648004 309488006 0 116680003 900000000000011006 900000000000451002 +153389028 20190731 1 900000000000207008 122648004 309488006 0 116680003 900000000000011006 900000000000451002 +153390021 20020131 1 900000000000207008 122649007 309488006 0 116680003 900000000000011006 900000000000451002 +153390021 20080731 0 900000000000207008 122649007 309488006 0 116680003 900000000000011006 900000000000451002 +153390021 20190731 1 900000000000207008 122649007 309488006 0 116680003 900000000000011006 900000000000451002 +153394028 20020131 1 900000000000207008 122650007 309488006 0 116680003 900000000000011006 900000000000451002 +153394028 20080731 0 900000000000207008 122650007 309488006 0 116680003 900000000000011006 900000000000451002 +153394028 20090131 1 900000000000207008 122650007 309488006 0 116680003 900000000000011006 900000000000451002 +153394028 20170731 0 900000000000207008 122650007 309488006 0 116680003 900000000000011006 900000000000451002 +153394028 20200131 1 900000000000207008 122650007 309488006 0 116680003 900000000000011006 900000000000451002 +153396026 20020131 1 900000000000207008 122651006 309488006 0 116680003 900000000000011006 900000000000451002 +153396026 20080731 0 900000000000207008 122651006 309488006 0 116680003 900000000000011006 900000000000451002 +153396026 20190731 1 900000000000207008 122651006 309488006 0 116680003 900000000000011006 900000000000451002 +153397024 20020131 1 900000000000207008 122652004 309489003 0 116680003 900000000000011006 900000000000451002 +153397024 20080731 0 900000000000207008 122652004 309489003 0 116680003 900000000000011006 900000000000451002 +153398025 20020131 1 900000000000207008 122652004 119382000 0 116680003 900000000000011006 900000000000451002 +153398025 20030731 0 900000000000207008 122652004 119382000 0 116680003 900000000000011006 900000000000451002 +153399022 20020131 1 900000000000207008 122653009 309200000 0 116680003 900000000000011006 900000000000451002 +153399022 20100131 0 900000000000207008 122653009 309200000 0 116680003 900000000000011006 900000000000451002 +153400026 20020131 1 900000000000207008 122654003 122653009 0 116680003 900000000000011006 900000000000451002 +153406021 20020131 1 900000000000207008 122655002 122653009 0 116680003 900000000000011006 900000000000451002 +153407028 20020131 1 900000000000207008 122656001 309491006 0 116680003 900000000000011006 900000000000451002 +153408022 20020131 1 900000000000207008 122657005 309494003 0 116680003 900000000000011006 900000000000451002 +153409025 20020131 1 900000000000207008 122657005 127468009 0 116680003 900000000000011006 900000000000451002 +153409025 20030731 0 900000000000207008 122657005 127468009 0 116680003 900000000000011006 900000000000451002 +153409025 20190131 1 900000000000207008 122657005 127468009 0 116680003 900000000000011006 900000000000451002 +153410024 20020131 1 900000000000207008 122658000 127468009 0 116680003 900000000000011006 900000000000451002 +153411023 20020131 1 900000000000207008 122658000 309494003 0 116680003 900000000000011006 900000000000451002 +153411023 20030731 0 900000000000207008 122658000 309494003 0 116680003 900000000000011006 900000000000451002 +153412027 20020131 1 900000000000207008 122659008 127468009 0 116680003 900000000000011006 900000000000451002 +153413021 20020131 1 900000000000207008 122659008 122665008 0 116680003 900000000000011006 900000000000451002 +153416029 20020131 1 900000000000207008 122660003 122665008 0 116680003 900000000000011006 900000000000451002 +153416029 20080731 0 900000000000207008 122660003 122665008 0 116680003 900000000000011006 900000000000451002 +153417022 20020131 1 900000000000207008 122660003 127468009 0 116680003 900000000000011006 900000000000451002 +153417022 20080731 0 900000000000207008 122660003 127468009 0 116680003 900000000000011006 900000000000451002 +153419020 20020131 1 900000000000207008 122661004 309490007 0 116680003 900000000000011006 900000000000451002 +153420025 20020131 1 900000000000207008 122662006 122661004 0 116680003 900000000000011006 900000000000451002 +153421026 20020131 1 900000000000207008 122663001 122661004 0 116680003 900000000000011006 900000000000451002 +153422022 20020131 1 900000000000207008 122664007 309490007 0 116680003 900000000000011006 900000000000451002 +153423028 20020131 1 900000000000207008 122665008 309490007 0 116680003 900000000000011006 900000000000451002 +153423028 20230901 0 900000000000207008 122665008 309490007 0 116680003 900000000000011006 900000000000451002 +153424023 20020131 1 900000000000207008 122666009 122665008 0 116680003 900000000000011006 900000000000451002 +153425024 20020131 1 900000000000207008 122667000 309206006 0 116680003 900000000000011006 900000000000451002 +153426020 20020131 1 900000000000207008 122668005 127472008 0 116680003 900000000000011006 900000000000451002 +153426020 20050131 0 900000000000207008 122668005 127472008 0 116680003 900000000000011006 900000000000451002 +153426020 20080731 1 900000000000207008 122668005 127472008 0 116680003 900000000000011006 900000000000451002 +153427027 20020131 1 900000000000207008 122669002 127472008 0 116680003 900000000000011006 900000000000451002 +153427027 20030731 0 900000000000207008 122669002 127472008 0 116680003 900000000000011006 900000000000451002 +153430023 20020131 1 900000000000207008 122670001 309269002 0 116680003 900000000000011006 900000000000451002 +153434025 20020131 1 900000000000207008 122671002 309269002 0 116680003 900000000000011006 900000000000451002 +153435029 20020131 1 900000000000207008 122672009 309269002 0 116680003 900000000000011006 900000000000451002 +153436028 20020131 1 900000000000207008 122673004 309269002 0 116680003 900000000000011006 900000000000451002 +153436028 20240901 0 900000000000207008 122673004 309269002 0 116680003 900000000000011006 900000000000451002 +153438027 20020131 1 900000000000207008 122674005 309270001 0 116680003 900000000000011006 900000000000451002 +153438027 20030731 0 900000000000207008 122674005 309270001 0 116680003 900000000000011006 900000000000451002 +153440021 20020131 1 900000000000207008 122675006 122674005 0 116680003 900000000000011006 900000000000451002 +153442029 20020131 1 900000000000207008 122676007 309498000 0 116680003 900000000000011006 900000000000451002 +153444028 20020131 1 900000000000207008 122677003 122676007 0 116680003 900000000000011006 900000000000451002 +153445027 20020131 1 900000000000207008 122678008 122676007 0 116680003 900000000000011006 900000000000451002 +153447024 20020131 1 900000000000207008 122679000 122676007 0 116680003 900000000000011006 900000000000451002 +153449022 20020131 1 900000000000207008 122680002 309270001 0 116680003 900000000000011006 900000000000451002 +153449022 20030731 0 900000000000207008 122680002 309270001 0 116680003 900000000000011006 900000000000451002 +153451021 20020131 1 900000000000207008 122681003 122680002 0 116680003 900000000000011006 900000000000451002 +153452025 20020131 1 900000000000207008 122682005 309498000 0 116680003 900000000000011006 900000000000451002 +153453024 20020131 1 900000000000207008 122683000 122682005 0 116680003 900000000000011006 900000000000451002 +153454029 20020131 1 900000000000207008 122684006 122682005 0 116680003 900000000000011006 900000000000451002 +153455028 20020131 1 900000000000207008 122685007 122682005 0 116680003 900000000000011006 900000000000451002 +153456027 20020131 1 900000000000207008 122686008 309275006 0 116680003 900000000000011006 900000000000451002 +153457020 20020131 1 900000000000207008 122687004 309275006 0 116680003 900000000000011006 900000000000451002 +153459023 20020131 1 900000000000207008 122688009 127472008 0 116680003 900000000000011006 900000000000451002 +153459023 20030731 0 900000000000207008 122688009 127472008 0 116680003 900000000000011006 900000000000451002 +153460029 20020131 1 900000000000207008 122689001 309270001 0 116680003 900000000000011006 900000000000451002 +153460029 20030731 0 900000000000207008 122689001 309270001 0 116680003 900000000000011006 900000000000451002 +153462021 20020131 1 900000000000207008 122690005 309270001 0 116680003 900000000000011006 900000000000451002 +153462021 20030731 0 900000000000207008 122690005 309270001 0 116680003 900000000000011006 900000000000451002 +153465023 20020131 1 900000000000207008 122691009 309280002 0 116680003 900000000000011006 900000000000451002 +153466024 20020131 1 900000000000207008 122692002 309280002 0 116680003 900000000000011006 900000000000451002 +153468020 20020131 1 900000000000207008 122693007 128175003 0 116680003 900000000000011006 900000000000451002 +153469028 20020131 1 900000000000207008 122694001 122693007 0 116680003 900000000000011006 900000000000451002 +153471028 20020131 1 900000000000207008 122696004 122695000 0 116680003 900000000000011006 900000000000451002 +153471028 20110731 0 900000000000207008 122696004 122695000 0 116680003 900000000000011006 900000000000451002 +153472024 20020131 1 900000000000207008 122697008 309501000 0 116680003 900000000000011006 900000000000451002 +153472024 20080731 0 900000000000207008 122697008 309501000 0 116680003 900000000000011006 900000000000451002 +153473025 20020131 1 900000000000207008 122698003 309283000 0 116680003 900000000000011006 900000000000451002 +153474020 20020131 1 900000000000207008 122699006 309283000 0 116680003 900000000000011006 900000000000451002 +153474020 20080731 0 900000000000207008 122699006 309283000 0 116680003 900000000000011006 900000000000451002 +153477029 20020131 1 900000000000207008 122700007 127481002 0 116680003 900000000000011006 900000000000451002 +153484021 20020131 1 900000000000207008 122701006 122700007 0 116680003 900000000000011006 900000000000451002 +153484021 20100131 0 900000000000207008 122701006 122700007 0 116680003 900000000000011006 900000000000451002 +153486023 20020131 1 900000000000207008 122702004 127481002 0 116680003 900000000000011006 900000000000451002 +153487025 20020131 1 900000000000207008 122703009 127480001 0 116680003 900000000000011006 900000000000451002 +153487025 20030731 0 900000000000207008 122703009 127480001 0 116680003 900000000000011006 900000000000451002 +153488024 20020131 1 900000000000207008 122704003 127480001 0 116680003 900000000000011006 900000000000451002 +153488024 20030731 0 900000000000207008 122704003 127480001 0 116680003 900000000000011006 900000000000451002 +153489027 20020131 1 900000000000207008 122705002 127480001 0 116680003 900000000000011006 900000000000451002 +153489027 20030731 0 900000000000207008 122705002 127480001 0 116680003 900000000000011006 900000000000451002 +153490020 20020131 1 900000000000207008 122706001 122705002 0 116680003 900000000000011006 900000000000451002 +153491024 20020131 1 900000000000207008 122707005 127480001 0 116680003 900000000000011006 900000000000451002 +153491024 20030731 0 900000000000207008 122707005 127480001 0 116680003 900000000000011006 900000000000451002 +153492028 20020131 1 900000000000207008 122708000 127482009 0 116680003 900000000000011006 900000000000451002 +153492028 20080731 0 900000000000207008 122708000 127482009 0 116680003 900000000000011006 900000000000451002 +153493022 20020131 1 900000000000207008 122709008 122708000 0 116680003 900000000000011006 900000000000451002 +153495026 20020131 1 900000000000207008 122710003 127482009 0 116680003 900000000000011006 900000000000451002 +153498029 20020131 1 900000000000207008 122711004 127482009 0 116680003 900000000000011006 900000000000451002 +153498029 20080731 0 900000000000207008 122711004 127482009 0 116680003 900000000000011006 900000000000451002 +153499021 20020131 1 900000000000207008 122712006 127482009 0 116680003 900000000000011006 900000000000451002 +153499021 20110731 0 900000000000207008 122712006 127482009 0 116680003 900000000000011006 900000000000451002 +153500028 20020131 1 900000000000207008 122713001 127482009 0 116680003 900000000000011006 900000000000451002 +153500028 20030731 0 900000000000207008 122713001 127482009 0 116680003 900000000000011006 900000000000451002 +153501029 20020131 1 900000000000207008 122714007 122710003 0 116680003 900000000000011006 900000000000451002 +153502020 20020131 1 900000000000207008 122715008 122710003 0 116680003 900000000000011006 900000000000451002 +153502020 20080731 0 900000000000207008 122715008 122710003 0 116680003 900000000000011006 900000000000451002 +153503026 20020131 1 900000000000207008 122716009 122710003 0 116680003 900000000000011006 900000000000451002 +153504021 20020131 1 900000000000207008 122717000 127482009 0 116680003 900000000000011006 900000000000451002 +153504021 20030731 0 900000000000207008 122717000 127482009 0 116680003 900000000000011006 900000000000451002 +153505022 20020131 1 900000000000207008 122718005 127482009 0 116680003 900000000000011006 900000000000451002 +153505022 20030731 0 900000000000207008 122718005 127482009 0 116680003 900000000000011006 900000000000451002 +153506023 20020131 1 900000000000207008 122719002 127483004 0 116680003 900000000000011006 900000000000451002 +153508024 20020131 1 900000000000207008 122720008 127483004 0 116680003 900000000000011006 900000000000451002 +153509027 20020131 1 900000000000207008 122721007 127483004 0 116680003 900000000000011006 900000000000451002 +153510021 20020131 1 900000000000207008 122722000 119384004 0 116680003 900000000000011006 900000000000451002 +153511020 20020131 1 900000000000207008 122723005 119385003 0 116680003 900000000000011006 900000000000451002 +153512029 20020131 1 900000000000207008 122724004 119386002 0 116680003 900000000000011006 900000000000451002 +153512029 20030731 0 900000000000207008 122724004 119386002 0 116680003 900000000000011006 900000000000451002 +153513023 20020131 1 900000000000207008 122725003 119386002 0 116680003 900000000000011006 900000000000451002 +153513023 20030731 0 900000000000207008 122725003 119386002 0 116680003 900000000000011006 900000000000451002 +153514028 20020131 1 900000000000207008 122726002 119386002 0 116680003 900000000000011006 900000000000451002 +153514028 20030731 0 900000000000207008 122726002 119386002 0 116680003 900000000000011006 900000000000451002 +153515027 20020131 1 900000000000207008 122727006 119386002 0 116680003 900000000000011006 900000000000451002 +153515027 20030731 0 900000000000207008 122727006 119386002 0 116680003 900000000000011006 900000000000451002 +153516026 20020131 1 900000000000207008 122728001 309137003 0 116680003 900000000000011006 900000000000451002 +153517024 20020131 1 900000000000207008 122729009 309137003 0 116680003 900000000000011006 900000000000451002 +153521028 20020131 1 900000000000207008 122730004 309137003 0 116680003 900000000000011006 900000000000451002 +153525021 20020131 1 900000000000207008 122732007 127478007 0 116680003 900000000000011006 900000000000451002 +153525021 20080731 0 900000000000207008 122732007 127478007 0 116680003 900000000000011006 900000000000451002 +153526022 20020131 1 900000000000207008 122733002 122732007 0 116680003 900000000000011006 900000000000451002 +153527029 20020131 1 900000000000207008 122734008 122732007 0 116680003 900000000000011006 900000000000451002 +153528023 20020131 1 900000000000207008 122735009 127478007 0 116680003 900000000000011006 900000000000451002 +153528023 20080731 0 900000000000207008 122735009 127478007 0 116680003 900000000000011006 900000000000451002 +153530020 20020131 1 900000000000207008 122736005 119376003 0 116680003 900000000000011006 900000000000451002 +153530020 20080731 0 900000000000207008 122736005 119376003 0 116680003 900000000000011006 900000000000451002 +153531024 20020131 1 900000000000207008 122736005 258597009 0 116680003 900000000000011006 900000000000451002 +153531024 20040731 0 900000000000207008 122736005 258597009 0 116680003 900000000000011006 900000000000451002 +153532028 20020131 1 900000000000207008 122737001 122601001 0 116680003 900000000000011006 900000000000451002 +153533022 20020131 1 900000000000207008 122737001 309055005 0 116680003 900000000000011006 900000000000451002 +153533022 20030731 0 900000000000207008 122737001 309055005 0 116680003 900000000000011006 900000000000451002 +153534027 20020131 1 900000000000207008 122738006 122737001 0 116680003 900000000000011006 900000000000451002 +153535026 20020131 1 900000000000207008 122739003 122601001 0 116680003 900000000000011006 900000000000451002 +153737020 20020131 1 900000000000207008 122877000 122878005 0 116680003 900000000000011006 900000000000451002 +153737020 20040731 0 900000000000207008 122877000 122878005 0 116680003 900000000000011006 900000000000451002 +153741024 20020131 1 900000000000207008 122879002 309199003 0 116680003 900000000000011006 900000000000451002 +153741024 20040131 0 900000000000207008 122879002 309199003 0 116680003 900000000000011006 900000000000451002 +153742028 20020131 1 900000000000207008 122879002 119372001 0 116680003 900000000000011006 900000000000451002 +153742028 20040131 0 900000000000207008 122879002 119372001 0 116680003 900000000000011006 900000000000451002 +153744027 20020131 1 900000000000207008 122880004 122575003 0 116680003 900000000000011006 900000000000451002 +162404026 20020131 1 900000000000207008 127456000 271360006 0 116680003 900000000000011006 900000000000451002 +162404026 20030731 0 900000000000207008 127456000 271360006 0 116680003 900000000000011006 900000000000451002 +162405025 20020131 1 900000000000207008 127457009 119376003 0 116680003 900000000000011006 900000000000451002 +162406029 20020131 1 900000000000207008 127457009 127456000 0 116680003 900000000000011006 900000000000451002 +162407022 20020131 1 900000000000207008 127458004 309170008 0 116680003 900000000000011006 900000000000451002 +162407022 20030731 0 900000000000207008 127458004 309170008 0 116680003 900000000000011006 900000000000451002 +162408028 20020131 1 900000000000207008 127459007 309172000 0 116680003 900000000000011006 900000000000451002 +162408028 20030731 0 900000000000207008 127459007 309172000 0 116680003 900000000000011006 900000000000451002 +162409020 20020131 1 900000000000207008 127460002 127459007 0 116680003 900000000000011006 900000000000451002 +162410026 20020131 1 900000000000207008 127460002 119376003 0 116680003 900000000000011006 900000000000451002 +162410026 20030731 0 900000000000207008 127460002 119376003 0 116680003 900000000000011006 900000000000451002 +162416021 20020131 1 900000000000207008 127461003 127460002 0 116680003 900000000000011006 900000000000451002 +162417028 20020131 1 900000000000207008 127462005 258541006 0 116680003 900000000000011006 900000000000451002 +162418022 20020131 1 900000000000207008 127463000 127465007 0 116680003 900000000000011006 900000000000451002 +162418022 20130731 0 900000000000207008 127463000 127465007 0 116680003 900000000000011006 900000000000451002 +162419025 20020131 1 900000000000207008 127464006 127463000 0 116680003 900000000000011006 900000000000451002 +162420020 20020131 1 900000000000207008 127464006 127466008 0 116680003 900000000000011006 900000000000451002 +162421024 20020131 1 900000000000207008 127465007 123038009 0 116680003 900000000000011006 900000000000451002 +162421024 20030731 0 900000000000207008 127465007 123038009 0 116680003 900000000000011006 900000000000451002 +162422028 20020131 1 900000000000207008 127466008 127465007 0 116680003 900000000000011006 900000000000451002 +162422028 20030731 0 900000000000207008 127466008 127465007 0 116680003 900000000000011006 900000000000451002 +162423022 20020131 1 900000000000207008 127466008 258550008 0 116680003 900000000000011006 900000000000451002 +162423022 20050131 0 900000000000207008 127466008 258550008 0 116680003 900000000000011006 900000000000451002 +162424027 20020131 1 900000000000207008 127466008 119376003 0 116680003 900000000000011006 900000000000451002 +162424027 20030731 0 900000000000207008 127466008 119376003 0 116680003 900000000000011006 900000000000451002 +162425026 20020131 1 900000000000207008 127467004 127470000 0 116680003 900000000000011006 900000000000451002 +162425026 20030731 0 900000000000207008 127467004 127470000 0 116680003 900000000000011006 900000000000451002 +162426025 20020131 1 900000000000207008 127468009 127467004 0 116680003 900000000000011006 900000000000451002 +162427023 20020131 1 900000000000207008 127469001 123038009 0 116680003 900000000000011006 900000000000451002 +162427023 20040731 0 900000000000207008 127469001 123038009 0 116680003 900000000000011006 900000000000451002 +162428029 20020131 1 900000000000207008 127470000 127466008 0 116680003 900000000000011006 900000000000451002 +162428029 20040731 0 900000000000207008 127470000 127466008 0 116680003 900000000000011006 900000000000451002 +162429021 20020131 1 900000000000207008 127470000 127469001 0 116680003 900000000000011006 900000000000451002 +162431028 20020131 1 900000000000207008 127471001 258570002 0 116680003 900000000000011006 900000000000451002 +162432024 20020131 1 900000000000207008 127472008 119376003 0 116680003 900000000000011006 900000000000451002 +162433025 20020131 1 900000000000207008 127472008 127471001 0 116680003 900000000000011006 900000000000451002 +162434020 20020131 1 900000000000207008 127473003 123038009 0 116680003 900000000000011006 900000000000451002 +162434020 20040731 0 900000000000207008 127473003 123038009 0 116680003 900000000000011006 900000000000451002 +162435021 20020131 1 900000000000207008 127474009 127472008 0 116680003 900000000000011006 900000000000451002 +162435021 20050131 0 900000000000207008 127474009 127472008 0 116680003 900000000000011006 900000000000451002 +162436022 20020131 1 900000000000207008 127474009 127473003 0 116680003 900000000000011006 900000000000451002 +162438023 20020131 1 900000000000207008 127475005 119376003 0 116680003 900000000000011006 900000000000451002 +162438023 20080731 0 900000000000207008 127475005 119376003 0 116680003 900000000000011006 900000000000451002 +162439026 20020131 1 900000000000207008 127475005 309136007 0 116680003 900000000000011006 900000000000451002 +162439026 20080731 0 900000000000207008 127475005 309136007 0 116680003 900000000000011006 900000000000451002 +162441025 20020131 1 900000000000207008 127476006 123038009 0 116680003 900000000000011006 900000000000451002 +162441025 20040731 0 900000000000207008 127476006 123038009 0 116680003 900000000000011006 900000000000451002 +162443027 20020131 1 900000000000207008 127478007 127477002 0 116680003 900000000000011006 900000000000451002 +162443027 20030731 0 900000000000207008 127478007 127477002 0 116680003 900000000000011006 900000000000451002 +162444022 20020131 1 900000000000207008 127478007 309048008 0 116680003 900000000000011006 900000000000451002 +162444022 20040731 0 900000000000207008 127478007 309048008 0 116680003 900000000000011006 900000000000451002 +162445023 20020131 1 900000000000207008 127478007 119376003 0 116680003 900000000000011006 900000000000451002 +162446024 20020131 1 900000000000207008 127479004 123038009 0 116680003 900000000000011006 900000000000451002 +162446024 20030731 0 900000000000207008 127479004 123038009 0 116680003 900000000000011006 900000000000451002 +162447026 20020131 1 900000000000207008 127480001 127479004 0 116680003 900000000000011006 900000000000451002 +162448020 20020131 1 900000000000207008 127480001 309278008 0 116680003 900000000000011006 900000000000451002 +162449028 20020131 1 900000000000207008 127480001 119376003 0 116680003 900000000000011006 900000000000451002 +162449028 20030731 0 900000000000207008 127480001 119376003 0 116680003 900000000000011006 900000000000451002 +162451029 20020131 1 900000000000207008 127481002 119376003 0 116680003 900000000000011006 900000000000451002 +162451029 20030731 0 900000000000207008 127481002 119376003 0 116680003 900000000000011006 900000000000451002 +162452020 20020131 1 900000000000207008 127481002 119395005 0 116680003 900000000000011006 900000000000451002 +162453026 20020131 1 900000000000207008 127481002 309278008 0 116680003 900000000000011006 900000000000451002 +162453026 20080731 0 900000000000207008 127481002 309278008 0 116680003 900000000000011006 900000000000451002 +162454021 20020131 1 900000000000207008 127482009 309278008 0 116680003 900000000000011006 900000000000451002 +162454021 20030731 0 900000000000207008 127482009 309278008 0 116680003 900000000000011006 900000000000451002 +162455022 20020131 1 900000000000207008 127482009 119376003 0 116680003 900000000000011006 900000000000451002 +162455022 20080731 0 900000000000207008 127482009 119376003 0 116680003 900000000000011006 900000000000451002 +162456023 20020131 1 900000000000207008 127483004 119376003 0 116680003 900000000000011006 900000000000451002 +162456023 20080731 0 900000000000207008 127483004 119376003 0 116680003 900000000000011006 900000000000451002 +162457025 20020131 1 900000000000207008 127483004 127476006 0 116680003 900000000000011006 900000000000451002 +163190026 20020131 1 900000000000207008 128154006 123038009 0 116680003 900000000000011006 900000000000451002 +163190026 20040731 0 900000000000207008 128154006 123038009 0 116680003 900000000000011006 900000000000451002 +163193029 20020131 1 900000000000207008 128155007 123038009 0 116680003 900000000000011006 900000000000451002 +163193029 20040731 0 900000000000207008 128155007 123038009 0 116680003 900000000000011006 900000000000451002 +163194024 20020131 1 900000000000207008 128156008 119376003 0 116680003 900000000000011006 900000000000451002 +163194024 20080731 0 900000000000207008 128156008 119376003 0 116680003 900000000000011006 900000000000451002 +163195020 20020131 1 900000000000207008 128156008 119392008 0 116680003 900000000000011006 900000000000451002 +163196021 20020131 1 900000000000207008 128157004 119376003 0 116680003 900000000000011006 900000000000451002 +163196021 20080731 0 900000000000207008 128157004 119376003 0 116680003 900000000000011006 900000000000451002 +163197028 20020131 1 900000000000207008 128157004 119398007 0 116680003 900000000000011006 900000000000451002 +163198022 20020131 1 900000000000207008 128158009 119376003 0 116680003 900000000000011006 900000000000451002 +163198022 20080731 0 900000000000207008 128158009 119376003 0 116680003 900000000000011006 900000000000451002 +163199025 20020131 1 900000000000207008 128158009 119391001 0 116680003 900000000000011006 900000000000451002 +163200027 20020131 1 900000000000207008 128158009 309171007 0 116680003 900000000000011006 900000000000451002 +163200027 20040731 0 900000000000207008 128158009 309171007 0 116680003 900000000000011006 900000000000451002 +163201028 20020131 1 900000000000207008 128159001 119376003 0 116680003 900000000000011006 900000000000451002 +163201028 20030731 0 900000000000207008 128159001 119376003 0 116680003 900000000000011006 900000000000451002 +163202024 20020131 1 900000000000207008 128159001 119382000 0 116680003 900000000000011006 900000000000451002 +163204020 20020131 1 900000000000207008 128160006 119401005 0 116680003 900000000000011006 900000000000451002 +163205021 20020131 1 900000000000207008 128161005 119400006 0 116680003 900000000000011006 900000000000451002 +163206022 20020131 1 900000000000207008 128162003 119376003 0 116680003 900000000000011006 900000000000451002 +163207029 20020131 1 900000000000207008 128162003 119402003 0 116680003 900000000000011006 900000000000451002 +163207029 20040731 0 900000000000207008 128162003 119402003 0 116680003 900000000000011006 900000000000451002 +163208023 20020131 1 900000000000207008 128162003 309165001 0 116680003 900000000000011006 900000000000451002 +163208023 20110131 0 900000000000207008 128162003 309165001 0 116680003 900000000000011006 900000000000451002 +163209026 20020131 1 900000000000207008 128163008 119396006 0 116680003 900000000000011006 900000000000451002 +163210020 20020131 1 900000000000207008 128164002 119376003 0 116680003 900000000000011006 900000000000451002 +163211024 20020131 1 900000000000207008 128164002 119399004 0 116680003 900000000000011006 900000000000451002 +163211024 20030731 0 900000000000207008 128164002 119399004 0 116680003 900000000000011006 900000000000451002 +163212028 20020131 1 900000000000207008 128164002 258598004 0 116680003 900000000000011006 900000000000451002 +163212028 20050131 0 900000000000207008 128164002 258598004 0 116680003 900000000000011006 900000000000451002 +163213022 20020131 1 900000000000207008 128165001 119376003 0 116680003 900000000000011006 900000000000451002 +163214027 20020131 1 900000000000207008 128165001 119344008 0 116680003 900000000000011006 900000000000451002 +163215026 20020131 1 900000000000207008 128166000 127462005 0 116680003 900000000000011006 900000000000451002 +163216025 20020131 1 900000000000207008 128166000 119376003 0 116680003 900000000000011006 900000000000451002 +163217023 20020131 1 900000000000207008 128167009 119376003 0 116680003 900000000000011006 900000000000451002 +163217023 20080731 0 900000000000207008 128167009 119376003 0 116680003 900000000000011006 900000000000451002 +163218029 20020131 1 900000000000207008 128167009 119388001 0 116680003 900000000000011006 900000000000451002 +163219021 20020131 1 900000000000207008 128168004 119383005 0 116680003 900000000000011006 900000000000451002 +163220026 20020131 1 900000000000207008 128168004 127466008 0 116680003 900000000000011006 900000000000451002 +163220026 20080731 0 900000000000207008 128168004 127466008 0 116680003 900000000000011006 900000000000451002 +163221027 20020131 1 900000000000207008 128169007 309052008 0 116680003 900000000000011006 900000000000451002 +163221027 20040731 0 900000000000207008 128169007 309052008 0 116680003 900000000000011006 900000000000451002 +163222023 20020131 1 900000000000207008 128169007 119376003 0 116680003 900000000000011006 900000000000451002 +163222023 20080731 0 900000000000207008 128169007 119376003 0 116680003 900000000000011006 900000000000451002 +163223029 20020131 1 900000000000207008 128169007 119397002 0 116680003 900000000000011006 900000000000451002 +163224024 20020131 1 900000000000207008 128170008 119376003 0 116680003 900000000000011006 900000000000451002 +163224024 20080731 0 900000000000207008 128170008 119376003 0 116680003 900000000000011006 900000000000451002 +163225020 20020131 1 900000000000207008 128170008 119386002 0 116680003 900000000000011006 900000000000451002 +163228022 20020131 1 900000000000207008 128171007 119376003 0 116680003 900000000000011006 900000000000451002 +163228022 20040731 0 900000000000207008 128171007 119376003 0 116680003 900000000000011006 900000000000451002 +163229025 20020131 1 900000000000207008 128171007 119379005 0 116680003 900000000000011006 900000000000451002 +163230024 20020131 1 900000000000207008 128172000 119376003 0 116680003 900000000000011006 900000000000451002 +163230024 20080731 0 900000000000207008 128172000 119376003 0 116680003 900000000000011006 900000000000451002 +163231023 20020131 1 900000000000207008 128172000 119389009 0 116680003 900000000000011006 900000000000451002 +163232027 20020131 1 900000000000207008 128173005 119376003 0 116680003 900000000000011006 900000000000451002 +163232027 20080731 0 900000000000207008 128173005 119376003 0 116680003 900000000000011006 900000000000451002 +163233021 20020131 1 900000000000207008 128173005 119390000 0 116680003 900000000000011006 900000000000451002 +163234026 20020131 1 900000000000207008 128174004 119393003 0 116680003 900000000000011006 900000000000451002 +163236029 20020131 1 900000000000207008 128175003 309278008 0 116680003 900000000000011006 900000000000451002 +163237022 20020131 1 900000000000207008 128175003 119376003 0 116680003 900000000000011006 900000000000451002 +163237022 20030731 0 900000000000207008 128175003 119376003 0 116680003 900000000000011006 900000000000451002 +163238028 20020131 1 900000000000207008 128175003 119394009 0 116680003 900000000000011006 900000000000451002 +214083026 20020131 1 900000000000207008 40511003 123038009 0 116680003 900000000000011006 900000000000451002 +214083026 20040731 0 900000000000207008 40511003 123038009 0 116680003 900000000000011006 900000000000451002 +226943024 20020131 1 900000000000207008 48469005 119376003 0 116680003 900000000000011006 900000000000451002 +226943024 20030731 0 900000000000207008 48469005 119376003 0 116680003 900000000000011006 900000000000451002 +313856022 20020131 1 900000000000207008 363311008 123038009 0 116680003 900000000000011006 900000000000451002 +313856022 20030731 0 900000000000207008 363311008 123038009 0 116680003 900000000000011006 900000000000451002 +313877020 20020131 1 900000000000207008 363328006 363311008 0 116680003 900000000000011006 900000000000451002 +313878026 20020131 1 900000000000207008 363329003 258603007 0 116680003 900000000000011006 900000000000451002 +318043029 20020131 1 900000000000207008 167913002 119359002 0 116680003 900000000000011006 900000000000451002 +318202022 20020131 1 900000000000207008 168145009 258578009 0 116680003 900000000000011006 900000000000451002 +318202022 20040731 0 900000000000207008 168145009 258578009 0 116680003 900000000000011006 900000000000451002 +341240023 20020131 1 900000000000207008 258553005 258550008 0 116680003 900000000000011006 900000000000451002 +341240023 20050131 0 900000000000207008 258553005 258550008 0 116680003 900000000000011006 900000000000451002 +427538027 20020131 1 900000000000207008 369611008 127466008 0 116680003 900000000000011006 900000000000451002 +427538027 20030731 0 900000000000207008 369611008 127466008 0 116680003 900000000000011006 900000000000451002 +427540021 20020131 1 900000000000207008 369613006 309079007 0 116680003 900000000000011006 900000000000451002 +427540021 20080731 0 900000000000207008 369613006 309079007 0 116680003 900000000000011006 900000000000451002 +427541020 20020131 1 900000000000207008 369614000 309493009 0 116680003 900000000000011006 900000000000451002 +427542029 20020131 1 900000000000207008 369615004 309491006 0 116680003 900000000000011006 900000000000451002 +427542029 20030731 0 900000000000207008 369615004 309491006 0 116680003 900000000000011006 900000000000451002 +427543023 20020131 1 900000000000207008 369616003 122656001 0 116680003 900000000000011006 900000000000451002 +427544028 20020131 1 900000000000207008 369617007 122656001 0 116680003 900000000000011006 900000000000451002 +427544028 20080731 0 900000000000207008 369617007 122656001 0 116680003 900000000000011006 900000000000451002 +427545027 20020131 1 900000000000207008 369618002 309278008 0 116680003 900000000000011006 900000000000451002 +427545027 20080731 0 900000000000207008 369618002 309278008 0 116680003 900000000000011006 900000000000451002 +428036024 20020131 1 900000000000207008 370108001 110928002 0 116680003 900000000000011006 900000000000451002 +526326024 20020131 1 900000000000207008 110897001 38266002 0 123005000 900000000000011006 900000000000451002 +526326024 20050131 1 900000000000207008 110897001 38266002 0 123005000 900000000000227009 900000000000451002 +526326024 20070731 0 900000000000207008 110897001 38266002 0 123005000 900000000000227009 900000000000451002 +526749024 20020131 1 900000000000207008 110925004 38266002 0 123005000 900000000000011006 900000000000451002 +526749024 20050131 1 900000000000207008 110925004 38266002 0 123005000 900000000000227009 900000000000451002 +526749024 20070731 0 900000000000207008 110925004 38266002 0 123005000 900000000000227009 900000000000451002 +1656684023 20020731 1 900000000000207008 110893002 119325001 0 116680003 900000000000011006 900000000000451002 +1656684023 20080731 0 900000000000207008 110893002 119325001 0 116680003 900000000000011006 900000000000451002 +1664870026 20020731 1 900000000000207008 309066003 119325001 0 116680003 900000000000011006 900000000000451002 +1664870026 20080731 0 900000000000207008 309066003 119325001 0 116680003 900000000000011006 900000000000451002 +1664871027 20020731 1 900000000000207008 309067007 119325001 0 116680003 900000000000011006 900000000000451002 +1664871027 20080731 0 900000000000207008 309067007 119325001 0 116680003 900000000000011006 900000000000451002 +1664871027 20090131 1 900000000000207008 309067007 119325001 0 116680003 900000000000011006 900000000000451002 +1664872023 20020731 1 900000000000207008 309068002 119325001 0 116680003 900000000000011006 900000000000451002 +1664872023 20080731 0 900000000000207008 309068002 119325001 0 116680003 900000000000011006 900000000000451002 +1664911023 20020731 1 900000000000207008 309546004 127457009 0 116680003 900000000000011006 900000000000451002 +1664911023 20080731 0 900000000000207008 309546004 127457009 0 116680003 900000000000011006 900000000000451002 +1664912027 20020731 1 900000000000207008 309547008 127457009 0 116680003 900000000000011006 900000000000451002 +1664912027 20080731 0 900000000000207008 309547008 127457009 0 116680003 900000000000011006 900000000000451002 +1664913021 20020731 1 900000000000207008 309548003 127457009 0 116680003 900000000000011006 900000000000451002 +1664913021 20080731 0 900000000000207008 309548003 127457009 0 116680003 900000000000011006 900000000000451002 +1664925024 20020731 1 900000000000207008 119295008 302793009 0 116680003 900000000000011006 900000000000451002 +1664925024 20040731 0 900000000000207008 119295008 302793009 0 116680003 900000000000011006 900000000000451002 +1703620026 20020731 1 900000000000207008 371780008 123038009 0 116680003 900000000000011006 900000000000451002 +1703622023 20020731 1 900000000000207008 371782000 371783005 0 116680003 900000000000011006 900000000000451002 +1703623029 20020731 1 900000000000207008 371783005 371780008 0 116680003 900000000000011006 900000000000451002 +1703624024 20020731 1 900000000000207008 371784004 371780008 0 116680003 900000000000011006 900000000000451002 +1711508026 20020731 1 900000000000207008 373101006 110894008 0 116680003 900000000000011006 900000000000451002 +1711509023 20020731 1 900000000000207008 373102004 127457009 0 116680003 900000000000011006 900000000000451002 +1711509023 20080731 0 900000000000207008 373102004 127457009 0 116680003 900000000000011006 900000000000451002 +1711510029 20020731 1 900000000000207008 373103009 110894008 0 116680003 900000000000011006 900000000000451002 +1712990023 20020731 1 900000000000207008 373192005 258589002 0 116680003 900000000000011006 900000000000451002 +1712990023 20080731 0 900000000000207008 373192005 258589002 0 116680003 900000000000011006 900000000000451002 +1712991022 20020731 1 900000000000207008 373193000 258589002 0 116680003 900000000000011006 900000000000451002 +1712991022 20080731 0 900000000000207008 373193000 258589002 0 116680003 900000000000011006 900000000000451002 +1713790024 20020731 1 900000000000207008 373826004 302793009 0 116680003 900000000000011006 900000000000451002 +1713790024 20040731 0 900000000000207008 373826004 302793009 0 116680003 900000000000011006 900000000000451002 +1914919020 20030131 1 900000000000207008 110893002 314818000 0 118169006 900000000000011006 900000000000451002 +1914919020 20080731 0 900000000000207008 110893002 314818000 0 118169006 900000000000011006 900000000000451002 +1914920025 20030131 1 900000000000207008 110893002 39937001 0 118169006 900000000000011006 900000000000451002 +1914920025 20190731 1 900000000000207008 110893002 39937001 1 118169006 900000000000011006 900000000000451002 +1914921026 20030131 1 900000000000207008 110893002 116147009 0 118171006 900000000000011006 900000000000451002 +1914921026 20030731 0 900000000000207008 110893002 116147009 0 118171006 900000000000011006 900000000000451002 +1914922022 20030131 1 900000000000207008 110893002 56757003 0 118171006 900000000000011006 900000000000451002 +1914922022 20080731 0 900000000000207008 110893002 56757003 0 118171006 900000000000011006 900000000000451002 +1914923028 20030131 1 900000000000207008 110894008 76752008 0 118169006 900000000000011006 900000000000451002 +1914923028 20190731 1 900000000000207008 110894008 76752008 1 118169006 900000000000011006 900000000000451002 +1914924023 20030131 1 900000000000207008 110894008 85756007 0 118169006 900000000000011006 900000000000451002 +1914924023 20030731 0 900000000000207008 110894008 85756007 0 118169006 900000000000011006 900000000000451002 +1914925024 20030131 1 900000000000207008 110894008 116147009 0 118171006 900000000000011006 900000000000451002 +1914925024 20030731 0 900000000000207008 110894008 116147009 0 118171006 900000000000011006 900000000000451002 +1914929029 20030131 1 900000000000207008 110896005 85756007 0 118169006 900000000000011006 900000000000451002 +1914929029 20030731 0 900000000000207008 110896005 85756007 0 118169006 900000000000011006 900000000000451002 +1914930023 20030131 1 900000000000207008 110896005 116147009 0 118171006 900000000000011006 900000000000451002 +1914930023 20030731 0 900000000000207008 110896005 116147009 0 118171006 900000000000011006 900000000000451002 +1914931022 20030131 1 900000000000207008 110898006 59441001 0 118169006 900000000000011006 900000000000451002 +1914931022 20190731 1 900000000000207008 110898006 59441001 1 118169006 900000000000011006 900000000000451002 +1914932026 20030131 1 900000000000207008 110898006 85756007 0 118169006 900000000000011006 900000000000451002 +1914932026 20030731 0 900000000000207008 110898006 85756007 0 118169006 900000000000011006 900000000000451002 +1914933020 20030131 1 900000000000207008 110898006 116147009 0 118171006 900000000000011006 900000000000451002 +1914933020 20030731 0 900000000000207008 110898006 116147009 0 118171006 900000000000011006 900000000000451002 +1914934025 20030131 1 900000000000207008 110899003 24142002 0 118169006 900000000000011006 900000000000451002 +1914934025 20190731 1 900000000000207008 110899003 24142002 1 118169006 900000000000011006 900000000000451002 +1914935029 20030131 1 900000000000207008 110899003 85756007 0 118169006 900000000000011006 900000000000451002 +1914935029 20030731 0 900000000000207008 110899003 85756007 0 118169006 900000000000011006 900000000000451002 +1914936028 20030131 1 900000000000207008 110899003 116147009 0 118171006 900000000000011006 900000000000451002 +1914936028 20030731 0 900000000000207008 110899003 116147009 0 118171006 900000000000011006 900000000000451002 +1914937021 20030131 1 900000000000207008 110900008 127954009 0 118169006 900000000000011006 900000000000451002 +1914937021 20190731 1 900000000000207008 110900008 127954009 1 118169006 900000000000011006 900000000000451002 +1914938027 20030131 1 900000000000207008 110900008 85756007 0 118169006 900000000000011006 900000000000451002 +1914938027 20030731 0 900000000000207008 110900008 85756007 0 118169006 900000000000011006 900000000000451002 +1914939024 20030131 1 900000000000207008 110900008 116147009 0 118171006 900000000000011006 900000000000451002 +1914939024 20030731 0 900000000000207008 110900008 116147009 0 118171006 900000000000011006 900000000000451002 +1914940021 20030131 1 900000000000207008 110901007 272673000 0 118169006 900000000000011006 900000000000451002 +1914940021 20190731 1 900000000000207008 110901007 272673000 1 118169006 900000000000011006 900000000000451002 +1914941020 20030131 1 900000000000207008 110901007 85756007 0 118169006 900000000000011006 900000000000451002 +1914941020 20030731 0 900000000000207008 110901007 85756007 0 118169006 900000000000011006 900000000000451002 +1914942029 20030131 1 900000000000207008 110901007 116147009 0 118171006 900000000000011006 900000000000451002 +1914942029 20030731 0 900000000000207008 110901007 116147009 0 118171006 900000000000011006 900000000000451002 +1914943023 20030131 1 900000000000207008 110902000 58675001 0 118169006 900000000000011006 900000000000451002 +1914943023 20190731 1 900000000000207008 110902000 58675001 1 118169006 900000000000011006 900000000000451002 +1914944028 20030131 1 900000000000207008 110902000 85756007 0 118169006 900000000000011006 900000000000451002 +1914944028 20030731 0 900000000000207008 110902000 85756007 0 118169006 900000000000011006 900000000000451002 +1914945027 20030131 1 900000000000207008 110902000 116147009 0 118171006 900000000000011006 900000000000451002 +1914945027 20030731 0 900000000000207008 110902000 116147009 0 118171006 900000000000011006 900000000000451002 +1914946026 20030131 1 900000000000207008 110903005 45206002 0 118169006 900000000000011006 900000000000451002 +1914946026 20190731 1 900000000000207008 110903005 45206002 1 118169006 900000000000011006 900000000000451002 +1914947024 20030131 1 900000000000207008 110903005 85756007 0 118169006 900000000000011006 900000000000451002 +1914947024 20030731 0 900000000000207008 110903005 85756007 0 118169006 900000000000011006 900000000000451002 +1914948025 20030131 1 900000000000207008 110903005 116147009 0 118171006 900000000000011006 900000000000451002 +1914948025 20030731 0 900000000000207008 110903005 116147009 0 118171006 900000000000011006 900000000000451002 +1914949022 20030131 1 900000000000207008 110904004 361071000 0 118169006 900000000000011006 900000000000451002 +1914949022 20040731 0 900000000000207008 110904004 361071000 0 118169006 900000000000011006 900000000000451002 +1914950022 20030131 1 900000000000207008 110904004 85756007 0 118169006 900000000000011006 900000000000451002 +1914950022 20030731 0 900000000000207008 110904004 85756007 0 118169006 900000000000011006 900000000000451002 +1914951021 20030131 1 900000000000207008 110904004 116147009 0 118171006 900000000000011006 900000000000451002 +1914951021 20030731 0 900000000000207008 110904004 116147009 0 118171006 900000000000011006 900000000000451002 +1914952025 20030131 1 900000000000207008 110905003 71836000 0 118169006 900000000000011006 900000000000451002 +1914952025 20190731 1 900000000000207008 110905003 71836000 1 118169006 900000000000011006 900000000000451002 +1914953024 20030131 1 900000000000207008 110905003 85756007 0 118169006 900000000000011006 900000000000451002 +1914953024 20030731 0 900000000000207008 110905003 85756007 0 118169006 900000000000011006 900000000000451002 +1914954029 20030131 1 900000000000207008 110905003 116147009 0 118171006 900000000000011006 900000000000451002 +1914954029 20030731 0 900000000000207008 110905003 116147009 0 118171006 900000000000011006 900000000000451002 +1914955028 20030131 1 900000000000207008 110906002 82094008 0 118169006 900000000000011006 900000000000451002 +1914955028 20190731 1 900000000000207008 110906002 82094008 1 118169006 900000000000011006 900000000000451002 +1914956027 20030131 1 900000000000207008 110906002 85756007 0 118169006 900000000000011006 900000000000451002 +1914956027 20030731 0 900000000000207008 110906002 85756007 0 118169006 900000000000011006 900000000000451002 +1914957020 20030131 1 900000000000207008 110906002 116147009 0 118171006 900000000000011006 900000000000451002 +1914957020 20030731 0 900000000000207008 110906002 116147009 0 118171006 900000000000011006 900000000000451002 +1914958026 20030131 1 900000000000207008 110907006 61563008 0 118169006 900000000000011006 900000000000451002 +1914958026 20190731 1 900000000000207008 110907006 61563008 1 118169006 900000000000011006 900000000000451002 +1914959023 20030131 1 900000000000207008 110907006 116147009 0 118171006 900000000000011006 900000000000451002 +1914959023 20030731 0 900000000000207008 110907006 116147009 0 118171006 900000000000011006 900000000000451002 +1914960029 20030131 1 900000000000207008 110908001 4596009 0 118169006 900000000000011006 900000000000451002 +1914960029 20190731 1 900000000000207008 110908001 4596009 1 118169006 900000000000011006 900000000000451002 +1914961025 20030131 1 900000000000207008 110908001 85756007 0 118169006 900000000000011006 900000000000451002 +1914961025 20030731 0 900000000000207008 110908001 85756007 0 118169006 900000000000011006 900000000000451002 +1914962021 20030131 1 900000000000207008 110908001 116147009 0 118171006 900000000000011006 900000000000451002 +1914962021 20030731 0 900000000000207008 110908001 116147009 0 118171006 900000000000011006 900000000000451002 +1914963027 20030131 1 900000000000207008 110909009 46105003 0 118169006 900000000000011006 900000000000451002 +1914963027 20190731 1 900000000000207008 110909009 46105003 1 118169006 900000000000011006 900000000000451002 +1914964022 20030131 1 900000000000207008 110909009 85756007 0 118169006 900000000000011006 900000000000451002 +1914964022 20030731 0 900000000000207008 110909009 85756007 0 118169006 900000000000011006 900000000000451002 +1914965023 20030131 1 900000000000207008 110909009 116147009 0 118171006 900000000000011006 900000000000451002 +1914965023 20030731 0 900000000000207008 110909009 116147009 0 118171006 900000000000011006 900000000000451002 +1914966024 20030131 1 900000000000207008 110910004 39607008 0 118169006 900000000000011006 900000000000451002 +1914966024 20190731 1 900000000000207008 110910004 39607008 1 118169006 900000000000011006 900000000000451002 +1914967026 20030131 1 900000000000207008 110910004 85756007 0 118169006 900000000000011006 900000000000451002 +1914967026 20030731 0 900000000000207008 110910004 85756007 0 118169006 900000000000011006 900000000000451002 +1914968020 20030131 1 900000000000207008 110910004 116147009 0 118171006 900000000000011006 900000000000451002 +1914968020 20030731 0 900000000000207008 110910004 116147009 0 118171006 900000000000011006 900000000000451002 +1914969028 20030131 1 900000000000207008 110912007 85756007 0 118169006 900000000000011006 900000000000451002 +1914969028 20030731 0 900000000000207008 110912007 85756007 0 118169006 900000000000011006 900000000000451002 +1914970027 20030131 1 900000000000207008 110912007 955009 0 118169006 900000000000011006 900000000000451002 +1914970027 20190731 1 900000000000207008 110912007 955009 1 118169006 900000000000011006 900000000000451002 +1914971028 20030131 1 900000000000207008 110912007 116147009 0 118171006 900000000000011006 900000000000451002 +1914971028 20030731 0 900000000000207008 110912007 116147009 0 118171006 900000000000011006 900000000000451002 +1914972024 20030131 1 900000000000207008 110913002 85756007 0 118169006 900000000000011006 900000000000451002 +1914972024 20030731 0 900000000000207008 110913002 85756007 0 118169006 900000000000011006 900000000000451002 +1914973025 20030131 1 900000000000207008 110913002 91381003 0 118169006 900000000000011006 900000000000451002 +1914973025 20190731 1 900000000000207008 110913002 91381003 1 118169006 900000000000011006 900000000000451002 +1914974020 20030131 1 900000000000207008 110913002 116147009 0 118171006 900000000000011006 900000000000451002 +1914974020 20030731 0 900000000000207008 110913002 116147009 0 118171006 900000000000011006 900000000000451002 +1914975021 20030131 1 900000000000207008 110914008 11339004 0 118169006 900000000000011006 900000000000451002 +1914975021 20190731 1 900000000000207008 110914008 11339004 1 118169006 900000000000011006 900000000000451002 +1914976022 20030131 1 900000000000207008 110914008 85756007 0 118169006 900000000000011006 900000000000451002 +1914976022 20030731 0 900000000000207008 110914008 85756007 0 118169006 900000000000011006 900000000000451002 +1914977029 20030131 1 900000000000207008 110914008 116147009 0 118171006 900000000000011006 900000000000451002 +1914977029 20030731 0 900000000000207008 110914008 116147009 0 118171006 900000000000011006 900000000000451002 +1914978023 20030131 1 900000000000207008 110915009 73834008 0 118169006 900000000000011006 900000000000451002 +1914978023 20190731 1 900000000000207008 110915009 73834008 1 118169006 900000000000011006 900000000000451002 +1914979026 20030131 1 900000000000207008 110915009 85756007 0 118169006 900000000000011006 900000000000451002 +1914979026 20030731 0 900000000000207008 110915009 85756007 0 118169006 900000000000011006 900000000000451002 +1914980028 20030131 1 900000000000207008 110915009 116147009 0 118171006 900000000000011006 900000000000451002 +1914980028 20030731 0 900000000000207008 110915009 116147009 0 118171006 900000000000011006 900000000000451002 +1914981029 20030131 1 900000000000207008 110916005 64353002 0 118169006 900000000000011006 900000000000451002 +1914981029 20190731 1 900000000000207008 110916005 64353002 1 118169006 900000000000011006 900000000000451002 +1914982020 20030131 1 900000000000207008 110916005 85756007 0 118169006 900000000000011006 900000000000451002 +1914982020 20030731 0 900000000000207008 110916005 85756007 0 118169006 900000000000011006 900000000000451002 +1914983026 20030131 1 900000000000207008 110916005 116147009 0 118171006 900000000000011006 900000000000451002 +1914983026 20030731 0 900000000000207008 110916005 116147009 0 118171006 900000000000011006 900000000000451002 +1914984021 20030131 1 900000000000207008 110917001 44067009 0 118169006 900000000000011006 900000000000451002 +1914984021 20190731 1 900000000000207008 110917001 44067009 1 118169006 900000000000011006 900000000000451002 +1914985022 20030131 1 900000000000207008 110917001 85756007 0 118169006 900000000000011006 900000000000451002 +1914985022 20030731 0 900000000000207008 110917001 85756007 0 118169006 900000000000011006 900000000000451002 +1914986023 20030131 1 900000000000207008 110917001 116147009 0 118171006 900000000000011006 900000000000451002 +1914986023 20030731 0 900000000000207008 110917001 116147009 0 118171006 900000000000011006 900000000000451002 +1914987025 20030131 1 900000000000207008 110918006 23792002 0 118169006 900000000000011006 900000000000451002 +1914987025 20190731 1 900000000000207008 110918006 23792002 1 118169006 900000000000011006 900000000000451002 +1914988024 20030131 1 900000000000207008 110918006 85756007 0 118169006 900000000000011006 900000000000451002 +1914988024 20030731 0 900000000000207008 110918006 85756007 0 118169006 900000000000011006 900000000000451002 +1914989027 20030131 1 900000000000207008 110918006 116147009 0 118171006 900000000000011006 900000000000451002 +1914989027 20030731 0 900000000000207008 110918006 116147009 0 118171006 900000000000011006 900000000000451002 +1914990020 20030131 1 900000000000207008 110919003 76848001 0 118169006 900000000000011006 900000000000451002 +1914990020 20190731 1 900000000000207008 110919003 76848001 1 118169006 900000000000011006 900000000000451002 +1914991024 20030131 1 900000000000207008 110919003 85756007 0 118169006 900000000000011006 900000000000451002 +1914991024 20030731 0 900000000000207008 110919003 85756007 0 118169006 900000000000011006 900000000000451002 +1914992028 20030131 1 900000000000207008 110919003 116147009 0 118171006 900000000000011006 900000000000451002 +1914992028 20030731 0 900000000000207008 110919003 116147009 0 118171006 900000000000011006 900000000000451002 +1914993022 20030131 1 900000000000207008 110920009 44567001 0 118169006 900000000000011006 900000000000451002 +1914993022 20190731 1 900000000000207008 110920009 44567001 1 118169006 900000000000011006 900000000000451002 +1914994027 20030131 1 900000000000207008 110920009 58675001 0 118169006 900000000000011006 900000000000451002 +1914994027 20090131 0 900000000000207008 110920009 58675001 0 118169006 900000000000011006 900000000000451002 +1914995026 20030131 1 900000000000207008 110920009 85756007 0 118169006 900000000000011006 900000000000451002 +1914995026 20030731 0 900000000000207008 110920009 85756007 0 118169006 900000000000011006 900000000000451002 +1914996025 20030131 1 900000000000207008 110920009 116147009 0 118171006 900000000000011006 900000000000451002 +1914996025 20030731 0 900000000000207008 110920009 116147009 0 118171006 900000000000011006 900000000000451002 +1914997023 20030131 1 900000000000207008 110921008 113250009 0 118169006 900000000000011006 900000000000451002 +1914997023 20190731 1 900000000000207008 110921008 113250009 1 118169006 900000000000011006 900000000000451002 +1914998029 20030131 1 900000000000207008 110921008 85756007 0 118169006 900000000000011006 900000000000451002 +1914998029 20030731 0 900000000000207008 110921008 85756007 0 118169006 900000000000011006 900000000000451002 +1914999021 20030131 1 900000000000207008 110921008 116147009 0 118171006 900000000000011006 900000000000451002 +1914999021 20030731 0 900000000000207008 110921008 116147009 0 118171006 900000000000011006 900000000000451002 +1915000021 20030131 1 900000000000207008 110922001 75245000 0 118169006 900000000000011006 900000000000451002 +1915000021 20190731 1 900000000000207008 110922001 75245000 1 118169006 900000000000011006 900000000000451002 +1915001020 20030131 1 900000000000207008 110922001 85756007 0 118169006 900000000000011006 900000000000451002 +1915001020 20030731 0 900000000000207008 110922001 85756007 0 118169006 900000000000011006 900000000000451002 +1915002029 20030131 1 900000000000207008 110922001 116147009 0 118171006 900000000000011006 900000000000451002 +1915002029 20030731 0 900000000000207008 110922001 116147009 0 118171006 900000000000011006 900000000000451002 +1915003023 20030131 1 900000000000207008 110923006 82407001 0 118169006 900000000000011006 900000000000451002 +1915003023 20190731 1 900000000000207008 110923006 82407001 1 118169006 900000000000011006 900000000000451002 +1915004028 20030131 1 900000000000207008 110923006 85756007 0 118169006 900000000000011006 900000000000451002 +1915004028 20030731 0 900000000000207008 110923006 85756007 0 118169006 900000000000011006 900000000000451002 +1915005027 20030131 1 900000000000207008 110923006 116147009 0 118171006 900000000000011006 900000000000451002 +1915005027 20030731 0 900000000000207008 110923006 116147009 0 118171006 900000000000011006 900000000000451002 +1915006026 20030131 1 900000000000207008 110924000 70074004 0 118169006 900000000000011006 900000000000451002 +1915006026 20190731 1 900000000000207008 110924000 70074004 1 118169006 900000000000011006 900000000000451002 +1915007024 20030131 1 900000000000207008 110924000 85756007 0 118169006 900000000000011006 900000000000451002 +1915007024 20030731 0 900000000000207008 110924000 85756007 0 118169006 900000000000011006 900000000000451002 +1915008025 20030131 1 900000000000207008 110924000 116147009 0 118171006 900000000000011006 900000000000451002 +1915008025 20030731 0 900000000000207008 110924000 116147009 0 118171006 900000000000011006 900000000000451002 +1915009022 20030131 1 900000000000207008 110926003 28231008 0 118169006 900000000000011006 900000000000451002 +1915009022 20190731 1 900000000000207008 110926003 28231008 1 118169006 900000000000011006 900000000000451002 +1915010028 20030131 1 900000000000207008 110926003 85756007 0 118169006 900000000000011006 900000000000451002 +1915010028 20030731 0 900000000000207008 110926003 85756007 0 118169006 900000000000011006 900000000000451002 +1915011029 20030131 1 900000000000207008 110926003 116147009 0 118171006 900000000000011006 900000000000451002 +1915011029 20030731 0 900000000000207008 110926003 116147009 0 118171006 900000000000011006 900000000000451002 +1915012020 20030131 1 900000000000207008 110927007 10200004 0 118169006 900000000000011006 900000000000451002 +1915012020 20190731 1 900000000000207008 110927007 10200004 1 118169006 900000000000011006 900000000000451002 +1915013026 20030131 1 900000000000207008 110927007 85756007 0 118169006 900000000000011006 900000000000451002 +1915013026 20030731 0 900000000000207008 110927007 85756007 0 118169006 900000000000011006 900000000000451002 +1915014021 20030131 1 900000000000207008 110927007 116147009 0 118171006 900000000000011006 900000000000451002 +1915014021 20030731 0 900000000000207008 110927007 116147009 0 118171006 900000000000011006 900000000000451002 +1915015022 20030131 1 900000000000207008 110928002 28273000 0 118169006 900000000000011006 900000000000451002 +1915015022 20190731 1 900000000000207008 110928002 28273000 1 118169006 900000000000011006 900000000000451002 +1915016023 20030131 1 900000000000207008 110928002 85756007 0 118169006 900000000000011006 900000000000451002 +1915016023 20030731 0 900000000000207008 110928002 85756007 0 118169006 900000000000011006 900000000000451002 +1915017025 20030131 1 900000000000207008 110928002 116147009 0 118171006 900000000000011006 900000000000451002 +1915017025 20030731 0 900000000000207008 110928002 116147009 0 118171006 900000000000011006 900000000000451002 +1915018024 20030131 1 900000000000207008 110929005 15776009 0 118169006 900000000000011006 900000000000451002 +1915018024 20190731 1 900000000000207008 110929005 15776009 1 118169006 900000000000011006 900000000000451002 +1915019027 20030131 1 900000000000207008 110929005 85756007 0 118169006 900000000000011006 900000000000451002 +1915019027 20030731 0 900000000000207008 110929005 85756007 0 118169006 900000000000011006 900000000000451002 +1915020022 20030131 1 900000000000207008 110929005 116147009 0 118171006 900000000000011006 900000000000451002 +1915020022 20030731 0 900000000000207008 110929005 116147009 0 118171006 900000000000011006 900000000000451002 +1915021021 20030131 1 900000000000207008 110930000 75535001 0 118169006 900000000000011006 900000000000451002 +1915021021 20110731 0 900000000000207008 110930000 75535001 0 118169006 900000000000011006 900000000000451002 +1915022025 20030131 1 900000000000207008 110930000 85756007 0 118169006 900000000000011006 900000000000451002 +1915022025 20030731 0 900000000000207008 110930000 85756007 0 118169006 900000000000011006 900000000000451002 +1915023024 20030131 1 900000000000207008 110930000 116147009 0 118171006 900000000000011006 900000000000451002 +1915023024 20030731 0 900000000000207008 110930000 116147009 0 118171006 900000000000011006 900000000000451002 +1915024029 20030131 1 900000000000207008 110931001 18911002 0 118169006 900000000000011006 900000000000451002 +1915024029 20190731 1 900000000000207008 110931001 18911002 1 118169006 900000000000011006 900000000000451002 +1915025028 20030131 1 900000000000207008 110931001 85756007 0 118169006 900000000000011006 900000000000451002 +1915025028 20030731 0 900000000000207008 110931001 85756007 0 118169006 900000000000011006 900000000000451002 +1915026027 20030131 1 900000000000207008 110931001 116147009 0 118171006 900000000000011006 900000000000451002 +1915026027 20030731 0 900000000000207008 110931001 116147009 0 118171006 900000000000011006 900000000000451002 +1915027020 20030131 1 900000000000207008 110932008 45289007 0 118169006 900000000000011006 900000000000451002 +1915027020 20190731 1 900000000000207008 110932008 45289007 1 118169006 900000000000011006 900000000000451002 +1915028026 20030131 1 900000000000207008 110932008 85756007 0 118169006 900000000000011006 900000000000451002 +1915028026 20030731 0 900000000000207008 110932008 85756007 0 118169006 900000000000011006 900000000000451002 +1915029023 20030131 1 900000000000207008 110932008 116147009 0 118171006 900000000000011006 900000000000451002 +1915029023 20030731 0 900000000000207008 110932008 116147009 0 118171006 900000000000011006 900000000000451002 +1915030029 20030131 1 900000000000207008 110933003 41216001 0 118169006 900000000000011006 900000000000451002 +1915030029 20190731 1 900000000000207008 110933003 41216001 1 118169006 900000000000011006 900000000000451002 +1915031025 20030131 1 900000000000207008 110933003 85756007 0 118169006 900000000000011006 900000000000451002 +1915031025 20030731 0 900000000000207008 110933003 85756007 0 118169006 900000000000011006 900000000000451002 +1915032021 20030131 1 900000000000207008 110933003 116147009 0 118171006 900000000000011006 900000000000451002 +1915032021 20030731 0 900000000000207008 110933003 116147009 0 118171006 900000000000011006 900000000000451002 +1915033027 20030131 1 900000000000207008 110934009 54066008 0 118169006 900000000000011006 900000000000451002 +1915033027 20190731 1 900000000000207008 110934009 54066008 1 118169006 900000000000011006 900000000000451002 +1915034022 20030131 1 900000000000207008 110934009 85756007 0 118169006 900000000000011006 900000000000451002 +1915034022 20030731 0 900000000000207008 110934009 85756007 0 118169006 900000000000011006 900000000000451002 +1915035023 20030131 1 900000000000207008 110934009 116147009 0 118171006 900000000000011006 900000000000451002 +1915035023 20030731 0 900000000000207008 110934009 116147009 0 118171006 900000000000011006 900000000000451002 +1915036024 20030131 1 900000000000207008 110935005 40689003 0 118169006 900000000000011006 900000000000451002 +1915036024 20190731 1 900000000000207008 110935005 40689003 1 118169006 900000000000011006 900000000000451002 +1915037026 20030131 1 900000000000207008 110935005 85756007 0 118169006 900000000000011006 900000000000451002 +1915037026 20030731 0 900000000000207008 110935005 85756007 0 118169006 900000000000011006 900000000000451002 +1915038020 20030131 1 900000000000207008 110935005 116147009 0 118171006 900000000000011006 900000000000451002 +1915038020 20030731 0 900000000000207008 110935005 116147009 0 118171006 900000000000011006 900000000000451002 +1915039028 20030131 1 900000000000207008 110936006 69695003 0 118169006 900000000000011006 900000000000451002 +1915039028 20190731 1 900000000000207008 110936006 69695003 1 118169006 900000000000011006 900000000000451002 +1915040026 20030131 1 900000000000207008 110936006 85756007 0 118169006 900000000000011006 900000000000451002 +1915040026 20030731 0 900000000000207008 110936006 85756007 0 118169006 900000000000011006 900000000000451002 +1915041027 20030131 1 900000000000207008 110936006 116147009 0 118171006 900000000000011006 900000000000451002 +1915041027 20030731 0 900000000000207008 110936006 116147009 0 118171006 900000000000011006 900000000000451002 +1915042023 20030131 1 900000000000207008 110937002 64739004 0 118169006 900000000000011006 900000000000451002 +1915042023 20190731 1 900000000000207008 110937002 64739004 1 118169006 900000000000011006 900000000000451002 +1915043029 20030131 1 900000000000207008 110937002 85756007 0 118169006 900000000000011006 900000000000451002 +1915043029 20030731 0 900000000000207008 110937002 85756007 0 118169006 900000000000011006 900000000000451002 +1915044024 20030131 1 900000000000207008 110937002 116147009 0 118171006 900000000000011006 900000000000451002 +1915044024 20030731 0 900000000000207008 110937002 116147009 0 118171006 900000000000011006 900000000000451002 +1915045020 20030131 1 900000000000207008 110938007 38848004 0 118169006 900000000000011006 900000000000451002 +1915045020 20190731 1 900000000000207008 110938007 38848004 1 118169006 900000000000011006 900000000000451002 +1915046021 20030131 1 900000000000207008 110938007 85756007 0 118169006 900000000000011006 900000000000451002 +1915046021 20030731 0 900000000000207008 110938007 85756007 0 118169006 900000000000011006 900000000000451002 +1915047028 20030131 1 900000000000207008 110938007 116147009 0 118171006 900000000000011006 900000000000451002 +1915047028 20030731 0 900000000000207008 110938007 116147009 0 118171006 900000000000011006 900000000000451002 +1915048022 20030131 1 900000000000207008 110939004 57671007 0 118169006 900000000000011006 900000000000451002 +1915048022 20190731 1 900000000000207008 110939004 57671007 1 118169006 900000000000011006 900000000000451002 +1915049025 20030131 1 900000000000207008 110939004 85756007 0 118169006 900000000000011006 900000000000451002 +1915049025 20030731 0 900000000000207008 110939004 85756007 0 118169006 900000000000011006 900000000000451002 +1915050025 20030131 1 900000000000207008 110939004 116147009 0 118171006 900000000000011006 900000000000451002 +1915050025 20030731 0 900000000000207008 110939004 116147009 0 118171006 900000000000011006 900000000000451002 +1915051026 20030131 1 900000000000207008 110940002 34516001 0 118169006 900000000000011006 900000000000451002 +1915051026 20190731 1 900000000000207008 110940002 34516001 1 118169006 900000000000011006 900000000000451002 +1915052022 20030131 1 900000000000207008 110940002 85756007 0 118169006 900000000000011006 900000000000451002 +1915052022 20030731 0 900000000000207008 110940002 85756007 0 118169006 900000000000011006 900000000000451002 +1915053028 20030131 1 900000000000207008 110940002 116147009 0 118171006 900000000000011006 900000000000451002 +1915053028 20030731 0 900000000000207008 110940002 116147009 0 118171006 900000000000011006 900000000000451002 +1915054023 20030131 1 900000000000207008 110941003 85756007 0 118169006 900000000000011006 900000000000451002 +1915054023 20030731 0 900000000000207008 110941003 85756007 0 118169006 900000000000011006 900000000000451002 +1915055024 20030131 1 900000000000207008 110941003 87644002 0 118169006 900000000000011006 900000000000451002 +1915055024 20190731 1 900000000000207008 110941003 87644002 1 118169006 900000000000011006 900000000000451002 +1915056020 20030131 1 900000000000207008 110941003 116147009 0 118171006 900000000000011006 900000000000451002 +1915056020 20030731 0 900000000000207008 110941003 116147009 0 118171006 900000000000011006 900000000000451002 +1915057027 20030131 1 900000000000207008 110942005 34402009 0 118169006 900000000000011006 900000000000451002 +1915057027 20190731 1 900000000000207008 110942005 34402009 1 118169006 900000000000011006 900000000000451002 +1915058021 20030131 1 900000000000207008 110942005 85756007 0 118169006 900000000000011006 900000000000451002 +1915058021 20030731 0 900000000000207008 110942005 85756007 0 118169006 900000000000011006 900000000000451002 +1915059029 20030131 1 900000000000207008 110942005 116147009 0 118171006 900000000000011006 900000000000451002 +1915059029 20030731 0 900000000000207008 110942005 116147009 0 118171006 900000000000011006 900000000000451002 +1915060023 20030131 1 900000000000207008 110943000 25990002 0 118169006 900000000000011006 900000000000451002 +1915060023 20190731 1 900000000000207008 110943000 25990002 1 118169006 900000000000011006 900000000000451002 +1915061022 20030131 1 900000000000207008 110943000 85756007 0 118169006 900000000000011006 900000000000451002 +1915061022 20030731 0 900000000000207008 110943000 85756007 0 118169006 900000000000011006 900000000000451002 +1915062026 20030131 1 900000000000207008 110943000 116147009 0 118171006 900000000000011006 900000000000451002 +1915062026 20030731 0 900000000000207008 110943000 116147009 0 118171006 900000000000011006 900000000000451002 +1915063020 20030131 1 900000000000207008 110944006 83670000 0 118169006 900000000000011006 900000000000451002 +1915063020 20190731 1 900000000000207008 110944006 83670000 1 118169006 900000000000011006 900000000000451002 +1915064025 20030131 1 900000000000207008 110944006 85756007 0 118169006 900000000000011006 900000000000451002 +1915064025 20030731 0 900000000000207008 110944006 85756007 0 118169006 900000000000011006 900000000000451002 +1915065029 20030131 1 900000000000207008 110944006 116147009 0 118171006 900000000000011006 900000000000451002 +1915065029 20030731 0 900000000000207008 110944006 116147009 0 118171006 900000000000011006 900000000000451002 +1915066028 20030131 1 900000000000207008 110945007 45292006 0 118169006 900000000000011006 900000000000451002 +1915066028 20190731 1 900000000000207008 110945007 45292006 1 118169006 900000000000011006 900000000000451002 +1915067021 20030131 1 900000000000207008 110945007 85756007 0 118169006 900000000000011006 900000000000451002 +1915067021 20030731 0 900000000000207008 110945007 85756007 0 118169006 900000000000011006 900000000000451002 +1915068027 20030131 1 900000000000207008 110945007 116147009 0 118171006 900000000000011006 900000000000451002 +1915068027 20030731 0 900000000000207008 110945007 116147009 0 118171006 900000000000011006 900000000000451002 +1915069024 20030131 1 900000000000207008 110946008 17571003 0 118169006 900000000000011006 900000000000451002 +1915069024 20080731 0 900000000000207008 110946008 17571003 0 118169006 900000000000011006 900000000000451002 +1915070020 20030131 1 900000000000207008 110946008 85756007 0 118169006 900000000000011006 900000000000451002 +1915070020 20030731 0 900000000000207008 110946008 85756007 0 118169006 900000000000011006 900000000000451002 +1915071024 20030131 1 900000000000207008 110946008 116147009 0 118171006 900000000000011006 900000000000451002 +1915071024 20030731 0 900000000000207008 110946008 116147009 0 118171006 900000000000011006 900000000000451002 +1915072028 20030131 1 900000000000207008 110947004 76784001 0 118169006 900000000000011006 900000000000451002 +1915072028 20190731 1 900000000000207008 110947004 76784001 1 118169006 900000000000011006 900000000000451002 +1915073022 20030131 1 900000000000207008 110947004 85756007 0 118169006 900000000000011006 900000000000451002 +1915073022 20030731 0 900000000000207008 110947004 85756007 0 118169006 900000000000011006 900000000000451002 +1915074027 20030131 1 900000000000207008 110947004 116147009 0 118171006 900000000000011006 900000000000451002 +1915074027 20030731 0 900000000000207008 110947004 116147009 0 118171006 900000000000011006 900000000000451002 +1915075026 20030131 1 900000000000207008 110948009 64033007 0 118169006 900000000000011006 900000000000451002 +1915075026 20190731 1 900000000000207008 110948009 64033007 1 118169006 900000000000011006 900000000000451002 +1915076025 20030131 1 900000000000207008 110948009 85756007 0 118169006 900000000000011006 900000000000451002 +1915076025 20030731 0 900000000000207008 110948009 85756007 0 118169006 900000000000011006 900000000000451002 +1915077023 20030131 1 900000000000207008 110948009 116147009 0 118171006 900000000000011006 900000000000451002 +1915077023 20030731 0 900000000000207008 110948009 116147009 0 118171006 900000000000011006 900000000000451002 +1915078029 20030131 1 900000000000207008 110949001 71252005 0 118169006 900000000000011006 900000000000451002 +1915078029 20190731 1 900000000000207008 110949001 71252005 1 118169006 900000000000011006 900000000000451002 +1915079021 20030131 1 900000000000207008 110949001 85756007 0 118169006 900000000000011006 900000000000451002 +1915079021 20030731 0 900000000000207008 110949001 85756007 0 118169006 900000000000011006 900000000000451002 +1915080024 20030131 1 900000000000207008 110949001 116147009 0 118171006 900000000000011006 900000000000451002 +1915080024 20030731 0 900000000000207008 110949001 116147009 0 118171006 900000000000011006 900000000000451002 +1915081023 20030131 1 900000000000207008 110950001 85756007 0 118169006 900000000000011006 900000000000451002 +1915081023 20030731 0 900000000000207008 110950001 85756007 0 118169006 900000000000011006 900000000000451002 +1915082027 20030131 1 900000000000207008 110950001 89837001 0 118169006 900000000000011006 900000000000451002 +1915082027 20190731 1 900000000000207008 110950001 89837001 1 118169006 900000000000011006 900000000000451002 +1915083021 20030131 1 900000000000207008 110950001 116147009 0 118171006 900000000000011006 900000000000451002 +1915083021 20030731 0 900000000000207008 110950001 116147009 0 118171006 900000000000011006 900000000000451002 +1915086029 20030131 1 900000000000207008 110951002 36973007 0 118169006 900000000000011006 900000000000451002 +1915086029 20190731 1 900000000000207008 110951002 36973007 1 118169006 900000000000011006 900000000000451002 +1915087022 20030131 1 900000000000207008 110951002 85756007 0 118169006 900000000000011006 900000000000451002 +1915087022 20030731 0 900000000000207008 110951002 85756007 0 118169006 900000000000011006 900000000000451002 +1915088028 20030131 1 900000000000207008 110951002 116147009 0 118171006 900000000000011006 900000000000451002 +1915088028 20030731 0 900000000000207008 110951002 116147009 0 118171006 900000000000011006 900000000000451002 +1915089020 20030131 1 900000000000207008 110952009 54019009 0 118169006 900000000000011006 900000000000451002 +1915089020 20110731 0 900000000000207008 110952009 54019009 0 118169006 900000000000011006 900000000000451002 +1915090027 20030131 1 900000000000207008 110952009 85756007 0 118169006 900000000000011006 900000000000451002 +1915090027 20030731 0 900000000000207008 110952009 85756007 0 118169006 900000000000011006 900000000000451002 +1915091028 20030131 1 900000000000207008 110952009 116147009 0 118171006 900000000000011006 900000000000451002 +1915091028 20030731 0 900000000000207008 110952009 116147009 0 118171006 900000000000011006 900000000000451002 +1915092024 20030131 1 900000000000207008 110953004 110631004 0 118169006 900000000000011006 900000000000451002 +1915092024 20060731 0 900000000000207008 110953004 110631004 0 118169006 900000000000011006 900000000000451002 +1915093025 20030131 1 900000000000207008 110953004 85756007 0 118169006 900000000000011006 900000000000451002 +1915093025 20030731 0 900000000000207008 110953004 85756007 0 118169006 900000000000011006 900000000000451002 +1915094020 20030131 1 900000000000207008 110953004 116147009 0 118171006 900000000000011006 900000000000451002 +1915094020 20030731 0 900000000000207008 110953004 116147009 0 118171006 900000000000011006 900000000000451002 +1915095021 20030131 1 900000000000207008 110954005 30315005 0 118169006 900000000000011006 900000000000451002 +1915095021 20190731 1 900000000000207008 110954005 30315005 1 118169006 900000000000011006 900000000000451002 +1915096022 20030131 1 900000000000207008 110954005 85756007 0 118169006 900000000000011006 900000000000451002 +1915096022 20030731 0 900000000000207008 110954005 85756007 0 118169006 900000000000011006 900000000000451002 +1915097029 20030131 1 900000000000207008 110954005 116147009 0 118171006 900000000000011006 900000000000451002 +1915097029 20030731 0 900000000000207008 110954005 116147009 0 118171006 900000000000011006 900000000000451002 +1915098023 20030131 1 900000000000207008 110955006 2739003 0 118169006 900000000000011006 900000000000451002 +1915098023 20190731 1 900000000000207008 110955006 2739003 1 118169006 900000000000011006 900000000000451002 +1915099026 20030131 1 900000000000207008 110955006 85756007 0 118169006 900000000000011006 900000000000451002 +1915099026 20030731 0 900000000000207008 110955006 85756007 0 118169006 900000000000011006 900000000000451002 +1915100023 20030131 1 900000000000207008 110955006 116147009 0 118171006 900000000000011006 900000000000451002 +1915100023 20030731 0 900000000000207008 110955006 116147009 0 118171006 900000000000011006 900000000000451002 +1915101022 20030131 1 900000000000207008 110956007 71854001 0 118169006 900000000000011006 900000000000451002 +1915101022 20190731 1 900000000000207008 110956007 71854001 1 118169006 900000000000011006 900000000000451002 +1915102026 20030131 1 900000000000207008 110956007 85756007 0 118169006 900000000000011006 900000000000451002 +1915102026 20030731 0 900000000000207008 110956007 85756007 0 118169006 900000000000011006 900000000000451002 +1915103020 20030131 1 900000000000207008 110956007 116147009 0 118171006 900000000000011006 900000000000451002 +1915103020 20030731 0 900000000000207008 110956007 116147009 0 118171006 900000000000011006 900000000000451002 +1915104025 20030131 1 900000000000207008 110957003 31435000 0 118169006 900000000000011006 900000000000451002 +1915104025 20190731 1 900000000000207008 110957003 31435000 1 118169006 900000000000011006 900000000000451002 +1915105029 20030131 1 900000000000207008 110957003 85756007 0 118169006 900000000000011006 900000000000451002 +1915105029 20030731 0 900000000000207008 110957003 85756007 0 118169006 900000000000011006 900000000000451002 +1915106028 20030131 1 900000000000207008 110957003 116147009 0 118171006 900000000000011006 900000000000451002 +1915106028 20030731 0 900000000000207008 110957003 116147009 0 118171006 900000000000011006 900000000000451002 +1915107021 20030131 1 900000000000207008 110958008 35461009 0 118169006 900000000000011006 900000000000451002 +1915107021 20080731 0 900000000000207008 110958008 35461009 0 118169006 900000000000011006 900000000000451002 +1915108027 20030131 1 900000000000207008 110958008 85756007 0 118169006 900000000000011006 900000000000451002 +1915108027 20030731 0 900000000000207008 110958008 85756007 0 118169006 900000000000011006 900000000000451002 +1915109024 20030131 1 900000000000207008 110958008 116147009 0 118171006 900000000000011006 900000000000451002 +1915109024 20030731 0 900000000000207008 110958008 116147009 0 118171006 900000000000011006 900000000000451002 +1915110025 20030131 1 900000000000207008 110959000 78067005 0 118169006 900000000000011006 900000000000451002 +1915110025 20190731 1 900000000000207008 110959000 78067005 1 118169006 900000000000011006 900000000000451002 +1915111026 20030131 1 900000000000207008 110959000 85756007 0 118169006 900000000000011006 900000000000451002 +1915111026 20030731 0 900000000000207008 110959000 85756007 0 118169006 900000000000011006 900000000000451002 +1915112022 20030131 1 900000000000207008 110959000 116147009 0 118171006 900000000000011006 900000000000451002 +1915112022 20030731 0 900000000000207008 110959000 116147009 0 118171006 900000000000011006 900000000000451002 +1915113028 20030131 1 900000000000207008 110960005 85756007 0 118169006 900000000000011006 900000000000451002 +1915113028 20030731 0 900000000000207008 110960005 85756007 0 118169006 900000000000011006 900000000000451002 +1915114023 20030131 1 900000000000207008 110960005 87953007 0 118169006 900000000000011006 900000000000451002 +1915114023 20190731 1 900000000000207008 110960005 87953007 1 118169006 900000000000011006 900000000000451002 +1915115024 20030131 1 900000000000207008 110960005 116147009 0 118171006 900000000000011006 900000000000451002 +1915115024 20030731 0 900000000000207008 110960005 116147009 0 118171006 900000000000011006 900000000000451002 +1915116020 20030131 1 900000000000207008 110961009 74439004 0 118169006 900000000000011006 900000000000451002 +1915116020 20190731 1 900000000000207008 110961009 74439004 1 118169006 900000000000011006 900000000000451002 +1915117027 20030131 1 900000000000207008 110961009 85756007 0 118169006 900000000000011006 900000000000451002 +1915117027 20030731 0 900000000000207008 110961009 85756007 0 118169006 900000000000011006 900000000000451002 +1915118021 20030131 1 900000000000207008 110961009 116147009 0 118171006 900000000000011006 900000000000451002 +1915118021 20030731 0 900000000000207008 110961009 116147009 0 118171006 900000000000011006 900000000000451002 +1915119029 20030131 1 900000000000207008 110962002 32849002 0 118169006 900000000000011006 900000000000451002 +1915119029 20190731 1 900000000000207008 110962002 32849002 1 118169006 900000000000011006 900000000000451002 +1915120024 20030131 1 900000000000207008 110962002 85756007 0 118169006 900000000000011006 900000000000451002 +1915120024 20030731 0 900000000000207008 110962002 85756007 0 118169006 900000000000011006 900000000000451002 +1915121023 20030131 1 900000000000207008 110962002 116147009 0 118171006 900000000000011006 900000000000451002 +1915121023 20030731 0 900000000000207008 110962002 116147009 0 118171006 900000000000011006 900000000000451002 +1915122027 20030131 1 900000000000207008 110963007 53505006 0 118169006 900000000000011006 900000000000451002 +1915122027 20190731 1 900000000000207008 110963007 53505006 1 118169006 900000000000011006 900000000000451002 +1915123021 20030131 1 900000000000207008 110963007 85756007 0 118169006 900000000000011006 900000000000451002 +1915123021 20030731 0 900000000000207008 110963007 85756007 0 118169006 900000000000011006 900000000000451002 +1915124026 20030131 1 900000000000207008 110963007 116147009 0 118171006 900000000000011006 900000000000451002 +1915124026 20030731 0 900000000000207008 110963007 116147009 0 118171006 900000000000011006 900000000000451002 +1915125025 20030131 1 900000000000207008 110964001 19787009 0 118169006 900000000000011006 900000000000451002 +1915125025 20190731 1 900000000000207008 110964001 19787009 1 118169006 900000000000011006 900000000000451002 +1915126029 20030131 1 900000000000207008 110964001 85756007 0 118169006 900000000000011006 900000000000451002 +1915126029 20030731 0 900000000000207008 110964001 85756007 0 118169006 900000000000011006 900000000000451002 +1915127022 20030131 1 900000000000207008 110964001 116147009 0 118171006 900000000000011006 900000000000451002 +1915127022 20030731 0 900000000000207008 110964001 116147009 0 118171006 900000000000011006 900000000000451002 +1915128028 20030131 1 900000000000207008 110965000 13648007 0 118169006 900000000000011006 900000000000451002 +1915128028 20190731 1 900000000000207008 110965000 13648007 1 118169006 900000000000011006 900000000000451002 +1915129020 20030131 1 900000000000207008 110965000 85756007 0 118169006 900000000000011006 900000000000451002 +1915129020 20030731 0 900000000000207008 110965000 85756007 0 118169006 900000000000011006 900000000000451002 +1915130026 20030131 1 900000000000207008 110965000 116147009 0 118171006 900000000000011006 900000000000451002 +1915130026 20030731 0 900000000000207008 110965000 116147009 0 118171006 900000000000011006 900000000000451002 +1915131027 20030131 1 900000000000207008 110966004 21306003 0 118169006 900000000000011006 900000000000451002 +1915131027 20190731 1 900000000000207008 110966004 21306003 1 118169006 900000000000011006 900000000000451002 +1915132023 20030131 1 900000000000207008 110966004 85756007 0 118169006 900000000000011006 900000000000451002 +1915132023 20030731 0 900000000000207008 110966004 85756007 0 118169006 900000000000011006 900000000000451002 +1915133029 20030131 1 900000000000207008 110966004 116147009 0 118171006 900000000000011006 900000000000451002 +1915133029 20030731 0 900000000000207008 110966004 116147009 0 118171006 900000000000011006 900000000000451002 +1915134024 20030131 1 900000000000207008 110967008 70847004 0 118169006 900000000000011006 900000000000451002 +1915134024 20190731 1 900000000000207008 110967008 70847004 1 118169006 900000000000011006 900000000000451002 +1915135020 20030131 1 900000000000207008 110967008 85756007 0 118169006 900000000000011006 900000000000451002 +1915135020 20030731 0 900000000000207008 110967008 85756007 0 118169006 900000000000011006 900000000000451002 +1915136021 20030131 1 900000000000207008 110967008 116147009 0 118171006 900000000000011006 900000000000451002 +1915136021 20030731 0 900000000000207008 110967008 116147009 0 118171006 900000000000011006 900000000000451002 +1915137028 20030131 1 900000000000207008 110968003 55460000 0 118169006 900000000000011006 900000000000451002 +1915137028 20190731 1 900000000000207008 110968003 55460000 1 118169006 900000000000011006 900000000000451002 +1915138022 20030131 1 900000000000207008 110968003 85756007 0 118169006 900000000000011006 900000000000451002 +1915138022 20030731 0 900000000000207008 110968003 85756007 0 118169006 900000000000011006 900000000000451002 +1915139025 20030131 1 900000000000207008 110968003 116147009 0 118171006 900000000000011006 900000000000451002 +1915139025 20030731 0 900000000000207008 110968003 116147009 0 118171006 900000000000011006 900000000000451002 +1915140028 20030131 1 900000000000207008 110969006 85756007 0 118169006 900000000000011006 900000000000451002 +1915140028 20030731 0 900000000000207008 110969006 85756007 0 118169006 900000000000011006 900000000000451002 +1915141029 20030131 1 900000000000207008 110969006 116147009 0 118171006 900000000000011006 900000000000451002 +1915141029 20030731 0 900000000000207008 110969006 116147009 0 118171006 900000000000011006 900000000000451002 +1915142020 20030131 1 900000000000207008 110969006 65216001 0 370133003 900000000000011006 900000000000451002 +1915142020 20110731 0 900000000000207008 110969006 65216001 0 370133003 900000000000011006 900000000000451002 +1915143026 20030131 1 900000000000207008 110970007 85756007 0 118169006 900000000000011006 900000000000451002 +1915143026 20030731 0 900000000000207008 110970007 85756007 0 118169006 900000000000011006 900000000000451002 +1915144021 20030131 1 900000000000207008 110970007 116147009 0 118171006 900000000000011006 900000000000451002 +1915144021 20030731 0 900000000000207008 110970007 116147009 0 118171006 900000000000011006 900000000000451002 +1915145022 20030131 1 900000000000207008 110970007 11453000 0 370133003 900000000000011006 900000000000451002 +1915145022 20110731 0 900000000000207008 110970007 11453000 0 370133003 900000000000011006 900000000000451002 +1916211026 20030131 1 900000000000207008 116155002 67109009 0 118169006 900000000000011006 900000000000451002 +1916211026 20190731 1 900000000000207008 116155002 67109009 1 118169006 900000000000011006 900000000000451002 +1916212022 20030131 1 900000000000207008 116155002 85756007 0 118169006 900000000000011006 900000000000451002 +1916212022 20030731 0 900000000000207008 116155002 85756007 0 118169006 900000000000011006 900000000000451002 +1916213028 20030131 1 900000000000207008 116155002 116147009 0 118171006 900000000000011006 900000000000451002 +1916213028 20030731 0 900000000000207008 116155002 116147009 0 118171006 900000000000011006 900000000000451002 +1916214023 20030131 1 900000000000207008 116156001 122865005 0 118169006 900000000000011006 900000000000451002 +1916214023 20190731 1 900000000000207008 116156001 122865005 1 118169006 900000000000011006 900000000000451002 +1916215024 20030131 1 900000000000207008 116156001 85756007 0 118169006 900000000000011006 900000000000451002 +1916215024 20030731 0 900000000000207008 116156001 85756007 0 118169006 900000000000011006 900000000000451002 +1916216020 20030131 1 900000000000207008 116156001 116147009 0 118171006 900000000000011006 900000000000451002 +1916216020 20030731 0 900000000000207008 116156001 116147009 0 118171006 900000000000011006 900000000000451002 +1916217027 20030131 1 900000000000207008 116157005 128427003 0 118169006 900000000000011006 900000000000451002 +1916217027 20040731 0 900000000000207008 116157005 128427003 0 118169006 900000000000011006 900000000000451002 +1916218021 20030131 1 900000000000207008 116157005 85756007 0 118169006 900000000000011006 900000000000451002 +1916218021 20030731 0 900000000000207008 116157005 85756007 0 118169006 900000000000011006 900000000000451002 +1916219029 20030131 1 900000000000207008 116157005 116147009 0 118171006 900000000000011006 900000000000451002 +1916219029 20030731 0 900000000000207008 116157005 116147009 0 118171006 900000000000011006 900000000000451002 +1916220024 20030131 1 900000000000207008 116158000 14742008 0 118169006 900000000000011006 900000000000451002 +1916220024 20190731 1 900000000000207008 116158000 14742008 1 118169006 900000000000011006 900000000000451002 +1916221023 20030131 1 900000000000207008 116158000 85756007 0 118169006 900000000000011006 900000000000451002 +1916221023 20030731 0 900000000000207008 116158000 85756007 0 118169006 900000000000011006 900000000000451002 +1916222027 20030131 1 900000000000207008 116158000 116147009 0 118171006 900000000000011006 900000000000451002 +1916222027 20030731 0 900000000000207008 116158000 116147009 0 118171006 900000000000011006 900000000000451002 +1916223021 20030131 1 900000000000207008 116159008 119253004 0 118169006 900000000000011006 900000000000451002 +1916223021 20190731 1 900000000000207008 116159008 119253004 1 118169006 900000000000011006 900000000000451002 +1916224026 20030131 1 900000000000207008 116159008 85756007 0 118169006 900000000000011006 900000000000451002 +1916224026 20030731 0 900000000000207008 116159008 85756007 0 118169006 900000000000011006 900000000000451002 +1916225025 20030131 1 900000000000207008 116159008 116147009 0 118171006 900000000000011006 900000000000451002 +1916225025 20030731 0 900000000000207008 116159008 116147009 0 118171006 900000000000011006 900000000000451002 +1916226029 20030131 1 900000000000207008 116160003 69748006 0 118169006 900000000000011006 900000000000451002 +1916226029 20190731 1 900000000000207008 116160003 69748006 1 118169006 900000000000011006 900000000000451002 +1916227022 20030131 1 900000000000207008 116160003 85756007 0 118169006 900000000000011006 900000000000451002 +1916227022 20030731 0 900000000000207008 116160003 85756007 0 118169006 900000000000011006 900000000000451002 +1916228028 20030131 1 900000000000207008 116160003 116147009 0 118171006 900000000000011006 900000000000451002 +1916228028 20030731 0 900000000000207008 116160003 116147009 0 118171006 900000000000011006 900000000000451002 +1916229020 20030131 1 900000000000207008 116161004 69748006 0 118169006 900000000000011006 900000000000451002 +1916229020 20080731 0 900000000000207008 116161004 69748006 0 118169006 900000000000011006 900000000000451002 +1916229020 20090131 1 900000000000207008 116161004 69748006 1 118169006 900000000000011006 900000000000451002 +1916230026 20030131 1 900000000000207008 116161004 85756007 0 118169006 900000000000011006 900000000000451002 +1916230026 20040731 0 900000000000207008 116161004 85756007 0 118169006 900000000000011006 900000000000451002 +1916231027 20030131 1 900000000000207008 116161004 116147009 0 118171006 900000000000011006 900000000000451002 +1916231027 20030731 0 900000000000207008 116161004 116147009 0 118171006 900000000000011006 900000000000451002 +1916232023 20030131 1 900000000000207008 116161004 29872008 0 118171006 900000000000011006 900000000000451002 +1916232023 20080731 0 900000000000207008 116161004 29872008 0 118171006 900000000000011006 900000000000451002 +1916232023 20090131 1 900000000000207008 116161004 29872008 1 118171006 900000000000011006 900000000000451002 +1916233029 20030131 1 900000000000207008 116162006 69748006 0 118169006 900000000000011006 900000000000451002 +1916233029 20190731 1 900000000000207008 116162006 69748006 2 118169006 900000000000011006 900000000000451002 +1916234024 20030131 1 900000000000207008 116162006 85756007 0 118169006 900000000000011006 900000000000451002 +1916234024 20030731 0 900000000000207008 116162006 85756007 0 118169006 900000000000011006 900000000000451002 +1916235020 20030131 1 900000000000207008 116162006 116147009 0 118171006 900000000000011006 900000000000451002 +1916235020 20030731 0 900000000000207008 116162006 116147009 0 118171006 900000000000011006 900000000000451002 +1916249027 20030131 1 900000000000207008 116213003 15497006 0 118169006 900000000000011006 900000000000451002 +1916249027 20190731 1 900000000000207008 116213003 15497006 1 118169006 900000000000011006 900000000000451002 +1916250027 20030131 1 900000000000207008 116213003 85756007 0 118169006 900000000000011006 900000000000451002 +1916250027 20030731 0 900000000000207008 116213003 85756007 0 118169006 900000000000011006 900000000000451002 +1916251028 20030131 1 900000000000207008 116213003 116147009 0 118171006 900000000000011006 900000000000451002 +1916251028 20030731 0 900000000000207008 116213003 116147009 0 118171006 900000000000011006 900000000000451002 +1917612022 20030131 1 900000000000207008 119294007 165369002 0 118171006 900000000000011006 900000000000451002 +1917612022 20040731 0 900000000000207008 119294007 165369002 0 118171006 900000000000011006 900000000000451002 +1917613028 20030131 1 900000000000207008 119294007 87612001 0 370133003 900000000000011006 900000000000451002 +1917613028 20090731 0 900000000000207008 119294007 87612001 0 370133003 900000000000011006 900000000000451002 +1917614023 20030131 1 900000000000207008 119295008 14766002 0 118171006 900000000000011006 900000000000451002 +1917614023 20190731 1 900000000000207008 119295008 14766002 1 118171006 900000000000011006 900000000000451002 +1917616020 20030131 1 900000000000207008 119297000 165369002 0 118171006 900000000000011006 900000000000451002 +1917616020 20040731 0 900000000000207008 119297000 165369002 0 118171006 900000000000011006 900000000000451002 +1917617027 20030131 1 900000000000207008 119297000 87612001 0 370133003 900000000000011006 900000000000451002 +1917617027 20090731 0 900000000000207008 119297000 87612001 0 370133003 900000000000011006 900000000000451002 +1917618021 20030131 1 900000000000207008 119298005 165369002 0 118171006 900000000000011006 900000000000451002 +1917618021 20040731 0 900000000000207008 119298005 165369002 0 118171006 900000000000011006 900000000000451002 +1917619029 20030131 1 900000000000207008 119298005 116176007 0 370133003 900000000000011006 900000000000451002 +1917619029 20190731 1 900000000000207008 119298005 116176007 1 370133003 900000000000011006 900000000000451002 +1917620024 20030131 1 900000000000207008 119299002 116154003 0 118170007 900000000000011006 900000000000451002 +1917620024 20190731 1 900000000000207008 119299002 116154003 1 118170007 900000000000011006 900000000000451002 +1917621023 20030131 1 900000000000207008 119300005 165369002 0 118171006 900000000000011006 900000000000451002 +1917621023 20040731 0 900000000000207008 119300005 165369002 0 118171006 900000000000011006 900000000000451002 +1917622027 20030131 1 900000000000207008 119300005 87612001 0 370133003 900000000000011006 900000000000451002 +1917622027 20040731 0 900000000000207008 119300005 87612001 0 370133003 900000000000011006 900000000000451002 +1917624026 20030131 1 900000000000207008 119301009 228656006 0 370133003 900000000000011006 900000000000451002 +1917624026 20190731 1 900000000000207008 119301009 228656006 1 370133003 900000000000011006 900000000000451002 +1917625025 20030131 1 900000000000207008 119303007 386126001 0 370133003 900000000000011006 900000000000451002 +1917625025 20190731 1 900000000000207008 119303007 386126001 1 370133003 900000000000011006 900000000000451002 +1917626029 20030131 1 900000000000207008 119304001 116205004 0 118170007 900000000000011006 900000000000451002 +1917626029 20190731 1 900000000000207008 119304001 116205004 1 118170007 900000000000011006 900000000000451002 +1917627022 20030131 1 900000000000207008 119304001 165369002 0 118171006 900000000000011006 900000000000451002 +1917627022 20040731 0 900000000000207008 119304001 165369002 0 118171006 900000000000011006 900000000000451002 +1917628028 20030131 1 900000000000207008 119304001 87612001 0 370133003 900000000000011006 900000000000451002 +1917628028 20040731 0 900000000000207008 119304001 87612001 0 370133003 900000000000011006 900000000000451002 +1917629020 20030131 1 900000000000207008 119305000 116206003 0 118170007 900000000000011006 900000000000451002 +1917629020 20190731 1 900000000000207008 119305000 116206003 1 118170007 900000000000011006 900000000000451002 +1917630026 20030131 1 900000000000207008 119305000 165369002 0 118171006 900000000000011006 900000000000451002 +1917630026 20040731 0 900000000000207008 119305000 165369002 0 118171006 900000000000011006 900000000000451002 +1917631027 20030131 1 900000000000207008 119305000 87612001 0 370133003 900000000000011006 900000000000451002 +1917631027 20040731 0 900000000000207008 119305000 87612001 0 370133003 900000000000011006 900000000000451002 +1917633029 20030131 1 900000000000207008 119307008 58675001 0 118169006 900000000000011006 900000000000451002 +1917633029 20040731 0 900000000000207008 119307008 58675001 0 118169006 900000000000011006 900000000000451002 +1917634024 20030131 1 900000000000207008 119307008 26412008 0 118170007 900000000000011006 900000000000451002 +1917634024 20080731 0 900000000000207008 119307008 26412008 0 118170007 900000000000011006 900000000000451002 +1917634024 20090131 1 900000000000207008 119307008 26412008 1 118170007 900000000000011006 900000000000451002 +1917635020 20030131 1 900000000000207008 119307008 72869002 0 370133003 900000000000011006 900000000000451002 +1917635020 20040731 0 900000000000207008 119307008 72869002 0 370133003 900000000000011006 900000000000451002 +1917636021 20030131 1 900000000000207008 119308003 12150006 0 118170007 900000000000011006 900000000000451002 +1917636021 20190731 1 900000000000207008 119308003 12150006 1 118170007 900000000000011006 900000000000451002 +1917636021 20210131 0 900000000000207008 119308003 12150006 1 118170007 900000000000011006 900000000000451002 +1917637028 20030131 1 900000000000207008 119309006 51114001 0 118169006 900000000000011006 900000000000451002 +1917637028 20080731 0 900000000000207008 119309006 51114001 0 118169006 900000000000011006 900000000000451002 +1917638022 20030131 1 900000000000207008 119309006 261241001 0 118170007 900000000000011006 900000000000451002 +1917638022 20190731 1 900000000000207008 119309006 261241001 1 118170007 900000000000011006 900000000000451002 +1917638022 20210131 0 900000000000207008 119309006 261241001 1 118170007 900000000000011006 900000000000451002 +1917640028 20030131 1 900000000000207008 119311002 35461009 0 118169006 900000000000011006 900000000000451002 +1917640028 20040731 0 900000000000207008 119311002 35461009 0 118169006 900000000000011006 900000000000451002 +1917641029 20030131 1 900000000000207008 119311002 19923001 0 118170007 900000000000011006 900000000000451002 +1917641029 20190731 1 900000000000207008 119311002 19923001 1 118170007 900000000000011006 900000000000451002 +1917641029 20210131 0 900000000000207008 119311002 19923001 1 118170007 900000000000011006 900000000000451002 +1917642020 20030131 1 900000000000207008 119311002 78014005 0 370133003 900000000000011006 900000000000451002 +1917642020 20040731 0 900000000000207008 119311002 78014005 0 370133003 900000000000011006 900000000000451002 +1917643026 20030131 1 900000000000207008 119312009 116204000 0 118170007 900000000000011006 900000000000451002 +1917643026 20130131 0 900000000000207008 119312009 116204000 0 118170007 900000000000011006 900000000000451002 +1917644021 20030131 1 900000000000207008 119313004 102318003 0 118170007 900000000000011006 900000000000451002 +1917644021 20190731 1 900000000000207008 119313004 102318003 1 118170007 900000000000011006 900000000000451002 +1917644021 20210131 0 900000000000207008 119313004 102318003 1 118170007 900000000000011006 900000000000451002 +1917645022 20030131 1 900000000000207008 119314005 16470007 0 118170007 900000000000011006 900000000000451002 +1917645022 20130131 0 900000000000207008 119314005 16470007 0 118170007 900000000000011006 900000000000451002 +1917647025 20030131 1 900000000000207008 119316007 116207007 0 370133003 900000000000011006 900000000000451002 +1917647025 20190731 1 900000000000207008 119316007 116207007 1 370133003 900000000000011006 900000000000451002 +1917648024 20030131 1 900000000000207008 119317003 74947009 0 370133003 900000000000011006 900000000000451002 +1917648024 20190731 1 900000000000207008 119317003 74947009 1 370133003 900000000000011006 900000000000451002 +1917649027 20030131 1 900000000000207008 119318008 11713004 0 370133003 900000000000011006 900000000000451002 +1917649027 20190731 1 900000000000207008 119318008 11713004 1 370133003 900000000000011006 900000000000451002 +1917650027 20030131 1 900000000000207008 119318008 33463005 0 370133003 900000000000011006 900000000000451002 +1917650027 20190731 1 900000000000207008 119318008 33463005 2 370133003 900000000000011006 900000000000451002 +1917651028 20030131 1 900000000000207008 119319000 105590001 0 370133003 900000000000011006 900000000000451002 +1917651028 20040731 0 900000000000207008 119319000 105590001 0 370133003 900000000000011006 900000000000451002 +1917652024 20030131 1 900000000000207008 119320006 255620007 0 370133003 900000000000011006 900000000000451002 +1917652024 20190731 1 900000000000207008 119320006 255620007 1 370133003 900000000000011006 900000000000451002 +1917656022 20030131 1 900000000000207008 119321005 70813002 0 370133003 900000000000011006 900000000000451002 +1917656022 20190731 1 900000000000207008 119321005 70813002 1 370133003 900000000000011006 900000000000451002 +1917657029 20030131 1 900000000000207008 119323008 11311000 0 370133003 900000000000011006 900000000000451002 +1917657029 20110731 0 900000000000207008 119323008 11311000 0 370133003 900000000000011006 900000000000451002 +1917658023 20030131 1 900000000000207008 119325001 314818000 0 118169006 900000000000011006 900000000000451002 +1917658023 20080731 0 900000000000207008 119325001 314818000 0 118169006 900000000000011006 900000000000451002 +1917659026 20030131 1 900000000000207008 119325001 39937001 0 118169006 900000000000011006 900000000000451002 +1917659026 20040731 0 900000000000207008 119325001 39937001 0 118169006 900000000000011006 900000000000451002 +1917660020 20030131 1 900000000000207008 119326000 386045008 0 118169006 900000000000011006 900000000000451002 +1917660020 20190731 1 900000000000207008 119326000 386045008 1 118169006 900000000000011006 900000000000451002 +1917661024 20030131 1 900000000000207008 119327009 72651009 0 118169006 900000000000011006 900000000000451002 +1917661024 20190131 0 900000000000207008 119327009 72651009 0 118169006 900000000000011006 900000000000451002 +1917662028 20030131 1 900000000000207008 119328004 76752008 0 118169006 900000000000011006 900000000000451002 +1917662028 20080731 0 900000000000207008 119328004 76752008 0 118169006 900000000000011006 900000000000451002 +1917662028 20090131 1 900000000000207008 119328004 76752008 1 118169006 900000000000011006 900000000000451002 +1917663022 20030131 1 900000000000207008 119328004 70813002 0 370133003 900000000000011006 900000000000451002 +1917663022 20040731 0 900000000000207008 119328004 70813002 0 370133003 900000000000011006 900000000000451002 +1917664027 20030131 1 900000000000207008 119328004 87640006 0 370133003 900000000000011006 900000000000451002 +1917664027 20070131 0 900000000000207008 119328004 87640006 0 370133003 900000000000011006 900000000000451002 +1917665026 20030131 1 900000000000207008 119329007 76752008 0 118169006 900000000000011006 900000000000451002 +1917665026 20080731 0 900000000000207008 119329007 76752008 0 118169006 900000000000011006 900000000000451002 +1917665026 20090131 1 900000000000207008 119329007 76752008 1 118169006 900000000000011006 900000000000451002 +1917666025 20030131 1 900000000000207008 119329007 53875002 0 370133003 900000000000011006 900000000000451002 +1917666025 20080731 0 900000000000207008 119329007 53875002 0 370133003 900000000000011006 900000000000451002 +1917666025 20090131 1 900000000000207008 119329007 53875002 1 370133003 900000000000011006 900000000000451002 +1917667023 20030131 1 900000000000207008 119329007 70813002 0 370133003 900000000000011006 900000000000451002 +1917667023 20040731 0 900000000000207008 119329007 70813002 0 370133003 900000000000011006 900000000000451002 +1917668029 20030131 1 900000000000207008 119329007 87640006 0 370133003 900000000000011006 900000000000451002 +1917668029 20070131 0 900000000000207008 119329007 87640006 0 370133003 900000000000011006 900000000000451002 +1917672025 20030131 1 900000000000207008 119331003 127954009 0 118169006 900000000000011006 900000000000451002 +1917672025 20190731 1 900000000000207008 119331003 127954009 1 118169006 900000000000011006 900000000000451002 +1917673024 20030131 1 900000000000207008 119331003 87784001 0 118169006 900000000000011006 900000000000451002 +1917673024 20080731 0 900000000000207008 119331003 87784001 0 118169006 900000000000011006 900000000000451002 +1917674029 20030131 1 900000000000207008 119332005 272673000 0 118169006 900000000000011006 900000000000451002 +1917674029 20080731 0 900000000000207008 119332005 272673000 0 118169006 900000000000011006 900000000000451002 +1917675028 20030131 1 900000000000207008 119332005 88928006 0 118169006 900000000000011006 900000000000451002 +1917675028 20080731 0 900000000000207008 119332005 88928006 0 118169006 900000000000011006 900000000000451002 +1917676027 20030131 1 900000000000207008 119332005 6085005 0 370133003 900000000000011006 900000000000451002 +1917676027 20190731 1 900000000000207008 119332005 6085005 1 370133003 900000000000011006 900000000000451002 +1917677020 20030131 1 900000000000207008 119333000 52547004 0 118169006 900000000000011006 900000000000451002 +1917677020 20080731 0 900000000000207008 119333000 52547004 0 118169006 900000000000011006 900000000000451002 +1917678026 20030131 1 900000000000207008 119334006 58675001 0 118169006 900000000000011006 900000000000451002 +1917678026 20040731 0 900000000000207008 119334006 58675001 0 118169006 900000000000011006 900000000000451002 +1917679023 20030131 1 900000000000207008 119334006 82094008 0 118169006 900000000000011006 900000000000451002 +1917679023 20080731 1 900000000000207008 119334006 82094008 1 118169006 900000000000011006 900000000000451002 +1917680021 20030131 1 900000000000207008 119334006 45710003 0 370133003 900000000000011006 900000000000451002 +1917680021 20080731 1 900000000000207008 119334006 45710003 1 370133003 900000000000011006 900000000000451002 +1917681020 20030131 1 900000000000207008 119334006 72869002 0 370133003 900000000000011006 900000000000451002 +1917681020 20040731 0 900000000000207008 119334006 72869002 0 370133003 900000000000011006 900000000000451002 +1917682029 20030131 1 900000000000207008 119335007 58675001 0 118169006 900000000000011006 900000000000451002 +1917682029 20040731 0 900000000000207008 119335007 58675001 0 118169006 900000000000011006 900000000000451002 +1917683023 20030131 1 900000000000207008 119335007 82094008 0 118169006 900000000000011006 900000000000451002 +1917683023 20080731 1 900000000000207008 119335007 82094008 1 118169006 900000000000011006 900000000000451002 +1917684028 20030131 1 900000000000207008 119335007 386089008 0 118171006 900000000000011006 900000000000451002 +1917684028 20080731 1 900000000000207008 119335007 386089008 1 118171006 900000000000011006 900000000000451002 +1917685027 20030131 1 900000000000207008 119335007 45710003 0 370133003 900000000000011006 900000000000451002 +1917685027 20080731 1 900000000000207008 119335007 45710003 1 370133003 900000000000011006 900000000000451002 +1917686026 20030131 1 900000000000207008 119335007 72869002 0 370133003 900000000000011006 900000000000451002 +1917686026 20040731 0 900000000000207008 119335007 72869002 0 370133003 900000000000011006 900000000000451002 +1917687024 20030131 1 900000000000207008 119336008 65149000 0 370133003 900000000000011006 900000000000451002 +1917687024 20190731 1 900000000000207008 119336008 65149000 1 370133003 900000000000011006 900000000000451002 +1917688025 20030131 1 900000000000207008 119337004 116177003 0 370133003 900000000000011006 900000000000451002 +1917688025 20190731 1 900000000000207008 119337004 116177003 1 370133003 900000000000011006 900000000000451002 +1917689022 20030131 1 900000000000207008 119338009 84540008 0 118169006 900000000000011006 900000000000451002 +1917689022 20190731 1 900000000000207008 119338009 84540008 1 118169006 900000000000011006 900000000000451002 +1917690029 20030131 1 900000000000207008 119338009 85756007 0 118169006 900000000000011006 900000000000451002 +1917690029 20080731 0 900000000000207008 119338009 85756007 0 118169006 900000000000011006 900000000000451002 +1917691025 20030131 1 900000000000207008 119339001 39477002 0 370133003 900000000000011006 900000000000451002 +1917691025 20190731 1 900000000000207008 119339001 39477002 1 370133003 900000000000011006 900000000000451002 +1917692021 20030131 1 900000000000207008 119340004 309942007 0 118170007 900000000000011006 900000000000451002 +1917692021 20030731 0 900000000000207008 119340004 309942007 0 118170007 900000000000011006 900000000000451002 +1917693027 20030131 1 900000000000207008 119340004 28112009 0 370133003 900000000000011006 900000000000451002 +1917693027 20190731 1 900000000000207008 119340004 28112009 1 370133003 900000000000011006 900000000000451002 +1917694022 20030131 1 900000000000207008 119341000 122865005 0 118169006 900000000000011006 900000000000451002 +1917694022 20080731 0 900000000000207008 119341000 122865005 0 118169006 900000000000011006 900000000000451002 +1917695023 20030131 1 900000000000207008 119341000 70150004 0 370133003 900000000000011006 900000000000451002 +1917695023 20080731 0 900000000000207008 119341000 70150004 0 370133003 900000000000011006 900000000000451002 +1917695023 20090131 1 900000000000207008 119341000 70150004 1 370133003 900000000000011006 900000000000451002 +1917695023 20100131 0 900000000000207008 119341000 70150004 1 370133003 900000000000011006 900000000000451002 +1917695023 20100731 1 900000000000207008 119341000 70150004 1 370133003 900000000000011006 900000000000451002 +1917695023 20110731 0 900000000000207008 119341000 70150004 1 370133003 900000000000011006 900000000000451002 +1917696024 20030131 1 900000000000207008 119342007 74262004 0 118169006 900000000000011006 900000000000451002 +1917696024 20040731 0 900000000000207008 119342007 74262004 0 118169006 900000000000011006 900000000000451002 +1917697026 20030131 1 900000000000207008 119342007 75535001 0 118169006 900000000000011006 900000000000451002 +1917697026 20080731 0 900000000000207008 119342007 75535001 0 118169006 900000000000011006 900000000000451002 +1917697026 20090131 1 900000000000207008 119342007 75535001 1 118169006 900000000000011006 900000000000451002 +1917698020 20030131 1 900000000000207008 119342007 256897009 0 370133003 900000000000011006 900000000000451002 +1917698020 20080731 0 900000000000207008 119342007 256897009 0 370133003 900000000000011006 900000000000451002 +1917698020 20090131 1 900000000000207008 119342007 256897009 1 370133003 900000000000011006 900000000000451002 +1917699028 20030131 1 900000000000207008 119343002 122865005 0 118169006 900000000000011006 900000000000451002 +1917699028 20080731 0 900000000000207008 119343002 122865005 0 118169006 900000000000011006 900000000000451002 +1917700027 20030131 1 900000000000207008 119343002 15776009 0 118169006 900000000000011006 900000000000451002 +1917700027 20080731 0 900000000000207008 119343002 15776009 0 118169006 900000000000011006 900000000000451002 +1917700027 20090131 1 900000000000207008 119343002 15776009 1 118169006 900000000000011006 900000000000451002 +1917701028 20030131 1 900000000000207008 119343002 17387004 0 370133003 900000000000011006 900000000000451002 +1917701028 20080731 0 900000000000207008 119343002 17387004 0 370133003 900000000000011006 900000000000451002 +1917701028 20090131 1 900000000000207008 119343002 17387004 1 370133003 900000000000011006 900000000000451002 +1917702024 20030131 1 900000000000207008 119344008 71934003 0 118169006 900000000000011006 900000000000451002 +1917702024 20190731 1 900000000000207008 119344008 71934003 1 118169006 900000000000011006 900000000000451002 +1917703025 20030131 1 900000000000207008 119345009 165369002 0 118171006 900000000000011006 900000000000451002 +1917703025 20040731 0 900000000000207008 119345009 165369002 0 118171006 900000000000011006 900000000000451002 +1917704020 20030131 1 900000000000207008 119345009 312483008 0 370133003 900000000000011006 900000000000451002 +1917704020 20190731 1 900000000000207008 119345009 312483008 1 370133003 900000000000011006 900000000000451002 +1917705021 20030131 1 900000000000207008 119346005 256442007 0 370133003 900000000000011006 900000000000451002 +1917705021 20190731 1 900000000000207008 119346005 256442007 1 370133003 900000000000011006 900000000000451002 +1917706022 20030131 1 900000000000207008 119347001 64739004 0 118169006 900000000000011006 900000000000451002 +1917706022 20080731 0 900000000000207008 119347001 64739004 0 118169006 900000000000011006 900000000000451002 +1917706022 20090131 1 900000000000207008 119347001 64739004 1 118169006 900000000000011006 900000000000451002 +1917707029 20030131 1 900000000000207008 119347001 6993007 0 370133003 900000000000011006 900000000000451002 +1917707029 20080731 0 900000000000207008 119347001 6993007 0 370133003 900000000000011006 900000000000451002 +1917707029 20090131 1 900000000000207008 119347001 6993007 1 370133003 900000000000011006 900000000000451002 +1917708023 20030131 1 900000000000207008 119348006 64739004 0 118169006 900000000000011006 900000000000451002 +1917708023 20080731 1 900000000000207008 119348006 64739004 1 118169006 900000000000011006 900000000000451002 +1917709026 20030131 1 900000000000207008 119348006 116163001 0 370133003 900000000000011006 900000000000451002 +1917709026 20080731 1 900000000000207008 119348006 116163001 1 370133003 900000000000011006 900000000000451002 +1917710020 20030131 1 900000000000207008 119349003 90264002 0 118169006 900000000000011006 900000000000451002 +1917710020 20190731 1 900000000000207008 119349003 90264002 1 118169006 900000000000011006 900000000000451002 +1917711024 20030131 1 900000000000207008 119350003 56381008 0 118168003 900000000000011006 900000000000451002 +1917711024 20040731 0 900000000000207008 119350003 56381008 0 118168003 900000000000011006 900000000000451002 +1917712028 20030131 1 900000000000207008 119351004 41898006 0 118169006 900000000000011006 900000000000451002 +1917712028 20080731 0 900000000000207008 119351004 41898006 0 118169006 900000000000011006 900000000000451002 +1917712028 20090131 1 900000000000207008 119351004 41898006 1 118169006 900000000000011006 900000000000451002 +1917712028 20090731 1 900000000000207008 119351004 41898006 0 118169006 900000000000011006 900000000000451002 +1917712028 20190731 1 900000000000207008 119351004 41898006 1 118169006 900000000000011006 900000000000451002 +1917713022 20030131 1 900000000000207008 119351004 165369002 0 118171006 900000000000011006 900000000000451002 +1917713022 20040731 0 900000000000207008 119351004 165369002 0 118171006 900000000000011006 900000000000451002 +1917714027 20030131 1 900000000000207008 119351004 87612001 0 370133003 900000000000011006 900000000000451002 +1917714027 20080731 0 900000000000207008 119351004 87612001 0 370133003 900000000000011006 900000000000451002 +1917714027 20090131 1 900000000000207008 119351004 87612001 1 370133003 900000000000011006 900000000000451002 +1917714027 20090731 0 900000000000207008 119351004 87612001 1 370133003 900000000000011006 900000000000451002 +1917715026 20030131 1 900000000000207008 119352006 127908000 0 118169006 900000000000011006 900000000000451002 +1917715026 20090731 0 900000000000207008 119352006 127908000 0 118169006 900000000000011006 900000000000451002 +1917716025 20030131 1 900000000000207008 119352006 52501007 0 118169006 900000000000011006 900000000000451002 +1917716025 20080731 0 900000000000207008 119352006 52501007 0 118169006 900000000000011006 900000000000451002 +1917717023 20030131 1 900000000000207008 119352006 165369002 0 118171006 900000000000011006 900000000000451002 +1917717023 20040731 0 900000000000207008 119352006 165369002 0 118171006 900000000000011006 900000000000451002 +1917718029 20030131 1 900000000000207008 119352006 87612001 0 370133003 900000000000011006 900000000000451002 +1917718029 20040731 0 900000000000207008 119352006 87612001 0 370133003 900000000000011006 900000000000451002 +1917719021 20030131 1 900000000000207008 119353001 56972008 0 118169006 900000000000011006 900000000000451002 +1917719021 20080731 0 900000000000207008 119353001 56972008 0 118169006 900000000000011006 900000000000451002 +1917719021 20090731 1 900000000000207008 119353001 56972008 0 118169006 900000000000011006 900000000000451002 +1917719021 20190731 1 900000000000207008 119353001 56972008 1 118169006 900000000000011006 900000000000451002 +1917720026 20030131 1 900000000000207008 119353001 165369002 0 118171006 900000000000011006 900000000000451002 +1917720026 20040731 0 900000000000207008 119353001 165369002 0 118171006 900000000000011006 900000000000451002 +1917721027 20030131 1 900000000000207008 119353001 87612001 0 370133003 900000000000011006 900000000000451002 +1917721027 20040731 0 900000000000207008 119353001 87612001 0 370133003 900000000000011006 900000000000451002 +1917725020 20030131 1 900000000000207008 119355008 116712007 0 118169006 900000000000011006 900000000000451002 +1917725020 20080731 0 900000000000207008 119355008 116712007 0 118169006 900000000000011006 900000000000451002 +1917725020 20090731 1 900000000000207008 119355008 116712007 0 118169006 900000000000011006 900000000000451002 +1917725020 20190731 1 900000000000207008 119355008 116712007 1 118169006 900000000000011006 900000000000451002 +1917725020 20200131 0 900000000000207008 119355008 116712007 1 118169006 900000000000011006 900000000000451002 +1917726021 20030131 1 900000000000207008 119355008 165369002 0 118171006 900000000000011006 900000000000451002 +1917726021 20040731 0 900000000000207008 119355008 165369002 0 118171006 900000000000011006 900000000000451002 +1917727028 20030131 1 900000000000207008 119355008 87612001 0 370133003 900000000000011006 900000000000451002 +1917727028 20040731 0 900000000000207008 119355008 87612001 0 370133003 900000000000011006 900000000000451002 +1917728022 20030131 1 900000000000207008 119356009 127916009 0 118169006 900000000000011006 900000000000451002 +1917728022 20080731 0 900000000000207008 119356009 127916009 0 118169006 900000000000011006 900000000000451002 +1917729025 20030131 1 900000000000207008 119356009 165369002 0 118171006 900000000000011006 900000000000451002 +1917729025 20040731 0 900000000000207008 119356009 165369002 0 118171006 900000000000011006 900000000000451002 +1917730024 20030131 1 900000000000207008 119356009 87612001 0 370133003 900000000000011006 900000000000451002 +1917730024 20040731 0 900000000000207008 119356009 87612001 0 370133003 900000000000011006 900000000000451002 +1917731023 20030131 1 900000000000207008 119357000 127917000 0 118169006 900000000000011006 900000000000451002 +1917731023 20080731 0 900000000000207008 119357000 127917000 0 118169006 900000000000011006 900000000000451002 +1917732027 20030131 1 900000000000207008 119357000 165369002 0 118171006 900000000000011006 900000000000451002 +1917732027 20040731 0 900000000000207008 119357000 165369002 0 118171006 900000000000011006 900000000000451002 +1917733021 20030131 1 900000000000207008 119357000 87612001 0 370133003 900000000000011006 900000000000451002 +1917733021 20040731 0 900000000000207008 119357000 87612001 0 370133003 900000000000011006 900000000000451002 +1917734026 20030131 1 900000000000207008 119358005 16378004 0 118169006 900000000000011006 900000000000451002 +1917734026 20080731 0 900000000000207008 119358005 16378004 0 118169006 900000000000011006 900000000000451002 +1917735025 20030131 1 900000000000207008 119358005 165369002 0 118171006 900000000000011006 900000000000451002 +1917735025 20040731 0 900000000000207008 119358005 165369002 0 118171006 900000000000011006 900000000000451002 +1917736029 20030131 1 900000000000207008 119358005 87612001 0 370133003 900000000000011006 900000000000451002 +1917736029 20040731 0 900000000000207008 119358005 87612001 0 370133003 900000000000011006 900000000000451002 +1917737022 20030131 1 900000000000207008 119359002 279729006 0 118169006 900000000000011006 900000000000451002 +1917737022 20060731 0 900000000000207008 119359002 279729006 0 118169006 900000000000011006 900000000000451002 +1917738028 20030131 1 900000000000207008 119359002 85756007 0 118169006 900000000000011006 900000000000451002 +1917738028 20040731 0 900000000000207008 119359002 85756007 0 118169006 900000000000011006 900000000000451002 +1917739020 20030131 1 900000000000207008 119359002 165369002 0 118171006 900000000000011006 900000000000451002 +1917739020 20040731 0 900000000000207008 119359002 165369002 0 118171006 900000000000011006 900000000000451002 +1917740022 20030131 1 900000000000207008 119359002 87612001 0 370133003 900000000000011006 900000000000451002 +1917740022 20040731 0 900000000000207008 119359002 87612001 0 370133003 900000000000011006 900000000000451002 +1917742025 20030131 1 900000000000207008 119361006 165369002 0 118171006 900000000000011006 900000000000451002 +1917742025 20040731 0 900000000000207008 119361006 165369002 0 118171006 900000000000011006 900000000000451002 +1917743024 20030131 1 900000000000207008 119361006 50863008 0 370133003 900000000000011006 900000000000451002 +1917743024 20190731 1 900000000000207008 119361006 50863008 1 370133003 900000000000011006 900000000000451002 +1917744029 20030131 1 900000000000207008 119361006 87612001 0 370133003 900000000000011006 900000000000451002 +1917744029 20040731 0 900000000000207008 119361006 87612001 0 370133003 900000000000011006 900000000000451002 +1917745028 20030131 1 900000000000207008 119362004 165369002 0 118171006 900000000000011006 900000000000451002 +1917745028 20040731 0 900000000000207008 119362004 165369002 0 118171006 900000000000011006 900000000000451002 +1917746027 20030131 1 900000000000207008 119362004 116202001 0 370133003 900000000000011006 900000000000451002 +1917746027 20190731 1 900000000000207008 119362004 116202001 1 370133003 900000000000011006 900000000000451002 +1917747020 20030131 1 900000000000207008 119362004 50863008 0 370133003 900000000000011006 900000000000451002 +1917747020 20030731 0 900000000000207008 119362004 50863008 0 370133003 900000000000011006 900000000000451002 +1917748026 20030131 1 900000000000207008 119362004 87612001 0 370133003 900000000000011006 900000000000451002 +1917748026 20040731 0 900000000000207008 119362004 87612001 0 370133003 900000000000011006 900000000000451002 +1917749023 20030131 1 900000000000207008 119363009 165369002 0 118171006 900000000000011006 900000000000451002 +1917749023 20040731 0 900000000000207008 119363009 165369002 0 118171006 900000000000011006 900000000000451002 +1917750023 20030131 1 900000000000207008 119363009 116203006 0 370133003 900000000000011006 900000000000451002 +1917750023 20190731 1 900000000000207008 119363009 116203006 1 370133003 900000000000011006 900000000000451002 +1917751022 20030131 1 900000000000207008 119363009 50863008 0 370133003 900000000000011006 900000000000451002 +1917751022 20030731 0 900000000000207008 119363009 50863008 0 370133003 900000000000011006 900000000000451002 +1917752026 20030131 1 900000000000207008 119363009 87612001 0 370133003 900000000000011006 900000000000451002 +1917752026 20040731 0 900000000000207008 119363009 87612001 0 370133003 900000000000011006 900000000000451002 +1917753020 20030131 1 900000000000207008 119364003 165369002 0 118171006 900000000000011006 900000000000451002 +1917753020 20040731 0 900000000000207008 119364003 165369002 0 118171006 900000000000011006 900000000000451002 +1917754025 20030131 1 900000000000207008 119364003 67922002 0 370133003 900000000000011006 900000000000451002 +1917754025 20190731 1 900000000000207008 119364003 67922002 1 370133003 900000000000011006 900000000000451002 +1917755029 20030131 1 900000000000207008 119364003 87612001 0 370133003 900000000000011006 900000000000451002 +1917755029 20040731 0 900000000000207008 119364003 87612001 0 370133003 900000000000011006 900000000000451002 +1917756028 20030131 1 900000000000207008 119365002 13924000 0 118168003 900000000000011006 900000000000451002 +1917756028 20190731 1 900000000000207008 119365002 13924000 1 118168003 900000000000011006 900000000000451002 +1917757021 20030131 1 900000000000207008 119366001 116208002 0 118168003 900000000000011006 900000000000451002 +1917757021 20190731 1 900000000000207008 119366001 116208002 1 118168003 900000000000011006 900000000000451002 +1917758027 20030131 1 900000000000207008 119367005 48333001 0 118168003 900000000000011006 900000000000451002 +1917758027 20190731 1 900000000000207008 119367005 48333001 1 118168003 900000000000011006 900000000000451002 +1917759024 20030131 1 900000000000207008 119368000 367643001 0 118168003 900000000000011006 900000000000451002 +1917759024 20190731 1 900000000000207008 119368000 367643001 1 118168003 900000000000011006 900000000000451002 +1917760025 20030131 1 900000000000207008 119369008 56208002 0 118168003 900000000000011006 900000000000451002 +1917760025 20190731 1 900000000000207008 119369008 56208002 1 118168003 900000000000011006 900000000000451002 +1917761026 20030131 1 900000000000207008 119370009 118622000 0 118168003 900000000000011006 900000000000451002 +1917761026 20190731 1 900000000000207008 119370009 118622000 1 118168003 900000000000011006 900000000000451002 +1917762022 20030131 1 900000000000207008 119371008 44132006 0 118168003 900000000000011006 900000000000451002 +1917762022 20190731 1 900000000000207008 119371008 44132006 1 118168003 900000000000011006 900000000000451002 +1917764023 20030131 1 900000000000207008 119373006 77012006 0 370133003 900000000000011006 900000000000451002 +1917764023 20190731 1 900000000000207008 119373006 77012006 1 370133003 900000000000011006 900000000000451002 +1917768021 20030131 1 900000000000207008 119376003 85756007 0 118169006 900000000000011006 900000000000451002 +1917768021 20080731 0 900000000000207008 119376003 85756007 0 118169006 900000000000011006 900000000000451002 +1917769029 20030131 1 900000000000207008 119377007 74281007 0 118169006 900000000000011006 900000000000451002 +1917769029 20190731 1 900000000000207008 119377007 74281007 1 118169006 900000000000011006 900000000000451002 +1917770028 20030131 1 900000000000207008 119378002 37949006 0 118169006 900000000000011006 900000000000451002 +1917770028 20190731 1 900000000000207008 119378002 37949006 1 118169006 900000000000011006 900000000000451002 +1917771029 20030131 1 900000000000207008 119379005 69695003 0 118169006 900000000000011006 900000000000451002 +1917771029 20190731 1 900000000000207008 119379005 69695003 1 118169006 900000000000011006 900000000000451002 +1917772020 20030131 1 900000000000207008 119380008 30315005 0 118169006 900000000000011006 900000000000451002 +1917772020 20190731 1 900000000000207008 119380008 30315005 1 118169006 900000000000011006 900000000000451002 +1917773026 20030131 1 900000000000207008 119380008 116154003 0 118170007 900000000000011006 900000000000451002 +1917773026 20040731 0 900000000000207008 119380008 116154003 0 118170007 900000000000011006 900000000000451002 +1917774021 20030131 1 900000000000207008 119381007 14742008 0 118169006 900000000000011006 900000000000451002 +1917774021 20190731 1 900000000000207008 119381007 14742008 1 118169006 900000000000011006 900000000000451002 +1917775022 20030131 1 900000000000207008 119382000 71854001 0 118169006 900000000000011006 900000000000451002 +1917775022 20190731 1 900000000000207008 119382000 71854001 1 118169006 900000000000011006 900000000000451002 +1917776023 20030131 1 900000000000207008 119383005 10200004 0 118169006 900000000000011006 900000000000451002 +1917776023 20190731 1 900000000000207008 119383005 10200004 1 118169006 900000000000011006 900000000000451002 +1917777025 20030131 1 900000000000207008 119384004 2033006 0 118169006 900000000000011006 900000000000451002 +1917777025 20190731 1 900000000000207008 119384004 2033006 1 118169006 900000000000011006 900000000000451002 +1917778024 20030131 1 900000000000207008 119385003 113293009 0 118169006 900000000000011006 900000000000451002 +1917778024 20190731 1 900000000000207008 119385003 113293009 1 118169006 900000000000011006 900000000000451002 +1917779027 20030131 1 900000000000207008 119386002 41216001 0 118169006 900000000000011006 900000000000451002 +1917779027 20190731 1 900000000000207008 119386002 41216001 1 118169006 900000000000011006 900000000000451002 +1917782021 20030131 1 900000000000207008 119388001 53342003 0 118169006 900000000000011006 900000000000451002 +1917782021 20190731 1 900000000000207008 119388001 53342003 1 118169006 900000000000011006 900000000000451002 +1917783027 20030131 1 900000000000207008 119389009 54066008 0 118169006 900000000000011006 900000000000451002 +1917783027 20170731 0 900000000000207008 119389009 54066008 0 118169006 900000000000011006 900000000000451002 +1917784022 20030131 1 900000000000207008 119390000 44567001 0 118169006 900000000000011006 900000000000451002 +1917784022 20190731 1 900000000000207008 119390000 44567001 1 118169006 900000000000011006 900000000000451002 +1917785023 20030131 1 900000000000207008 119390000 58675001 0 118169006 900000000000011006 900000000000451002 +1917785023 20080731 0 900000000000207008 119390000 58675001 0 118169006 900000000000011006 900000000000451002 +1917787026 20030131 1 900000000000207008 119391001 955009 0 118169006 900000000000011006 900000000000451002 +1917787026 20190731 1 900000000000207008 119391001 955009 1 118169006 900000000000011006 900000000000451002 +1917788020 20030131 1 900000000000207008 119392008 53505006 0 118169006 900000000000011006 900000000000451002 +1917788020 20190731 1 900000000000207008 119392008 53505006 1 118169006 900000000000011006 900000000000451002 +1917789028 20030131 1 900000000000207008 119393003 13648007 0 118169006 900000000000011006 900000000000451002 +1917789028 20190731 1 900000000000207008 119393003 13648007 1 118169006 900000000000011006 900000000000451002 +1917790021 20030131 1 900000000000207008 119393003 85756007 0 118169006 900000000000011006 900000000000451002 +1917790021 20050131 0 900000000000207008 119393003 85756007 0 118169006 900000000000011006 900000000000451002 +1917791020 20030131 1 900000000000207008 119394009 76784001 0 118169006 900000000000011006 900000000000451002 +1917791020 20190731 1 900000000000207008 119394009 76784001 1 118169006 900000000000011006 900000000000451002 +1917792029 20030131 1 900000000000207008 119395005 71252005 0 118169006 900000000000011006 900000000000451002 +1917792029 20190731 1 900000000000207008 119395005 71252005 1 118169006 900000000000011006 900000000000451002 +1917793023 20030131 1 900000000000207008 119396006 2739003 0 118169006 900000000000011006 900000000000451002 +1917793023 20190731 1 900000000000207008 119396006 2739003 1 118169006 900000000000011006 900000000000451002 +1917794028 20030131 1 900000000000207008 119396006 85756007 0 118169006 900000000000011006 900000000000451002 +1917794028 20080731 0 900000000000207008 119396006 85756007 0 118169006 900000000000011006 900000000000451002 +1917795027 20030131 1 900000000000207008 119396006 309942007 0 118170007 900000000000011006 900000000000451002 +1917795027 20030731 0 900000000000207008 119396006 309942007 0 118170007 900000000000011006 900000000000451002 +1917796026 20030131 1 900000000000207008 119397002 18911002 0 118169006 900000000000011006 900000000000451002 +1917796026 20190731 1 900000000000207008 119397002 18911002 1 118169006 900000000000011006 900000000000451002 +1917797024 20030131 1 900000000000207008 119398007 12738006 0 118169006 900000000000011006 900000000000451002 +1917797024 20190731 1 900000000000207008 119398007 12738006 1 118169006 900000000000011006 900000000000451002 +1917798025 20030131 1 900000000000207008 119399004 81745001 0 118169006 900000000000011006 900000000000451002 +1917798025 20190731 1 900000000000207008 119399004 81745001 1 118169006 900000000000011006 900000000000451002 +1917799022 20030131 1 900000000000207008 119400006 28726007 0 118169006 900000000000011006 900000000000451002 +1917799022 20190731 1 900000000000207008 119400006 28726007 1 118169006 900000000000011006 900000000000451002 +1917800021 20030131 1 900000000000207008 119400006 85756007 0 118169006 900000000000011006 900000000000451002 +1917800021 20030731 0 900000000000207008 119400006 85756007 0 118169006 900000000000011006 900000000000451002 +1917802029 20030131 1 900000000000207008 119401005 29445007 0 118169006 900000000000011006 900000000000451002 +1917802029 20190731 1 900000000000207008 119401005 29445007 1 118169006 900000000000011006 900000000000451002 +1917804028 20030131 1 900000000000207008 119403008 78067005 0 118169006 900000000000011006 900000000000451002 +1917804028 20190731 1 900000000000207008 119403008 78067005 1 118169006 900000000000011006 900000000000451002 +1920014020 20030131 1 900000000000207008 122550002 85756007 0 118169006 900000000000011006 900000000000451002 +1920014020 20040731 0 900000000000207008 122550002 85756007 0 118169006 900000000000011006 900000000000451002 +1920015021 20030131 1 900000000000207008 122550002 116147009 0 118171006 900000000000011006 900000000000451002 +1920015021 20030731 0 900000000000207008 122550002 116147009 0 118171006 900000000000011006 900000000000451002 +1920016022 20030131 1 900000000000207008 122550002 48635004 0 118171006 900000000000011006 900000000000451002 +1920016022 20190731 1 900000000000207008 122550002 48635004 1 118171006 900000000000011006 900000000000451002 +1920017029 20030131 1 900000000000207008 122551003 165369002 0 118171006 900000000000011006 900000000000451002 +1920017029 20040731 0 900000000000207008 122551003 165369002 0 118171006 900000000000011006 900000000000451002 +1920018023 20030131 1 900000000000207008 122551003 119273009 0 370133003 900000000000011006 900000000000451002 +1920018023 20190731 1 900000000000207008 122551003 119273009 1 370133003 900000000000011006 900000000000451002 +1920019026 20030131 1 900000000000207008 122552005 165369002 0 118171006 900000000000011006 900000000000451002 +1920019026 20040731 0 900000000000207008 122552005 165369002 0 118171006 900000000000011006 900000000000451002 +1920020021 20030131 1 900000000000207008 122552005 4635002 0 370133003 900000000000011006 900000000000451002 +1920020021 20190731 1 900000000000207008 122552005 4635002 1 370133003 900000000000011006 900000000000451002 +1920021020 20030131 1 900000000000207008 122553000 78220002 0 118169006 900000000000011006 900000000000451002 +1920021020 20080731 0 900000000000207008 122553000 78220002 0 118169006 900000000000011006 900000000000451002 +1920021020 20090131 1 900000000000207008 122553000 78220002 1 118169006 900000000000011006 900000000000451002 +1920021020 20090731 0 900000000000207008 122553000 78220002 1 118169006 900000000000011006 900000000000451002 +1920021020 20100131 1 900000000000207008 122553000 78220002 1 118169006 900000000000011006 900000000000451002 +1920021020 20110131 0 900000000000207008 122553000 78220002 1 118169006 900000000000011006 900000000000451002 +1920021020 20110731 1 900000000000207008 122553000 78220002 1 118169006 900000000000011006 900000000000451002 +1920022029 20030131 1 900000000000207008 122553000 165369002 0 118171006 900000000000011006 900000000000451002 +1920022029 20040731 0 900000000000207008 122553000 165369002 0 118171006 900000000000011006 900000000000451002 +1920023023 20030131 1 900000000000207008 122553000 87612001 0 370133003 900000000000011006 900000000000451002 +1920023023 20080731 0 900000000000207008 122553000 87612001 0 370133003 900000000000011006 900000000000451002 +1920023023 20090131 1 900000000000207008 122553000 87612001 1 370133003 900000000000011006 900000000000451002 +1920023023 20090731 0 900000000000207008 122553000 87612001 1 370133003 900000000000011006 900000000000451002 +1920023023 20100131 1 900000000000207008 122553000 87612001 1 370133003 900000000000011006 900000000000451002 +1920023023 20110131 0 900000000000207008 122553000 87612001 1 370133003 900000000000011006 900000000000451002 +1920024028 20030131 1 900000000000207008 122554006 165369002 0 118171006 900000000000011006 900000000000451002 +1920024028 20040731 0 900000000000207008 122554006 165369002 0 118171006 900000000000011006 900000000000451002 +1920025027 20030131 1 900000000000207008 122554006 31675002 0 370133003 900000000000011006 900000000000451002 +1920025027 20190731 1 900000000000207008 122554006 31675002 1 370133003 900000000000011006 900000000000451002 +1920026026 20030131 1 900000000000207008 122555007 165369002 0 118171006 900000000000011006 900000000000451002 +1920026026 20040731 0 900000000000207008 122555007 165369002 0 118171006 900000000000011006 900000000000451002 +1920027024 20030131 1 900000000000207008 122555007 53130003 0 370133003 900000000000011006 900000000000451002 +1920027024 20190731 1 900000000000207008 122555007 53130003 1 370133003 900000000000011006 900000000000451002 +1920028025 20030131 1 900000000000207008 122556008 165369002 0 118171006 900000000000011006 900000000000451002 +1920028025 20040731 0 900000000000207008 122556008 165369002 0 118171006 900000000000011006 900000000000451002 +1920029022 20030131 1 900000000000207008 122556008 12499000 0 370133003 900000000000011006 900000000000451002 +1920029022 20110731 0 900000000000207008 122556008 12499000 0 370133003 900000000000011006 900000000000451002 +1920030028 20030131 1 900000000000207008 122557004 55460000 0 118169006 900000000000011006 900000000000451002 +1920030028 20080731 1 900000000000207008 122557004 55460000 1 118169006 900000000000011006 900000000000451002 +1920030028 20110731 0 900000000000207008 122557004 55460000 1 118169006 900000000000011006 900000000000451002 +1920031029 20030131 1 900000000000207008 122557004 165369002 0 118171006 900000000000011006 900000000000451002 +1920031029 20040731 0 900000000000207008 122557004 165369002 0 118171006 900000000000011006 900000000000451002 +1920032020 20030131 1 900000000000207008 122557004 12499000 0 370133003 900000000000011006 900000000000451002 +1920032020 20080731 1 900000000000207008 122557004 12499000 1 370133003 900000000000011006 900000000000451002 +1920032020 20110731 0 900000000000207008 122557004 12499000 1 370133003 900000000000011006 900000000000451002 +1920033026 20030131 1 900000000000207008 122558009 165369002 0 118171006 900000000000011006 900000000000451002 +1920033026 20040731 0 900000000000207008 122558009 165369002 0 118171006 900000000000011006 900000000000451002 +1920034021 20030131 1 900000000000207008 122558009 87612001 0 370133003 900000000000011006 900000000000451002 +1920034021 20100131 0 900000000000207008 122558009 87612001 0 370133003 900000000000011006 900000000000451002 +1920035022 20030131 1 900000000000207008 122559001 165369002 0 118171006 900000000000011006 900000000000451002 +1920035022 20040731 0 900000000000207008 122559001 165369002 0 118171006 900000000000011006 900000000000451002 +1920036023 20030131 1 900000000000207008 122559001 386095009 0 370133003 900000000000011006 900000000000451002 +1920036023 20040731 0 900000000000207008 122559001 386095009 0 370133003 900000000000011006 900000000000451002 +1920037025 20030131 1 900000000000207008 122559001 87612001 0 370133003 900000000000011006 900000000000451002 +1920037025 20090731 0 900000000000207008 122559001 87612001 0 370133003 900000000000011006 900000000000451002 +1920038024 20030131 1 900000000000207008 122560006 105470007 0 118170007 900000000000011006 900000000000451002 +1920038024 20080731 1 900000000000207008 122560006 105470007 1 118170007 900000000000011006 900000000000451002 +1920038024 20090731 0 900000000000207008 122560006 105470007 1 118170007 900000000000011006 900000000000451002 +1920038024 20100131 1 900000000000207008 122560006 105470007 1 118170007 900000000000011006 900000000000451002 +1920038024 20110131 0 900000000000207008 122560006 105470007 1 118170007 900000000000011006 900000000000451002 +1920038024 20110731 1 900000000000207008 122560006 105470007 1 118170007 900000000000011006 900000000000451002 +1920039027 20030131 1 900000000000207008 122560006 165369002 0 118171006 900000000000011006 900000000000451002 +1920039027 20040731 0 900000000000207008 122560006 165369002 0 118171006 900000000000011006 900000000000451002 +1920040025 20030131 1 900000000000207008 122560006 87612001 0 370133003 900000000000011006 900000000000451002 +1920040025 20080731 1 900000000000207008 122560006 87612001 1 370133003 900000000000011006 900000000000451002 +1920040025 20090731 0 900000000000207008 122560006 87612001 1 370133003 900000000000011006 900000000000451002 +1920040025 20100131 1 900000000000207008 122560006 87612001 1 370133003 900000000000011006 900000000000451002 +1920040025 20110131 0 900000000000207008 122560006 87612001 1 370133003 900000000000011006 900000000000451002 +1920041026 20030131 1 900000000000207008 122561005 116154003 0 118170007 900000000000011006 900000000000451002 +1920041026 20080731 1 900000000000207008 122561005 116154003 1 118170007 900000000000011006 900000000000451002 +1920041026 20090731 0 900000000000207008 122561005 116154003 1 118170007 900000000000011006 900000000000451002 +1920041026 20100131 1 900000000000207008 122561005 116154003 1 118170007 900000000000011006 900000000000451002 +1920041026 20110131 0 900000000000207008 122561005 116154003 1 118170007 900000000000011006 900000000000451002 +1920041026 20110731 1 900000000000207008 122561005 116154003 1 118170007 900000000000011006 900000000000451002 +1920042022 20030131 1 900000000000207008 122561005 165369002 0 118171006 900000000000011006 900000000000451002 +1920042022 20040731 0 900000000000207008 122561005 165369002 0 118171006 900000000000011006 900000000000451002 +1920043028 20030131 1 900000000000207008 122561005 87612001 0 370133003 900000000000011006 900000000000451002 +1920043028 20080731 1 900000000000207008 122561005 87612001 1 370133003 900000000000011006 900000000000451002 +1920043028 20090731 0 900000000000207008 122561005 87612001 1 370133003 900000000000011006 900000000000451002 +1920043028 20100131 1 900000000000207008 122561005 87612001 1 370133003 900000000000011006 900000000000451002 +1920043028 20110131 0 900000000000207008 122561005 87612001 1 370133003 900000000000011006 900000000000451002 +1920044023 20030131 1 900000000000207008 122562003 133933007 0 118170007 900000000000011006 900000000000451002 +1920044023 20080731 1 900000000000207008 122562003 133933007 1 118170007 900000000000011006 900000000000451002 +1920044023 20090731 0 900000000000207008 122562003 133933007 1 118170007 900000000000011006 900000000000451002 +1920044023 20100131 1 900000000000207008 122562003 133933007 1 118170007 900000000000011006 900000000000451002 +1920044023 20110131 0 900000000000207008 122562003 133933007 1 118170007 900000000000011006 900000000000451002 +1920044023 20110731 1 900000000000207008 122562003 133933007 1 118170007 900000000000011006 900000000000451002 +1920045024 20030131 1 900000000000207008 122562003 165369002 0 118171006 900000000000011006 900000000000451002 +1920045024 20040731 0 900000000000207008 122562003 165369002 0 118171006 900000000000011006 900000000000451002 +1920046020 20030131 1 900000000000207008 122562003 87612001 0 370133003 900000000000011006 900000000000451002 +1920046020 20080731 1 900000000000207008 122562003 87612001 1 370133003 900000000000011006 900000000000451002 +1920046020 20090731 0 900000000000207008 122562003 87612001 1 370133003 900000000000011006 900000000000451002 +1920046020 20100131 1 900000000000207008 122562003 87612001 1 370133003 900000000000011006 900000000000451002 +1920046020 20110131 0 900000000000207008 122562003 87612001 1 370133003 900000000000011006 900000000000451002 +1920047027 20030131 1 900000000000207008 122563008 116154003 0 118170007 900000000000011006 900000000000451002 +1920047027 20080731 0 900000000000207008 122563008 116154003 0 118170007 900000000000011006 900000000000451002 +1920048021 20030131 1 900000000000207008 122563008 116205004 0 118170007 900000000000011006 900000000000451002 +1920048021 20080731 0 900000000000207008 122563008 116205004 0 118170007 900000000000011006 900000000000451002 +1920049029 20030131 1 900000000000207008 122563008 165369002 0 118171006 900000000000011006 900000000000451002 +1920049029 20040731 0 900000000000207008 122563008 165369002 0 118171006 900000000000011006 900000000000451002 +1920050029 20030131 1 900000000000207008 122563008 87612001 0 370133003 900000000000011006 900000000000451002 +1920050029 20040731 0 900000000000207008 122563008 87612001 0 370133003 900000000000011006 900000000000451002 +1920051025 20030131 1 900000000000207008 122564002 116205004 0 118170007 900000000000011006 900000000000451002 +1920051025 20080731 0 900000000000207008 122564002 116205004 0 118170007 900000000000011006 900000000000451002 +1920052021 20030131 1 900000000000207008 122564002 165369002 0 118171006 900000000000011006 900000000000451002 +1920052021 20040731 0 900000000000207008 122564002 165369002 0 118171006 900000000000011006 900000000000451002 +1920053027 20030131 1 900000000000207008 122564002 87612001 0 370133003 900000000000011006 900000000000451002 +1920053027 20040731 0 900000000000207008 122564002 87612001 0 370133003 900000000000011006 900000000000451002 +1920054022 20030131 1 900000000000207008 122565001 35461009 0 118169006 900000000000011006 900000000000451002 +1920054022 20080731 0 900000000000207008 122565001 35461009 0 118169006 900000000000011006 900000000000451002 +1920055023 20030131 1 900000000000207008 122565001 49062001 0 118170007 900000000000011006 900000000000451002 +1920055023 20040731 0 900000000000207008 122565001 49062001 0 118170007 900000000000011006 900000000000451002 +1920056024 20030131 1 900000000000207008 122565001 70777001 0 118171006 900000000000011006 900000000000451002 +1920056024 20080731 0 900000000000207008 122565001 70777001 0 118171006 900000000000011006 900000000000451002 +1920056024 20090131 1 900000000000207008 122565001 70777001 1 118171006 900000000000011006 900000000000451002 +1920057026 20030131 1 900000000000207008 122565001 78014005 0 370133003 900000000000011006 900000000000451002 +1920057026 20080731 0 900000000000207008 122565001 78014005 0 370133003 900000000000011006 900000000000451002 +1920057026 20090131 1 900000000000207008 122565001 78014005 1 370133003 900000000000011006 900000000000451002 +1920058020 20030131 1 900000000000207008 122566000 13924000 0 118168003 900000000000011006 900000000000451002 +1920058020 20080731 0 900000000000207008 122566000 13924000 0 118168003 900000000000011006 900000000000451002 +1920058020 20090131 1 900000000000207008 122566000 13924000 1 118168003 900000000000011006 900000000000451002 +1920059028 20030131 1 900000000000207008 122566000 33463005 0 370133003 900000000000011006 900000000000451002 +1920059028 20080731 0 900000000000207008 122566000 33463005 0 370133003 900000000000011006 900000000000451002 +1920060022 20030131 1 900000000000207008 122567009 35461009 0 118169006 900000000000011006 900000000000451002 +1920060022 20080731 0 900000000000207008 122567009 35461009 0 118169006 900000000000011006 900000000000451002 +1920061021 20030131 1 900000000000207008 122567009 386100006 0 370133003 900000000000011006 900000000000451002 +1920061021 20080731 0 900000000000207008 122567009 386100006 0 370133003 900000000000011006 900000000000451002 +1920061021 20090131 1 900000000000207008 122567009 386100006 1 370133003 900000000000011006 900000000000451002 +1920062025 20030131 1 900000000000207008 122568004 258441009 0 116680003 900000000000011006 900000000000451002 +1920063024 20030131 1 900000000000207008 122568004 13924000 0 118168003 900000000000011006 900000000000451002 +1920063024 20080731 0 900000000000207008 122568004 13924000 0 118168003 900000000000011006 900000000000451002 +1920063024 20090131 1 900000000000207008 122568004 13924000 1 118168003 900000000000011006 900000000000451002 +1920064029 20030131 1 900000000000207008 122568004 247450001 0 370133003 900000000000011006 900000000000451002 +1920064029 20080731 0 900000000000207008 122568004 247450001 0 370133003 900000000000011006 900000000000451002 +1920064029 20090131 1 900000000000207008 122568004 247450001 1 370133003 900000000000011006 900000000000451002 +1920065028 20030131 1 900000000000207008 122569007 10410005 0 118169006 900000000000011006 900000000000451002 +1920065028 20080731 0 900000000000207008 122569007 10410005 0 118169006 900000000000011006 900000000000451002 +1920065028 20090131 1 900000000000207008 122569007 10410005 1 118169006 900000000000011006 900000000000451002 +1920066027 20030131 1 900000000000207008 122569007 74616000 0 370133003 900000000000011006 900000000000451002 +1920066027 20080731 0 900000000000207008 122569007 74616000 0 370133003 900000000000011006 900000000000451002 +1920066027 20090131 1 900000000000207008 122569007 74616000 1 370133003 900000000000011006 900000000000451002 +1920070024 20030131 1 900000000000207008 122571007 76848001 0 118169006 900000000000011006 900000000000451002 +1920070024 20080731 0 900000000000207008 122571007 76848001 0 118169006 900000000000011006 900000000000451002 +1920070024 20090131 1 900000000000207008 122571007 76848001 1 118169006 900000000000011006 900000000000451002 +1920071023 20030131 1 900000000000207008 122571007 34429004 0 370133003 900000000000011006 900000000000451002 +1920071023 20080731 0 900000000000207008 122571007 34429004 0 370133003 900000000000011006 900000000000451002 +1920071023 20090131 1 900000000000207008 122571007 34429004 1 370133003 900000000000011006 900000000000451002 +1920072027 20030131 1 900000000000207008 122572000 122865005 0 118169006 900000000000011006 900000000000451002 +1920072027 20080731 0 900000000000207008 122572000 122865005 0 118169006 900000000000011006 900000000000451002 +1920072027 20090131 1 900000000000207008 122572000 122865005 1 118169006 900000000000011006 900000000000451002 +1920073021 20030131 1 900000000000207008 122572000 1985008 0 370133003 900000000000011006 900000000000451002 +1920073021 20080731 0 900000000000207008 122572000 1985008 0 370133003 900000000000011006 900000000000451002 +1920073021 20090131 1 900000000000207008 122572000 1985008 1 370133003 900000000000011006 900000000000451002 +1920074026 20030131 1 900000000000207008 122573005 122865005 0 118169006 900000000000011006 900000000000451002 +1920074026 20080731 0 900000000000207008 122573005 122865005 0 118169006 900000000000011006 900000000000451002 +1920075025 20030131 1 900000000000207008 122573005 62059006 0 370133003 900000000000011006 900000000000451002 +1920075025 20080731 0 900000000000207008 122573005 62059006 0 370133003 900000000000011006 900000000000451002 +1920075025 20090131 1 900000000000207008 122573005 62059006 1 370133003 900000000000011006 900000000000451002 +1920076029 20030131 1 900000000000207008 122574004 122865005 0 118169006 900000000000011006 900000000000451002 +1920076029 20080731 0 900000000000207008 122574004 122865005 0 118169006 900000000000011006 900000000000451002 +1920077022 20030131 1 900000000000207008 122574004 54024007 0 370133003 900000000000011006 900000000000451002 +1920077022 20080731 0 900000000000207008 122574004 54024007 0 370133003 900000000000011006 900000000000451002 +1920077022 20090131 1 900000000000207008 122574004 54024007 1 370133003 900000000000011006 900000000000451002 +1920078028 20030131 1 900000000000207008 122575003 35461009 0 118169006 900000000000011006 900000000000451002 +1920078028 20080731 0 900000000000207008 122575003 35461009 0 118169006 900000000000011006 900000000000451002 +1920079020 20030131 1 900000000000207008 122575003 78014005 0 370133003 900000000000011006 900000000000451002 +1920079020 20080731 0 900000000000207008 122575003 78014005 0 370133003 900000000000011006 900000000000451002 +1920079020 20090131 1 900000000000207008 122575003 78014005 1 370133003 900000000000011006 900000000000451002 +1920080023 20030131 1 900000000000207008 122576002 71934003 0 118169006 900000000000011006 900000000000451002 +1920080023 20080731 1 900000000000207008 122576002 71934003 1 118169006 900000000000011006 900000000000451002 +1920081022 20030131 1 900000000000207008 122576002 49909006 0 370133003 900000000000011006 900000000000451002 +1920081022 20080731 1 900000000000207008 122576002 49909006 1 370133003 900000000000011006 900000000000451002 +1920082026 20030131 1 900000000000207008 122577006 71252005 0 118169006 900000000000011006 900000000000451002 +1920082026 20080731 0 900000000000207008 122577006 71252005 0 118169006 900000000000011006 900000000000451002 +1920082026 20090131 1 900000000000207008 122577006 71252005 1 118169006 900000000000011006 900000000000451002 +1920083020 20030131 1 900000000000207008 122577006 309942007 0 118170007 900000000000011006 900000000000451002 +1920083020 20030731 0 900000000000207008 122577006 309942007 0 118170007 900000000000011006 900000000000451002 +1920084025 20030131 1 900000000000207008 122577006 26859008 0 370133003 900000000000011006 900000000000451002 +1920084025 20080731 0 900000000000207008 122577006 26859008 0 370133003 900000000000011006 900000000000451002 +1920084025 20090131 1 900000000000207008 122577006 26859008 1 370133003 900000000000011006 900000000000451002 +1920085029 20030131 1 900000000000207008 122577006 50473004 0 370133003 900000000000011006 900000000000451002 +1920085029 20080731 0 900000000000207008 122577006 50473004 0 370133003 900000000000011006 900000000000451002 +1920086028 20030131 1 900000000000207008 122578001 53065001 0 118169006 900000000000011006 900000000000451002 +1920086028 20080731 0 900000000000207008 122578001 53065001 0 118169006 900000000000011006 900000000000451002 +1920086028 20090131 1 900000000000207008 122578001 53065001 1 118169006 900000000000011006 900000000000451002 +1920087021 20030131 1 900000000000207008 122578001 309942007 0 118170007 900000000000011006 900000000000451002 +1920087021 20030731 0 900000000000207008 122578001 309942007 0 118170007 900000000000011006 900000000000451002 +1920088027 20030131 1 900000000000207008 122578001 50473004 0 370133003 900000000000011006 900000000000451002 +1920088027 20080731 0 900000000000207008 122578001 50473004 0 370133003 900000000000011006 900000000000451002 +1920088027 20090131 1 900000000000207008 122578001 50473004 1 370133003 900000000000011006 900000000000451002 +1920089024 20030131 1 900000000000207008 122579009 53065001 0 118169006 900000000000011006 900000000000451002 +1920089024 20080731 1 900000000000207008 122579009 53065001 1 118169006 900000000000011006 900000000000451002 +1920090026 20030131 1 900000000000207008 122579009 309942007 0 118170007 900000000000011006 900000000000451002 +1920090026 20030731 0 900000000000207008 122579009 309942007 0 118170007 900000000000011006 900000000000451002 +1920091027 20030131 1 900000000000207008 122579009 49636006 0 370133003 900000000000011006 900000000000451002 +1920091027 20080731 1 900000000000207008 122579009 49636006 1 370133003 900000000000011006 900000000000451002 +1920092023 20030131 1 900000000000207008 122580007 41508009 0 370133003 900000000000011006 900000000000451002 +1920092023 20080731 0 900000000000207008 122580007 41508009 0 370133003 900000000000011006 900000000000451002 +1920092023 20090131 1 900000000000207008 122580007 41508009 1 370133003 900000000000011006 900000000000451002 +1920092023 20110131 0 900000000000207008 122580007 41508009 1 370133003 900000000000011006 900000000000451002 +1920092023 20110731 1 900000000000207008 122580007 41508009 1 370133003 900000000000011006 900000000000451002 +1920093029 20030131 1 900000000000207008 122581006 41898006 0 118169006 900000000000011006 900000000000451002 +1920093029 20080731 0 900000000000207008 122581006 41898006 0 118169006 900000000000011006 900000000000451002 +1920093029 20090131 1 900000000000207008 122581006 41898006 1 118169006 900000000000011006 900000000000451002 +1920093029 20090731 0 900000000000207008 122581006 41898006 1 118169006 900000000000011006 900000000000451002 +1920093029 20100131 1 900000000000207008 122581006 41898006 1 118169006 900000000000011006 900000000000451002 +1920093029 20110131 0 900000000000207008 122581006 41898006 1 118169006 900000000000011006 900000000000451002 +1920093029 20110731 1 900000000000207008 122581006 41898006 1 118169006 900000000000011006 900000000000451002 +1920094024 20030131 1 900000000000207008 122581006 105470007 0 118170007 900000000000011006 900000000000451002 +1920094024 20080731 0 900000000000207008 122581006 105470007 0 118170007 900000000000011006 900000000000451002 +1920094024 20090131 1 900000000000207008 122581006 105470007 1 118170007 900000000000011006 900000000000451002 +1920094024 20090731 0 900000000000207008 122581006 105470007 1 118170007 900000000000011006 900000000000451002 +1920094024 20100131 1 900000000000207008 122581006 105470007 1 118170007 900000000000011006 900000000000451002 +1920094024 20110131 0 900000000000207008 122581006 105470007 1 118170007 900000000000011006 900000000000451002 +1920094024 20110731 1 900000000000207008 122581006 105470007 1 118170007 900000000000011006 900000000000451002 +1920095020 20030131 1 900000000000207008 122581006 165369002 0 118171006 900000000000011006 900000000000451002 +1920095020 20040731 0 900000000000207008 122581006 165369002 0 118171006 900000000000011006 900000000000451002 +1920096021 20030131 1 900000000000207008 122581006 87612001 0 370133003 900000000000011006 900000000000451002 +1920096021 20080731 0 900000000000207008 122581006 87612001 0 370133003 900000000000011006 900000000000451002 +1920096021 20090131 1 900000000000207008 122581006 87612001 1 370133003 900000000000011006 900000000000451002 +1920096021 20090731 0 900000000000207008 122581006 87612001 1 370133003 900000000000011006 900000000000451002 +1920096021 20100131 1 900000000000207008 122581006 87612001 1 370133003 900000000000011006 900000000000451002 +1920096021 20110131 0 900000000000207008 122581006 87612001 1 370133003 900000000000011006 900000000000451002 +1920096021 20110731 1 900000000000207008 122581006 87612001 1 370133003 900000000000011006 900000000000451002 +1920097028 20030131 1 900000000000207008 122582004 41898006 0 118169006 900000000000011006 900000000000451002 +1920097028 20080731 1 900000000000207008 122582004 41898006 1 118169006 900000000000011006 900000000000451002 +1920097028 20090731 1 900000000000207008 122582004 41898006 0 118169006 900000000000011006 900000000000451002 +1920097028 20190731 1 900000000000207008 122582004 41898006 1 118169006 900000000000011006 900000000000451002 +1920098022 20030131 1 900000000000207008 122582004 165369002 0 118171006 900000000000011006 900000000000451002 +1920098022 20040731 0 900000000000207008 122582004 165369002 0 118171006 900000000000011006 900000000000451002 +1920099025 20030131 1 900000000000207008 122582004 87612001 0 370133003 900000000000011006 900000000000451002 +1920099025 20080731 1 900000000000207008 122582004 87612001 1 370133003 900000000000011006 900000000000451002 +1920099025 20090731 0 900000000000207008 122582004 87612001 1 370133003 900000000000011006 900000000000451002 +1920100022 20030131 1 900000000000207008 122583009 41898006 0 118169006 900000000000011006 900000000000451002 +1920100022 20080731 1 900000000000207008 122583009 41898006 1 118169006 900000000000011006 900000000000451002 +1920100022 20090731 0 900000000000207008 122583009 41898006 1 118169006 900000000000011006 900000000000451002 +1920100022 20100131 1 900000000000207008 122583009 41898006 1 118169006 900000000000011006 900000000000451002 +1920100022 20110131 0 900000000000207008 122583009 41898006 1 118169006 900000000000011006 900000000000451002 +1920100022 20110731 1 900000000000207008 122583009 41898006 1 118169006 900000000000011006 900000000000451002 +1920101021 20030131 1 900000000000207008 122583009 165369002 0 118171006 900000000000011006 900000000000451002 +1920101021 20040731 0 900000000000207008 122583009 165369002 0 118171006 900000000000011006 900000000000451002 +1920102025 20030131 1 900000000000207008 122583009 87612001 0 370133003 900000000000011006 900000000000451002 +1920102025 20080731 1 900000000000207008 122583009 87612001 1 370133003 900000000000011006 900000000000451002 +1920102025 20090731 0 900000000000207008 122583009 87612001 1 370133003 900000000000011006 900000000000451002 +1920102025 20100131 1 900000000000207008 122583009 87612001 1 370133003 900000000000011006 900000000000451002 +1920102025 20110131 0 900000000000207008 122583009 87612001 1 370133003 900000000000011006 900000000000451002 +1920102025 20110731 1 900000000000207008 122583009 87612001 1 370133003 900000000000011006 900000000000451002 +1920103024 20030131 1 900000000000207008 122584003 52501007 0 118169006 900000000000011006 900000000000451002 +1920103024 20080731 0 900000000000207008 122584003 52501007 0 118169006 900000000000011006 900000000000451002 +1920103024 20100131 1 900000000000207008 122584003 52501007 1 118169006 900000000000011006 900000000000451002 +1920104029 20030131 1 900000000000207008 122584003 116154003 0 118170007 900000000000011006 900000000000451002 +1920104029 20080731 0 900000000000207008 122584003 116154003 0 118170007 900000000000011006 900000000000451002 +1920104029 20090131 1 900000000000207008 122584003 116154003 1 118170007 900000000000011006 900000000000451002 +1920104029 20090731 0 900000000000207008 122584003 116154003 1 118170007 900000000000011006 900000000000451002 +1920104029 20100131 1 900000000000207008 122584003 116154003 1 118170007 900000000000011006 900000000000451002 +1920105028 20030131 1 900000000000207008 122584003 165369002 0 118171006 900000000000011006 900000000000451002 +1920105028 20040731 0 900000000000207008 122584003 165369002 0 118171006 900000000000011006 900000000000451002 +1920106027 20030131 1 900000000000207008 122584003 87612001 0 370133003 900000000000011006 900000000000451002 +1920106027 20040731 0 900000000000207008 122584003 87612001 0 370133003 900000000000011006 900000000000451002 +1920107020 20030131 1 900000000000207008 122585002 52501007 0 118169006 900000000000011006 900000000000451002 +1920107020 20080731 0 900000000000207008 122585002 52501007 0 118169006 900000000000011006 900000000000451002 +1920107020 20090731 1 900000000000207008 122585002 52501007 0 118169006 900000000000011006 900000000000451002 +1920107020 20190731 1 900000000000207008 122585002 52501007 1 118169006 900000000000011006 900000000000451002 +1920108026 20030131 1 900000000000207008 122585002 165369002 0 118171006 900000000000011006 900000000000451002 +1920108026 20040731 0 900000000000207008 122585002 165369002 0 118171006 900000000000011006 900000000000451002 +1920109023 20030131 1 900000000000207008 122585002 87612001 0 370133003 900000000000011006 900000000000451002 +1920109023 20040731 0 900000000000207008 122585002 87612001 0 370133003 900000000000011006 900000000000451002 +1920112021 20030131 1 900000000000207008 122587005 165369002 0 118171006 900000000000011006 900000000000451002 +1920112021 20040731 0 900000000000207008 122587005 165369002 0 118171006 900000000000011006 900000000000451002 +1920113027 20030131 1 900000000000207008 122587005 116202001 0 370133003 900000000000011006 900000000000451002 +1920113027 20190731 1 900000000000207008 122587005 116202001 2 370133003 900000000000011006 900000000000451002 +1920114022 20030131 1 900000000000207008 122587005 50863008 0 370133003 900000000000011006 900000000000451002 +1920114022 20030731 0 900000000000207008 122587005 50863008 0 370133003 900000000000011006 900000000000451002 +1920115023 20030131 1 900000000000207008 122587005 87612001 0 370133003 900000000000011006 900000000000451002 +1920115023 20040731 0 900000000000207008 122587005 87612001 0 370133003 900000000000011006 900000000000451002 +1920116024 20030131 1 900000000000207008 122588000 116154003 0 118170007 900000000000011006 900000000000451002 +1920116024 20080731 1 900000000000207008 122588000 116154003 1 118170007 900000000000011006 900000000000451002 +1920116024 20090131 0 900000000000207008 122588000 116154003 1 118170007 900000000000011006 900000000000451002 +1920116024 20090731 1 900000000000207008 122588000 116154003 1 118170007 900000000000011006 900000000000451002 +1920116024 20110131 0 900000000000207008 122588000 116154003 1 118170007 900000000000011006 900000000000451002 +1920116024 20110731 1 900000000000207008 122588000 116154003 1 118170007 900000000000011006 900000000000451002 +1920117026 20030131 1 900000000000207008 122588000 165369002 0 118171006 900000000000011006 900000000000451002 +1920117026 20040731 0 900000000000207008 122588000 165369002 0 118171006 900000000000011006 900000000000451002 +1920118020 20030131 1 900000000000207008 122588000 116202001 0 370133003 900000000000011006 900000000000451002 +1920118020 20080731 1 900000000000207008 122588000 116202001 1 370133003 900000000000011006 900000000000451002 +1920118020 20090131 0 900000000000207008 122588000 116202001 1 370133003 900000000000011006 900000000000451002 +1920118020 20090731 1 900000000000207008 122588000 116202001 1 370133003 900000000000011006 900000000000451002 +1920118020 20110131 0 900000000000207008 122588000 116202001 1 370133003 900000000000011006 900000000000451002 +1920118020 20110731 1 900000000000207008 122588000 116202001 1 370133003 900000000000011006 900000000000451002 +1920119028 20030131 1 900000000000207008 122588000 50863008 0 370133003 900000000000011006 900000000000451002 +1920119028 20030731 0 900000000000207008 122588000 50863008 0 370133003 900000000000011006 900000000000451002 +1920120023 20030131 1 900000000000207008 122588000 87612001 0 370133003 900000000000011006 900000000000451002 +1920120023 20040731 0 900000000000207008 122588000 87612001 0 370133003 900000000000011006 900000000000451002 +1920121022 20030131 1 900000000000207008 122589008 105470007 0 118170007 900000000000011006 900000000000451002 +1920121022 20080731 1 900000000000207008 122589008 105470007 1 118170007 900000000000011006 900000000000451002 +1920121022 20090131 0 900000000000207008 122589008 105470007 1 118170007 900000000000011006 900000000000451002 +1920121022 20090731 1 900000000000207008 122589008 105470007 1 118170007 900000000000011006 900000000000451002 +1920121022 20110131 0 900000000000207008 122589008 105470007 1 118170007 900000000000011006 900000000000451002 +1920121022 20110731 1 900000000000207008 122589008 105470007 1 118170007 900000000000011006 900000000000451002 +1920122026 20030131 1 900000000000207008 122589008 165369002 0 118171006 900000000000011006 900000000000451002 +1920122026 20040731 0 900000000000207008 122589008 165369002 0 118171006 900000000000011006 900000000000451002 +1920123020 20030131 1 900000000000207008 122589008 67922002 0 370133003 900000000000011006 900000000000451002 +1920123020 20080731 1 900000000000207008 122589008 67922002 1 370133003 900000000000011006 900000000000451002 +1920123020 20090131 0 900000000000207008 122589008 67922002 1 370133003 900000000000011006 900000000000451002 +1920123020 20090731 1 900000000000207008 122589008 67922002 1 370133003 900000000000011006 900000000000451002 +1920123020 20110131 0 900000000000207008 122589008 67922002 1 370133003 900000000000011006 900000000000451002 +1920123020 20110731 1 900000000000207008 122589008 67922002 1 370133003 900000000000011006 900000000000451002 +1920124025 20030131 1 900000000000207008 122589008 87612001 0 370133003 900000000000011006 900000000000451002 +1920124025 20040731 0 900000000000207008 122589008 87612001 0 370133003 900000000000011006 900000000000451002 +1920125029 20030131 1 900000000000207008 122590004 116154003 0 118170007 900000000000011006 900000000000451002 +1920125029 20080731 1 900000000000207008 122590004 116154003 1 118170007 900000000000011006 900000000000451002 +1920125029 20090131 0 900000000000207008 122590004 116154003 1 118170007 900000000000011006 900000000000451002 +1920125029 20090731 1 900000000000207008 122590004 116154003 1 118170007 900000000000011006 900000000000451002 +1920125029 20110131 0 900000000000207008 122590004 116154003 1 118170007 900000000000011006 900000000000451002 +1920125029 20110731 1 900000000000207008 122590004 116154003 1 118170007 900000000000011006 900000000000451002 +1920126028 20030131 1 900000000000207008 122590004 165369002 0 118171006 900000000000011006 900000000000451002 +1920126028 20040731 0 900000000000207008 122590004 165369002 0 118171006 900000000000011006 900000000000451002 +1920127021 20030131 1 900000000000207008 122590004 67922002 0 370133003 900000000000011006 900000000000451002 +1920127021 20080731 1 900000000000207008 122590004 67922002 1 370133003 900000000000011006 900000000000451002 +1920127021 20090131 0 900000000000207008 122590004 67922002 1 370133003 900000000000011006 900000000000451002 +1920127021 20090731 1 900000000000207008 122590004 67922002 1 370133003 900000000000011006 900000000000451002 +1920127021 20110131 0 900000000000207008 122590004 67922002 1 370133003 900000000000011006 900000000000451002 +1920127021 20110731 1 900000000000207008 122590004 67922002 1 370133003 900000000000011006 900000000000451002 +1920128027 20030131 1 900000000000207008 122590004 87612001 0 370133003 900000000000011006 900000000000451002 +1920128027 20040731 0 900000000000207008 122590004 87612001 0 370133003 900000000000011006 900000000000451002 +1920129024 20030131 1 900000000000207008 122591000 165369002 0 118171006 900000000000011006 900000000000451002 +1920129024 20040731 0 900000000000207008 122591000 165369002 0 118171006 900000000000011006 900000000000451002 +1920130025 20030131 1 900000000000207008 122591000 67922002 0 370133003 900000000000011006 900000000000451002 +1920130025 20190731 1 900000000000207008 122591000 67922002 2 370133003 900000000000011006 900000000000451002 +1920130025 20210131 0 900000000000207008 122591000 67922002 2 370133003 900000000000011006 900000000000451002 +1920131026 20030131 1 900000000000207008 122591000 87612001 0 370133003 900000000000011006 900000000000451002 +1920131026 20090731 0 900000000000207008 122591000 87612001 0 370133003 900000000000011006 900000000000451002 +1920132022 20030131 1 900000000000207008 122592007 165369002 0 118171006 900000000000011006 900000000000451002 +1920132022 20040731 0 900000000000207008 122592007 165369002 0 118171006 900000000000011006 900000000000451002 +1920133028 20030131 1 900000000000207008 122592007 261226001 0 370133003 900000000000011006 900000000000451002 +1920133028 20090131 0 900000000000207008 122592007 261226001 0 370133003 900000000000011006 900000000000451002 +1920133028 20090731 1 900000000000207008 122592007 261226001 0 370133003 900000000000011006 900000000000451002 +1920133028 20180131 0 900000000000207008 122592007 261226001 0 370133003 900000000000011006 900000000000451002 +1920134023 20030131 1 900000000000207008 122592007 87612001 0 370133003 900000000000011006 900000000000451002 +1920134023 20040731 0 900000000000207008 122592007 87612001 0 370133003 900000000000011006 900000000000451002 +1920135024 20030131 1 900000000000207008 122593002 56208002 0 118168003 900000000000011006 900000000000451002 +1920135024 20080731 0 900000000000207008 122593002 56208002 0 118168003 900000000000011006 900000000000451002 +1920135024 20090131 1 900000000000207008 122593002 56208002 1 118168003 900000000000011006 900000000000451002 +1920136020 20030131 1 900000000000207008 122593002 85756007 0 118169006 900000000000011006 900000000000451002 +1920136020 20080731 0 900000000000207008 122593002 85756007 0 118169006 900000000000011006 900000000000451002 +1920137027 20030131 1 900000000000207008 122594008 13561001 0 118169006 900000000000011006 900000000000451002 +1920137027 20080731 0 900000000000207008 122594008 13561001 0 118169006 900000000000011006 900000000000451002 +1920137027 20090131 1 900000000000207008 122594008 13561001 1 118169006 900000000000011006 900000000000451002 +1920138021 20030131 1 900000000000207008 122594008 40431001 0 370133003 900000000000011006 900000000000451002 +1920138021 20080731 0 900000000000207008 122594008 40431001 0 370133003 900000000000011006 900000000000451002 +1920138021 20090131 1 900000000000207008 122594008 40431001 1 370133003 900000000000011006 900000000000451002 +1920139029 20030131 1 900000000000207008 122595009 76752008 0 118169006 900000000000011006 900000000000451002 +1920139029 20080731 0 900000000000207008 122595009 76752008 0 118169006 900000000000011006 900000000000451002 +1920139029 20090131 1 900000000000207008 122595009 76752008 1 118169006 900000000000011006 900000000000451002 +1920140027 20030131 1 900000000000207008 122595009 85756007 0 118169006 900000000000011006 900000000000451002 +1920140027 20080731 0 900000000000207008 122595009 85756007 0 118169006 900000000000011006 900000000000451002 +1920141028 20030131 1 900000000000207008 122595009 172043006 0 118171006 900000000000011006 900000000000451002 +1920141028 20080731 0 900000000000207008 122595009 172043006 0 118171006 900000000000011006 900000000000451002 +1920141028 20090131 1 900000000000207008 122595009 172043006 1 118171006 900000000000011006 900000000000451002 +1920142024 20030131 1 900000000000207008 122596005 49755003 0 118168003 900000000000011006 900000000000451002 +1920142024 20080731 0 900000000000207008 122596005 49755003 0 118168003 900000000000011006 900000000000451002 +1920143025 20030131 1 900000000000207008 122596005 76752008 0 118169006 900000000000011006 900000000000451002 +1920143025 20080731 0 900000000000207008 122596005 76752008 0 118169006 900000000000011006 900000000000451002 +1920144020 20030131 1 900000000000207008 122596005 85756007 0 118169006 900000000000011006 900000000000451002 +1920144020 20080731 0 900000000000207008 122596005 85756007 0 118169006 900000000000011006 900000000000451002 +1920145021 20030131 1 900000000000207008 122596005 5884001 0 118171006 900000000000011006 900000000000451002 +1920145021 20080731 0 900000000000207008 122596005 5884001 0 118171006 900000000000011006 900000000000451002 +1920146022 20030131 1 900000000000207008 122597001 49755003 0 118168003 900000000000011006 900000000000451002 +1920146022 20080731 0 900000000000207008 122597001 49755003 0 118168003 900000000000011006 900000000000451002 +1920147029 20030131 1 900000000000207008 122597001 76752008 0 118169006 900000000000011006 900000000000451002 +1920147029 20080731 0 900000000000207008 122597001 76752008 0 118169006 900000000000011006 900000000000451002 +1920148023 20030131 1 900000000000207008 122597001 85756007 0 118169006 900000000000011006 900000000000451002 +1920148023 20080731 0 900000000000207008 122597001 85756007 0 118169006 900000000000011006 900000000000451002 +1920149026 20030131 1 900000000000207008 122597001 5884001 0 118171006 900000000000011006 900000000000451002 +1920149026 20080731 0 900000000000207008 122597001 5884001 0 118171006 900000000000011006 900000000000451002 +1920150026 20030131 1 900000000000207008 122598006 49755003 0 118168003 900000000000011006 900000000000451002 +1920150026 20080731 0 900000000000207008 122598006 49755003 0 118168003 900000000000011006 900000000000451002 +1920151027 20030131 1 900000000000207008 122598006 76752008 0 118169006 900000000000011006 900000000000451002 +1920151027 20080731 0 900000000000207008 122598006 76752008 0 118169006 900000000000011006 900000000000451002 +1920152023 20030131 1 900000000000207008 122598006 85756007 0 118169006 900000000000011006 900000000000451002 +1920152023 20080731 0 900000000000207008 122598006 85756007 0 118169006 900000000000011006 900000000000451002 +1920153029 20030131 1 900000000000207008 122598006 5884001 0 118171006 900000000000011006 900000000000451002 +1920153029 20080731 0 900000000000207008 122598006 5884001 0 118171006 900000000000011006 900000000000451002 +1920154024 20030131 1 900000000000207008 122599003 76752008 0 118169006 900000000000011006 900000000000451002 +1920154024 20080731 0 900000000000207008 122599003 76752008 0 118169006 900000000000011006 900000000000451002 +1920154024 20090131 1 900000000000207008 122599003 76752008 1 118169006 900000000000011006 900000000000451002 +1920155020 20030131 1 900000000000207008 122599003 85756007 0 118169006 900000000000011006 900000000000451002 +1920155020 20080731 0 900000000000207008 122599003 85756007 0 118169006 900000000000011006 900000000000451002 +1920156021 20030131 1 900000000000207008 122599003 384723003 0 118171006 900000000000011006 900000000000451002 +1920156021 20080731 0 900000000000207008 122599003 384723003 0 118171006 900000000000011006 900000000000451002 +1920156021 20090131 1 900000000000207008 122599003 384723003 1 118171006 900000000000011006 900000000000451002 +1920157028 20030131 1 900000000000207008 122600000 76752008 0 118169006 900000000000011006 900000000000451002 +1920157028 20080731 0 900000000000207008 122600000 76752008 0 118169006 900000000000011006 900000000000451002 +1920157028 20090131 1 900000000000207008 122600000 76752008 1 118169006 900000000000011006 900000000000451002 +1920158022 20030131 1 900000000000207008 122600000 85756007 0 118169006 900000000000011006 900000000000451002 +1920158022 20080731 0 900000000000207008 122600000 85756007 0 118169006 900000000000011006 900000000000451002 +1920159025 20030131 1 900000000000207008 122600000 64837009 0 118171006 900000000000011006 900000000000451002 +1920159025 20040131 0 900000000000207008 122600000 64837009 0 118171006 900000000000011006 900000000000451002 +1920160024 20030131 1 900000000000207008 122601001 76752008 0 118169006 900000000000011006 900000000000451002 +1920160024 20080731 0 900000000000207008 122601001 76752008 0 118169006 900000000000011006 900000000000451002 +1920160024 20090131 1 900000000000207008 122601001 76752008 1 118169006 900000000000011006 900000000000451002 +1920161023 20030131 1 900000000000207008 122601001 85756007 0 118169006 900000000000011006 900000000000451002 +1920161023 20080731 0 900000000000207008 122601001 85756007 0 118169006 900000000000011006 900000000000451002 +1920162027 20030131 1 900000000000207008 122601001 122548005 0 118171006 900000000000011006 900000000000451002 +1920162027 20080731 0 900000000000207008 122601001 122548005 0 118171006 900000000000011006 900000000000451002 +1920162027 20090131 1 900000000000207008 122601001 122548005 1 118171006 900000000000011006 900000000000451002 +1920163021 20030131 1 900000000000207008 122602008 85756007 0 118169006 900000000000011006 900000000000451002 +1920163021 20080731 0 900000000000207008 122602008 85756007 0 118169006 900000000000011006 900000000000451002 +1920164026 20030131 1 900000000000207008 122602008 122547000 0 118171006 900000000000011006 900000000000451002 +1920164026 20080731 0 900000000000207008 122602008 122547000 0 118171006 900000000000011006 900000000000451002 +1920164026 20090131 1 900000000000207008 122602008 122547000 1 118171006 900000000000011006 900000000000451002 +1920167022 20030131 1 900000000000207008 122604009 39607008 0 118169006 900000000000011006 900000000000451002 +1920167022 20080731 0 900000000000207008 122604009 39607008 0 118169006 900000000000011006 900000000000451002 +1920167022 20090131 1 900000000000207008 122604009 39607008 1 118169006 900000000000011006 900000000000451002 +1920168028 20030131 1 900000000000207008 122604009 85756007 0 118169006 900000000000011006 900000000000451002 +1920168028 20080731 0 900000000000207008 122604009 85756007 0 118169006 900000000000011006 900000000000451002 +1920169020 20030131 1 900000000000207008 122604009 119746007 0 118171006 900000000000011006 900000000000451002 +1920169020 20030731 0 900000000000207008 122604009 119746007 0 118171006 900000000000011006 900000000000451002 +1920170021 20030131 1 900000000000207008 122604009 20418004 0 118171006 900000000000011006 900000000000451002 +1920170021 20030731 0 900000000000207008 122604009 20418004 0 118171006 900000000000011006 900000000000451002 +1920171020 20030131 1 900000000000207008 122605005 39607008 0 118169006 900000000000011006 900000000000451002 +1920171020 20080731 0 900000000000207008 122605005 39607008 0 118169006 900000000000011006 900000000000451002 +1920171020 20090131 1 900000000000207008 122605005 39607008 1 118169006 900000000000011006 900000000000451002 +1920172029 20030131 1 900000000000207008 122605005 85756007 0 118169006 900000000000011006 900000000000451002 +1920172029 20080731 0 900000000000207008 122605005 85756007 0 118169006 900000000000011006 900000000000451002 +1920173023 20030131 1 900000000000207008 122605005 173172000 0 118171006 900000000000011006 900000000000451002 +1920173023 20080731 0 900000000000207008 122605005 173172000 0 118171006 900000000000011006 900000000000451002 +1920173023 20090131 1 900000000000207008 122605005 173172000 1 118171006 900000000000011006 900000000000451002 +1920174028 20030131 1 900000000000207008 122606006 39607008 0 118169006 900000000000011006 900000000000451002 +1920174028 20080731 0 900000000000207008 122606006 39607008 0 118169006 900000000000011006 900000000000451002 +1920174028 20090131 1 900000000000207008 122606006 39607008 1 118169006 900000000000011006 900000000000451002 +1920175027 20030131 1 900000000000207008 122606006 85756007 0 118169006 900000000000011006 900000000000451002 +1920175027 20080731 0 900000000000207008 122606006 85756007 0 118169006 900000000000011006 900000000000451002 +1920176026 20030131 1 900000000000207008 122606006 173171007 0 118171006 900000000000011006 900000000000451002 +1920176026 20080731 0 900000000000207008 122606006 173171007 0 118171006 900000000000011006 900000000000451002 +1920176026 20090131 1 900000000000207008 122606006 173171007 1 118171006 900000000000011006 900000000000451002 +1920177024 20030131 1 900000000000207008 122607002 39607008 0 118169006 900000000000011006 900000000000451002 +1920177024 20080731 0 900000000000207008 122607002 39607008 0 118169006 900000000000011006 900000000000451002 +1920177024 20090731 1 900000000000207008 122607002 39607008 1 118169006 900000000000011006 900000000000451002 +1920178025 20030131 1 900000000000207008 122607002 85756007 0 118169006 900000000000011006 900000000000451002 +1920178025 20080731 0 900000000000207008 122607002 85756007 0 118169006 900000000000011006 900000000000451002 +1920179022 20030131 1 900000000000207008 122607002 49795001 0 118171006 900000000000011006 900000000000451002 +1920179022 20080731 0 900000000000207008 122607002 49795001 0 118171006 900000000000011006 900000000000451002 +1920179022 20090731 1 900000000000207008 122607002 49795001 1 118171006 900000000000011006 900000000000451002 +1920180020 20030131 1 900000000000207008 122608007 39607008 0 118169006 900000000000011006 900000000000451002 +1920180020 20080731 0 900000000000207008 122608007 39607008 0 118169006 900000000000011006 900000000000451002 +1920180020 20090731 1 900000000000207008 122608007 39607008 1 118169006 900000000000011006 900000000000451002 +1920181024 20030131 1 900000000000207008 122608007 85756007 0 118169006 900000000000011006 900000000000451002 +1920181024 20080731 0 900000000000207008 122608007 85756007 0 118169006 900000000000011006 900000000000451002 +1920182028 20030131 1 900000000000207008 122608007 119746007 0 118171006 900000000000011006 900000000000451002 +1920182028 20080731 0 900000000000207008 122608007 119746007 0 118171006 900000000000011006 900000000000451002 +1920183022 20030131 1 900000000000207008 122608007 122541004 0 118171006 900000000000011006 900000000000451002 +1920183022 20080731 0 900000000000207008 122608007 122541004 0 118171006 900000000000011006 900000000000451002 +1920183022 20090731 1 900000000000207008 122608007 122541004 1 118171006 900000000000011006 900000000000451002 +1920184027 20030131 1 900000000000207008 122609004 39607008 0 118169006 900000000000011006 900000000000451002 +1920184027 20080731 1 900000000000207008 122609004 39607008 1 118169006 900000000000011006 900000000000451002 +1920184027 20090131 0 900000000000207008 122609004 39607008 1 118169006 900000000000011006 900000000000451002 +1920184027 20090731 1 900000000000207008 122609004 39607008 1 118169006 900000000000011006 900000000000451002 +1920184027 20150731 0 900000000000207008 122609004 39607008 1 118169006 900000000000011006 900000000000451002 +1920185026 20030131 1 900000000000207008 122609004 955009 0 118169006 900000000000011006 900000000000451002 +1920185026 20080731 0 900000000000207008 122609004 955009 0 118169006 900000000000011006 900000000000451002 +1920186025 20030131 1 900000000000207008 122609004 232595000 0 118171006 900000000000011006 900000000000451002 +1920186025 20080731 1 900000000000207008 122609004 232595000 1 118171006 900000000000011006 900000000000451002 +1920186025 20090131 0 900000000000207008 122609004 232595000 1 118171006 900000000000011006 900000000000451002 +1920186025 20090731 1 900000000000207008 122609004 232595000 1 118171006 900000000000011006 900000000000451002 +1920186025 20150731 0 900000000000207008 122609004 232595000 1 118171006 900000000000011006 900000000000451002 +1920187023 20030131 1 900000000000207008 122609004 87200008 0 370133003 900000000000011006 900000000000451002 +1920187023 20080731 0 900000000000207008 122609004 87200008 0 370133003 900000000000011006 900000000000451002 +1920188029 20030131 1 900000000000207008 122610009 39607008 0 118169006 900000000000011006 900000000000451002 +1920188029 20080731 0 900000000000207008 122610009 39607008 0 118169006 900000000000011006 900000000000451002 +1920188029 20090131 1 900000000000207008 122610009 39607008 1 118169006 900000000000011006 900000000000451002 +1920189021 20030131 1 900000000000207008 122610009 85756007 0 118169006 900000000000011006 900000000000451002 +1920189021 20080731 0 900000000000207008 122610009 85756007 0 118169006 900000000000011006 900000000000451002 +1920190028 20030131 1 900000000000207008 122610009 78603008 0 118171006 900000000000011006 900000000000451002 +1920190028 20080731 0 900000000000207008 122610009 78603008 0 118171006 900000000000011006 900000000000451002 +1920190028 20090131 1 900000000000207008 122610009 78603008 1 118171006 900000000000011006 900000000000451002 +1920191029 20030131 1 900000000000207008 122611008 39607008 0 118169006 900000000000011006 900000000000451002 +1920191029 20080731 0 900000000000207008 122611008 39607008 0 118169006 900000000000011006 900000000000451002 +1920191029 20090131 1 900000000000207008 122611008 39607008 1 118169006 900000000000011006 900000000000451002 +1920191029 20110731 0 900000000000207008 122611008 39607008 1 118169006 900000000000011006 900000000000451002 +1920192020 20030131 1 900000000000207008 122611008 85756007 0 118169006 900000000000011006 900000000000451002 +1920192020 20080731 0 900000000000207008 122611008 85756007 0 118169006 900000000000011006 900000000000451002 +1920193026 20030131 1 900000000000207008 122611008 24174009 0 118170007 900000000000011006 900000000000451002 +1920193026 20030731 0 900000000000207008 122611008 24174009 0 118170007 900000000000011006 900000000000451002 +1920194021 20030131 1 900000000000207008 122611008 243411004 0 118171006 900000000000011006 900000000000451002 +1920194021 20080731 0 900000000000207008 122611008 243411004 0 118171006 900000000000011006 900000000000451002 +1920194021 20090131 1 900000000000207008 122611008 243411004 1 118171006 900000000000011006 900000000000451002 +1920194021 20110731 0 900000000000207008 122611008 243411004 1 118171006 900000000000011006 900000000000451002 +1920195022 20030131 1 900000000000207008 122611008 312849006 0 118171006 900000000000011006 900000000000451002 +1920195022 20050131 0 900000000000207008 122611008 312849006 0 118171006 900000000000011006 900000000000451002 +1920200029 20030131 1 900000000000207008 122613006 39607008 0 118169006 900000000000011006 900000000000451002 +1920200029 20080731 1 900000000000207008 122613006 39607008 1 118169006 900000000000011006 900000000000451002 +1920201025 20030131 1 900000000000207008 122613006 85756007 0 118169006 900000000000011006 900000000000451002 +1920201025 20080731 0 900000000000207008 122613006 85756007 0 118169006 900000000000011006 900000000000451002 +1920202021 20030131 1 900000000000207008 122613006 119284002 0 118171006 900000000000011006 900000000000451002 +1920202021 20080731 0 900000000000207008 122613006 119284002 0 118171006 900000000000011006 900000000000451002 +1920203027 20030131 1 900000000000207008 122613006 78603008 0 118171006 900000000000011006 900000000000451002 +1920203027 20080731 1 900000000000207008 122613006 78603008 1 118171006 900000000000011006 900000000000451002 +1920204022 20030131 1 900000000000207008 122614000 39607008 0 118169006 900000000000011006 900000000000451002 +1920204022 20080731 0 900000000000207008 122614000 39607008 0 118169006 900000000000011006 900000000000451002 +1920204022 20090131 1 900000000000207008 122614000 39607008 1 118169006 900000000000011006 900000000000451002 +1920205023 20030131 1 900000000000207008 122614000 85756007 0 118169006 900000000000011006 900000000000451002 +1920205023 20080731 0 900000000000207008 122614000 85756007 0 118169006 900000000000011006 900000000000451002 +1920206024 20030131 1 900000000000207008 122614000 48635004 0 118171006 900000000000011006 900000000000451002 +1920206024 20080731 0 900000000000207008 122614000 48635004 0 118171006 900000000000011006 900000000000451002 +1920207026 20030131 1 900000000000207008 122614000 78603008 0 118171006 900000000000011006 900000000000451002 +1920207026 20080731 0 900000000000207008 122614000 78603008 0 118171006 900000000000011006 900000000000451002 +1920208020 20030131 1 900000000000207008 122614000 87200008 0 370133003 900000000000011006 900000000000451002 +1920208020 20080731 0 900000000000207008 122614000 87200008 0 370133003 900000000000011006 900000000000451002 +1920212025 20030131 1 900000000000207008 122616003 3120008 0 118169006 900000000000011006 900000000000451002 +1920212025 20080731 1 900000000000207008 122616003 3120008 1 118169006 900000000000011006 900000000000451002 +1920213024 20030131 1 900000000000207008 122616003 82094008 0 118169006 900000000000011006 900000000000451002 +1920213024 20030731 0 900000000000207008 122616003 82094008 0 118169006 900000000000011006 900000000000451002 +1920214029 20030131 1 900000000000207008 122616003 116025006 0 118171006 900000000000011006 900000000000451002 +1920214029 20080731 1 900000000000207008 122616003 116025006 1 118171006 900000000000011006 900000000000451002 +1920215028 20030131 1 900000000000207008 122616003 177765008 0 118171006 900000000000011006 900000000000451002 +1920215028 20080731 0 900000000000207008 122616003 177765008 0 118171006 900000000000011006 900000000000451002 +1920216027 20030131 1 900000000000207008 122617007 3120008 0 118169006 900000000000011006 900000000000451002 +1920216027 20080731 1 900000000000207008 122617007 3120008 1 118169006 900000000000011006 900000000000451002 +1920217020 20030131 1 900000000000207008 122617007 82094008 0 118169006 900000000000011006 900000000000451002 +1920217020 20030731 0 900000000000207008 122617007 82094008 0 118169006 900000000000011006 900000000000451002 +1920218026 20030131 1 900000000000207008 122617007 116025006 0 118171006 900000000000011006 900000000000451002 +1920218026 20080731 1 900000000000207008 122617007 116025006 1 118171006 900000000000011006 900000000000451002 +1920219023 20030131 1 900000000000207008 122617007 274314005 0 118171006 900000000000011006 900000000000451002 +1920219023 20080731 0 900000000000207008 122617007 274314005 0 118171006 900000000000011006 900000000000451002 +1920220028 20030131 1 900000000000207008 122618002 3120008 0 118169006 900000000000011006 900000000000451002 +1920220028 20080731 0 900000000000207008 122618002 3120008 0 118169006 900000000000011006 900000000000451002 +1920220028 20090131 1 900000000000207008 122618002 3120008 1 118169006 900000000000011006 900000000000451002 +1920221029 20030131 1 900000000000207008 122618002 82094008 0 118169006 900000000000011006 900000000000451002 +1920221029 20030731 0 900000000000207008 122618002 82094008 0 118169006 900000000000011006 900000000000451002 +1920222020 20030131 1 900000000000207008 122618002 116025006 0 118171006 900000000000011006 900000000000451002 +1920222020 20030731 0 900000000000207008 122618002 116025006 0 118171006 900000000000011006 900000000000451002 +1920223026 20030131 1 900000000000207008 122618002 48635004 0 118171006 900000000000011006 900000000000451002 +1920223026 20080731 0 900000000000207008 122618002 48635004 0 118171006 900000000000011006 900000000000451002 +1920224021 20030131 1 900000000000207008 122619005 3120008 0 118169006 900000000000011006 900000000000451002 +1920224021 20060131 0 900000000000207008 122619005 3120008 0 118169006 900000000000011006 900000000000451002 +1920225022 20030131 1 900000000000207008 122619005 82094008 0 118169006 900000000000011006 900000000000451002 +1920225022 20030731 0 900000000000207008 122619005 82094008 0 118169006 900000000000011006 900000000000451002 +1920226023 20030131 1 900000000000207008 122619005 116025006 0 118171006 900000000000011006 900000000000451002 +1920226023 20030731 0 900000000000207008 122619005 116025006 0 118171006 900000000000011006 900000000000451002 +1920227025 20030131 1 900000000000207008 122619005 91602002 0 118171006 900000000000011006 900000000000451002 +1920227025 20080731 0 900000000000207008 122619005 91602002 0 118171006 900000000000011006 900000000000451002 +1920227025 20090131 1 900000000000207008 122619005 91602002 1 118171006 900000000000011006 900000000000451002 +1920228024 20030131 1 900000000000207008 122620004 3120008 0 118169006 900000000000011006 900000000000451002 +1920228024 20080731 0 900000000000207008 122620004 3120008 0 118169006 900000000000011006 900000000000451002 +1920228024 20090131 1 900000000000207008 122620004 3120008 1 118169006 900000000000011006 900000000000451002 +1920229027 20030131 1 900000000000207008 122620004 82094008 0 118169006 900000000000011006 900000000000451002 +1920229027 20030731 0 900000000000207008 122620004 82094008 0 118169006 900000000000011006 900000000000451002 +1920230021 20030131 1 900000000000207008 122620004 116025006 0 118171006 900000000000011006 900000000000451002 +1920230021 20030731 0 900000000000207008 122620004 116025006 0 118171006 900000000000011006 900000000000451002 +1920231020 20030131 1 900000000000207008 122620004 14671001 0 118171006 900000000000011006 900000000000451002 +1920231020 20080731 0 900000000000207008 122620004 14671001 0 118171006 900000000000011006 900000000000451002 +1920233023 20030131 1 900000000000207008 122621000 3120008 0 118169006 900000000000011006 900000000000451002 +1920233023 20080731 1 900000000000207008 122621000 3120008 1 118169006 900000000000011006 900000000000451002 +1920234028 20030131 1 900000000000207008 122621000 82094008 0 118169006 900000000000011006 900000000000451002 +1920234028 20030731 0 900000000000207008 122621000 82094008 0 118169006 900000000000011006 900000000000451002 +1920235027 20030131 1 900000000000207008 122621000 116024005 0 118171006 900000000000011006 900000000000451002 +1920235027 20080731 1 900000000000207008 122621000 116024005 1 118171006 900000000000011006 900000000000451002 +1920236026 20030131 1 900000000000207008 122622007 3120008 0 118169006 900000000000011006 900000000000451002 +1920236026 20080731 1 900000000000207008 122622007 3120008 1 118169006 900000000000011006 900000000000451002 +1920237024 20030131 1 900000000000207008 122622007 82094008 0 118169006 900000000000011006 900000000000451002 +1920237024 20030731 0 900000000000207008 122622007 82094008 0 118169006 900000000000011006 900000000000451002 +1920238025 20030131 1 900000000000207008 122622007 116025006 0 118171006 900000000000011006 900000000000451002 +1920238025 20080731 1 900000000000207008 122622007 116025006 1 118171006 900000000000011006 900000000000451002 +1920239022 20030131 1 900000000000207008 122622007 21911005 0 118171006 900000000000011006 900000000000451002 +1920239022 20080731 0 900000000000207008 122622007 21911005 0 118171006 900000000000011006 900000000000451002 +1920240024 20030131 1 900000000000207008 122623002 80891009 0 118169006 900000000000011006 900000000000451002 +1920240024 20080731 0 900000000000207008 122623002 80891009 0 118169006 900000000000011006 900000000000451002 +1920240024 20090131 1 900000000000207008 122623002 80891009 1 118169006 900000000000011006 900000000000451002 +1920241023 20030131 1 900000000000207008 122623002 197042001 0 118171006 900000000000011006 900000000000451002 +1920241023 20080731 0 900000000000207008 122623002 197042001 0 118171006 900000000000011006 900000000000451002 +1920241023 20090131 1 900000000000207008 122623002 197042001 1 118171006 900000000000011006 900000000000451002 +1920242027 20030131 1 900000000000207008 122624008 49755003 0 118168003 900000000000011006 900000000000451002 +1920242027 20080731 0 900000000000207008 122624008 49755003 0 118168003 900000000000011006 900000000000451002 +1920242027 20090131 1 900000000000207008 122624008 49755003 1 118168003 900000000000011006 900000000000451002 +1920242027 20220630 0 900000000000207008 122624008 49755003 1 118168003 900000000000011006 900000000000451002 +1920243021 20030131 1 900000000000207008 122624008 80891009 0 118169006 900000000000011006 900000000000451002 +1920243021 20080731 0 900000000000207008 122624008 80891009 0 118169006 900000000000011006 900000000000451002 +1920243021 20090131 1 900000000000207008 122624008 80891009 1 118169006 900000000000011006 900000000000451002 +1920244026 20030131 1 900000000000207008 122624008 197042001 0 118171006 900000000000011006 900000000000451002 +1920244026 20030731 0 900000000000207008 122624008 197042001 0 118171006 900000000000011006 900000000000451002 +1920245025 20030131 1 900000000000207008 122624008 8889005 0 118171006 900000000000011006 900000000000451002 +1920245025 20030731 0 900000000000207008 122624008 8889005 0 118171006 900000000000011006 900000000000451002 +1920246029 20030131 1 900000000000207008 122625009 80891009 0 118169006 900000000000011006 900000000000451002 +1920246029 20080731 0 900000000000207008 122625009 80891009 0 118169006 900000000000011006 900000000000451002 +1920246029 20090131 1 900000000000207008 122625009 80891009 1 118169006 900000000000011006 900000000000451002 +1920247022 20030131 1 900000000000207008 122625009 197042001 0 118171006 900000000000011006 900000000000451002 +1920247022 20080731 0 900000000000207008 122625009 197042001 0 118171006 900000000000011006 900000000000451002 +1920248028 20030131 1 900000000000207008 122625009 70871006 0 118171006 900000000000011006 900000000000451002 +1920248028 20080731 0 900000000000207008 122625009 70871006 0 118171006 900000000000011006 900000000000451002 +1920249020 20030131 1 900000000000207008 122626005 80891009 0 118169006 900000000000011006 900000000000451002 +1920249020 20080731 0 900000000000207008 122626005 80891009 0 118169006 900000000000011006 900000000000451002 +1920249020 20090131 1 900000000000207008 122626005 80891009 1 118169006 900000000000011006 900000000000451002 +1920250020 20030131 1 900000000000207008 122626005 197042001 0 118171006 900000000000011006 900000000000451002 +1920250020 20080731 0 900000000000207008 122626005 197042001 0 118171006 900000000000011006 900000000000451002 +1920251024 20030131 1 900000000000207008 122626005 48635004 0 118171006 900000000000011006 900000000000451002 +1920251024 20080731 0 900000000000207008 122626005 48635004 0 118171006 900000000000011006 900000000000451002 +1920252028 20030131 1 900000000000207008 122627001 122865005 0 118169006 900000000000011006 900000000000451002 +1920252028 20030731 0 900000000000207008 122627001 122865005 0 118169006 900000000000011006 900000000000451002 +1920253022 20030131 1 900000000000207008 122627001 85756007 0 118169006 900000000000011006 900000000000451002 +1920253022 20080731 0 900000000000207008 122627001 85756007 0 118169006 900000000000011006 900000000000451002 +1920254027 20030131 1 900000000000207008 122627001 116222002 0 118171006 900000000000011006 900000000000451002 +1920254027 20080731 0 900000000000207008 122627001 116222002 0 118171006 900000000000011006 900000000000451002 +1920254027 20090131 1 900000000000207008 122627001 116222002 1 118171006 900000000000011006 900000000000451002 +1920255026 20030131 1 900000000000207008 122628006 32849002 0 118169006 900000000000011006 900000000000451002 +1920255026 20080731 0 900000000000207008 122628006 32849002 0 118169006 900000000000011006 900000000000451002 +1920255026 20090131 1 900000000000207008 122628006 32849002 1 118169006 900000000000011006 900000000000451002 +1920256025 20030131 1 900000000000207008 122628006 85756007 0 118169006 900000000000011006 900000000000451002 +1920256025 20080731 0 900000000000207008 122628006 85756007 0 118169006 900000000000011006 900000000000451002 +1920257023 20030131 1 900000000000207008 122628006 22673000 0 118171006 900000000000011006 900000000000451002 +1920257023 20080731 0 900000000000207008 122628006 22673000 0 118171006 900000000000011006 900000000000451002 +1920257023 20090131 1 900000000000207008 122628006 22673000 1 118171006 900000000000011006 900000000000451002 +1920258029 20030131 1 900000000000207008 122629003 32849002 0 118169006 900000000000011006 900000000000451002 +1920258029 20080731 0 900000000000207008 122629003 32849002 0 118169006 900000000000011006 900000000000451002 +1920258029 20090131 1 900000000000207008 122629003 32849002 1 118169006 900000000000011006 900000000000451002 +1920259021 20030131 1 900000000000207008 122629003 85756007 0 118169006 900000000000011006 900000000000451002 +1920259021 20080731 0 900000000000207008 122629003 85756007 0 118169006 900000000000011006 900000000000451002 +1920260027 20030131 1 900000000000207008 122629003 116226004 0 118171006 900000000000011006 900000000000451002 +1920260027 20080731 0 900000000000207008 122629003 116226004 0 118171006 900000000000011006 900000000000451002 +1920260027 20090131 1 900000000000207008 122629003 116226004 1 118171006 900000000000011006 900000000000451002 +1920261028 20030131 1 900000000000207008 122630008 32849002 0 118169006 900000000000011006 900000000000451002 +1920261028 20080731 0 900000000000207008 122630008 32849002 0 118169006 900000000000011006 900000000000451002 +1920261028 20090731 1 900000000000207008 122630008 32849002 1 118169006 900000000000011006 900000000000451002 +1920262024 20030131 1 900000000000207008 122630008 85756007 0 118169006 900000000000011006 900000000000451002 +1920262024 20080731 0 900000000000207008 122630008 85756007 0 118169006 900000000000011006 900000000000451002 +1920263025 20030131 1 900000000000207008 122630008 107926009 0 118171006 900000000000011006 900000000000451002 +1920263025 20050131 0 900000000000207008 122630008 107926009 0 118171006 900000000000011006 900000000000451002 +1920264020 20030131 1 900000000000207008 122631007 32849002 0 118169006 900000000000011006 900000000000451002 +1920264020 20080731 0 900000000000207008 122631007 32849002 0 118169006 900000000000011006 900000000000451002 +1920264020 20090731 1 900000000000207008 122631007 32849002 1 118169006 900000000000011006 900000000000451002 +1920265021 20030131 1 900000000000207008 122631007 85756007 0 118169006 900000000000011006 900000000000451002 +1920265021 20080731 0 900000000000207008 122631007 85756007 0 118169006 900000000000011006 900000000000451002 +1920266022 20030131 1 900000000000207008 122631007 24506003 0 118171006 900000000000011006 900000000000451002 +1920266022 20080731 0 900000000000207008 122631007 24506003 0 118171006 900000000000011006 900000000000451002 +1920266022 20090731 1 900000000000207008 122631007 24506003 1 118171006 900000000000011006 900000000000451002 +1920267029 20030131 1 900000000000207008 122632000 69695003 0 118169006 900000000000011006 900000000000451002 +1920267029 20030731 0 900000000000207008 122632000 69695003 0 118169006 900000000000011006 900000000000451002 +1920268023 20030131 1 900000000000207008 122632000 85756007 0 118169006 900000000000011006 900000000000451002 +1920268023 20030731 0 900000000000207008 122632000 85756007 0 118169006 900000000000011006 900000000000451002 +1920269026 20030131 1 900000000000207008 122632000 116222002 0 118171006 900000000000011006 900000000000451002 +1920269026 20050131 0 900000000000207008 122632000 116222002 0 118171006 900000000000011006 900000000000451002 +1920270025 20030131 1 900000000000207008 122632000 116227008 0 118171006 900000000000011006 900000000000451002 +1920270025 20080731 0 900000000000207008 122632000 116227008 0 118171006 900000000000011006 900000000000451002 +1920270025 20090131 1 900000000000207008 122632000 116227008 1 118171006 900000000000011006 900000000000451002 +1920271026 20030131 1 900000000000207008 122633005 24065009 0 118169006 900000000000011006 900000000000451002 +1920271026 20080731 0 900000000000207008 122633005 24065009 0 118169006 900000000000011006 900000000000451002 +1920272022 20030131 1 900000000000207008 122633005 116228003 0 118171006 900000000000011006 900000000000451002 +1920272022 20080731 0 900000000000207008 122633005 116228003 0 118171006 900000000000011006 900000000000451002 +1920273028 20030131 1 900000000000207008 122634004 24065009 0 118169006 900000000000011006 900000000000451002 +1920273028 20080731 0 900000000000207008 122634004 24065009 0 118169006 900000000000011006 900000000000451002 +1920274023 20030131 1 900000000000207008 122634004 26452005 0 118171006 900000000000011006 900000000000451002 +1920274023 20080731 0 900000000000207008 122634004 26452005 0 118171006 900000000000011006 900000000000451002 +1920274023 20090131 1 900000000000207008 122634004 26452005 1 118171006 900000000000011006 900000000000451002 +1920275024 20030131 1 900000000000207008 122635003 119379005 0 116680003 900000000000011006 900000000000451002 +1920275024 20030731 0 900000000000207008 122635003 119379005 0 116680003 900000000000011006 900000000000451002 +1920276020 20030131 1 900000000000207008 122635003 69695003 0 118169006 900000000000011006 900000000000451002 +1920276020 20030731 0 900000000000207008 122635003 69695003 0 118169006 900000000000011006 900000000000451002 +1920277027 20030131 1 900000000000207008 122635003 49209004 0 118171006 900000000000011006 900000000000451002 +1920277027 20080731 0 900000000000207008 122635003 49209004 0 118171006 900000000000011006 900000000000451002 +1920277027 20090131 1 900000000000207008 122635003 49209004 1 118171006 900000000000011006 900000000000451002 +1920278021 20030131 1 900000000000207008 122636002 122634004 0 116680003 900000000000011006 900000000000451002 +1920278021 20030731 0 900000000000207008 122636002 122634004 0 116680003 900000000000011006 900000000000451002 +1920279029 20030131 1 900000000000207008 122636002 24065009 0 118169006 900000000000011006 900000000000451002 +1920279029 20080731 0 900000000000207008 122636002 24065009 0 118169006 900000000000011006 900000000000451002 +1920280026 20030131 1 900000000000207008 122636002 26452005 0 118171006 900000000000011006 900000000000451002 +1920280026 20030731 0 900000000000207008 122636002 26452005 0 118171006 900000000000011006 900000000000451002 +1920281027 20030131 1 900000000000207008 122636002 49209004 0 118171006 900000000000011006 900000000000451002 +1920281027 20080731 0 900000000000207008 122636002 49209004 0 118171006 900000000000011006 900000000000451002 +1920281027 20090131 1 900000000000207008 122636002 49209004 1 118171006 900000000000011006 900000000000451002 +1920282023 20030131 1 900000000000207008 122637006 122634004 0 116680003 900000000000011006 900000000000451002 +1920282023 20030731 0 900000000000207008 122637006 122634004 0 116680003 900000000000011006 900000000000451002 +1920283029 20030131 1 900000000000207008 122637006 24065009 0 118169006 900000000000011006 900000000000451002 +1920283029 20080731 0 900000000000207008 122637006 24065009 0 118169006 900000000000011006 900000000000451002 +1920284024 20030131 1 900000000000207008 122637006 26452005 0 118171006 900000000000011006 900000000000451002 +1920284024 20030731 0 900000000000207008 122637006 26452005 0 118171006 900000000000011006 900000000000451002 +1920285020 20030131 1 900000000000207008 122637006 49209004 0 118171006 900000000000011006 900000000000451002 +1920285020 20080731 0 900000000000207008 122637006 49209004 0 118171006 900000000000011006 900000000000451002 +1920285020 20090131 1 900000000000207008 122637006 49209004 1 118171006 900000000000011006 900000000000451002 +1920286021 20030131 1 900000000000207008 122638001 30315005 0 118169006 900000000000011006 900000000000451002 +1920286021 20080731 0 900000000000207008 122638001 30315005 0 118169006 900000000000011006 900000000000451002 +1920286021 20090131 1 900000000000207008 122638001 30315005 1 118169006 900000000000011006 900000000000451002 +1920287028 20030131 1 900000000000207008 122638001 85756007 0 118169006 900000000000011006 900000000000451002 +1920287028 20080731 0 900000000000207008 122638001 85756007 0 118169006 900000000000011006 900000000000451002 +1920288022 20030131 1 900000000000207008 122638001 116154003 0 118170007 900000000000011006 900000000000451002 +1920288022 20040731 0 900000000000207008 122638001 116154003 0 118170007 900000000000011006 900000000000451002 +1920289025 20030131 1 900000000000207008 122639009 38848004 0 118169006 900000000000011006 900000000000451002 +1920289025 20080731 0 900000000000207008 122639009 38848004 0 118169006 900000000000011006 900000000000451002 +1920289025 20090131 1 900000000000207008 122639009 38848004 1 118169006 900000000000011006 900000000000451002 +1920290023 20030131 1 900000000000207008 122639009 85756007 0 118169006 900000000000011006 900000000000451002 +1920290023 20080731 0 900000000000207008 122639009 85756007 0 118169006 900000000000011006 900000000000451002 +1920291022 20030131 1 900000000000207008 122639009 116154003 0 118170007 900000000000011006 900000000000451002 +1920291022 20040731 0 900000000000207008 122639009 116154003 0 118170007 900000000000011006 900000000000451002 +1920292026 20030131 1 900000000000207008 122639009 116241004 0 118171006 900000000000011006 900000000000451002 +1920292026 20080731 0 900000000000207008 122639009 116241004 0 118171006 900000000000011006 900000000000451002 +1920292026 20090131 1 900000000000207008 122639009 116241004 1 118171006 900000000000011006 900000000000451002 +1920293020 20030131 1 900000000000207008 122640006 30315005 0 118169006 900000000000011006 900000000000451002 +1920293020 20080731 0 900000000000207008 122640006 30315005 0 118169006 900000000000011006 900000000000451002 +1920294025 20030131 1 900000000000207008 122640006 85756007 0 118169006 900000000000011006 900000000000451002 +1920294025 20080731 0 900000000000207008 122640006 85756007 0 118169006 900000000000011006 900000000000451002 +1920295029 20030131 1 900000000000207008 122640006 116154003 0 118170007 900000000000011006 900000000000451002 +1920295029 20040731 0 900000000000207008 122640006 116154003 0 118170007 900000000000011006 900000000000451002 +1920296028 20030131 1 900000000000207008 122640006 116027003 0 118171006 900000000000011006 900000000000451002 +1920296028 20080731 0 900000000000207008 122640006 116027003 0 118171006 900000000000011006 900000000000451002 +1920296028 20090131 1 900000000000207008 122640006 116027003 1 118171006 900000000000011006 900000000000451002 +1920299024 20030131 1 900000000000207008 122641005 30315005 0 118169006 900000000000011006 900000000000451002 +1920299024 20080731 0 900000000000207008 122641005 30315005 0 118169006 900000000000011006 900000000000451002 +1920300027 20030131 1 900000000000207008 122641005 85756007 0 118169006 900000000000011006 900000000000451002 +1920300027 20080731 0 900000000000207008 122641005 85756007 0 118169006 900000000000011006 900000000000451002 +1920301028 20030131 1 900000000000207008 122641005 116154003 0 118170007 900000000000011006 900000000000451002 +1920301028 20040731 0 900000000000207008 122641005 116154003 0 118170007 900000000000011006 900000000000451002 +1920302024 20030131 1 900000000000207008 122641005 17988003 0 118171006 900000000000011006 900000000000451002 +1920302024 20080731 0 900000000000207008 122641005 17988003 0 118171006 900000000000011006 900000000000451002 +1920302024 20090131 1 900000000000207008 122641005 17988003 1 118171006 900000000000011006 900000000000451002 +1920303025 20030131 1 900000000000207008 122642003 14742008 0 118169006 900000000000011006 900000000000451002 +1920303025 20030731 0 900000000000207008 122642003 14742008 0 118169006 900000000000011006 900000000000451002 +1920304020 20030131 1 900000000000207008 122642003 360965000 0 118169006 900000000000011006 900000000000451002 +1920304020 20080731 0 900000000000207008 122642003 360965000 0 118169006 900000000000011006 900000000000451002 +1920305021 20030131 1 900000000000207008 122642003 85756007 0 118169006 900000000000011006 900000000000451002 +1920305021 20080731 0 900000000000207008 122642003 85756007 0 118169006 900000000000011006 900000000000451002 +1920306022 20030131 1 900000000000207008 122642003 116154003 0 118170007 900000000000011006 900000000000451002 +1920306022 20040731 0 900000000000207008 122642003 116154003 0 118170007 900000000000011006 900000000000451002 +1920307029 20030131 1 900000000000207008 122642003 235326000 0 118171006 900000000000011006 900000000000451002 +1920307029 20080731 0 900000000000207008 122642003 235326000 0 118171006 900000000000011006 900000000000451002 +1920307029 20090731 1 900000000000207008 122642003 235326000 1 118171006 900000000000011006 900000000000451002 +1920307029 20170731 0 900000000000207008 122642003 235326000 1 118171006 900000000000011006 900000000000451002 +1920308023 20030131 1 900000000000207008 122643008 14742008 0 118169006 900000000000011006 900000000000451002 +1920308023 20080731 0 900000000000207008 122643008 14742008 0 118169006 900000000000011006 900000000000451002 +1920308023 20090131 1 900000000000207008 122643008 14742008 1 118169006 900000000000011006 900000000000451002 +1920309026 20030131 1 900000000000207008 122643008 85756007 0 118169006 900000000000011006 900000000000451002 +1920309026 20080731 0 900000000000207008 122643008 85756007 0 118169006 900000000000011006 900000000000451002 +1920310020 20030131 1 900000000000207008 122644002 14742008 0 118169006 900000000000011006 900000000000451002 +1920310020 20080731 0 900000000000207008 122644002 14742008 0 118169006 900000000000011006 900000000000451002 +1920310020 20090131 1 900000000000207008 122644002 14742008 1 118169006 900000000000011006 900000000000451002 +1920311024 20030131 1 900000000000207008 122644002 85756007 0 118169006 900000000000011006 900000000000451002 +1920311024 20080731 0 900000000000207008 122644002 85756007 0 118169006 900000000000011006 900000000000451002 +1920312028 20030131 1 900000000000207008 122644002 70871006 0 118171006 900000000000011006 900000000000451002 +1920312028 20080731 0 900000000000207008 122644002 70871006 0 118171006 900000000000011006 900000000000451002 +1920313022 20030131 1 900000000000207008 122645001 14742008 0 118169006 900000000000011006 900000000000451002 +1920313022 20080731 0 900000000000207008 122645001 14742008 0 118169006 900000000000011006 900000000000451002 +1920313022 20090731 1 900000000000207008 122645001 14742008 1 118169006 900000000000011006 900000000000451002 +1920314027 20030131 1 900000000000207008 122645001 85756007 0 118169006 900000000000011006 900000000000451002 +1920314027 20080731 0 900000000000207008 122645001 85756007 0 118169006 900000000000011006 900000000000451002 +1920315026 20030131 1 900000000000207008 122645001 8889005 0 118171006 900000000000011006 900000000000451002 +1920315026 20080731 0 900000000000207008 122645001 8889005 0 118171006 900000000000011006 900000000000451002 +1920316025 20030131 1 900000000000207008 122646000 14742008 0 118169006 900000000000011006 900000000000451002 +1920316025 20080731 0 900000000000207008 122646000 14742008 0 118169006 900000000000011006 900000000000451002 +1920316025 20090131 1 900000000000207008 122646000 14742008 1 118169006 900000000000011006 900000000000451002 +1920317023 20030131 1 900000000000207008 122646000 85756007 0 118169006 900000000000011006 900000000000451002 +1920317023 20080731 0 900000000000207008 122646000 85756007 0 118169006 900000000000011006 900000000000451002 +1920318029 20030131 1 900000000000207008 122647009 71854001 0 118169006 900000000000011006 900000000000451002 +1920318029 20080731 0 900000000000207008 122647009 71854001 0 118169006 900000000000011006 900000000000451002 +1920318029 20090131 1 900000000000207008 122647009 71854001 1 118169006 900000000000011006 900000000000451002 +1920319021 20030131 1 900000000000207008 122647009 85756007 0 118169006 900000000000011006 900000000000451002 +1920319021 20080731 0 900000000000207008 122647009 85756007 0 118169006 900000000000011006 900000000000451002 +1920320026 20030131 1 900000000000207008 122647009 26390003 0 118171006 900000000000011006 900000000000451002 +1920320026 20080731 0 900000000000207008 122647009 26390003 0 118171006 900000000000011006 900000000000451002 +1920320026 20090131 1 900000000000207008 122647009 26390003 1 118171006 900000000000011006 900000000000451002 +1920321027 20030131 1 900000000000207008 122648004 71854001 0 118169006 900000000000011006 900000000000451002 +1920321027 20070131 0 900000000000207008 122648004 71854001 0 118169006 900000000000011006 900000000000451002 +1920322023 20030131 1 900000000000207008 122648004 85756007 0 118169006 900000000000011006 900000000000451002 +1920322023 20080731 0 900000000000207008 122648004 85756007 0 118169006 900000000000011006 900000000000451002 +1920323029 20030131 1 900000000000207008 122648004 235326000 0 118171006 900000000000011006 900000000000451002 +1920323029 20080731 0 900000000000207008 122648004 235326000 0 118171006 900000000000011006 900000000000451002 +1920323029 20090131 1 900000000000207008 122648004 235326000 1 118171006 900000000000011006 900000000000451002 +1920323029 20170731 0 900000000000207008 122648004 235326000 1 118171006 900000000000011006 900000000000451002 +1920324024 20030131 1 900000000000207008 122649007 71854001 0 118169006 900000000000011006 900000000000451002 +1920324024 20080731 0 900000000000207008 122649007 71854001 0 118169006 900000000000011006 900000000000451002 +1920325020 20030131 1 900000000000207008 122649007 85756007 0 118169006 900000000000011006 900000000000451002 +1920325020 20080731 0 900000000000207008 122649007 85756007 0 118169006 900000000000011006 900000000000451002 +1920326021 20030131 1 900000000000207008 122649007 26925005 0 118171006 900000000000011006 900000000000451002 +1920326021 20080731 0 900000000000207008 122649007 26925005 0 118171006 900000000000011006 900000000000451002 +1920326021 20090131 1 900000000000207008 122649007 26925005 1 118171006 900000000000011006 900000000000451002 +1920327028 20030131 1 900000000000207008 122649007 43075005 0 118171006 900000000000011006 900000000000451002 +1920327028 20080731 0 900000000000207008 122649007 43075005 0 118171006 900000000000011006 900000000000451002 +1920334026 20030131 1 900000000000207008 122650007 71854001 0 118169006 900000000000011006 900000000000451002 +1920334026 20080731 0 900000000000207008 122650007 71854001 0 118169006 900000000000011006 900000000000451002 +1920335025 20030131 1 900000000000207008 122650007 85756007 0 118169006 900000000000011006 900000000000451002 +1920335025 20080731 0 900000000000207008 122650007 85756007 0 118169006 900000000000011006 900000000000451002 +1920336029 20030131 1 900000000000207008 122650007 82619000 0 118171006 900000000000011006 900000000000451002 +1920336029 20080731 0 900000000000207008 122650007 82619000 0 118171006 900000000000011006 900000000000451002 +1920336029 20090731 1 900000000000207008 122650007 82619000 1 118171006 900000000000011006 900000000000451002 +1920337022 20030131 1 900000000000207008 122651006 71854001 0 118169006 900000000000011006 900000000000451002 +1920337022 20080731 0 900000000000207008 122651006 71854001 0 118169006 900000000000011006 900000000000451002 +1920338028 20030131 1 900000000000207008 122651006 85756007 0 118169006 900000000000011006 900000000000451002 +1920338028 20080731 0 900000000000207008 122651006 85756007 0 118169006 900000000000011006 900000000000451002 +1920339020 20030131 1 900000000000207008 122651006 84604002 0 118171006 900000000000011006 900000000000451002 +1920339020 20080731 0 900000000000207008 122651006 84604002 0 118171006 900000000000011006 900000000000451002 +1920339020 20090131 1 900000000000207008 122651006 84604002 1 118171006 900000000000011006 900000000000451002 +1920340022 20030131 1 900000000000207008 122652004 34402009 0 118169006 900000000000011006 900000000000451002 +1920340022 20080731 0 900000000000207008 122652004 34402009 0 118169006 900000000000011006 900000000000451002 +1920341021 20030131 1 900000000000207008 122652004 71854001 0 118169006 900000000000011006 900000000000451002 +1920341021 20080731 0 900000000000207008 122652004 71854001 0 118169006 900000000000011006 900000000000451002 +1920342025 20030131 1 900000000000207008 122652004 85756007 0 118169006 900000000000011006 900000000000451002 +1920342025 20080731 0 900000000000207008 122652004 85756007 0 118169006 900000000000011006 900000000000451002 +1920343024 20030131 1 900000000000207008 122652004 314592008 0 118171006 900000000000011006 900000000000451002 +1920343024 20080731 0 900000000000207008 122652004 314592008 0 118171006 900000000000011006 900000000000451002 +1920343024 20090731 1 900000000000207008 122652004 314592008 1 118171006 900000000000011006 900000000000451002 +1920344029 20030131 1 900000000000207008 122653009 34402009 0 118169006 900000000000011006 900000000000451002 +1920344029 20080731 0 900000000000207008 122653009 34402009 0 118169006 900000000000011006 900000000000451002 +1920344029 20090131 1 900000000000207008 122653009 34402009 1 118169006 900000000000011006 900000000000451002 +1920344029 20100131 0 900000000000207008 122653009 34402009 1 118169006 900000000000011006 900000000000451002 +1920344029 20100731 1 900000000000207008 122653009 34402009 1 118169006 900000000000011006 900000000000451002 +1920345028 20030131 1 900000000000207008 122653009 85756007 0 118169006 900000000000011006 900000000000451002 +1920345028 20080731 0 900000000000207008 122653009 85756007 0 118169006 900000000000011006 900000000000451002 +1920346027 20030131 1 900000000000207008 122654003 34402009 0 118169006 900000000000011006 900000000000451002 +1920346027 20080731 0 900000000000207008 122654003 34402009 0 118169006 900000000000011006 900000000000451002 +1920346027 20090131 1 900000000000207008 122654003 34402009 1 118169006 900000000000011006 900000000000451002 +1920346027 20100131 0 900000000000207008 122654003 34402009 1 118169006 900000000000011006 900000000000451002 +1920346027 20100731 1 900000000000207008 122654003 34402009 1 118169006 900000000000011006 900000000000451002 +1920347020 20030131 1 900000000000207008 122654003 85756007 0 118169006 900000000000011006 900000000000451002 +1920347020 20080731 0 900000000000207008 122654003 85756007 0 118169006 900000000000011006 900000000000451002 +1920348026 20030131 1 900000000000207008 122655002 34402009 0 118169006 900000000000011006 900000000000451002 +1920348026 20080731 0 900000000000207008 122655002 34402009 0 118169006 900000000000011006 900000000000451002 +1920348026 20090131 1 900000000000207008 122655002 34402009 1 118169006 900000000000011006 900000000000451002 +1920348026 20100131 0 900000000000207008 122655002 34402009 1 118169006 900000000000011006 900000000000451002 +1920348026 20100731 1 900000000000207008 122655002 34402009 1 118169006 900000000000011006 900000000000451002 +1920349023 20030131 1 900000000000207008 122655002 85756007 0 118169006 900000000000011006 900000000000451002 +1920349023 20080731 0 900000000000207008 122655002 85756007 0 118169006 900000000000011006 900000000000451002 +1920350023 20030131 1 900000000000207008 122656001 122865005 0 118169006 900000000000011006 900000000000451002 +1920350023 20030731 0 900000000000207008 122656001 122865005 0 118169006 900000000000011006 900000000000451002 +1920351022 20030131 1 900000000000207008 122656001 28231008 0 118169006 900000000000011006 900000000000451002 +1920351022 20080731 0 900000000000207008 122656001 28231008 0 118169006 900000000000011006 900000000000451002 +1920351022 20090131 1 900000000000207008 122656001 28231008 1 118169006 900000000000011006 900000000000451002 +1920351022 20110731 0 900000000000207008 122656001 28231008 1 118169006 900000000000011006 900000000000451002 +1920352026 20030131 1 900000000000207008 122656001 85756007 0 118169006 900000000000011006 900000000000451002 +1920352026 20080731 0 900000000000207008 122656001 85756007 0 118169006 900000000000011006 900000000000451002 +1920353020 20030131 1 900000000000207008 122657005 67109009 0 118169006 900000000000011006 900000000000451002 +1920353020 20080731 0 900000000000207008 122657005 67109009 0 118169006 900000000000011006 900000000000451002 +1920353020 20090131 1 900000000000207008 122657005 67109009 1 118169006 900000000000011006 900000000000451002 +1920354025 20030131 1 900000000000207008 122657005 85756007 0 118169006 900000000000011006 900000000000451002 +1920354025 20080731 0 900000000000207008 122657005 85756007 0 118169006 900000000000011006 900000000000451002 +1920355029 20030131 1 900000000000207008 122657005 116240003 0 118171006 900000000000011006 900000000000451002 +1920355029 20080731 0 900000000000207008 122657005 116240003 0 118171006 900000000000011006 900000000000451002 +1920355029 20090131 1 900000000000207008 122657005 116240003 1 118171006 900000000000011006 900000000000451002 +1920356028 20030131 1 900000000000207008 122658000 67109009 0 118169006 900000000000011006 900000000000451002 +1920356028 20080731 0 900000000000207008 122658000 67109009 0 118169006 900000000000011006 900000000000451002 +1920356028 20090131 1 900000000000207008 122658000 67109009 1 118169006 900000000000011006 900000000000451002 +1920357021 20030131 1 900000000000207008 122658000 85756007 0 118169006 900000000000011006 900000000000451002 +1920357021 20080731 0 900000000000207008 122658000 85756007 0 118169006 900000000000011006 900000000000451002 +1920358027 20030131 1 900000000000207008 122658000 119288004 0 118171006 900000000000011006 900000000000451002 +1920358027 20080731 0 900000000000207008 122658000 119288004 0 118171006 900000000000011006 900000000000451002 +1920358027 20090131 1 900000000000207008 122658000 119288004 1 118171006 900000000000011006 900000000000451002 +1920359024 20030131 1 900000000000207008 122658000 119289007 0 118171006 900000000000011006 900000000000451002 +1920359024 20030731 0 900000000000207008 122658000 119289007 0 118171006 900000000000011006 900000000000451002 +1920360025 20030131 1 900000000000207008 122659008 67109009 0 118169006 900000000000011006 900000000000451002 +1920360025 20080731 0 900000000000207008 122659008 67109009 0 118169006 900000000000011006 900000000000451002 +1920360025 20090131 1 900000000000207008 122659008 67109009 1 118169006 900000000000011006 900000000000451002 +1920361026 20030131 1 900000000000207008 122659008 85756007 0 118169006 900000000000011006 900000000000451002 +1920361026 20080731 0 900000000000207008 122659008 85756007 0 118169006 900000000000011006 900000000000451002 +1920362022 20030131 1 900000000000207008 122659008 116241004 0 118171006 900000000000011006 900000000000451002 +1920362022 20080731 0 900000000000207008 122659008 116241004 0 118171006 900000000000011006 900000000000451002 +1920362022 20090131 1 900000000000207008 122659008 116241004 1 118171006 900000000000011006 900000000000451002 +1920363028 20030131 1 900000000000207008 122660003 67109009 0 118169006 900000000000011006 900000000000451002 +1920363028 20080731 0 900000000000207008 122660003 67109009 0 118169006 900000000000011006 900000000000451002 +1920363028 20090131 1 900000000000207008 122660003 67109009 1 118169006 900000000000011006 900000000000451002 +1920364023 20030131 1 900000000000207008 122660003 85756007 0 118169006 900000000000011006 900000000000451002 +1920364023 20080731 0 900000000000207008 122660003 85756007 0 118169006 900000000000011006 900000000000451002 +1920365024 20030131 1 900000000000207008 122660003 116242006 0 118171006 900000000000011006 900000000000451002 +1920365024 20080731 0 900000000000207008 122660003 116242006 0 118171006 900000000000011006 900000000000451002 +1920365024 20090131 1 900000000000207008 122660003 116242006 1 118171006 900000000000011006 900000000000451002 +1920366020 20030131 1 900000000000207008 122661004 122865005 0 118169006 900000000000011006 900000000000451002 +1920366020 20030731 0 900000000000207008 122661004 122865005 0 118169006 900000000000011006 900000000000451002 +1920367027 20030131 1 900000000000207008 122661004 15776009 0 118169006 900000000000011006 900000000000451002 +1920367027 20080731 0 900000000000207008 122661004 15776009 0 118169006 900000000000011006 900000000000451002 +1920367027 20090131 1 900000000000207008 122661004 15776009 1 118169006 900000000000011006 900000000000451002 +1920368021 20030131 1 900000000000207008 122661004 85756007 0 118169006 900000000000011006 900000000000451002 +1920368021 20080731 0 900000000000207008 122661004 85756007 0 118169006 900000000000011006 900000000000451002 +1920369029 20030131 1 900000000000207008 122661004 287847009 0 118171006 900000000000011006 900000000000451002 +1920369029 20080731 0 900000000000207008 122661004 287847009 0 118171006 900000000000011006 900000000000451002 +1920369029 20090131 1 900000000000207008 122661004 287847009 1 118171006 900000000000011006 900000000000451002 +1920370028 20030131 1 900000000000207008 122662006 122865005 0 118169006 900000000000011006 900000000000451002 +1920370028 20030731 0 900000000000207008 122662006 122865005 0 118169006 900000000000011006 900000000000451002 +1920371029 20030131 1 900000000000207008 122662006 15776009 0 118169006 900000000000011006 900000000000451002 +1920371029 20080731 0 900000000000207008 122662006 15776009 0 118169006 900000000000011006 900000000000451002 +1920372020 20030131 1 900000000000207008 122662006 85756007 0 118169006 900000000000011006 900000000000451002 +1920372020 20080731 0 900000000000207008 122662006 85756007 0 118169006 900000000000011006 900000000000451002 +1920373026 20030131 1 900000000000207008 122662006 287847009 0 118171006 900000000000011006 900000000000451002 +1920373026 20080731 0 900000000000207008 122662006 287847009 0 118171006 900000000000011006 900000000000451002 +1920373026 20090131 1 900000000000207008 122662006 287847009 1 118171006 900000000000011006 900000000000451002 +1920374021 20030131 1 900000000000207008 122663001 122865005 0 118169006 900000000000011006 900000000000451002 +1920374021 20030731 0 900000000000207008 122663001 122865005 0 118169006 900000000000011006 900000000000451002 +1920375022 20030131 1 900000000000207008 122663001 15776009 0 118169006 900000000000011006 900000000000451002 +1920375022 20080731 0 900000000000207008 122663001 15776009 0 118169006 900000000000011006 900000000000451002 +1920376023 20030131 1 900000000000207008 122663001 85756007 0 118169006 900000000000011006 900000000000451002 +1920376023 20080731 0 900000000000207008 122663001 85756007 0 118169006 900000000000011006 900000000000451002 +1920377025 20030131 1 900000000000207008 122663001 235468001 0 118171006 900000000000011006 900000000000451002 +1920377025 20080731 0 900000000000207008 122663001 235468001 0 118171006 900000000000011006 900000000000451002 +1920378024 20030131 1 900000000000207008 122664007 122865005 0 118169006 900000000000011006 900000000000451002 +1920378024 20030731 0 900000000000207008 122664007 122865005 0 118169006 900000000000011006 900000000000451002 +1920379027 20030131 1 900000000000207008 122664007 15776009 0 118169006 900000000000011006 900000000000451002 +1920379027 20080731 0 900000000000207008 122664007 15776009 0 118169006 900000000000011006 900000000000451002 +1920379027 20090131 1 900000000000207008 122664007 15776009 1 118169006 900000000000011006 900000000000451002 +1920380029 20030131 1 900000000000207008 122664007 85756007 0 118169006 900000000000011006 900000000000451002 +1920380029 20080731 0 900000000000207008 122664007 85756007 0 118169006 900000000000011006 900000000000451002 +1920381025 20030131 1 900000000000207008 122664007 9524002 0 118171006 900000000000011006 900000000000451002 +1920381025 20080731 0 900000000000207008 122664007 9524002 0 118171006 900000000000011006 900000000000451002 +1920381025 20090131 1 900000000000207008 122664007 9524002 1 118171006 900000000000011006 900000000000451002 +1920382021 20030131 1 900000000000207008 122665008 122865005 0 118169006 900000000000011006 900000000000451002 +1920382021 20030731 0 900000000000207008 122665008 122865005 0 118169006 900000000000011006 900000000000451002 +1920383027 20030131 1 900000000000207008 122665008 15776009 0 118169006 900000000000011006 900000000000451002 +1920383027 20080731 0 900000000000207008 122665008 15776009 0 118169006 900000000000011006 900000000000451002 +1920383027 20090131 1 900000000000207008 122665008 15776009 1 118169006 900000000000011006 900000000000451002 +1920384022 20030131 1 900000000000207008 122665008 85756007 0 118169006 900000000000011006 900000000000451002 +1920384022 20080731 0 900000000000207008 122665008 85756007 0 118169006 900000000000011006 900000000000451002 +1920385023 20030131 1 900000000000207008 122665008 116241004 0 118171006 900000000000011006 900000000000451002 +1920385023 20080731 0 900000000000207008 122665008 116241004 0 118171006 900000000000011006 900000000000451002 +1920385023 20090131 1 900000000000207008 122665008 116241004 1 118171006 900000000000011006 900000000000451002 +1920386024 20030131 1 900000000000207008 122666009 122865005 0 118169006 900000000000011006 900000000000451002 +1920386024 20030731 0 900000000000207008 122666009 122865005 0 118169006 900000000000011006 900000000000451002 +1920387026 20030131 1 900000000000207008 122666009 15776009 0 118169006 900000000000011006 900000000000451002 +1920387026 20080731 0 900000000000207008 122666009 15776009 0 118169006 900000000000011006 900000000000451002 +1920387026 20090131 1 900000000000207008 122666009 15776009 1 118169006 900000000000011006 900000000000451002 +1920388020 20030131 1 900000000000207008 122666009 85756007 0 118169006 900000000000011006 900000000000451002 +1920388020 20080731 0 900000000000207008 122666009 85756007 0 118169006 900000000000011006 900000000000451002 +1920389028 20030131 1 900000000000207008 122666009 116242006 0 118171006 900000000000011006 900000000000451002 +1920389028 20080731 0 900000000000207008 122666009 116242006 0 118171006 900000000000011006 900000000000451002 +1920389028 20090131 1 900000000000207008 122666009 116242006 1 118171006 900000000000011006 900000000000451002 +1920390021 20030131 1 900000000000207008 122667000 122865005 0 118169006 900000000000011006 900000000000451002 +1920390021 20030731 0 900000000000207008 122667000 122865005 0 118169006 900000000000011006 900000000000451002 +1920391020 20030131 1 900000000000207008 122667000 15776009 0 118169006 900000000000011006 900000000000451002 +1920391020 20080731 0 900000000000207008 122667000 15776009 0 118169006 900000000000011006 900000000000451002 +1920391020 20090131 1 900000000000207008 122667000 15776009 1 118169006 900000000000011006 900000000000451002 +1920392029 20030131 1 900000000000207008 122667000 85756007 0 118169006 900000000000011006 900000000000451002 +1920392029 20080731 0 900000000000207008 122667000 85756007 0 118169006 900000000000011006 900000000000451002 +1920393023 20030131 1 900000000000207008 122667000 9409008 0 118171006 900000000000011006 900000000000451002 +1920393023 20080731 0 900000000000207008 122667000 9409008 0 118171006 900000000000011006 900000000000451002 +1920393023 20090131 1 900000000000207008 122667000 9409008 1 118171006 900000000000011006 900000000000451002 +1920394028 20030131 1 900000000000207008 122668005 35461009 0 118169006 900000000000011006 900000000000451002 +1920394028 20080731 0 900000000000207008 122668005 35461009 0 118169006 900000000000011006 900000000000451002 +1920395027 20030131 1 900000000000207008 122668005 85756007 0 118169006 900000000000011006 900000000000451002 +1920395027 20050131 0 900000000000207008 122668005 85756007 0 118169006 900000000000011006 900000000000451002 +1920396026 20030131 1 900000000000207008 122668005 116032002 0 118171006 900000000000011006 900000000000451002 +1920396026 20080731 0 900000000000207008 122668005 116032002 0 118171006 900000000000011006 900000000000451002 +1920396026 20090731 1 900000000000207008 122668005 116032002 1 118171006 900000000000011006 900000000000451002 +1920397024 20030131 1 900000000000207008 122669002 35461009 0 118169006 900000000000011006 900000000000451002 +1920397024 20030731 0 900000000000207008 122669002 35461009 0 118169006 900000000000011006 900000000000451002 +1920398025 20030131 1 900000000000207008 122669002 85756007 0 118169006 900000000000011006 900000000000451002 +1920398025 20080731 0 900000000000207008 122669002 85756007 0 118169006 900000000000011006 900000000000451002 +1920399022 20030131 1 900000000000207008 122669002 180055000 0 118171006 900000000000011006 900000000000451002 +1920399022 20080731 0 900000000000207008 122669002 180055000 0 118171006 900000000000011006 900000000000451002 +1920399022 20090731 1 900000000000207008 122669002 180055000 1 118171006 900000000000011006 900000000000451002 +1920400026 20030131 1 900000000000207008 122670001 35461009 0 118169006 900000000000011006 900000000000451002 +1920400026 20050131 0 900000000000207008 122670001 35461009 0 118169006 900000000000011006 900000000000451002 +1920401027 20030131 1 900000000000207008 122670001 64033007 0 118169006 900000000000011006 900000000000451002 +1920401027 20080731 0 900000000000207008 122670001 64033007 0 118169006 900000000000011006 900000000000451002 +1920401027 20090131 1 900000000000207008 122670001 64033007 1 118169006 900000000000011006 900000000000451002 +1920402023 20030131 1 900000000000207008 122670001 85756007 0 118169006 900000000000011006 900000000000451002 +1920402023 20050131 0 900000000000207008 122670001 85756007 0 118169006 900000000000011006 900000000000451002 +1920403029 20030131 1 900000000000207008 122670001 7246002 0 118171006 900000000000011006 900000000000451002 +1920403029 20080731 0 900000000000207008 122670001 7246002 0 118171006 900000000000011006 900000000000451002 +1920404024 20030131 1 900000000000207008 122670001 9911007 0 118171006 900000000000011006 900000000000451002 +1920404024 20080731 0 900000000000207008 122670001 9911007 0 118171006 900000000000011006 900000000000451002 +1920406021 20030131 1 900000000000207008 122671002 35461009 0 118169006 900000000000011006 900000000000451002 +1920406021 20050131 0 900000000000207008 122671002 35461009 0 118169006 900000000000011006 900000000000451002 +1920407028 20030131 1 900000000000207008 122671002 64033007 0 118169006 900000000000011006 900000000000451002 +1920407028 20080731 0 900000000000207008 122671002 64033007 0 118169006 900000000000011006 900000000000451002 +1920407028 20090131 1 900000000000207008 122671002 64033007 1 118169006 900000000000011006 900000000000451002 +1920407028 20090731 0 900000000000207008 122671002 64033007 1 118169006 900000000000011006 900000000000451002 +1920407028 20100131 1 900000000000207008 122671002 64033007 1 118169006 900000000000011006 900000000000451002 +1920408022 20030131 1 900000000000207008 122671002 85756007 0 118169006 900000000000011006 900000000000451002 +1920408022 20050131 0 900000000000207008 122671002 85756007 0 118169006 900000000000011006 900000000000451002 +1920409025 20030131 1 900000000000207008 122671002 48635004 0 118171006 900000000000011006 900000000000451002 +1920409025 20080731 0 900000000000207008 122671002 48635004 0 118171006 900000000000011006 900000000000451002 +1920410024 20030131 1 900000000000207008 122671002 7246002 0 118171006 900000000000011006 900000000000451002 +1920410024 20080731 0 900000000000207008 122671002 7246002 0 118171006 900000000000011006 900000000000451002 +1920411023 20030131 1 900000000000207008 122672009 35461009 0 118169006 900000000000011006 900000000000451002 +1920411023 20050131 0 900000000000207008 122672009 35461009 0 118169006 900000000000011006 900000000000451002 +1920412027 20030131 1 900000000000207008 122672009 64033007 0 118169006 900000000000011006 900000000000451002 +1920412027 20080731 0 900000000000207008 122672009 64033007 0 118169006 900000000000011006 900000000000451002 +1920412027 20090131 1 900000000000207008 122672009 64033007 1 118169006 900000000000011006 900000000000451002 +1920413021 20030131 1 900000000000207008 122672009 85756007 0 118169006 900000000000011006 900000000000451002 +1920413021 20050131 0 900000000000207008 122672009 85756007 0 118169006 900000000000011006 900000000000451002 +1920414026 20030131 1 900000000000207008 122672009 70871006 0 118171006 900000000000011006 900000000000451002 +1920414026 20080731 0 900000000000207008 122672009 70871006 0 118171006 900000000000011006 900000000000451002 +1920415025 20030131 1 900000000000207008 122672009 7246002 0 118171006 900000000000011006 900000000000451002 +1920415025 20080731 0 900000000000207008 122672009 7246002 0 118171006 900000000000011006 900000000000451002 +1920416029 20030131 1 900000000000207008 122673004 35461009 0 118169006 900000000000011006 900000000000451002 +1920416029 20050131 0 900000000000207008 122673004 35461009 0 118169006 900000000000011006 900000000000451002 +1920417022 20030131 1 900000000000207008 122673004 64033007 0 118169006 900000000000011006 900000000000451002 +1920417022 20080731 0 900000000000207008 122673004 64033007 0 118169006 900000000000011006 900000000000451002 +1920417022 20090131 1 900000000000207008 122673004 64033007 1 118169006 900000000000011006 900000000000451002 +1920418028 20030131 1 900000000000207008 122673004 85756007 0 118169006 900000000000011006 900000000000451002 +1920418028 20050131 0 900000000000207008 122673004 85756007 0 118169006 900000000000011006 900000000000451002 +1920419020 20030131 1 900000000000207008 122673004 116029000 0 118171006 900000000000011006 900000000000451002 +1920419020 20080731 0 900000000000207008 122673004 116029000 0 118171006 900000000000011006 900000000000451002 +1920419020 20090131 1 900000000000207008 122673004 116029000 1 118171006 900000000000011006 900000000000451002 +1920420025 20030131 1 900000000000207008 122674005 35461009 0 118169006 900000000000011006 900000000000451002 +1920420025 20050131 0 900000000000207008 122674005 35461009 0 118169006 900000000000011006 900000000000451002 +1920421026 20030131 1 900000000000207008 122674005 85756007 0 118169006 900000000000011006 900000000000451002 +1920421026 20050131 0 900000000000207008 122674005 85756007 0 118169006 900000000000011006 900000000000451002 +1920422022 20030131 1 900000000000207008 122674005 9846003 0 118169006 900000000000011006 900000000000451002 +1920422022 20080731 0 900000000000207008 122674005 9846003 0 118169006 900000000000011006 900000000000451002 +1920422022 20090131 1 900000000000207008 122674005 9846003 1 118169006 900000000000011006 900000000000451002 +1920423028 20030131 1 900000000000207008 122674005 116033007 0 118171006 900000000000011006 900000000000451002 +1920423028 20080731 0 900000000000207008 122674005 116033007 0 118171006 900000000000011006 900000000000451002 +1920423028 20090131 1 900000000000207008 122674005 116033007 1 118171006 900000000000011006 900000000000451002 +1920424023 20030131 1 900000000000207008 122675006 35461009 0 118169006 900000000000011006 900000000000451002 +1920424023 20050131 0 900000000000207008 122675006 35461009 0 118169006 900000000000011006 900000000000451002 +1920425024 20030131 1 900000000000207008 122675006 85756007 0 118169006 900000000000011006 900000000000451002 +1920425024 20050131 0 900000000000207008 122675006 85756007 0 118169006 900000000000011006 900000000000451002 +1920426020 20030131 1 900000000000207008 122675006 9846003 0 118169006 900000000000011006 900000000000451002 +1920426020 20080731 0 900000000000207008 122675006 9846003 0 118169006 900000000000011006 900000000000451002 +1920426020 20090131 1 900000000000207008 122675006 9846003 1 118169006 900000000000011006 900000000000451002 +1920426020 20100131 0 900000000000207008 122675006 9846003 1 118169006 900000000000011006 900000000000451002 +1920426020 20100731 1 900000000000207008 122675006 9846003 1 118169006 900000000000011006 900000000000451002 +1920427027 20030131 1 900000000000207008 122675006 116033007 0 118171006 900000000000011006 900000000000451002 +1920427027 20080731 0 900000000000207008 122675006 116033007 0 118171006 900000000000011006 900000000000451002 +1920427027 20090131 1 900000000000207008 122675006 116033007 1 118171006 900000000000011006 900000000000451002 +1920427027 20100131 0 900000000000207008 122675006 116033007 1 118171006 900000000000011006 900000000000451002 +1920428021 20030131 1 900000000000207008 122676007 35461009 0 118169006 900000000000011006 900000000000451002 +1920428021 20050131 0 900000000000207008 122676007 35461009 0 118169006 900000000000011006 900000000000451002 +1920429029 20030131 1 900000000000207008 122676007 85756007 0 118169006 900000000000011006 900000000000451002 +1920429029 20050131 0 900000000000207008 122676007 85756007 0 118169006 900000000000011006 900000000000451002 +1920430023 20030131 1 900000000000207008 122676007 9846003 0 118169006 900000000000011006 900000000000451002 +1920430023 20080731 0 900000000000207008 122676007 9846003 0 118169006 900000000000011006 900000000000451002 +1920430023 20090131 1 900000000000207008 122676007 9846003 1 118169006 900000000000011006 900000000000451002 +1920431022 20030131 1 900000000000207008 122676007 81516001 0 118171006 900000000000011006 900000000000451002 +1920431022 20080731 0 900000000000207008 122676007 81516001 0 118171006 900000000000011006 900000000000451002 +1920431022 20090131 1 900000000000207008 122676007 81516001 1 118171006 900000000000011006 900000000000451002 +1920432026 20030131 1 900000000000207008 122677003 119280006 0 118169006 900000000000011006 900000000000451002 +1920432026 20080731 0 900000000000207008 122677003 119280006 0 118169006 900000000000011006 900000000000451002 +1920432026 20090731 1 900000000000207008 122677003 119280006 1 118169006 900000000000011006 900000000000451002 +1920433020 20030131 1 900000000000207008 122677003 85756007 0 118169006 900000000000011006 900000000000451002 +1920433020 20050131 0 900000000000207008 122677003 85756007 0 118169006 900000000000011006 900000000000451002 +1920434025 20030131 1 900000000000207008 122677003 81516001 0 118171006 900000000000011006 900000000000451002 +1920434025 20080731 0 900000000000207008 122677003 81516001 0 118171006 900000000000011006 900000000000451002 +1920434025 20090731 1 900000000000207008 122677003 81516001 1 118171006 900000000000011006 900000000000451002 +1920435029 20030131 1 900000000000207008 122678008 119279008 0 118169006 900000000000011006 900000000000451002 +1920435029 20080731 0 900000000000207008 122678008 119279008 0 118169006 900000000000011006 900000000000451002 +1920435029 20090731 1 900000000000207008 122678008 119279008 1 118169006 900000000000011006 900000000000451002 +1920436028 20030131 1 900000000000207008 122678008 85756007 0 118169006 900000000000011006 900000000000451002 +1920436028 20050131 0 900000000000207008 122678008 85756007 0 118169006 900000000000011006 900000000000451002 +1920437021 20030131 1 900000000000207008 122678008 81516001 0 118171006 900000000000011006 900000000000451002 +1920437021 20080731 0 900000000000207008 122678008 81516001 0 118171006 900000000000011006 900000000000451002 +1920437021 20090731 1 900000000000207008 122678008 81516001 1 118171006 900000000000011006 900000000000451002 +1920438027 20030131 1 900000000000207008 122679000 119278000 0 118169006 900000000000011006 900000000000451002 +1920438027 20080731 0 900000000000207008 122679000 119278000 0 118169006 900000000000011006 900000000000451002 +1920438027 20090731 1 900000000000207008 122679000 119278000 1 118169006 900000000000011006 900000000000451002 +1920439024 20030131 1 900000000000207008 122679000 85756007 0 118169006 900000000000011006 900000000000451002 +1920439024 20050131 0 900000000000207008 122679000 85756007 0 118169006 900000000000011006 900000000000451002 +1920440021 20030131 1 900000000000207008 122679000 81516001 0 118171006 900000000000011006 900000000000451002 +1920440021 20080731 0 900000000000207008 122679000 81516001 0 118171006 900000000000011006 900000000000451002 +1920440021 20090731 1 900000000000207008 122679000 81516001 1 118171006 900000000000011006 900000000000451002 +1920441020 20030131 1 900000000000207008 122680002 18639004 0 118169006 900000000000011006 900000000000451002 +1920441020 20080731 0 900000000000207008 122680002 18639004 0 118169006 900000000000011006 900000000000451002 +1920441020 20090131 1 900000000000207008 122680002 18639004 1 118169006 900000000000011006 900000000000451002 +1920442029 20030131 1 900000000000207008 122680002 35461009 0 118169006 900000000000011006 900000000000451002 +1920442029 20050131 0 900000000000207008 122680002 35461009 0 118169006 900000000000011006 900000000000451002 +1920443023 20030131 1 900000000000207008 122680002 85756007 0 118169006 900000000000011006 900000000000451002 +1920443023 20050131 0 900000000000207008 122680002 85756007 0 118169006 900000000000011006 900000000000451002 +1920444028 20030131 1 900000000000207008 122680002 116033007 0 118171006 900000000000011006 900000000000451002 +1920444028 20080731 0 900000000000207008 122680002 116033007 0 118171006 900000000000011006 900000000000451002 +1920444028 20090131 1 900000000000207008 122680002 116033007 1 118171006 900000000000011006 900000000000451002 +1920445027 20030131 1 900000000000207008 122681003 18639004 0 118169006 900000000000011006 900000000000451002 +1920445027 20080731 0 900000000000207008 122681003 18639004 0 118169006 900000000000011006 900000000000451002 +1920445027 20090131 1 900000000000207008 122681003 18639004 1 118169006 900000000000011006 900000000000451002 +1920445027 20100131 0 900000000000207008 122681003 18639004 1 118169006 900000000000011006 900000000000451002 +1920445027 20100731 1 900000000000207008 122681003 18639004 1 118169006 900000000000011006 900000000000451002 +1920446026 20030131 1 900000000000207008 122681003 35461009 0 118169006 900000000000011006 900000000000451002 +1920446026 20050131 0 900000000000207008 122681003 35461009 0 118169006 900000000000011006 900000000000451002 +1920447024 20030131 1 900000000000207008 122681003 85756007 0 118169006 900000000000011006 900000000000451002 +1920447024 20050131 0 900000000000207008 122681003 85756007 0 118169006 900000000000011006 900000000000451002 +1920448025 20030131 1 900000000000207008 122681003 116033007 0 118171006 900000000000011006 900000000000451002 +1920448025 20080731 0 900000000000207008 122681003 116033007 0 118171006 900000000000011006 900000000000451002 +1920448025 20090131 1 900000000000207008 122681003 116033007 1 118171006 900000000000011006 900000000000451002 +1920448025 20100131 0 900000000000207008 122681003 116033007 1 118171006 900000000000011006 900000000000451002 +1920449022 20030131 1 900000000000207008 122682005 18639004 0 118169006 900000000000011006 900000000000451002 +1920449022 20080731 0 900000000000207008 122682005 18639004 0 118169006 900000000000011006 900000000000451002 +1920449022 20090131 1 900000000000207008 122682005 18639004 1 118169006 900000000000011006 900000000000451002 +1920450022 20030131 1 900000000000207008 122682005 35461009 0 118169006 900000000000011006 900000000000451002 +1920450022 20050131 0 900000000000207008 122682005 35461009 0 118169006 900000000000011006 900000000000451002 +1920451021 20030131 1 900000000000207008 122682005 85756007 0 118169006 900000000000011006 900000000000451002 +1920451021 20050131 0 900000000000207008 122682005 85756007 0 118169006 900000000000011006 900000000000451002 +1920452025 20030131 1 900000000000207008 122682005 81516001 0 118171006 900000000000011006 900000000000451002 +1920452025 20080731 0 900000000000207008 122682005 81516001 0 118171006 900000000000011006 900000000000451002 +1920452025 20090131 1 900000000000207008 122682005 81516001 1 118171006 900000000000011006 900000000000451002 +1920453024 20030131 1 900000000000207008 122683000 119274003 0 118169006 900000000000011006 900000000000451002 +1920453024 20080731 0 900000000000207008 122683000 119274003 0 118169006 900000000000011006 900000000000451002 +1920453024 20090731 1 900000000000207008 122683000 119274003 1 118169006 900000000000011006 900000000000451002 +1920454029 20030131 1 900000000000207008 122683000 85756007 0 118169006 900000000000011006 900000000000451002 +1920454029 20050131 0 900000000000207008 122683000 85756007 0 118169006 900000000000011006 900000000000451002 +1920455028 20030131 1 900000000000207008 122683000 81516001 0 118171006 900000000000011006 900000000000451002 +1920455028 20080731 0 900000000000207008 122683000 81516001 0 118171006 900000000000011006 900000000000451002 +1920455028 20090731 1 900000000000207008 122683000 81516001 1 118171006 900000000000011006 900000000000451002 +1920456027 20030131 1 900000000000207008 122684006 119276001 0 118169006 900000000000011006 900000000000451002 +1920456027 20080731 0 900000000000207008 122684006 119276001 0 118169006 900000000000011006 900000000000451002 +1920456027 20090731 1 900000000000207008 122684006 119276001 1 118169006 900000000000011006 900000000000451002 +1920457020 20030131 1 900000000000207008 122684006 85756007 0 118169006 900000000000011006 900000000000451002 +1920457020 20050131 0 900000000000207008 122684006 85756007 0 118169006 900000000000011006 900000000000451002 +1920458026 20030131 1 900000000000207008 122684006 81516001 0 118171006 900000000000011006 900000000000451002 +1920458026 20080731 0 900000000000207008 122684006 81516001 0 118171006 900000000000011006 900000000000451002 +1920458026 20090731 1 900000000000207008 122684006 81516001 1 118171006 900000000000011006 900000000000451002 +1920459023 20030131 1 900000000000207008 122685007 119277005 0 118169006 900000000000011006 900000000000451002 +1920459023 20080731 0 900000000000207008 122685007 119277005 0 118169006 900000000000011006 900000000000451002 +1920459023 20090731 1 900000000000207008 122685007 119277005 1 118169006 900000000000011006 900000000000451002 +1920460029 20030131 1 900000000000207008 122685007 85756007 0 118169006 900000000000011006 900000000000451002 +1920460029 20050131 0 900000000000207008 122685007 85756007 0 118169006 900000000000011006 900000000000451002 +1920461025 20030131 1 900000000000207008 122685007 81516001 0 118171006 900000000000011006 900000000000451002 +1920461025 20080731 0 900000000000207008 122685007 81516001 0 118171006 900000000000011006 900000000000451002 +1920461025 20090731 1 900000000000207008 122685007 81516001 1 118171006 900000000000011006 900000000000451002 +1920462021 20030131 1 900000000000207008 122686008 85756007 0 118169006 900000000000011006 900000000000451002 +1920462021 20080731 0 900000000000207008 122686008 85756007 0 118169006 900000000000011006 900000000000451002 +1920463027 20030131 1 900000000000207008 122686008 89837001 0 118169006 900000000000011006 900000000000451002 +1920463027 20080731 0 900000000000207008 122686008 89837001 0 118169006 900000000000011006 900000000000451002 +1920463027 20090131 1 900000000000207008 122686008 89837001 1 118169006 900000000000011006 900000000000451002 +1920464022 20030131 1 900000000000207008 122686008 112902005 0 118171006 900000000000011006 900000000000451002 +1920464022 20080731 0 900000000000207008 122686008 112902005 0 118171006 900000000000011006 900000000000451002 +1920464022 20090131 1 900000000000207008 122686008 112902005 1 118171006 900000000000011006 900000000000451002 +1920465023 20030131 1 900000000000207008 122687004 85756007 0 118169006 900000000000011006 900000000000451002 +1920465023 20080731 0 900000000000207008 122687004 85756007 0 118169006 900000000000011006 900000000000451002 +1920466024 20030131 1 900000000000207008 122687004 89837001 0 118169006 900000000000011006 900000000000451002 +1920466024 20080731 0 900000000000207008 122687004 89837001 0 118169006 900000000000011006 900000000000451002 +1920466024 20090131 1 900000000000207008 122687004 89837001 1 118169006 900000000000011006 900000000000451002 +1920467026 20030131 1 900000000000207008 122687004 63016009 0 118171006 900000000000011006 900000000000451002 +1920467026 20080731 0 900000000000207008 122687004 63016009 0 118171006 900000000000011006 900000000000451002 +1920467026 20090131 1 900000000000207008 122687004 63016009 1 118171006 900000000000011006 900000000000451002 +1920468020 20030131 1 900000000000207008 122688009 35461009 0 118169006 900000000000011006 900000000000451002 +1920468020 20030731 0 900000000000207008 122688009 35461009 0 118169006 900000000000011006 900000000000451002 +1920469028 20030131 1 900000000000207008 122688009 85756007 0 118169006 900000000000011006 900000000000451002 +1920469028 20080731 0 900000000000207008 122688009 85756007 0 118169006 900000000000011006 900000000000451002 +1920470027 20030131 1 900000000000207008 122688009 81232004 0 118171006 900000000000011006 900000000000451002 +1920470027 20080731 0 900000000000207008 122688009 81232004 0 118171006 900000000000011006 900000000000451002 +1920470027 20090131 1 900000000000207008 122688009 81232004 1 118171006 900000000000011006 900000000000451002 +1920471028 20030131 1 900000000000207008 122689001 35461009 0 118169006 900000000000011006 900000000000451002 +1920471028 20050131 0 900000000000207008 122689001 35461009 0 118169006 900000000000011006 900000000000451002 +1920472024 20030131 1 900000000000207008 122689001 85756007 0 118169006 900000000000011006 900000000000451002 +1920472024 20050131 0 900000000000207008 122689001 85756007 0 118169006 900000000000011006 900000000000451002 +1920473025 20030131 1 900000000000207008 122689001 9846003 0 118169006 900000000000011006 900000000000451002 +1920473025 20080731 0 900000000000207008 122689001 9846003 0 118169006 900000000000011006 900000000000451002 +1920474020 20030131 1 900000000000207008 122689001 116033007 0 118171006 900000000000011006 900000000000451002 +1920474020 20080731 0 900000000000207008 122689001 116033007 0 118171006 900000000000011006 900000000000451002 +1920475021 20030131 1 900000000000207008 122689001 31904001 0 118171006 900000000000011006 900000000000451002 +1920475021 20080731 0 900000000000207008 122689001 31904001 0 118171006 900000000000011006 900000000000451002 +1920476022 20030131 1 900000000000207008 122690005 18639004 0 118169006 900000000000011006 900000000000451002 +1920476022 20080731 0 900000000000207008 122690005 18639004 0 118169006 900000000000011006 900000000000451002 +1920476022 20100731 1 900000000000207008 122690005 18639004 1 118169006 900000000000011006 900000000000451002 +1920477029 20030131 1 900000000000207008 122690005 35461009 0 118169006 900000000000011006 900000000000451002 +1920477029 20050131 0 900000000000207008 122690005 35461009 0 118169006 900000000000011006 900000000000451002 +1920478023 20030131 1 900000000000207008 122690005 85756007 0 118169006 900000000000011006 900000000000451002 +1920478023 20050131 0 900000000000207008 122690005 85756007 0 118169006 900000000000011006 900000000000451002 +1920479026 20030131 1 900000000000207008 122690005 116033007 0 118171006 900000000000011006 900000000000451002 +1920479026 20080731 0 900000000000207008 122690005 116033007 0 118171006 900000000000011006 900000000000451002 +1920480028 20030131 1 900000000000207008 122690005 31904001 0 118171006 900000000000011006 900000000000451002 +1920480028 20080731 0 900000000000207008 122690005 31904001 0 118171006 900000000000011006 900000000000451002 +1920481029 20030131 1 900000000000207008 122691009 76784001 0 118169006 900000000000011006 900000000000451002 +1920481029 20080731 0 900000000000207008 122691009 76784001 0 118169006 900000000000011006 900000000000451002 +1920481029 20090131 1 900000000000207008 122691009 76784001 1 118169006 900000000000011006 900000000000451002 +1920482020 20030131 1 900000000000207008 122691009 85756007 0 118169006 900000000000011006 900000000000451002 +1920482020 20080731 0 900000000000207008 122691009 85756007 0 118169006 900000000000011006 900000000000451002 +1920483026 20030131 1 900000000000207008 122691009 309942007 0 118170007 900000000000011006 900000000000451002 +1920483026 20030731 0 900000000000207008 122691009 309942007 0 118170007 900000000000011006 900000000000451002 +1920484021 20030131 1 900000000000207008 122691009 116245008 0 118171006 900000000000011006 900000000000451002 +1920484021 20080731 0 900000000000207008 122691009 116245008 0 118171006 900000000000011006 900000000000451002 +1920484021 20090131 1 900000000000207008 122691009 116245008 1 118171006 900000000000011006 900000000000451002 +1920485022 20030131 1 900000000000207008 122692002 76784001 0 118169006 900000000000011006 900000000000451002 +1920485022 20080731 0 900000000000207008 122692002 76784001 0 118169006 900000000000011006 900000000000451002 +1920485022 20090131 1 900000000000207008 122692002 76784001 1 118169006 900000000000011006 900000000000451002 +1920486023 20030131 1 900000000000207008 122692002 85756007 0 118169006 900000000000011006 900000000000451002 +1920486023 20080731 0 900000000000207008 122692002 85756007 0 118169006 900000000000011006 900000000000451002 +1920487025 20030131 1 900000000000207008 122692002 309942007 0 118170007 900000000000011006 900000000000451002 +1920487025 20030731 0 900000000000207008 122692002 309942007 0 118170007 900000000000011006 900000000000451002 +1920488024 20030131 1 900000000000207008 122692002 116246009 0 118171006 900000000000011006 900000000000451002 +1920488024 20080731 0 900000000000207008 122692002 116246009 0 118171006 900000000000011006 900000000000451002 +1920488024 20090131 1 900000000000207008 122692002 116246009 1 118171006 900000000000011006 900000000000451002 +1920489027 20030131 1 900000000000207008 122693007 76784001 0 118169006 900000000000011006 900000000000451002 +1920489027 20080731 0 900000000000207008 122693007 76784001 0 118169006 900000000000011006 900000000000451002 +1920489027 20090731 1 900000000000207008 122693007 76784001 1 118169006 900000000000011006 900000000000451002 +1920490020 20030131 1 900000000000207008 122693007 85756007 0 118169006 900000000000011006 900000000000451002 +1920490020 20080731 0 900000000000207008 122693007 85756007 0 118169006 900000000000011006 900000000000451002 +1920491024 20030131 1 900000000000207008 122693007 309942007 0 118170007 900000000000011006 900000000000451002 +1920491024 20030731 0 900000000000207008 122693007 309942007 0 118170007 900000000000011006 900000000000451002 +1920492028 20030131 1 900000000000207008 122693007 65756000 0 118171006 900000000000011006 900000000000451002 +1920492028 20080731 0 900000000000207008 122693007 65756000 0 118171006 900000000000011006 900000000000451002 +1920492028 20090731 1 900000000000207008 122693007 65756000 1 118171006 900000000000011006 900000000000451002 +1920493022 20030131 1 900000000000207008 122694001 76784001 0 118169006 900000000000011006 900000000000451002 +1920493022 20080731 0 900000000000207008 122694001 76784001 0 118169006 900000000000011006 900000000000451002 +1920493022 20090131 1 900000000000207008 122694001 76784001 1 118169006 900000000000011006 900000000000451002 +1920494027 20030131 1 900000000000207008 122694001 85756007 0 118169006 900000000000011006 900000000000451002 +1920494027 20080731 0 900000000000207008 122694001 85756007 0 118169006 900000000000011006 900000000000451002 +1920495026 20030131 1 900000000000207008 122694001 309942007 0 118170007 900000000000011006 900000000000451002 +1920495026 20030731 0 900000000000207008 122694001 309942007 0 118170007 900000000000011006 900000000000451002 +1920496025 20030131 1 900000000000207008 122694001 116145001 0 118171006 900000000000011006 900000000000451002 +1920496025 20080731 0 900000000000207008 122694001 116145001 0 118171006 900000000000011006 900000000000451002 +1920496025 20090131 1 900000000000207008 122694001 116145001 1 118171006 900000000000011006 900000000000451002 +1920501029 20030131 1 900000000000207008 122696004 35039007 0 118169006 900000000000011006 900000000000451002 +1920501029 20080731 0 900000000000207008 122696004 35039007 0 118169006 900000000000011006 900000000000451002 +1920501029 20090131 1 900000000000207008 122696004 35039007 1 118169006 900000000000011006 900000000000451002 +1920501029 20110731 0 900000000000207008 122696004 35039007 1 118169006 900000000000011006 900000000000451002 +1920502020 20030131 1 900000000000207008 122696004 85756007 0 118169006 900000000000011006 900000000000451002 +1920502020 20080731 0 900000000000207008 122696004 85756007 0 118169006 900000000000011006 900000000000451002 +1920503026 20030131 1 900000000000207008 122696004 309942007 0 118170007 900000000000011006 900000000000451002 +1920503026 20030731 0 900000000000207008 122696004 309942007 0 118170007 900000000000011006 900000000000451002 +1920504021 20030131 1 900000000000207008 122696004 116142003 0 118171006 900000000000011006 900000000000451002 +1920504021 20080731 0 900000000000207008 122696004 116142003 0 118171006 900000000000011006 900000000000451002 +1920504021 20090131 1 900000000000207008 122696004 116142003 1 118171006 900000000000011006 900000000000451002 +1920504021 20110731 0 900000000000207008 122696004 116142003 1 118171006 900000000000011006 900000000000451002 +1920505022 20030131 1 900000000000207008 122697008 35039007 0 118169006 900000000000011006 900000000000451002 +1920505022 20080731 0 900000000000207008 122697008 35039007 0 118169006 900000000000011006 900000000000451002 +1920505022 20090731 1 900000000000207008 122697008 35039007 1 118169006 900000000000011006 900000000000451002 +1920506023 20030131 1 900000000000207008 122697008 85756007 0 118169006 900000000000011006 900000000000451002 +1920506023 20080731 0 900000000000207008 122697008 85756007 0 118169006 900000000000011006 900000000000451002 +1920507025 20030131 1 900000000000207008 122697008 309942007 0 118170007 900000000000011006 900000000000451002 +1920507025 20030731 0 900000000000207008 122697008 309942007 0 118170007 900000000000011006 900000000000451002 +1920508024 20030131 1 900000000000207008 122697008 236886002 0 118171006 900000000000011006 900000000000451002 +1920508024 20080731 0 900000000000207008 122697008 236886002 0 118171006 900000000000011006 900000000000451002 +1920509027 20030131 1 900000000000207008 122697008 52224004 0 118171006 900000000000011006 900000000000451002 +1920509027 20030731 0 900000000000207008 122697008 52224004 0 118171006 900000000000011006 900000000000451002 +1920510021 20030131 1 900000000000207008 122698003 71252005 0 118169006 900000000000011006 900000000000451002 +1920510021 20080731 0 900000000000207008 122698003 71252005 0 118169006 900000000000011006 900000000000451002 +1920510021 20090131 1 900000000000207008 122698003 71252005 1 118169006 900000000000011006 900000000000451002 +1920511020 20030131 1 900000000000207008 122698003 85756007 0 118169006 900000000000011006 900000000000451002 +1920511020 20080731 0 900000000000207008 122698003 85756007 0 118169006 900000000000011006 900000000000451002 +1920512029 20030131 1 900000000000207008 122698003 309942007 0 118170007 900000000000011006 900000000000451002 +1920512029 20030731 0 900000000000207008 122698003 309942007 0 118170007 900000000000011006 900000000000451002 +1920513023 20030131 1 900000000000207008 122698003 116247000 0 118171006 900000000000011006 900000000000451002 +1920513023 20080731 0 900000000000207008 122698003 116247000 0 118171006 900000000000011006 900000000000451002 +1920513023 20090131 1 900000000000207008 122698003 116247000 1 118171006 900000000000011006 900000000000451002 +1920514028 20030131 1 900000000000207008 122699006 71252005 0 118169006 900000000000011006 900000000000451002 +1920514028 20080731 0 900000000000207008 122699006 71252005 0 118169006 900000000000011006 900000000000451002 +1920514028 20090131 1 900000000000207008 122699006 71252005 1 118169006 900000000000011006 900000000000451002 +1920514028 20150131 1 900000000000207008 122699006 71252005 2 118169006 900000000000011006 900000000000451002 +1920515027 20030131 1 900000000000207008 122699006 85756007 0 118169006 900000000000011006 900000000000451002 +1920515027 20080731 0 900000000000207008 122699006 85756007 0 118169006 900000000000011006 900000000000451002 +1920516026 20030131 1 900000000000207008 122699006 309942007 0 118170007 900000000000011006 900000000000451002 +1920516026 20030731 0 900000000000207008 122699006 309942007 0 118170007 900000000000011006 900000000000451002 +1920517024 20030131 1 900000000000207008 122699006 50796003 0 118171006 900000000000011006 900000000000451002 +1920517024 20030731 0 900000000000207008 122699006 50796003 0 118171006 900000000000011006 900000000000451002 +1920518025 20030131 1 900000000000207008 122699006 8889005 0 118171006 900000000000011006 900000000000451002 +1920518025 20030731 0 900000000000207008 122699006 8889005 0 118171006 900000000000011006 900000000000451002 +1920519022 20030131 1 900000000000207008 122700007 71252005 0 118169006 900000000000011006 900000000000451002 +1920519022 20080731 0 900000000000207008 122700007 71252005 0 118169006 900000000000011006 900000000000451002 +1920519022 20090131 1 900000000000207008 122700007 71252005 1 118169006 900000000000011006 900000000000451002 +1920520027 20030131 1 900000000000207008 122700007 85756007 0 118169006 900000000000011006 900000000000451002 +1920520027 20080731 0 900000000000207008 122700007 85756007 0 118169006 900000000000011006 900000000000451002 +1920521028 20030131 1 900000000000207008 122700007 309942007 0 118170007 900000000000011006 900000000000451002 +1920521028 20030731 0 900000000000207008 122700007 309942007 0 118170007 900000000000011006 900000000000451002 +1920522024 20030131 1 900000000000207008 122700007 236886002 0 118171006 900000000000011006 900000000000451002 +1920522024 20080731 0 900000000000207008 122700007 236886002 0 118171006 900000000000011006 900000000000451002 +1920522024 20090131 1 900000000000207008 122700007 236886002 1 118171006 900000000000011006 900000000000451002 +1920525021 20030131 1 900000000000207008 122701006 71252005 0 118169006 900000000000011006 900000000000451002 +1920525021 20080731 0 900000000000207008 122701006 71252005 0 118169006 900000000000011006 900000000000451002 +1920525021 20090131 1 900000000000207008 122701006 71252005 1 118169006 900000000000011006 900000000000451002 +1920525021 20100131 0 900000000000207008 122701006 71252005 1 118169006 900000000000011006 900000000000451002 +1920525021 20100731 1 900000000000207008 122701006 71252005 1 118169006 900000000000011006 900000000000451002 +1920525021 20110731 0 900000000000207008 122701006 71252005 1 118169006 900000000000011006 900000000000451002 +1920526022 20030131 1 900000000000207008 122701006 85756007 0 118169006 900000000000011006 900000000000451002 +1920526022 20080731 0 900000000000207008 122701006 85756007 0 118169006 900000000000011006 900000000000451002 +1920527029 20030131 1 900000000000207008 122701006 309942007 0 118170007 900000000000011006 900000000000451002 +1920527029 20030731 0 900000000000207008 122701006 309942007 0 118170007 900000000000011006 900000000000451002 +1920528023 20030131 1 900000000000207008 122701006 116142003 0 118171006 900000000000011006 900000000000451002 +1920528023 20080731 0 900000000000207008 122701006 116142003 0 118171006 900000000000011006 900000000000451002 +1920528023 20090131 1 900000000000207008 122701006 116142003 1 118171006 900000000000011006 900000000000451002 +1920528023 20100131 0 900000000000207008 122701006 116142003 1 118171006 900000000000011006 900000000000451002 +1920528023 20100731 1 900000000000207008 122701006 116142003 1 118171006 900000000000011006 900000000000451002 +1920528023 20110731 0 900000000000207008 122701006 116142003 1 118171006 900000000000011006 900000000000451002 +1920529026 20030131 1 900000000000207008 122702004 71252005 0 118169006 900000000000011006 900000000000451002 +1920529026 20080731 0 900000000000207008 122702004 71252005 0 118169006 900000000000011006 900000000000451002 +1920529026 20090731 1 900000000000207008 122702004 71252005 1 118169006 900000000000011006 900000000000451002 +1920530020 20030131 1 900000000000207008 122702004 85756007 0 118169006 900000000000011006 900000000000451002 +1920530020 20080731 0 900000000000207008 122702004 85756007 0 118169006 900000000000011006 900000000000451002 +1920531024 20030131 1 900000000000207008 122702004 309942007 0 118170007 900000000000011006 900000000000451002 +1920531024 20030731 0 900000000000207008 122702004 309942007 0 118170007 900000000000011006 900000000000451002 +1920532028 20030131 1 900000000000207008 122702004 52224004 0 118171006 900000000000011006 900000000000451002 +1920532028 20080731 0 900000000000207008 122702004 52224004 0 118171006 900000000000011006 900000000000451002 +1920532028 20090731 1 900000000000207008 122702004 52224004 1 118171006 900000000000011006 900000000000451002 +1920533022 20030131 1 900000000000207008 122703009 35039007 0 118169006 900000000000011006 900000000000451002 +1920533022 20030731 0 900000000000207008 122703009 35039007 0 118169006 900000000000011006 900000000000451002 +1920534027 20030131 1 900000000000207008 122703009 85756007 0 118169006 900000000000011006 900000000000451002 +1920534027 20080731 0 900000000000207008 122703009 85756007 0 118169006 900000000000011006 900000000000451002 +1920535026 20030131 1 900000000000207008 122703009 309942007 0 118170007 900000000000011006 900000000000451002 +1920535026 20030731 0 900000000000207008 122703009 309942007 0 118170007 900000000000011006 900000000000451002 +1920536025 20030131 1 900000000000207008 122703009 68688001 0 118171006 900000000000011006 900000000000451002 +1920536025 20080731 0 900000000000207008 122703009 68688001 0 118171006 900000000000011006 900000000000451002 +1920536025 20090131 1 900000000000207008 122703009 68688001 1 118171006 900000000000011006 900000000000451002 +1920537023 20030131 1 900000000000207008 122704003 35039007 0 118169006 900000000000011006 900000000000451002 +1920537023 20030731 0 900000000000207008 122704003 35039007 0 118169006 900000000000011006 900000000000451002 +1920538029 20030131 1 900000000000207008 122704003 85756007 0 118169006 900000000000011006 900000000000451002 +1920538029 20080731 0 900000000000207008 122704003 85756007 0 118169006 900000000000011006 900000000000451002 +1920539021 20030131 1 900000000000207008 122704003 309942007 0 118170007 900000000000011006 900000000000451002 +1920539021 20030731 0 900000000000207008 122704003 309942007 0 118170007 900000000000011006 900000000000451002 +1920540023 20030131 1 900000000000207008 122704003 386802000 0 118171006 900000000000011006 900000000000451002 +1920540023 20080731 0 900000000000207008 122704003 386802000 0 118171006 900000000000011006 900000000000451002 +1920540023 20090131 1 900000000000207008 122704003 386802000 1 118171006 900000000000011006 900000000000451002 +1920541022 20030131 1 900000000000207008 122705002 35039007 0 118169006 900000000000011006 900000000000451002 +1920541022 20030731 0 900000000000207008 122705002 35039007 0 118169006 900000000000011006 900000000000451002 +1920542026 20030131 1 900000000000207008 122705002 85756007 0 118169006 900000000000011006 900000000000451002 +1920542026 20080731 0 900000000000207008 122705002 85756007 0 118169006 900000000000011006 900000000000451002 +1920543020 20030131 1 900000000000207008 122705002 309942007 0 118170007 900000000000011006 900000000000451002 +1920543020 20030731 0 900000000000207008 122705002 309942007 0 118170007 900000000000011006 900000000000451002 +1920544025 20030131 1 900000000000207008 122705002 236886002 0 118171006 900000000000011006 900000000000451002 +1920544025 20080731 0 900000000000207008 122705002 236886002 0 118171006 900000000000011006 900000000000451002 +1920544025 20090131 1 900000000000207008 122705002 236886002 1 118171006 900000000000011006 900000000000451002 +1920545029 20030131 1 900000000000207008 122706001 35039007 0 118169006 900000000000011006 900000000000451002 +1920545029 20030731 0 900000000000207008 122706001 35039007 0 118169006 900000000000011006 900000000000451002 +1920546028 20030131 1 900000000000207008 122706001 85756007 0 118169006 900000000000011006 900000000000451002 +1920546028 20080731 0 900000000000207008 122706001 85756007 0 118169006 900000000000011006 900000000000451002 +1920547021 20030131 1 900000000000207008 122706001 309942007 0 118170007 900000000000011006 900000000000451002 +1920547021 20030731 0 900000000000207008 122706001 309942007 0 118170007 900000000000011006 900000000000451002 +1920548027 20030131 1 900000000000207008 122706001 116142003 0 118171006 900000000000011006 900000000000451002 +1920548027 20080731 0 900000000000207008 122706001 116142003 0 118171006 900000000000011006 900000000000451002 +1920548027 20090131 1 900000000000207008 122706001 116142003 1 118171006 900000000000011006 900000000000451002 +1920548027 20110731 0 900000000000207008 122706001 116142003 1 118171006 900000000000011006 900000000000451002 +1920549024 20030131 1 900000000000207008 122707005 35039007 0 118169006 900000000000011006 900000000000451002 +1920549024 20030731 0 900000000000207008 122707005 35039007 0 118169006 900000000000011006 900000000000451002 +1920550024 20030131 1 900000000000207008 122707005 85756007 0 118169006 900000000000011006 900000000000451002 +1920550024 20080731 0 900000000000207008 122707005 85756007 0 118169006 900000000000011006 900000000000451002 +1920551023 20030131 1 900000000000207008 122707005 309942007 0 118170007 900000000000011006 900000000000451002 +1920551023 20030731 0 900000000000207008 122707005 309942007 0 118170007 900000000000011006 900000000000451002 +1920552027 20030131 1 900000000000207008 122707005 52224004 0 118171006 900000000000011006 900000000000451002 +1920552027 20030731 0 900000000000207008 122707005 52224004 0 118171006 900000000000011006 900000000000451002 +1920553021 20030131 1 900000000000207008 122708000 15497006 0 118169006 900000000000011006 900000000000451002 +1920553021 20080731 0 900000000000207008 122708000 15497006 0 118169006 900000000000011006 900000000000451002 +1920553021 20090131 1 900000000000207008 122708000 15497006 1 118169006 900000000000011006 900000000000451002 +1920554026 20030131 1 900000000000207008 122708000 85756007 0 118169006 900000000000011006 900000000000451002 +1920554026 20080731 0 900000000000207008 122708000 85756007 0 118169006 900000000000011006 900000000000451002 +1920555025 20030131 1 900000000000207008 122708000 309942007 0 118170007 900000000000011006 900000000000451002 +1920555025 20030731 0 900000000000207008 122708000 309942007 0 118170007 900000000000011006 900000000000451002 +1920556029 20030131 1 900000000000207008 122708000 4849008 0 118171006 900000000000011006 900000000000451002 +1920556029 20080731 0 900000000000207008 122708000 4849008 0 118171006 900000000000011006 900000000000451002 +1920556029 20090131 1 900000000000207008 122708000 4849008 1 118171006 900000000000011006 900000000000451002 +1920557022 20030131 1 900000000000207008 122709008 15497006 0 118169006 900000000000011006 900000000000451002 +1920557022 20080731 0 900000000000207008 122709008 15497006 0 118169006 900000000000011006 900000000000451002 +1920557022 20090131 1 900000000000207008 122709008 15497006 1 118169006 900000000000011006 900000000000451002 +1920558028 20030131 1 900000000000207008 122709008 85756007 0 118169006 900000000000011006 900000000000451002 +1920558028 20080731 0 900000000000207008 122709008 85756007 0 118169006 900000000000011006 900000000000451002 +1920559020 20030131 1 900000000000207008 122709008 309942007 0 118170007 900000000000011006 900000000000451002 +1920559020 20030731 0 900000000000207008 122709008 309942007 0 118170007 900000000000011006 900000000000451002 +1920560026 20030131 1 900000000000207008 122709008 116172009 0 118171006 900000000000011006 900000000000451002 +1920560026 20080731 0 900000000000207008 122709008 116172009 0 118171006 900000000000011006 900000000000451002 +1920560026 20090131 1 900000000000207008 122709008 116172009 1 118171006 900000000000011006 900000000000451002 +1920561027 20030131 1 900000000000207008 122710003 15497006 0 118169006 900000000000011006 900000000000451002 +1920561027 20080731 0 900000000000207008 122710003 15497006 0 118169006 900000000000011006 900000000000451002 +1920561027 20090731 1 900000000000207008 122710003 15497006 1 118169006 900000000000011006 900000000000451002 +1920562023 20030131 1 900000000000207008 122710003 85756007 0 118169006 900000000000011006 900000000000451002 +1920562023 20080731 0 900000000000207008 122710003 85756007 0 118169006 900000000000011006 900000000000451002 +1920563029 20030131 1 900000000000207008 122710003 309942007 0 118170007 900000000000011006 900000000000451002 +1920563029 20030731 0 900000000000207008 122710003 309942007 0 118170007 900000000000011006 900000000000451002 +1920564024 20030131 1 900000000000207008 122710003 65801008 0 118171006 900000000000011006 900000000000451002 +1920564024 20080731 0 900000000000207008 122710003 65801008 0 118171006 900000000000011006 900000000000451002 +1920566021 20030131 1 900000000000207008 122711004 108369006 0 118168003 900000000000011006 900000000000451002 +1920566021 20080731 0 900000000000207008 122711004 108369006 0 118168003 900000000000011006 900000000000451002 +1920566021 20090131 1 900000000000207008 122711004 108369006 1 118168003 900000000000011006 900000000000451002 +1920567028 20030131 1 900000000000207008 122711004 15497006 0 118169006 900000000000011006 900000000000451002 +1920567028 20080731 0 900000000000207008 122711004 15497006 0 118169006 900000000000011006 900000000000451002 +1920567028 20090131 1 900000000000207008 122711004 15497006 1 118169006 900000000000011006 900000000000451002 +1920568022 20030131 1 900000000000207008 122711004 85756007 0 118169006 900000000000011006 900000000000451002 +1920568022 20080731 0 900000000000207008 122711004 85756007 0 118169006 900000000000011006 900000000000451002 +1920569025 20030131 1 900000000000207008 122711004 309942007 0 118170007 900000000000011006 900000000000451002 +1920569025 20030731 0 900000000000207008 122711004 309942007 0 118170007 900000000000011006 900000000000451002 +1920570029 20030131 1 900000000000207008 122711004 118292001 0 118171006 900000000000011006 900000000000451002 +1920570029 20080731 0 900000000000207008 122711004 118292001 0 118171006 900000000000011006 900000000000451002 +1920571025 20030131 1 900000000000207008 122712006 15497006 0 118169006 900000000000011006 900000000000451002 +1920571025 20080731 0 900000000000207008 122712006 15497006 0 118169006 900000000000011006 900000000000451002 +1920571025 20090131 1 900000000000207008 122712006 15497006 1 118169006 900000000000011006 900000000000451002 +1920571025 20110731 0 900000000000207008 122712006 15497006 1 118169006 900000000000011006 900000000000451002 +1920572021 20030131 1 900000000000207008 122712006 85756007 0 118169006 900000000000011006 900000000000451002 +1920572021 20080731 0 900000000000207008 122712006 85756007 0 118169006 900000000000011006 900000000000451002 +1920573027 20030131 1 900000000000207008 122712006 309942007 0 118170007 900000000000011006 900000000000451002 +1920573027 20030731 0 900000000000207008 122712006 309942007 0 118170007 900000000000011006 900000000000451002 +1920574022 20030131 1 900000000000207008 122712006 116028008 0 118171006 900000000000011006 900000000000451002 +1920574022 20110731 0 900000000000207008 122712006 116028008 0 118171006 900000000000011006 900000000000451002 +1920575023 20030131 1 900000000000207008 122712006 236886002 0 118171006 900000000000011006 900000000000451002 +1920575023 20080731 0 900000000000207008 122712006 236886002 0 118171006 900000000000011006 900000000000451002 +1920576024 20030131 1 900000000000207008 122713001 15497006 0 118169006 900000000000011006 900000000000451002 +1920576024 20080731 0 900000000000207008 122713001 15497006 0 118169006 900000000000011006 900000000000451002 +1920577026 20030131 1 900000000000207008 122713001 85756007 0 118169006 900000000000011006 900000000000451002 +1920577026 20080731 0 900000000000207008 122713001 85756007 0 118169006 900000000000011006 900000000000451002 +1920578020 20030131 1 900000000000207008 122713001 309942007 0 118170007 900000000000011006 900000000000451002 +1920578020 20030731 0 900000000000207008 122713001 309942007 0 118170007 900000000000011006 900000000000451002 +1920579028 20030131 1 900000000000207008 122713001 302376006 0 118171006 900000000000011006 900000000000451002 +1920579028 20080731 0 900000000000207008 122713001 302376006 0 118171006 900000000000011006 900000000000451002 +1920580025 20030131 1 900000000000207008 122714007 20837000 0 118169006 900000000000011006 900000000000451002 +1920580025 20080731 0 900000000000207008 122714007 20837000 0 118169006 900000000000011006 900000000000451002 +1920580025 20090131 1 900000000000207008 122714007 20837000 1 118169006 900000000000011006 900000000000451002 +1920581026 20030131 1 900000000000207008 122714007 85756007 0 118169006 900000000000011006 900000000000451002 +1920581026 20080731 0 900000000000207008 122714007 85756007 0 118169006 900000000000011006 900000000000451002 +1920582022 20030131 1 900000000000207008 122714007 309942007 0 118170007 900000000000011006 900000000000451002 +1920582022 20030731 0 900000000000207008 122714007 309942007 0 118170007 900000000000011006 900000000000451002 +1920583028 20030131 1 900000000000207008 122714007 83152002 0 118171006 900000000000011006 900000000000451002 +1920583028 20030731 0 900000000000207008 122714007 83152002 0 118171006 900000000000011006 900000000000451002 +1920584023 20030131 1 900000000000207008 122715008 20837000 0 118169006 900000000000011006 900000000000451002 +1920584023 20080731 0 900000000000207008 122715008 20837000 0 118169006 900000000000011006 900000000000451002 +1920584023 20090131 1 900000000000207008 122715008 20837000 1 118169006 900000000000011006 900000000000451002 +1920585024 20030131 1 900000000000207008 122715008 85756007 0 118169006 900000000000011006 900000000000451002 +1920585024 20080731 0 900000000000207008 122715008 85756007 0 118169006 900000000000011006 900000000000451002 +1920586020 20030131 1 900000000000207008 122715008 309942007 0 118170007 900000000000011006 900000000000451002 +1920586020 20030731 0 900000000000207008 122715008 309942007 0 118170007 900000000000011006 900000000000451002 +1920587027 20030131 1 900000000000207008 122715008 116028008 0 118171006 900000000000011006 900000000000451002 +1920587027 20030731 0 900000000000207008 122715008 116028008 0 118171006 900000000000011006 900000000000451002 +1920588021 20030131 1 900000000000207008 122716009 43981004 0 118169006 900000000000011006 900000000000451002 +1920588021 20080731 0 900000000000207008 122716009 43981004 0 118169006 900000000000011006 900000000000451002 +1920588021 20090131 1 900000000000207008 122716009 43981004 1 118169006 900000000000011006 900000000000451002 +1920589029 20030131 1 900000000000207008 122716009 85756007 0 118169006 900000000000011006 900000000000451002 +1920589029 20080731 0 900000000000207008 122716009 85756007 0 118169006 900000000000011006 900000000000451002 +1920590022 20030131 1 900000000000207008 122716009 309942007 0 118170007 900000000000011006 900000000000451002 +1920590022 20030731 0 900000000000207008 122716009 309942007 0 118170007 900000000000011006 900000000000451002 +1920591021 20030131 1 900000000000207008 122716009 83152002 0 118171006 900000000000011006 900000000000451002 +1920591021 20030731 0 900000000000207008 122716009 83152002 0 118171006 900000000000011006 900000000000451002 +1920592025 20030131 1 900000000000207008 122717000 15497006 0 118169006 900000000000011006 900000000000451002 +1920592025 20080731 0 900000000000207008 122717000 15497006 0 118169006 900000000000011006 900000000000451002 +1920593024 20030131 1 900000000000207008 122717000 85756007 0 118169006 900000000000011006 900000000000451002 +1920593024 20080731 0 900000000000207008 122717000 85756007 0 118169006 900000000000011006 900000000000451002 +1920594029 20030131 1 900000000000207008 122717000 309942007 0 118170007 900000000000011006 900000000000451002 +1920594029 20030731 0 900000000000207008 122717000 309942007 0 118170007 900000000000011006 900000000000451002 +1920595028 20030131 1 900000000000207008 122717000 302377002 0 118171006 900000000000011006 900000000000451002 +1920595028 20080731 0 900000000000207008 122717000 302377002 0 118171006 900000000000011006 900000000000451002 +1920596027 20030131 1 900000000000207008 122718005 43981004 0 118169006 900000000000011006 900000000000451002 +1920596027 20080731 0 900000000000207008 122718005 43981004 0 118169006 900000000000011006 900000000000451002 +1920596027 20090131 1 900000000000207008 122718005 43981004 1 118169006 900000000000011006 900000000000451002 +1920597020 20030131 1 900000000000207008 122718005 85756007 0 118169006 900000000000011006 900000000000451002 +1920597020 20080731 0 900000000000207008 122718005 85756007 0 118169006 900000000000011006 900000000000451002 +1920598026 20030131 1 900000000000207008 122718005 309942007 0 118170007 900000000000011006 900000000000451002 +1920598026 20030731 0 900000000000207008 122718005 309942007 0 118170007 900000000000011006 900000000000451002 +1920599023 20030131 1 900000000000207008 122718005 116028008 0 118171006 900000000000011006 900000000000451002 +1920599023 20030731 0 900000000000207008 122718005 116028008 0 118171006 900000000000011006 900000000000451002 +1920600021 20030131 1 900000000000207008 122719002 31435000 0 118169006 900000000000011006 900000000000451002 +1920600021 20080731 0 900000000000207008 122719002 31435000 0 118169006 900000000000011006 900000000000451002 +1920600021 20090731 1 900000000000207008 122719002 31435000 1 118169006 900000000000011006 900000000000451002 +1920601020 20030131 1 900000000000207008 122719002 85756007 0 118169006 900000000000011006 900000000000451002 +1920601020 20080731 0 900000000000207008 122719002 85756007 0 118169006 900000000000011006 900000000000451002 +1920602029 20030131 1 900000000000207008 122719002 116028008 0 118171006 900000000000011006 900000000000451002 +1920602029 20080731 0 900000000000207008 122719002 116028008 0 118171006 900000000000011006 900000000000451002 +1920603023 20030131 1 900000000000207008 122719002 236886002 0 118171006 900000000000011006 900000000000451002 +1920603023 20080731 0 900000000000207008 122719002 236886002 0 118171006 900000000000011006 900000000000451002 +1920604028 20030131 1 900000000000207008 122720008 31435000 0 118169006 900000000000011006 900000000000451002 +1920604028 20080731 0 900000000000207008 122720008 31435000 0 118169006 900000000000011006 900000000000451002 +1920605027 20030131 1 900000000000207008 122720008 85756007 0 118169006 900000000000011006 900000000000451002 +1920605027 20080731 0 900000000000207008 122720008 85756007 0 118169006 900000000000011006 900000000000451002 +1920606026 20030131 1 900000000000207008 122720008 65801008 0 118171006 900000000000011006 900000000000451002 +1920606026 20080731 0 900000000000207008 122720008 65801008 0 118171006 900000000000011006 900000000000451002 +1920607024 20030131 1 900000000000207008 122721007 31435000 0 118169006 900000000000011006 900000000000451002 +1920607024 20080731 0 900000000000207008 122721007 31435000 0 118169006 900000000000011006 900000000000451002 +1920607024 20090731 1 900000000000207008 122721007 31435000 1 118169006 900000000000011006 900000000000451002 +1920608025 20030131 1 900000000000207008 122721007 85756007 0 118169006 900000000000011006 900000000000451002 +1920608025 20080731 0 900000000000207008 122721007 85756007 0 118169006 900000000000011006 900000000000451002 +1920609022 20030131 1 900000000000207008 122721007 52224004 0 118171006 900000000000011006 900000000000451002 +1920609022 20080731 0 900000000000207008 122721007 52224004 0 118171006 900000000000011006 900000000000451002 +1920609022 20090731 1 900000000000207008 122721007 52224004 1 118171006 900000000000011006 900000000000451002 +1920610028 20030131 1 900000000000207008 122722000 2033006 0 118169006 900000000000011006 900000000000451002 +1920610028 20080731 0 900000000000207008 122722000 2033006 0 118169006 900000000000011006 900000000000451002 +1920610028 20090731 1 900000000000207008 122722000 2033006 1 118169006 900000000000011006 900000000000451002 +1920611029 20030131 1 900000000000207008 122722000 116028008 0 118171006 900000000000011006 900000000000451002 +1920611029 20080731 0 900000000000207008 122722000 116028008 0 118171006 900000000000011006 900000000000451002 +1920611029 20090731 1 900000000000207008 122722000 116028008 1 118171006 900000000000011006 900000000000451002 +1920612020 20030131 1 900000000000207008 122723005 113293009 0 118169006 900000000000011006 900000000000451002 +1920612020 20080731 0 900000000000207008 122723005 113293009 0 118169006 900000000000011006 900000000000451002 +1920612020 20090731 1 900000000000207008 122723005 113293009 1 118169006 900000000000011006 900000000000451002 +1920613026 20030131 1 900000000000207008 122723005 116028008 0 118171006 900000000000011006 900000000000451002 +1920613026 20080731 0 900000000000207008 122723005 116028008 0 118171006 900000000000011006 900000000000451002 +1920613026 20090731 1 900000000000207008 122723005 116028008 1 118171006 900000000000011006 900000000000451002 +1920614021 20030131 1 900000000000207008 122724004 41216001 0 118169006 900000000000011006 900000000000451002 +1920614021 20080731 0 900000000000207008 122724004 41216001 0 118169006 900000000000011006 900000000000451002 +1920614021 20090131 1 900000000000207008 122724004 41216001 1 118169006 900000000000011006 900000000000451002 +1920615022 20030131 1 900000000000207008 122724004 116244007 0 118171006 900000000000011006 900000000000451002 +1920615022 20080731 0 900000000000207008 122724004 116244007 0 118171006 900000000000011006 900000000000451002 +1920615022 20090131 1 900000000000207008 122724004 116244007 1 118171006 900000000000011006 900000000000451002 +1920616023 20030131 1 900000000000207008 122725003 41216001 0 118169006 900000000000011006 900000000000451002 +1920616023 20080731 0 900000000000207008 122725003 41216001 0 118169006 900000000000011006 900000000000451002 +1920616023 20090131 1 900000000000207008 122725003 41216001 1 118169006 900000000000011006 900000000000451002 +1920617025 20030131 1 900000000000207008 122725003 26294005 0 118171006 900000000000011006 900000000000451002 +1920617025 20080731 0 900000000000207008 122725003 26294005 0 118171006 900000000000011006 900000000000451002 +1920617025 20090131 1 900000000000207008 122725003 26294005 1 118171006 900000000000011006 900000000000451002 +1920618024 20030131 1 900000000000207008 122726002 41216001 0 118169006 900000000000011006 900000000000451002 +1920618024 20080731 0 900000000000207008 122726002 41216001 0 118169006 900000000000011006 900000000000451002 +1920618024 20090131 1 900000000000207008 122726002 41216001 1 118169006 900000000000011006 900000000000451002 +1920619027 20030131 1 900000000000207008 122726002 67598001 0 118171006 900000000000011006 900000000000451002 +1920619027 20080731 0 900000000000207008 122726002 67598001 0 118171006 900000000000011006 900000000000451002 +1920619027 20090131 1 900000000000207008 122726002 67598001 1 118171006 900000000000011006 900000000000451002 +1920620022 20030131 1 900000000000207008 122727006 41216001 0 118169006 900000000000011006 900000000000451002 +1920620022 20080731 0 900000000000207008 122727006 41216001 0 118169006 900000000000011006 900000000000451002 +1920620022 20090131 1 900000000000207008 122727006 41216001 1 118169006 900000000000011006 900000000000451002 +1920621021 20030131 1 900000000000207008 122727006 36253005 0 118171006 900000000000011006 900000000000451002 +1920621021 20080731 0 900000000000207008 122727006 36253005 0 118171006 900000000000011006 900000000000451002 +1920621021 20090131 1 900000000000207008 122727006 36253005 1 118171006 900000000000011006 900000000000451002 +1920622025 20030131 1 900000000000207008 122728001 279572002 0 118169006 900000000000011006 900000000000451002 +1920622025 20080731 1 900000000000207008 122728001 279572002 1 118169006 900000000000011006 900000000000451002 +1920622025 20140131 0 900000000000207008 122728001 279572002 1 118169006 900000000000011006 900000000000451002 +1920623024 20030131 1 900000000000207008 122728001 85756007 0 118169006 900000000000011006 900000000000451002 +1920623024 20080731 0 900000000000207008 122728001 85756007 0 118169006 900000000000011006 900000000000451002 +1920624029 20030131 1 900000000000207008 122728001 118958009 0 118171006 900000000000011006 900000000000451002 +1920624029 20080731 1 900000000000207008 122728001 118958009 1 118171006 900000000000011006 900000000000451002 +1920624029 20140131 0 900000000000207008 122728001 118958009 1 118171006 900000000000011006 900000000000451002 +1920625028 20030131 1 900000000000207008 122729009 279572002 0 118169006 900000000000011006 900000000000451002 +1920625028 20080731 1 900000000000207008 122729009 279572002 1 118169006 900000000000011006 900000000000451002 +1920625028 20140131 0 900000000000207008 122729009 279572002 1 118169006 900000000000011006 900000000000451002 +1920626027 20030131 1 900000000000207008 122729009 85756007 0 118169006 900000000000011006 900000000000451002 +1920626027 20080731 0 900000000000207008 122729009 85756007 0 118169006 900000000000011006 900000000000451002 +1920627020 20030131 1 900000000000207008 122729009 116168005 0 118171006 900000000000011006 900000000000451002 +1920627020 20080731 1 900000000000207008 122729009 116168005 1 118171006 900000000000011006 900000000000451002 +1920627020 20140131 0 900000000000207008 122729009 116168005 1 118171006 900000000000011006 900000000000451002 +1920628026 20030131 1 900000000000207008 122730004 279572002 0 118169006 900000000000011006 900000000000451002 +1920628026 20080731 0 900000000000207008 122730004 279572002 0 118169006 900000000000011006 900000000000451002 +1920628026 20090131 1 900000000000207008 122730004 279572002 1 118169006 900000000000011006 900000000000451002 +1920628026 20140131 0 900000000000207008 122730004 279572002 1 118169006 900000000000011006 900000000000451002 +1920629023 20030131 1 900000000000207008 122730004 85756007 0 118169006 900000000000011006 900000000000451002 +1920629023 20080731 0 900000000000207008 122730004 85756007 0 118169006 900000000000011006 900000000000451002 +1920630029 20030131 1 900000000000207008 122730004 118958009 0 118171006 900000000000011006 900000000000451002 +1920630029 20080731 0 900000000000207008 122730004 118958009 0 118171006 900000000000011006 900000000000451002 +1920631025 20030131 1 900000000000207008 122730004 119283008 0 118171006 900000000000011006 900000000000451002 +1920631025 20080731 0 900000000000207008 122730004 119283008 0 118171006 900000000000011006 900000000000451002 +1920635023 20030131 1 900000000000207008 122732007 69748006 0 118169006 900000000000011006 900000000000451002 +1920635023 20080731 0 900000000000207008 122732007 69748006 0 118169006 900000000000011006 900000000000451002 +1920635023 20090131 1 900000000000207008 122732007 69748006 1 118169006 900000000000011006 900000000000451002 +1920636024 20030131 1 900000000000207008 122732007 85756007 0 118169006 900000000000011006 900000000000451002 +1920636024 20080731 0 900000000000207008 122732007 85756007 0 118169006 900000000000011006 900000000000451002 +1920637026 20030131 1 900000000000207008 122732007 302338000 0 118171006 900000000000011006 900000000000451002 +1920637026 20080731 0 900000000000207008 122732007 302338000 0 118171006 900000000000011006 900000000000451002 +1920637026 20090131 1 900000000000207008 122732007 302338000 1 118171006 900000000000011006 900000000000451002 +1920638020 20030131 1 900000000000207008 122733002 29565003 0 118169006 900000000000011006 900000000000451002 +1920638020 20080731 0 900000000000207008 122733002 29565003 0 118169006 900000000000011006 900000000000451002 +1920638020 20090131 1 900000000000207008 122733002 29565003 1 118169006 900000000000011006 900000000000451002 +1920639028 20030131 1 900000000000207008 122733002 85756007 0 118169006 900000000000011006 900000000000451002 +1920639028 20080731 0 900000000000207008 122733002 85756007 0 118169006 900000000000011006 900000000000451002 +1920640026 20030131 1 900000000000207008 122733002 302338000 0 118171006 900000000000011006 900000000000451002 +1920640026 20080731 0 900000000000207008 122733002 302338000 0 118171006 900000000000011006 900000000000451002 +1920640026 20090131 1 900000000000207008 122733002 302338000 1 118171006 900000000000011006 900000000000451002 +1920641027 20030131 1 900000000000207008 122734008 79163004 0 118169006 900000000000011006 900000000000451002 +1920641027 20080731 0 900000000000207008 122734008 79163004 0 118169006 900000000000011006 900000000000451002 +1920641027 20090131 1 900000000000207008 122734008 79163004 1 118169006 900000000000011006 900000000000451002 +1920642023 20030131 1 900000000000207008 122734008 85756007 0 118169006 900000000000011006 900000000000451002 +1920642023 20080731 0 900000000000207008 122734008 85756007 0 118169006 900000000000011006 900000000000451002 +1920643029 20030131 1 900000000000207008 122734008 302338000 0 118171006 900000000000011006 900000000000451002 +1920643029 20080731 0 900000000000207008 122734008 302338000 0 118171006 900000000000011006 900000000000451002 +1920643029 20090131 1 900000000000207008 122734008 302338000 1 118171006 900000000000011006 900000000000451002 +1920644024 20030131 1 900000000000207008 122735009 69748006 0 118169006 900000000000011006 900000000000451002 +1920644024 20080731 0 900000000000207008 122735009 69748006 0 118169006 900000000000011006 900000000000451002 +1920644024 20090131 1 900000000000207008 122735009 69748006 1 118169006 900000000000011006 900000000000451002 +1920645020 20030131 1 900000000000207008 122735009 85756007 0 118169006 900000000000011006 900000000000451002 +1920645020 20080731 0 900000000000207008 122735009 85756007 0 118169006 900000000000011006 900000000000451002 +1920646021 20030131 1 900000000000207008 122735009 91276009 0 118171006 900000000000011006 900000000000451002 +1920646021 20080731 0 900000000000207008 122735009 91276009 0 118171006 900000000000011006 900000000000451002 +1920646021 20090131 1 900000000000207008 122735009 91276009 1 118171006 900000000000011006 900000000000451002 +1920647028 20030131 1 900000000000207008 122736005 78067005 0 118169006 900000000000011006 900000000000451002 +1920647028 20080731 0 900000000000207008 122736005 78067005 0 118169006 900000000000011006 900000000000451002 +1920647028 20090131 1 900000000000207008 122736005 78067005 1 118169006 900000000000011006 900000000000451002 +1920648022 20030131 1 900000000000207008 122736005 85756007 0 118169006 900000000000011006 900000000000451002 +1920648022 20080731 0 900000000000207008 122736005 85756007 0 118169006 900000000000011006 900000000000451002 +1920649025 20030131 1 900000000000207008 122736005 309942007 0 118170007 900000000000011006 900000000000451002 +1920649025 20030731 0 900000000000207008 122736005 309942007 0 118170007 900000000000011006 900000000000451002 +1920650025 20030131 1 900000000000207008 122737001 76752008 0 118169006 900000000000011006 900000000000451002 +1920650025 20080731 0 900000000000207008 122737001 76752008 0 118169006 900000000000011006 900000000000451002 +1920650025 20090131 1 900000000000207008 122737001 76752008 1 118169006 900000000000011006 900000000000451002 +1920651026 20030131 1 900000000000207008 122737001 85756007 0 118169006 900000000000011006 900000000000451002 +1920651026 20080731 0 900000000000207008 122737001 85756007 0 118169006 900000000000011006 900000000000451002 +1920652022 20030131 1 900000000000207008 122737001 44578009 0 118171006 900000000000011006 900000000000451002 +1920652022 20080731 0 900000000000207008 122737001 44578009 0 118171006 900000000000011006 900000000000451002 +1920652022 20090131 1 900000000000207008 122737001 44578009 1 118171006 900000000000011006 900000000000451002 +1920653028 20030131 1 900000000000207008 122737001 32457005 0 370133003 900000000000011006 900000000000451002 +1920653028 20030731 0 900000000000207008 122737001 32457005 0 370133003 900000000000011006 900000000000451002 +1920654023 20030131 1 900000000000207008 122738006 76752008 0 118169006 900000000000011006 900000000000451002 +1920654023 20080731 0 900000000000207008 122738006 76752008 0 118169006 900000000000011006 900000000000451002 +1920654023 20090131 1 900000000000207008 122738006 76752008 1 118169006 900000000000011006 900000000000451002 +1920655024 20030131 1 900000000000207008 122738006 85756007 0 118169006 900000000000011006 900000000000451002 +1920655024 20080731 0 900000000000207008 122738006 85756007 0 118169006 900000000000011006 900000000000451002 +1920656020 20030131 1 900000000000207008 122738006 116334007 0 118171006 900000000000011006 900000000000451002 +1920656020 20080731 0 900000000000207008 122738006 116334007 0 118171006 900000000000011006 900000000000451002 +1920656020 20090131 1 900000000000207008 122738006 116334007 1 118171006 900000000000011006 900000000000451002 +1920657027 20030131 1 900000000000207008 122738006 32457005 0 370133003 900000000000011006 900000000000451002 +1920657027 20030731 0 900000000000207008 122738006 32457005 0 370133003 900000000000011006 900000000000451002 +1920658021 20030131 1 900000000000207008 122739003 76752008 0 118169006 900000000000011006 900000000000451002 +1920658021 20080731 0 900000000000207008 122739003 76752008 0 118169006 900000000000011006 900000000000451002 +1920658021 20090131 1 900000000000207008 122739003 76752008 1 118169006 900000000000011006 900000000000451002 +1920658021 20180131 0 900000000000207008 122739003 76752008 1 118169006 900000000000011006 900000000000451002 +1920659029 20030131 1 900000000000207008 122739003 85756007 0 118169006 900000000000011006 900000000000451002 +1920659029 20080731 0 900000000000207008 122739003 85756007 0 118169006 900000000000011006 900000000000451002 +1920660023 20030131 1 900000000000207008 122739003 28768007 0 118171006 900000000000011006 900000000000451002 +1920660023 20080731 0 900000000000207008 122739003 28768007 0 118171006 900000000000011006 900000000000451002 +1920660023 20090131 1 900000000000207008 122739003 28768007 1 118171006 900000000000011006 900000000000451002 +1920660023 20180131 0 900000000000207008 122739003 28768007 1 118171006 900000000000011006 900000000000451002 +1920681023 20030131 1 900000000000207008 122877000 58675001 0 118169006 900000000000011006 900000000000451002 +1920681023 20080731 0 900000000000207008 122877000 58675001 0 118169006 900000000000011006 900000000000451002 +1920682027 20030131 1 900000000000207008 122877000 72869002 0 370133003 900000000000011006 900000000000451002 +1920682027 20080731 0 900000000000207008 122877000 72869002 0 370133003 900000000000011006 900000000000451002 +1920682027 20090131 1 900000000000207008 122877000 72869002 1 370133003 900000000000011006 900000000000451002 +1920682027 20100731 0 900000000000207008 122877000 72869002 1 370133003 900000000000011006 900000000000451002 +1920682027 20110131 1 900000000000207008 122877000 72869002 1 370133003 900000000000011006 900000000000451002 +1920685025 20030131 1 900000000000207008 122879002 62834003 0 118169006 900000000000011006 900000000000451002 +1920685025 20080731 1 900000000000207008 122879002 62834003 1 118169006 900000000000011006 900000000000451002 +1920686029 20030131 1 900000000000207008 122879002 32457005 0 370133003 900000000000011006 900000000000451002 +1920686029 20040131 0 900000000000207008 122879002 32457005 0 370133003 900000000000011006 900000000000451002 +1920687022 20030131 1 900000000000207008 122879002 386097001 0 370133003 900000000000011006 900000000000451002 +1920687022 20080731 1 900000000000207008 122879002 386097001 1 370133003 900000000000011006 900000000000451002 +1920688028 20030131 1 900000000000207008 122880004 35461009 0 118169006 900000000000011006 900000000000451002 +1920688028 20080731 0 900000000000207008 122880004 35461009 0 118169006 900000000000011006 900000000000451002 +1920689020 20030131 1 900000000000207008 122880004 73416001 0 118171006 900000000000011006 900000000000451002 +1920689020 20080731 0 900000000000207008 122880004 73416001 0 118171006 900000000000011006 900000000000451002 +1920689020 20090131 1 900000000000207008 122880004 73416001 1 118171006 900000000000011006 900000000000451002 +1920690027 20030131 1 900000000000207008 122880004 78014005 0 370133003 900000000000011006 900000000000451002 +1920690027 20080731 0 900000000000207008 122880004 78014005 0 370133003 900000000000011006 900000000000451002 +1920690027 20090131 1 900000000000207008 122880004 78014005 1 370133003 900000000000011006 900000000000451002 +1921726025 20030131 1 900000000000207008 127456000 76752008 0 118169006 900000000000011006 900000000000451002 +1921726025 20190731 1 900000000000207008 127456000 76752008 1 118169006 900000000000011006 900000000000451002 +1921727023 20030131 1 900000000000207008 127457009 76752008 0 118169006 900000000000011006 900000000000451002 +1921727023 20080731 0 900000000000207008 127457009 76752008 0 118169006 900000000000011006 900000000000451002 +1921727023 20090131 1 900000000000207008 127457009 76752008 1 118169006 900000000000011006 900000000000451002 +1921728029 20030131 1 900000000000207008 127457009 85756007 0 118169006 900000000000011006 900000000000451002 +1921728029 20080731 0 900000000000207008 127457009 85756007 0 118169006 900000000000011006 900000000000451002 +1921729021 20030131 1 900000000000207008 127458004 39607008 0 118169006 900000000000011006 900000000000451002 +1921729021 20190731 1 900000000000207008 127458004 39607008 1 118169006 900000000000011006 900000000000451002 +1921730027 20030131 1 900000000000207008 127459007 3120008 0 118169006 900000000000011006 900000000000451002 +1921730027 20190731 1 900000000000207008 127459007 3120008 1 118169006 900000000000011006 900000000000451002 +1921731028 20030131 1 900000000000207008 127459007 82094008 0 118169006 900000000000011006 900000000000451002 +1921731028 20030731 0 900000000000207008 127459007 82094008 0 118169006 900000000000011006 900000000000451002 +1921732024 20030131 1 900000000000207008 127459007 116025006 0 118171006 900000000000011006 900000000000451002 +1921732024 20030731 0 900000000000207008 127459007 116025006 0 118171006 900000000000011006 900000000000451002 +1921733025 20030131 1 900000000000207008 127460002 3120008 0 118169006 900000000000011006 900000000000451002 +1921733025 20080731 0 900000000000207008 127460002 3120008 0 118169006 900000000000011006 900000000000451002 +1921733025 20090131 1 900000000000207008 127460002 3120008 1 118169006 900000000000011006 900000000000451002 +1921734020 20030131 1 900000000000207008 127460002 82094008 0 118169006 900000000000011006 900000000000451002 +1921734020 20030731 0 900000000000207008 127460002 82094008 0 118169006 900000000000011006 900000000000451002 +1921735021 20030131 1 900000000000207008 127460002 116025006 0 118171006 900000000000011006 900000000000451002 +1921735021 20030731 0 900000000000207008 127460002 116025006 0 118171006 900000000000011006 900000000000451002 +1921737029 20030131 1 900000000000207008 127461003 3120008 0 118169006 900000000000011006 900000000000451002 +1921737029 20080731 0 900000000000207008 127461003 3120008 0 118169006 900000000000011006 900000000000451002 +1921737029 20090731 1 900000000000207008 127461003 3120008 1 118169006 900000000000011006 900000000000451002 +1921738023 20030131 1 900000000000207008 127461003 82094008 0 118169006 900000000000011006 900000000000451002 +1921738023 20030731 0 900000000000207008 127461003 82094008 0 118169006 900000000000011006 900000000000451002 +1921739026 20030131 1 900000000000207008 127461003 116025006 0 118171006 900000000000011006 900000000000451002 +1921739026 20030731 0 900000000000207008 127461003 116025006 0 118171006 900000000000011006 900000000000451002 +1921740029 20030131 1 900000000000207008 127461003 23979009 0 118171006 900000000000011006 900000000000451002 +1921740029 20080731 0 900000000000207008 127461003 23979009 0 118171006 900000000000011006 900000000000451002 +1921740029 20090731 1 900000000000207008 127461003 23979009 1 118171006 900000000000011006 900000000000451002 +1921741025 20030131 1 900000000000207008 127462005 80891009 0 118169006 900000000000011006 900000000000451002 +1921741025 20190731 1 900000000000207008 127462005 80891009 1 118169006 900000000000011006 900000000000451002 +1921742021 20030131 1 900000000000207008 127463000 32849002 0 118169006 900000000000011006 900000000000451002 +1921742021 20190731 1 900000000000207008 127463000 32849002 1 118169006 900000000000011006 900000000000451002 +1921743027 20030131 1 900000000000207008 127464006 32849002 0 118169006 900000000000011006 900000000000451002 +1921743027 20080731 0 900000000000207008 127464006 32849002 0 118169006 900000000000011006 900000000000451002 +1921743027 20090131 1 900000000000207008 127464006 32849002 1 118169006 900000000000011006 900000000000451002 +1921744022 20030131 1 900000000000207008 127464006 85756007 0 118169006 900000000000011006 900000000000451002 +1921744022 20080731 0 900000000000207008 127464006 85756007 0 118169006 900000000000011006 900000000000451002 +1921745023 20030131 1 900000000000207008 127465007 122865005 0 118169006 900000000000011006 900000000000451002 +1921745023 20190731 1 900000000000207008 127465007 122865005 1 118169006 900000000000011006 900000000000451002 +1921746024 20030131 1 900000000000207008 127466008 122865005 0 118169006 900000000000011006 900000000000451002 +1921746024 20030731 0 900000000000207008 127466008 122865005 0 118169006 900000000000011006 900000000000451002 +1921747026 20030131 1 900000000000207008 127466008 85756007 0 118169006 900000000000011006 900000000000451002 +1921747026 20080731 0 900000000000207008 127466008 85756007 0 118169006 900000000000011006 900000000000451002 +1921748020 20030131 1 900000000000207008 127467004 67109009 0 118169006 900000000000011006 900000000000451002 +1921748020 20190731 1 900000000000207008 127467004 67109009 1 118169006 900000000000011006 900000000000451002 +1921749028 20030131 1 900000000000207008 127467004 85756007 0 118169006 900000000000011006 900000000000451002 +1921749028 20030731 0 900000000000207008 127467004 85756007 0 118169006 900000000000011006 900000000000451002 +1921750028 20030131 1 900000000000207008 127468009 67109009 0 118169006 900000000000011006 900000000000451002 +1921750028 20080731 0 900000000000207008 127468009 67109009 0 118169006 900000000000011006 900000000000451002 +1921750028 20090131 1 900000000000207008 127468009 67109009 1 118169006 900000000000011006 900000000000451002 +1921751029 20030131 1 900000000000207008 127468009 85756007 0 118169006 900000000000011006 900000000000451002 +1921751029 20080731 0 900000000000207008 127468009 85756007 0 118169006 900000000000011006 900000000000451002 +1921752020 20030131 1 900000000000207008 127469001 15776009 0 118169006 900000000000011006 900000000000451002 +1921752020 20190731 1 900000000000207008 127469001 15776009 1 118169006 900000000000011006 900000000000451002 +1921753026 20030131 1 900000000000207008 127470000 122865005 0 118169006 900000000000011006 900000000000451002 +1921753026 20030731 0 900000000000207008 127470000 122865005 0 118169006 900000000000011006 900000000000451002 +1921754021 20030131 1 900000000000207008 127470000 15776009 0 118169006 900000000000011006 900000000000451002 +1921754021 20080731 0 900000000000207008 127470000 15776009 0 118169006 900000000000011006 900000000000451002 +1921754021 20090131 1 900000000000207008 127470000 15776009 1 118169006 900000000000011006 900000000000451002 +1921755022 20030131 1 900000000000207008 127470000 85756007 0 118169006 900000000000011006 900000000000451002 +1921755022 20080731 0 900000000000207008 127470000 85756007 0 118169006 900000000000011006 900000000000451002 +1921756023 20030131 1 900000000000207008 127471001 35461009 0 118169006 900000000000011006 900000000000451002 +1921756023 20080731 0 900000000000207008 127471001 35461009 0 118169006 900000000000011006 900000000000451002 +1921757025 20030131 1 900000000000207008 127472008 35461009 0 118169006 900000000000011006 900000000000451002 +1921757025 20080731 0 900000000000207008 127472008 35461009 0 118169006 900000000000011006 900000000000451002 +1921758024 20030131 1 900000000000207008 127472008 85756007 0 118169006 900000000000011006 900000000000451002 +1921758024 20080731 0 900000000000207008 127472008 85756007 0 118169006 900000000000011006 900000000000451002 +1921759027 20030131 1 900000000000207008 127473003 64033007 0 118169006 900000000000011006 900000000000451002 +1921759027 20190731 1 900000000000207008 127473003 64033007 1 118169006 900000000000011006 900000000000451002 +1921760021 20030131 1 900000000000207008 127474009 35461009 0 118169006 900000000000011006 900000000000451002 +1921760021 20050131 0 900000000000207008 127474009 35461009 0 118169006 900000000000011006 900000000000451002 +1921761020 20030131 1 900000000000207008 127474009 64033007 0 118169006 900000000000011006 900000000000451002 +1921761020 20080731 0 900000000000207008 127474009 64033007 0 118169006 900000000000011006 900000000000451002 +1921761020 20090131 1 900000000000207008 127474009 64033007 1 118169006 900000000000011006 900000000000451002 +1921762029 20030131 1 900000000000207008 127474009 85756007 0 118169006 900000000000011006 900000000000451002 +1921762029 20050131 0 900000000000207008 127474009 85756007 0 118169006 900000000000011006 900000000000451002 +1921763023 20030131 1 900000000000207008 127475005 279572002 0 118169006 900000000000011006 900000000000451002 +1921763023 20080731 0 900000000000207008 127475005 279572002 0 118169006 900000000000011006 900000000000451002 +1921763023 20090131 1 900000000000207008 127475005 279572002 1 118169006 900000000000011006 900000000000451002 +1921763023 20140131 0 900000000000207008 127475005 279572002 1 118169006 900000000000011006 900000000000451002 +1921764028 20030131 1 900000000000207008 127475005 85756007 0 118169006 900000000000011006 900000000000451002 +1921764028 20080731 0 900000000000207008 127475005 85756007 0 118169006 900000000000011006 900000000000451002 +1921765027 20030131 1 900000000000207008 127476006 31435000 0 118169006 900000000000011006 900000000000451002 +1921765027 20190731 1 900000000000207008 127476006 31435000 1 118169006 900000000000011006 900000000000451002 +1921767024 20030131 1 900000000000207008 127478007 69748006 0 118169006 900000000000011006 900000000000451002 +1921767024 20080731 0 900000000000207008 127478007 69748006 0 118169006 900000000000011006 900000000000451002 +1921767024 20090131 1 900000000000207008 127478007 69748006 1 118169006 900000000000011006 900000000000451002 +1921768025 20030131 1 900000000000207008 127478007 85756007 0 118169006 900000000000011006 900000000000451002 +1921768025 20080731 0 900000000000207008 127478007 85756007 0 118169006 900000000000011006 900000000000451002 +1921769022 20030131 1 900000000000207008 127479004 35039007 0 118169006 900000000000011006 900000000000451002 +1921769022 20190731 1 900000000000207008 127479004 35039007 1 118169006 900000000000011006 900000000000451002 +1921770023 20030131 1 900000000000207008 127480001 35039007 0 118169006 900000000000011006 900000000000451002 +1921770023 20080731 0 900000000000207008 127480001 35039007 0 118169006 900000000000011006 900000000000451002 +1921770023 20090131 1 900000000000207008 127480001 35039007 1 118169006 900000000000011006 900000000000451002 +1921771022 20030131 1 900000000000207008 127480001 85756007 0 118169006 900000000000011006 900000000000451002 +1921771022 20080731 0 900000000000207008 127480001 85756007 0 118169006 900000000000011006 900000000000451002 +1921772026 20030131 1 900000000000207008 127480001 309942007 0 118170007 900000000000011006 900000000000451002 +1921772026 20030731 0 900000000000207008 127480001 309942007 0 118170007 900000000000011006 900000000000451002 +1921773020 20030131 1 900000000000207008 127481002 71252005 0 118169006 900000000000011006 900000000000451002 +1921773020 20080731 0 900000000000207008 127481002 71252005 0 118169006 900000000000011006 900000000000451002 +1921773020 20090131 1 900000000000207008 127481002 71252005 1 118169006 900000000000011006 900000000000451002 +1921774025 20030131 1 900000000000207008 127481002 85756007 0 118169006 900000000000011006 900000000000451002 +1921774025 20080731 0 900000000000207008 127481002 85756007 0 118169006 900000000000011006 900000000000451002 +1921775029 20030131 1 900000000000207008 127481002 309942007 0 118170007 900000000000011006 900000000000451002 +1921775029 20030731 0 900000000000207008 127481002 309942007 0 118170007 900000000000011006 900000000000451002 +1921776028 20030131 1 900000000000207008 127482009 15497006 0 118169006 900000000000011006 900000000000451002 +1921776028 20080731 0 900000000000207008 127482009 15497006 0 118169006 900000000000011006 900000000000451002 +1921776028 20090131 1 900000000000207008 127482009 15497006 1 118169006 900000000000011006 900000000000451002 +1921777021 20030131 1 900000000000207008 127482009 85756007 0 118169006 900000000000011006 900000000000451002 +1921777021 20080731 0 900000000000207008 127482009 85756007 0 118169006 900000000000011006 900000000000451002 +1921778027 20030131 1 900000000000207008 127482009 309942007 0 118170007 900000000000011006 900000000000451002 +1921778027 20030731 0 900000000000207008 127482009 309942007 0 118170007 900000000000011006 900000000000451002 +1921779024 20030131 1 900000000000207008 127483004 31435000 0 118169006 900000000000011006 900000000000451002 +1921779024 20080731 0 900000000000207008 127483004 31435000 0 118169006 900000000000011006 900000000000451002 +1921779024 20090131 1 900000000000207008 127483004 31435000 1 118169006 900000000000011006 900000000000451002 +1921780022 20030131 1 900000000000207008 127483004 85756007 0 118169006 900000000000011006 900000000000451002 +1921780022 20080731 0 900000000000207008 127483004 85756007 0 118169006 900000000000011006 900000000000451002 +1921903029 20030131 1 900000000000207008 128154006 279572002 0 118169006 900000000000011006 900000000000451002 +1921903029 20140131 0 900000000000207008 128154006 279572002 0 118169006 900000000000011006 900000000000451002 +1921904024 20030131 1 900000000000207008 128155007 15497006 0 118169006 900000000000011006 900000000000451002 +1921904024 20190731 1 900000000000207008 128155007 15497006 1 118169006 900000000000011006 900000000000451002 +1921905020 20030131 1 900000000000207008 128156008 53505006 0 118169006 900000000000011006 900000000000451002 +1921905020 20080731 0 900000000000207008 128156008 53505006 0 118169006 900000000000011006 900000000000451002 +1921905020 20090131 1 900000000000207008 128156008 53505006 1 118169006 900000000000011006 900000000000451002 +1921906021 20030131 1 900000000000207008 128156008 85756007 0 118169006 900000000000011006 900000000000451002 +1921906021 20080731 0 900000000000207008 128156008 85756007 0 118169006 900000000000011006 900000000000451002 +1921907028 20030131 1 900000000000207008 128157004 12738006 0 118169006 900000000000011006 900000000000451002 +1921907028 20080731 0 900000000000207008 128157004 12738006 0 118169006 900000000000011006 900000000000451002 +1921907028 20090131 1 900000000000207008 128157004 12738006 1 118169006 900000000000011006 900000000000451002 +1921908022 20030131 1 900000000000207008 128157004 85756007 0 118169006 900000000000011006 900000000000451002 +1921908022 20080731 0 900000000000207008 128157004 85756007 0 118169006 900000000000011006 900000000000451002 +1921909025 20030131 1 900000000000207008 128157004 256865009 0 370133003 900000000000011006 900000000000451002 +1921909025 20080731 0 900000000000207008 128157004 256865009 0 370133003 900000000000011006 900000000000451002 +1921910024 20030131 1 900000000000207008 128158009 85756007 0 118169006 900000000000011006 900000000000451002 +1921910024 20080731 0 900000000000207008 128158009 85756007 0 118169006 900000000000011006 900000000000451002 +1921911023 20030131 1 900000000000207008 128158009 955009 0 118169006 900000000000011006 900000000000451002 +1921911023 20080731 0 900000000000207008 128158009 955009 0 118169006 900000000000011006 900000000000451002 +1921911023 20090131 1 900000000000207008 128158009 955009 1 118169006 900000000000011006 900000000000451002 +1921912027 20030131 1 900000000000207008 128158009 87200008 0 370133003 900000000000011006 900000000000451002 +1921912027 20040731 0 900000000000207008 128158009 87200008 0 370133003 900000000000011006 900000000000451002 +1921913021 20030131 1 900000000000207008 128159001 71854001 0 118169006 900000000000011006 900000000000451002 +1921913021 20080731 0 900000000000207008 128159001 71854001 0 118169006 900000000000011006 900000000000451002 +1921913021 20090131 1 900000000000207008 128159001 71854001 1 118169006 900000000000011006 900000000000451002 +1921914026 20030131 1 900000000000207008 128159001 85756007 0 118169006 900000000000011006 900000000000451002 +1921914026 20080731 0 900000000000207008 128159001 85756007 0 118169006 900000000000011006 900000000000451002 +1921915025 20030131 1 900000000000207008 128160006 29445007 0 118169006 900000000000011006 900000000000451002 +1921915025 20080731 0 900000000000207008 128160006 29445007 0 118169006 900000000000011006 900000000000451002 +1921915025 20090131 1 900000000000207008 128160006 29445007 1 118169006 900000000000011006 900000000000451002 +1921916029 20030131 1 900000000000207008 128161005 28726007 0 118169006 900000000000011006 900000000000451002 +1921916029 20080731 0 900000000000207008 128161005 28726007 0 118169006 900000000000011006 900000000000451002 +1921916029 20090131 1 900000000000207008 128161005 28726007 1 118169006 900000000000011006 900000000000451002 +1921917022 20030131 1 900000000000207008 128161005 85756007 0 118169006 900000000000011006 900000000000451002 +1921917022 20080731 0 900000000000207008 128161005 85756007 0 118169006 900000000000011006 900000000000451002 +1921918028 20030131 1 900000000000207008 128162003 117590005 0 118169006 900000000000011006 900000000000451002 +1921918028 20080731 0 900000000000207008 128162003 117590005 0 118169006 900000000000011006 900000000000451002 +1921918028 20090131 1 900000000000207008 128162003 117590005 1 118169006 900000000000011006 900000000000451002 +1921918028 20110131 0 900000000000207008 128162003 117590005 1 118169006 900000000000011006 900000000000451002 +1921918028 20110731 1 900000000000207008 128162003 117590005 1 118169006 900000000000011006 900000000000451002 +1921919020 20030131 1 900000000000207008 128162003 85756007 0 118169006 900000000000011006 900000000000451002 +1921919020 20080731 0 900000000000207008 128162003 85756007 0 118169006 900000000000011006 900000000000451002 +1921920025 20030131 1 900000000000207008 128163008 2739003 0 118169006 900000000000011006 900000000000451002 +1921920025 20080731 0 900000000000207008 128163008 2739003 0 118169006 900000000000011006 900000000000451002 +1921920025 20090131 1 900000000000207008 128163008 2739003 1 118169006 900000000000011006 900000000000451002 +1921921026 20030131 1 900000000000207008 128163008 85756007 0 118169006 900000000000011006 900000000000451002 +1921921026 20080731 0 900000000000207008 128163008 85756007 0 118169006 900000000000011006 900000000000451002 +1921922022 20030131 1 900000000000207008 128163008 309942007 0 118170007 900000000000011006 900000000000451002 +1921922022 20030731 0 900000000000207008 128163008 309942007 0 118170007 900000000000011006 900000000000451002 +1921923028 20030131 1 900000000000207008 128164002 81745001 0 118169006 900000000000011006 900000000000451002 +1921923028 20080731 0 900000000000207008 128164002 81745001 0 118169006 900000000000011006 900000000000451002 +1921923028 20090131 1 900000000000207008 128164002 81745001 1 118169006 900000000000011006 900000000000451002 +1921924023 20030131 1 900000000000207008 128164002 85756007 0 118169006 900000000000011006 900000000000451002 +1921924023 20080731 0 900000000000207008 128164002 85756007 0 118169006 900000000000011006 900000000000451002 +1921925024 20030131 1 900000000000207008 128165001 71934003 0 118169006 900000000000011006 900000000000451002 +1921925024 20080731 0 900000000000207008 128165001 71934003 0 118169006 900000000000011006 900000000000451002 +1921925024 20090131 1 900000000000207008 128165001 71934003 1 118169006 900000000000011006 900000000000451002 +1921926020 20030131 1 900000000000207008 128165001 85756007 0 118169006 900000000000011006 900000000000451002 +1921926020 20080731 0 900000000000207008 128165001 85756007 0 118169006 900000000000011006 900000000000451002 +1921927027 20030131 1 900000000000207008 128166000 386108004 0 118169006 900000000000011006 900000000000451002 +1921927027 20080731 0 900000000000207008 128166000 386108004 0 118169006 900000000000011006 900000000000451002 +1921928021 20030131 1 900000000000207008 128166000 80891009 0 118169006 900000000000011006 900000000000451002 +1921928021 20080731 0 900000000000207008 128166000 80891009 0 118169006 900000000000011006 900000000000451002 +1921928021 20090131 1 900000000000207008 128166000 80891009 1 118169006 900000000000011006 900000000000451002 +1921929029 20030131 1 900000000000207008 128167009 53342003 0 118169006 900000000000011006 900000000000451002 +1921929029 20080731 0 900000000000207008 128167009 53342003 0 118169006 900000000000011006 900000000000451002 +1921929029 20090131 1 900000000000207008 128167009 53342003 1 118169006 900000000000011006 900000000000451002 +1921930023 20030131 1 900000000000207008 128167009 85756007 0 118169006 900000000000011006 900000000000451002 +1921930023 20080731 0 900000000000207008 128167009 85756007 0 118169006 900000000000011006 900000000000451002 +1921931022 20030131 1 900000000000207008 128168004 10200004 0 118169006 900000000000011006 900000000000451002 +1921931022 20080731 0 900000000000207008 128168004 10200004 0 118169006 900000000000011006 900000000000451002 +1921931022 20090131 1 900000000000207008 128168004 10200004 1 118169006 900000000000011006 900000000000451002 +1921932026 20030131 1 900000000000207008 128168004 122865005 0 118169006 900000000000011006 900000000000451002 +1921932026 20030731 0 900000000000207008 128168004 122865005 0 118169006 900000000000011006 900000000000451002 +1921933020 20030131 1 900000000000207008 128168004 85756007 0 118169006 900000000000011006 900000000000451002 +1921933020 20080731 0 900000000000207008 128168004 85756007 0 118169006 900000000000011006 900000000000451002 +1921934025 20030131 1 900000000000207008 128169007 18911002 0 118169006 900000000000011006 900000000000451002 +1921934025 20080731 0 900000000000207008 128169007 18911002 0 118169006 900000000000011006 900000000000451002 +1921934025 20090131 1 900000000000207008 128169007 18911002 1 118169006 900000000000011006 900000000000451002 +1921935029 20030131 1 900000000000207008 128169007 85756007 0 118169006 900000000000011006 900000000000451002 +1921935029 20080731 0 900000000000207008 128169007 85756007 0 118169006 900000000000011006 900000000000451002 +1921936028 20030131 1 900000000000207008 128170008 41216001 0 118169006 900000000000011006 900000000000451002 +1921936028 20080731 0 900000000000207008 128170008 41216001 0 118169006 900000000000011006 900000000000451002 +1921936028 20090131 1 900000000000207008 128170008 41216001 1 118169006 900000000000011006 900000000000451002 +1921937021 20030131 1 900000000000207008 128170008 85756007 0 118169006 900000000000011006 900000000000451002 +1921937021 20080731 0 900000000000207008 128170008 85756007 0 118169006 900000000000011006 900000000000451002 +1921938027 20030131 1 900000000000207008 128171007 24065009 0 118169006 900000000000011006 900000000000451002 +1921938027 20080731 0 900000000000207008 128171007 24065009 0 118169006 900000000000011006 900000000000451002 +1921939024 20030131 1 900000000000207008 128172000 54066008 0 118169006 900000000000011006 900000000000451002 +1921939024 20080731 0 900000000000207008 128172000 54066008 0 118169006 900000000000011006 900000000000451002 +1921939024 20090131 1 900000000000207008 128172000 54066008 1 118169006 900000000000011006 900000000000451002 +1921940021 20030131 1 900000000000207008 128172000 85756007 0 118169006 900000000000011006 900000000000451002 +1921940021 20080731 0 900000000000207008 128172000 85756007 0 118169006 900000000000011006 900000000000451002 +1921941020 20030131 1 900000000000207008 128173005 44567001 0 118169006 900000000000011006 900000000000451002 +1921941020 20080731 0 900000000000207008 128173005 44567001 0 118169006 900000000000011006 900000000000451002 +1921941020 20090131 1 900000000000207008 128173005 44567001 1 118169006 900000000000011006 900000000000451002 +1921942029 20030131 1 900000000000207008 128173005 58675001 0 118169006 900000000000011006 900000000000451002 +1921942029 20080731 0 900000000000207008 128173005 58675001 0 118169006 900000000000011006 900000000000451002 +1921943023 20030131 1 900000000000207008 128173005 85756007 0 118169006 900000000000011006 900000000000451002 +1921943023 20080731 0 900000000000207008 128173005 85756007 0 118169006 900000000000011006 900000000000451002 +1921944028 20030131 1 900000000000207008 128174004 13648007 0 118169006 900000000000011006 900000000000451002 +1921944028 20080731 0 900000000000207008 128174004 13648007 0 118169006 900000000000011006 900000000000451002 +1921944028 20090131 1 900000000000207008 128174004 13648007 1 118169006 900000000000011006 900000000000451002 +1921945027 20030131 1 900000000000207008 128174004 85756007 0 118169006 900000000000011006 900000000000451002 +1921945027 20080731 0 900000000000207008 128174004 85756007 0 118169006 900000000000011006 900000000000451002 +1921946026 20030131 1 900000000000207008 128175003 76784001 0 118169006 900000000000011006 900000000000451002 +1921946026 20080731 0 900000000000207008 128175003 76784001 0 118169006 900000000000011006 900000000000451002 +1921946026 20090131 1 900000000000207008 128175003 76784001 1 118169006 900000000000011006 900000000000451002 +1921947024 20030131 1 900000000000207008 128175003 85756007 0 118169006 900000000000011006 900000000000451002 +1921947024 20080731 0 900000000000207008 128175003 85756007 0 118169006 900000000000011006 900000000000451002 +1921948025 20030131 1 900000000000207008 128175003 309942007 0 118170007 900000000000011006 900000000000451002 +1921948025 20030731 0 900000000000207008 128175003 309942007 0 118170007 900000000000011006 900000000000451002 +1926165023 20030131 1 900000000000207008 167867009 272673000 0 118169006 900000000000011006 900000000000451002 +1926165023 20080731 0 900000000000207008 167867009 272673000 0 118169006 900000000000011006 900000000000451002 +1926166024 20030131 1 900000000000207008 167867009 88928006 0 118169006 900000000000011006 900000000000451002 +1926166024 20080731 0 900000000000207008 167867009 88928006 0 118169006 900000000000011006 900000000000451002 +1926167026 20030131 1 900000000000207008 167867009 6085005 0 370133003 900000000000011006 900000000000451002 +1926167026 20190731 1 900000000000207008 167867009 6085005 1 370133003 900000000000011006 900000000000451002 +1926168020 20030131 1 900000000000207008 167868004 280444005 0 118169006 900000000000011006 900000000000451002 +1926168020 20080731 0 900000000000207008 167868004 280444005 0 118169006 900000000000011006 900000000000451002 +1926169028 20030131 1 900000000000207008 167868004 6085005 0 370133003 900000000000011006 900000000000451002 +1926169028 20080731 0 900000000000207008 167868004 6085005 0 370133003 900000000000011006 900000000000451002 +1926169028 20090131 1 900000000000207008 167868004 6085005 1 370133003 900000000000011006 900000000000451002 +1926169028 20110131 0 900000000000207008 167868004 6085005 1 370133003 900000000000011006 900000000000451002 +1926169028 20110731 1 900000000000207008 167868004 6085005 1 370133003 900000000000011006 900000000000451002 +1926169028 20170731 0 900000000000207008 167868004 6085005 1 370133003 900000000000011006 900000000000451002 +1926170027 20030131 1 900000000000207008 167869007 272673000 0 118169006 900000000000011006 900000000000451002 +1926170027 20080731 0 900000000000207008 167869007 272673000 0 118169006 900000000000011006 900000000000451002 +1926171028 20030131 1 900000000000207008 167869007 280445006 0 118169006 900000000000011006 900000000000451002 +1926171028 20080731 0 900000000000207008 167869007 280445006 0 118169006 900000000000011006 900000000000451002 +1926172024 20030131 1 900000000000207008 167869007 6085005 0 370133003 900000000000011006 900000000000451002 +1926172024 20080731 0 900000000000207008 167869007 6085005 0 370133003 900000000000011006 900000000000451002 +1926172024 20090131 1 900000000000207008 167869007 6085005 1 370133003 900000000000011006 900000000000451002 +1926172024 20110131 0 900000000000207008 167869007 6085005 1 370133003 900000000000011006 900000000000451002 +1926172024 20110731 1 900000000000207008 167869007 6085005 1 370133003 900000000000011006 900000000000451002 +1926172024 20170731 0 900000000000207008 167869007 6085005 1 370133003 900000000000011006 900000000000451002 +1926173025 20030131 1 900000000000207008 167870008 272673000 0 118169006 900000000000011006 900000000000451002 +1926173025 20080731 0 900000000000207008 167870008 272673000 0 118169006 900000000000011006 900000000000451002 +1926174020 20030131 1 900000000000207008 167870008 280446007 0 118169006 900000000000011006 900000000000451002 +1926174020 20080731 0 900000000000207008 167870008 280446007 0 118169006 900000000000011006 900000000000451002 +1926175021 20030131 1 900000000000207008 167870008 6085005 0 370133003 900000000000011006 900000000000451002 +1926175021 20080731 0 900000000000207008 167870008 6085005 0 370133003 900000000000011006 900000000000451002 +1926175021 20090131 1 900000000000207008 167870008 6085005 1 370133003 900000000000011006 900000000000451002 +1926175021 20110131 0 900000000000207008 167870008 6085005 1 370133003 900000000000011006 900000000000451002 +1926175021 20110731 1 900000000000207008 167870008 6085005 1 370133003 900000000000011006 900000000000451002 +1926175021 20170731 0 900000000000207008 167870008 6085005 1 370133003 900000000000011006 900000000000451002 +1926176022 20030131 1 900000000000207008 167871007 272673000 0 118169006 900000000000011006 900000000000451002 +1926176022 20080731 0 900000000000207008 167871007 272673000 0 118169006 900000000000011006 900000000000451002 +1926177029 20030131 1 900000000000207008 167871007 312686005 0 118169006 900000000000011006 900000000000451002 +1926177029 20080731 0 900000000000207008 167871007 312686005 0 118169006 900000000000011006 900000000000451002 +1926178023 20030131 1 900000000000207008 167871007 6085005 0 370133003 900000000000011006 900000000000451002 +1926178023 20080731 0 900000000000207008 167871007 6085005 0 370133003 900000000000011006 900000000000451002 +1926178023 20090131 1 900000000000207008 167871007 6085005 1 370133003 900000000000011006 900000000000451002 +1926178023 20110131 0 900000000000207008 167871007 6085005 1 370133003 900000000000011006 900000000000451002 +1926178023 20110731 1 900000000000207008 167871007 6085005 1 370133003 900000000000011006 900000000000451002 +1926178023 20170731 0 900000000000207008 167871007 6085005 1 370133003 900000000000011006 900000000000451002 +1926179026 20030131 1 900000000000207008 167872000 272673000 0 118169006 900000000000011006 900000000000451002 +1926179026 20080731 0 900000000000207008 167872000 272673000 0 118169006 900000000000011006 900000000000451002 +1926180028 20030131 1 900000000000207008 167872000 280450000 0 118169006 900000000000011006 900000000000451002 +1926180028 20080731 0 900000000000207008 167872000 280450000 0 118169006 900000000000011006 900000000000451002 +1926181029 20030131 1 900000000000207008 167872000 6085005 0 370133003 900000000000011006 900000000000451002 +1926181029 20080731 0 900000000000207008 167872000 6085005 0 370133003 900000000000011006 900000000000451002 +1926181029 20090131 1 900000000000207008 167872000 6085005 1 370133003 900000000000011006 900000000000451002 +1926181029 20170731 0 900000000000207008 167872000 6085005 1 370133003 900000000000011006 900000000000451002 +1926182020 20030131 1 900000000000207008 167873005 272673000 0 118169006 900000000000011006 900000000000451002 +1926182020 20080731 0 900000000000207008 167873005 272673000 0 118169006 900000000000011006 900000000000451002 +1926183026 20030131 1 900000000000207008 167873005 280447003 0 118169006 900000000000011006 900000000000451002 +1926183026 20080731 0 900000000000207008 167873005 280447003 0 118169006 900000000000011006 900000000000451002 +1926184021 20030131 1 900000000000207008 167873005 6085005 0 370133003 900000000000011006 900000000000451002 +1926184021 20080731 0 900000000000207008 167873005 6085005 0 370133003 900000000000011006 900000000000451002 +1926184021 20090131 1 900000000000207008 167873005 6085005 1 370133003 900000000000011006 900000000000451002 +1926184021 20110131 0 900000000000207008 167873005 6085005 1 370133003 900000000000011006 900000000000451002 +1926184021 20110731 1 900000000000207008 167873005 6085005 1 370133003 900000000000011006 900000000000451002 +1926184021 20170731 0 900000000000207008 167873005 6085005 1 370133003 900000000000011006 900000000000451002 +1926185022 20030131 1 900000000000207008 167874004 272673000 0 118169006 900000000000011006 900000000000451002 +1926185022 20080731 0 900000000000207008 167874004 272673000 0 118169006 900000000000011006 900000000000451002 +1926186023 20030131 1 900000000000207008 167874004 280448008 0 118169006 900000000000011006 900000000000451002 +1926186023 20080731 0 900000000000207008 167874004 280448008 0 118169006 900000000000011006 900000000000451002 +1926187025 20030131 1 900000000000207008 167874004 88928006 0 118169006 900000000000011006 900000000000451002 +1926187025 20050731 0 900000000000207008 167874004 88928006 0 118169006 900000000000011006 900000000000451002 +1926188024 20030131 1 900000000000207008 167874004 6085005 0 370133003 900000000000011006 900000000000451002 +1926188024 20080731 0 900000000000207008 167874004 6085005 0 370133003 900000000000011006 900000000000451002 +1926188024 20090131 1 900000000000207008 167874004 6085005 1 370133003 900000000000011006 900000000000451002 +1926188024 20110131 0 900000000000207008 167874004 6085005 1 370133003 900000000000011006 900000000000451002 +1926188024 20110731 1 900000000000207008 167874004 6085005 1 370133003 900000000000011006 900000000000451002 +1926188024 20170731 0 900000000000207008 167874004 6085005 1 370133003 900000000000011006 900000000000451002 +1926189027 20030131 1 900000000000207008 167875003 272673000 0 118169006 900000000000011006 900000000000451002 +1926189027 20080731 0 900000000000207008 167875003 272673000 0 118169006 900000000000011006 900000000000451002 +1926190020 20030131 1 900000000000207008 167875003 280449000 0 118169006 900000000000011006 900000000000451002 +1926190020 20080731 0 900000000000207008 167875003 280449000 0 118169006 900000000000011006 900000000000451002 +1926191024 20030131 1 900000000000207008 167875003 6085005 0 370133003 900000000000011006 900000000000451002 +1926191024 20080731 0 900000000000207008 167875003 6085005 0 370133003 900000000000011006 900000000000451002 +1926191024 20090131 1 900000000000207008 167875003 6085005 1 370133003 900000000000011006 900000000000451002 +1926191024 20110131 0 900000000000207008 167875003 6085005 1 370133003 900000000000011006 900000000000451002 +1926191024 20110731 1 900000000000207008 167875003 6085005 1 370133003 900000000000011006 900000000000451002 +1926191024 20170731 0 900000000000207008 167875003 6085005 1 370133003 900000000000011006 900000000000451002 +1926192028 20030131 1 900000000000207008 167876002 272673000 0 118169006 900000000000011006 900000000000451002 +1926192028 20080731 0 900000000000207008 167876002 272673000 0 118169006 900000000000011006 900000000000451002 +1926193022 20030131 1 900000000000207008 167876002 386096005 0 118169006 900000000000011006 900000000000451002 +1926193022 20080731 0 900000000000207008 167876002 386096005 0 118169006 900000000000011006 900000000000451002 +1926194027 20030131 1 900000000000207008 167876002 6085005 0 370133003 900000000000011006 900000000000451002 +1926194027 20080731 0 900000000000207008 167876002 6085005 0 370133003 900000000000011006 900000000000451002 +1926194027 20090131 1 900000000000207008 167876002 6085005 1 370133003 900000000000011006 900000000000451002 +1926194027 20110131 0 900000000000207008 167876002 6085005 1 370133003 900000000000011006 900000000000451002 +1926194027 20110731 1 900000000000207008 167876002 6085005 1 370133003 900000000000011006 900000000000451002 +1926194027 20170731 0 900000000000207008 167876002 6085005 1 370133003 900000000000011006 900000000000451002 +1926195026 20030131 1 900000000000207008 167877006 272673000 0 118169006 900000000000011006 900000000000451002 +1926195026 20080731 0 900000000000207008 167877006 272673000 0 118169006 900000000000011006 900000000000451002 +1926196025 20030131 1 900000000000207008 167877006 360796003 0 118169006 900000000000011006 900000000000451002 +1926196025 20080731 0 900000000000207008 167877006 360796003 0 118169006 900000000000011006 900000000000451002 +1926197023 20030131 1 900000000000207008 167877006 6085005 0 370133003 900000000000011006 900000000000451002 +1926197023 20080731 0 900000000000207008 167877006 6085005 0 370133003 900000000000011006 900000000000451002 +1926197023 20090131 1 900000000000207008 167877006 6085005 1 370133003 900000000000011006 900000000000451002 +1926197023 20170731 0 900000000000207008 167877006 6085005 1 370133003 900000000000011006 900000000000451002 +1926207022 20030131 1 900000000000207008 167913002 279729006 0 118169006 900000000000011006 900000000000451002 +1926207022 20060731 0 900000000000207008 167913002 279729006 0 118169006 900000000000011006 900000000000451002 +1926208028 20030131 1 900000000000207008 167913002 85756007 0 118169006 900000000000011006 900000000000451002 +1926208028 20040731 0 900000000000207008 167913002 85756007 0 118169006 900000000000011006 900000000000451002 +1926209020 20030131 1 900000000000207008 167913002 165369002 0 118171006 900000000000011006 900000000000451002 +1926209020 20040731 0 900000000000207008 167913002 165369002 0 118171006 900000000000011006 900000000000451002 +1926210026 20030131 1 900000000000207008 167913002 87612001 0 370133003 900000000000011006 900000000000451002 +1926210026 20040731 0 900000000000207008 167913002 87612001 0 370133003 900000000000011006 900000000000451002 +1926301020 20030131 1 900000000000207008 168136008 122865005 0 118169006 900000000000011006 900000000000451002 +1926301020 20080731 0 900000000000207008 168136008 122865005 0 118169006 900000000000011006 900000000000451002 +1926302029 20030131 1 900000000000207008 168136008 15536002 0 118171006 900000000000011006 900000000000451002 +1926302029 20030731 0 900000000000207008 168136008 15536002 0 118171006 900000000000011006 900000000000451002 +1926303023 20030131 1 900000000000207008 168136008 33463005 0 370133003 900000000000011006 900000000000451002 +1926303023 20070731 0 900000000000207008 168136008 33463005 0 370133003 900000000000011006 900000000000451002 +1926304028 20030131 1 900000000000207008 168137004 122865005 0 118169006 900000000000011006 900000000000451002 +1926304028 20080731 0 900000000000207008 168137004 122865005 0 118169006 900000000000011006 900000000000451002 +1926305027 20030131 1 900000000000207008 168137004 14766002 0 118171006 900000000000011006 900000000000451002 +1926305027 20080731 0 900000000000207008 168137004 14766002 0 118171006 900000000000011006 900000000000451002 +1926305027 20090131 1 900000000000207008 168137004 14766002 1 118171006 900000000000011006 900000000000451002 +1926306026 20030131 1 900000000000207008 168137004 31773000 0 370133003 900000000000011006 900000000000451002 +1926306026 20080731 0 900000000000207008 168137004 31773000 0 370133003 900000000000011006 900000000000451002 +1926306026 20090131 1 900000000000207008 168137004 31773000 1 370133003 900000000000011006 900000000000451002 +1926307024 20030131 1 900000000000207008 168138009 122865005 0 118169006 900000000000011006 900000000000451002 +1926307024 20080731 0 900000000000207008 168138009 122865005 0 118169006 900000000000011006 900000000000451002 +1926308025 20030131 1 900000000000207008 168138009 173830003 0 118171006 900000000000011006 900000000000451002 +1926308025 20080731 0 900000000000207008 168138009 173830003 0 118171006 900000000000011006 900000000000451002 +1926308025 20090731 1 900000000000207008 168138009 173830003 1 118171006 900000000000011006 900000000000451002 +1926309022 20030131 1 900000000000207008 168138009 31773000 0 370133003 900000000000011006 900000000000451002 +1926309022 20080731 0 900000000000207008 168138009 31773000 0 370133003 900000000000011006 900000000000451002 +1926310028 20030131 1 900000000000207008 168139001 122865005 0 118169006 900000000000011006 900000000000451002 +1926310028 20040131 0 900000000000207008 168139001 122865005 0 118169006 900000000000011006 900000000000451002 +1926311029 20030131 1 900000000000207008 168139001 8121009 0 370133003 900000000000011006 900000000000451002 +1926311029 20040731 0 900000000000207008 168139001 8121009 0 370133003 900000000000011006 900000000000451002 +1926312020 20030131 1 900000000000207008 168140004 33463005 0 370133003 900000000000011006 900000000000451002 +1926312020 20190731 1 900000000000207008 168140004 33463005 1 370133003 900000000000011006 900000000000451002 +1926312020 20220630 0 900000000000207008 168140004 33463005 1 370133003 900000000000011006 900000000000451002 +1926313026 20030131 1 900000000000207008 168141000 279549004 0 118169006 900000000000011006 900000000000451002 +1926313026 20080731 0 900000000000207008 168141000 279549004 0 118169006 900000000000011006 900000000000451002 +1926313026 20090131 1 900000000000207008 168141000 279549004 1 118169006 900000000000011006 900000000000451002 +1926314021 20030131 1 900000000000207008 168141000 72869002 0 370133003 900000000000011006 900000000000451002 +1926314021 20040731 0 900000000000207008 168141000 72869002 0 370133003 900000000000011006 900000000000451002 +1926315022 20030131 1 900000000000207008 168145009 165369002 0 118171006 900000000000011006 900000000000451002 +1926315022 20040731 0 900000000000207008 168145009 165369002 0 118171006 900000000000011006 900000000000451002 +1926316023 20030131 1 900000000000207008 168145009 38000004 0 370133003 900000000000011006 900000000000451002 +1926316023 20190731 1 900000000000207008 168145009 38000004 1 370133003 900000000000011006 900000000000451002 +1926317025 20030131 1 900000000000207008 168145009 87612001 0 370133003 900000000000011006 900000000000451002 +1926317025 20040731 0 900000000000207008 168145009 87612001 0 370133003 900000000000011006 900000000000451002 +1956126023 20030131 1 900000000000207008 256889002 367643001 0 118168003 900000000000011006 900000000000451002 +1956126023 20080731 0 900000000000207008 256889002 367643001 0 118168003 900000000000011006 900000000000451002 +1956126023 20090131 1 900000000000207008 256889002 367643001 1 118168003 900000000000011006 900000000000451002 +1956126023 20170731 0 900000000000207008 256889002 367643001 1 118168003 900000000000011006 900000000000451002 +1956127025 20030131 1 900000000000207008 256889002 76752008 0 118169006 900000000000011006 900000000000451002 +1956127025 20080731 0 900000000000207008 256889002 76752008 0 118169006 900000000000011006 900000000000451002 +1956127025 20090131 1 900000000000207008 256889002 76752008 1 118169006 900000000000011006 900000000000451002 +1956127025 20170731 0 900000000000207008 256889002 76752008 1 118169006 900000000000011006 900000000000451002 +1956128024 20030131 1 900000000000207008 256889002 32457005 0 370133003 900000000000011006 900000000000451002 +1956128024 20040731 0 900000000000207008 256889002 32457005 0 370133003 900000000000011006 900000000000451002 +1956136026 20030131 1 900000000000207008 256912003 41898006 0 118169006 900000000000011006 900000000000451002 +1956136026 20080731 1 900000000000207008 256912003 41898006 1 118169006 900000000000011006 900000000000451002 +1956136026 20090731 0 900000000000207008 256912003 41898006 1 118169006 900000000000011006 900000000000451002 +1956136026 20100131 1 900000000000207008 256912003 41898006 1 118169006 900000000000011006 900000000000451002 +1956137024 20030131 1 900000000000207008 256912003 165369002 0 118171006 900000000000011006 900000000000451002 +1956137024 20040731 0 900000000000207008 256912003 165369002 0 118171006 900000000000011006 900000000000451002 +1956138025 20030131 1 900000000000207008 256912003 87612001 0 370133003 900000000000011006 900000000000451002 +1956138025 20040731 0 900000000000207008 256912003 87612001 0 370133003 900000000000011006 900000000000451002 +1956332024 20030131 1 900000000000207008 258407001 44132006 0 118168003 900000000000011006 900000000000451002 +1956332024 20080731 0 900000000000207008 258407001 44132006 0 118168003 900000000000011006 900000000000451002 +1956332024 20090131 1 900000000000207008 258407001 44132006 1 118168003 900000000000011006 900000000000451002 +1956333025 20030131 1 900000000000207008 258411007 18962004 0 118169006 900000000000011006 900000000000451002 +1956333025 20080731 0 900000000000207008 258411007 18962004 0 118169006 900000000000011006 900000000000451002 +1956333025 20090131 1 900000000000207008 258411007 18962004 1 118169006 900000000000011006 900000000000451002 +1956333025 20110131 0 900000000000207008 258411007 18962004 1 118169006 900000000000011006 900000000000451002 +1956333025 20110731 1 900000000000207008 258411007 18962004 1 118169006 900000000000011006 900000000000451002 +1956334020 20030131 1 900000000000207008 258411007 225711009 0 118171006 900000000000011006 900000000000451002 +1956334020 20080731 0 900000000000207008 258411007 225711009 0 118171006 900000000000011006 900000000000451002 +1956334020 20090131 1 900000000000207008 258411007 225711009 1 118171006 900000000000011006 900000000000451002 +1956334020 20110131 0 900000000000207008 258411007 225711009 1 118171006 900000000000011006 900000000000451002 +1956334020 20110731 1 900000000000207008 258411007 225711009 1 118171006 900000000000011006 900000000000451002 +1956335021 20030131 1 900000000000207008 258411007 72869002 0 370133003 900000000000011006 900000000000451002 +1956335021 20040731 0 900000000000207008 258411007 72869002 0 370133003 900000000000011006 900000000000451002 +1956336022 20030131 1 900000000000207008 258412000 31389004 0 118169006 900000000000011006 900000000000451002 +1956336022 20080731 0 900000000000207008 258412000 31389004 0 118169006 900000000000011006 900000000000451002 +1956336022 20090131 1 900000000000207008 258412000 31389004 1 118169006 900000000000011006 900000000000451002 +1956336022 20110131 0 900000000000207008 258412000 31389004 1 118169006 900000000000011006 900000000000451002 +1956336022 20110731 1 900000000000207008 258412000 31389004 1 118169006 900000000000011006 900000000000451002 +1956337029 20030131 1 900000000000207008 258412000 72869002 0 370133003 900000000000011006 900000000000451002 +1956337029 20040731 0 900000000000207008 258412000 72869002 0 370133003 900000000000011006 900000000000451002 +1956339026 20030131 1 900000000000207008 258414004 55603005 0 118169006 900000000000011006 900000000000451002 +1956339026 20080731 0 900000000000207008 258414004 55603005 0 118169006 900000000000011006 900000000000451002 +1956339026 20090131 1 900000000000207008 258414004 55603005 1 118169006 900000000000011006 900000000000451002 +1956340029 20030131 1 900000000000207008 258415003 86273004 0 118171006 900000000000011006 900000000000451002 +1956340029 20190731 1 900000000000207008 258415003 86273004 1 118171006 900000000000011006 900000000000451002 +1956341025 20030131 1 900000000000207008 258417006 134359009 0 118169006 900000000000011006 900000000000451002 +1956341025 20070731 0 900000000000207008 258417006 134359009 0 118169006 900000000000011006 900000000000451002 +1956342021 20030131 1 900000000000207008 258417006 272673000 0 118169006 900000000000011006 900000000000451002 +1956342021 20070731 0 900000000000207008 258417006 272673000 0 118169006 900000000000011006 900000000000451002 +1956342021 20090131 1 900000000000207008 258417006 272673000 1 118169006 900000000000011006 900000000000451002 +1956343027 20030131 1 900000000000207008 258417006 39352004 0 118169006 900000000000011006 900000000000451002 +1956343027 20040731 0 900000000000207008 258417006 39352004 0 118169006 900000000000011006 900000000000451002 +1956344022 20030131 1 900000000000207008 258418001 48333001 0 118168003 900000000000011006 900000000000451002 +1956344022 20080731 0 900000000000207008 258418001 48333001 0 118168003 900000000000011006 900000000000451002 +1956344022 20090131 1 900000000000207008 258418001 48333001 1 118168003 900000000000011006 900000000000451002 +1956345023 20030131 1 900000000000207008 258419009 68688001 0 118171006 900000000000011006 900000000000451002 +1956345023 20080731 0 900000000000207008 258419009 68688001 0 118171006 900000000000011006 900000000000451002 +1956345023 20090131 1 900000000000207008 258419009 68688001 1 118171006 900000000000011006 900000000000451002 +1956346024 20030131 1 900000000000207008 258420003 367643001 0 118168003 900000000000011006 900000000000451002 +1956346024 20080731 0 900000000000207008 258420003 367643001 0 118168003 900000000000011006 900000000000451002 +1956346024 20090131 1 900000000000207008 258420003 367643001 1 118168003 900000000000011006 900000000000451002 +1956347026 20030131 1 900000000000207008 258420003 85756007 0 118169006 900000000000011006 900000000000451002 +1956347026 20080731 0 900000000000207008 258420003 85756007 0 118169006 900000000000011006 900000000000451002 +1956348020 20030131 1 900000000000207008 258421004 667009 0 118169006 900000000000011006 900000000000451002 +1956348020 20080731 1 900000000000207008 258421004 667009 1 118169006 900000000000011006 900000000000451002 +1956349028 20030131 1 900000000000207008 258421004 309942007 0 118170007 900000000000011006 900000000000451002 +1956349028 20030731 0 900000000000207008 258421004 309942007 0 118170007 900000000000011006 900000000000451002 +1956350028 20030131 1 900000000000207008 258421004 86273004 0 118171006 900000000000011006 900000000000451002 +1956350028 20080731 1 900000000000207008 258421004 86273004 1 118171006 900000000000011006 900000000000451002 +1956351029 20030131 1 900000000000207008 258422006 43174007 0 118169006 900000000000011006 900000000000451002 +1956351029 20080731 0 900000000000207008 258422006 43174007 0 118169006 900000000000011006 900000000000451002 +1956351029 20090131 1 900000000000207008 258422006 43174007 1 118169006 900000000000011006 900000000000451002 +1956352020 20030131 1 900000000000207008 258422006 85756007 0 118169006 900000000000011006 900000000000451002 +1956352020 20080731 0 900000000000207008 258422006 85756007 0 118169006 900000000000011006 900000000000451002 +1956353026 20030131 1 900000000000207008 258423001 90749001 0 118169006 900000000000011006 900000000000451002 +1956353026 20190731 1 900000000000207008 258423001 90749001 1 118169006 900000000000011006 900000000000451002 +1956354021 20030131 1 900000000000207008 258424007 17401000 0 118169006 900000000000011006 900000000000451002 +1956354021 20080731 0 900000000000207008 258424007 17401000 0 118169006 900000000000011006 900000000000451002 +1956354021 20090131 1 900000000000207008 258424007 17401000 1 118169006 900000000000011006 900000000000451002 +1956355022 20030131 1 900000000000207008 258424007 386109007 0 118169006 900000000000011006 900000000000451002 +1956355022 20080731 0 900000000000207008 258424007 386109007 0 118169006 900000000000011006 900000000000451002 +1956356023 20030131 1 900000000000207008 258425008 78076003 0 118169006 900000000000011006 900000000000451002 +1956356023 20100131 0 900000000000207008 258425008 78076003 0 118169006 900000000000011006 900000000000451002 +1956356023 20100731 1 900000000000207008 258425008 78076003 1 118169006 900000000000011006 900000000000451002 +1956357025 20030131 1 900000000000207008 258425008 85756007 0 118169006 900000000000011006 900000000000451002 +1956357025 20030731 0 900000000000207008 258425008 85756007 0 118169006 900000000000011006 900000000000451002 +1956358024 20030131 1 900000000000207008 258426009 82530009 0 118169006 900000000000011006 900000000000451002 +1956358024 20080731 0 900000000000207008 258426009 82530009 0 118169006 900000000000011006 900000000000451002 +1956358024 20090131 1 900000000000207008 258426009 82530009 1 118169006 900000000000011006 900000000000451002 +1956359027 20030131 1 900000000000207008 258426009 85756007 0 118169006 900000000000011006 900000000000451002 +1956359027 20080731 0 900000000000207008 258426009 85756007 0 118169006 900000000000011006 900000000000451002 +1956360021 20030131 1 900000000000207008 258426009 309942007 0 118170007 900000000000011006 900000000000451002 +1956360021 20030731 0 900000000000207008 258426009 309942007 0 118170007 900000000000011006 900000000000451002 +1956361020 20030131 1 900000000000207008 258428005 26864007 0 118169006 900000000000011006 900000000000451002 +1956361020 20080731 0 900000000000207008 258428005 26864007 0 118169006 900000000000011006 900000000000451002 +1956361020 20090131 1 900000000000207008 258428005 26864007 1 118169006 900000000000011006 900000000000451002 +1956362029 20030131 1 900000000000207008 258428005 309942007 0 118170007 900000000000011006 900000000000451002 +1956362029 20030731 0 900000000000207008 258428005 309942007 0 118170007 900000000000011006 900000000000451002 +1956363023 20030131 1 900000000000207008 258429002 34402009 0 118169006 900000000000011006 900000000000451002 +1956363023 20080731 0 900000000000207008 258429002 34402009 0 118169006 900000000000011006 900000000000451002 +1956363023 20090131 1 900000000000207008 258429002 34402009 1 118169006 900000000000011006 900000000000451002 +1956363023 20110731 0 900000000000207008 258429002 34402009 1 118169006 900000000000011006 900000000000451002 +1956364028 20030131 1 900000000000207008 258429002 85756007 0 118169006 900000000000011006 900000000000451002 +1956364028 20080731 0 900000000000207008 258429002 85756007 0 118169006 900000000000011006 900000000000451002 +1956365027 20030131 1 900000000000207008 258429002 56757003 0 118171006 900000000000011006 900000000000451002 +1956365027 20080731 0 900000000000207008 258429002 56757003 0 118171006 900000000000011006 900000000000451002 +1956365027 20090131 1 900000000000207008 258429002 56757003 1 118171006 900000000000011006 900000000000451002 +1956365027 20110731 0 900000000000207008 258429002 56757003 1 118171006 900000000000011006 900000000000451002 +1956366026 20030131 1 900000000000207008 258430007 34402009 0 118169006 900000000000011006 900000000000451002 +1956366026 20080731 0 900000000000207008 258430007 34402009 0 118169006 900000000000011006 900000000000451002 +1956366026 20090131 1 900000000000207008 258430007 34402009 1 118169006 900000000000011006 900000000000451002 +1956367024 20030131 1 900000000000207008 258430007 85756007 0 118169006 900000000000011006 900000000000451002 +1956367024 20080731 0 900000000000207008 258430007 85756007 0 118169006 900000000000011006 900000000000451002 +1956368025 20030131 1 900000000000207008 258431006 56757003 0 118171006 900000000000011006 900000000000451002 +1956368025 20190731 1 900000000000207008 258431006 56757003 1 118171006 900000000000011006 900000000000451002 +1956369022 20030131 1 900000000000207008 258432004 39937001 0 118169006 900000000000011006 900000000000451002 +1956369022 20040731 0 900000000000207008 258432004 39937001 0 118169006 900000000000011006 900000000000451002 +1956370023 20030131 1 900000000000207008 258432004 51280008 0 370133003 900000000000011006 900000000000451002 +1956370023 20080731 0 900000000000207008 258432004 51280008 0 370133003 900000000000011006 900000000000451002 +1956370023 20090131 1 900000000000207008 258432004 51280008 1 370133003 900000000000011006 900000000000451002 +1956371022 20030131 1 900000000000207008 258434003 35461009 0 118169006 900000000000011006 900000000000451002 +1956371022 20080731 0 900000000000207008 258434003 35461009 0 118169006 900000000000011006 900000000000451002 +1956372026 20030131 1 900000000000207008 258434003 63840000 0 118171006 900000000000011006 900000000000451002 +1956372026 20080731 0 900000000000207008 258434003 63840000 0 118171006 900000000000011006 900000000000451002 +1956373020 20030131 1 900000000000207008 258435002 108369006 0 118168003 900000000000011006 900000000000451002 +1956373020 20080731 0 900000000000207008 258435002 108369006 0 118168003 900000000000011006 900000000000451002 +1956373020 20090131 1 900000000000207008 258435002 108369006 1 118168003 900000000000011006 900000000000451002 +1956374025 20030131 1 900000000000207008 258436001 29870000 0 118169006 900000000000011006 900000000000451002 +1956374025 20080731 0 900000000000207008 258436001 29870000 0 118169006 900000000000011006 900000000000451002 +1956374025 20090131 1 900000000000207008 258436001 29870000 1 118169006 900000000000011006 900000000000451002 +1956375029 20030131 1 900000000000207008 258436001 309942007 0 118170007 900000000000011006 900000000000451002 +1956375029 20030731 0 900000000000207008 258436001 309942007 0 118170007 900000000000011006 900000000000451002 +1956376028 20030131 1 900000000000207008 258437005 363564008 0 118168003 900000000000011006 900000000000451002 +1956376028 20080731 1 900000000000207008 258437005 363564008 1 118168003 900000000000011006 900000000000451002 +1956377021 20030131 1 900000000000207008 258437005 17401000 0 118169006 900000000000011006 900000000000451002 +1956377021 20080731 1 900000000000207008 258437005 17401000 1 118169006 900000000000011006 900000000000451002 +1956378027 20030131 1 900000000000207008 258438000 81745001 0 118169006 900000000000011006 900000000000451002 +1956378027 20080731 0 900000000000207008 258438000 81745001 0 118169006 900000000000011006 900000000000451002 +1956379024 20030131 1 900000000000207008 258438000 17770004 0 370133003 900000000000011006 900000000000451002 +1956379024 20070731 0 900000000000207008 258438000 17770004 0 370133003 900000000000011006 900000000000451002 +1956380022 20030131 1 900000000000207008 258438000 33463005 0 370133003 900000000000011006 900000000000451002 +1956380022 20070731 0 900000000000207008 258438000 33463005 0 370133003 900000000000011006 900000000000451002 +1956381021 20030131 1 900000000000207008 258439008 307488001 0 370133003 900000000000011006 900000000000451002 +1956381021 20190731 1 900000000000207008 258439008 307488001 1 370133003 900000000000011006 900000000000451002 +1956382025 20030131 1 900000000000207008 258440005 41699000 0 118168003 900000000000011006 900000000000451002 +1956382025 20080731 0 900000000000207008 258440005 41699000 0 118168003 900000000000011006 900000000000451002 +1956383024 20030131 1 900000000000207008 258440005 91720002 0 370133003 900000000000011006 900000000000451002 +1956383024 20080731 0 900000000000207008 258440005 91720002 0 370133003 900000000000011006 900000000000451002 +1956384029 20030131 1 900000000000207008 258441009 247450001 0 370133003 900000000000011006 900000000000451002 +1956384029 20190731 1 900000000000207008 258441009 247450001 1 370133003 900000000000011006 900000000000451002 +1956385028 20030131 1 900000000000207008 258442002 33463005 0 370133003 900000000000011006 900000000000451002 +1956385028 20190731 1 900000000000207008 258442002 33463005 1 370133003 900000000000011006 900000000000451002 +1956388026 20030131 1 900000000000207008 258444001 87321005 0 118169006 900000000000011006 900000000000451002 +1956388026 20080731 1 900000000000207008 258444001 87321005 1 118169006 900000000000011006 900000000000451002 +1956389023 20030131 1 900000000000207008 258444001 33463005 0 370133003 900000000000011006 900000000000451002 +1956389023 20070731 0 900000000000207008 258444001 33463005 0 370133003 900000000000011006 900000000000451002 +1956392022 20030131 1 900000000000207008 258446004 82094008 0 118169006 900000000000011006 900000000000451002 +1956392022 20080731 0 900000000000207008 258446004 82094008 0 118169006 900000000000011006 900000000000451002 +1956393028 20030131 1 900000000000207008 258446004 87200008 0 370133003 900000000000011006 900000000000451002 +1956393028 20080731 0 900000000000207008 258446004 87200008 0 370133003 900000000000011006 900000000000451002 +1956393028 20090131 1 900000000000207008 258446004 87200008 1 370133003 900000000000011006 900000000000451002 +1956393028 20170731 0 900000000000207008 258446004 87200008 1 370133003 900000000000011006 900000000000451002 +1956394023 20030131 1 900000000000207008 258448003 13351007 0 118169006 900000000000011006 900000000000451002 +1956394023 20080731 0 900000000000207008 258448003 13351007 0 118169006 900000000000011006 900000000000451002 +1956394023 20090131 1 900000000000207008 258448003 13351007 1 118169006 900000000000011006 900000000000451002 +1956394023 20170731 0 900000000000207008 258448003 13351007 1 118169006 900000000000011006 900000000000451002 +1956395024 20030131 1 900000000000207008 258448003 33463005 0 370133003 900000000000011006 900000000000451002 +1956395024 20080731 0 900000000000207008 258448003 33463005 0 370133003 900000000000011006 900000000000451002 +1956397027 20030131 1 900000000000207008 258450006 65216001 0 370133003 900000000000011006 900000000000451002 +1956397027 20110731 0 900000000000207008 258450006 65216001 0 370133003 900000000000011006 900000000000451002 +1956402028 20030131 1 900000000000207008 258452003 122865005 0 118169006 900000000000011006 900000000000451002 +1956402028 20080731 0 900000000000207008 258452003 122865005 0 118169006 900000000000011006 900000000000451002 +1956403022 20030131 1 900000000000207008 258452003 18368008 0 370133003 900000000000011006 900000000000451002 +1956403022 20080731 0 900000000000207008 258452003 18368008 0 370133003 900000000000011006 900000000000451002 +1956403022 20090131 1 900000000000207008 258452003 18368008 1 370133003 900000000000011006 900000000000451002 +1956403022 20100131 0 900000000000207008 258452003 18368008 1 370133003 900000000000011006 900000000000451002 +1956403022 20100731 1 900000000000207008 258452003 18368008 1 370133003 900000000000011006 900000000000451002 +1956404027 20030131 1 900000000000207008 258453008 367643001 0 118168003 900000000000011006 900000000000451002 +1956404027 20080731 0 900000000000207008 258453008 367643001 0 118168003 900000000000011006 900000000000451002 +1956404027 20090131 1 900000000000207008 258453008 367643001 1 118168003 900000000000011006 900000000000451002 +1956404027 20170731 0 900000000000207008 258453008 367643001 1 118168003 900000000000011006 900000000000451002 +1956405026 20030131 1 900000000000207008 258453008 33463005 0 370133003 900000000000011006 900000000000451002 +1956405026 20080731 0 900000000000207008 258453008 33463005 0 370133003 900000000000011006 900000000000451002 +1956406025 20030131 1 900000000000207008 258454002 33463005 0 370133003 900000000000011006 900000000000451002 +1956406025 20190731 1 900000000000207008 258454002 33463005 1 370133003 900000000000011006 900000000000451002 +1956406025 20220630 0 900000000000207008 258454002 33463005 1 370133003 900000000000011006 900000000000451002 +1956407023 20030131 1 900000000000207008 258455001 75823008 0 118168003 900000000000011006 900000000000451002 +1956407023 20080731 0 900000000000207008 258455001 75823008 0 118168003 900000000000011006 900000000000451002 +1956408029 20030131 1 900000000000207008 258455001 122462000 0 118171006 900000000000011006 900000000000451002 +1956408029 20080731 1 900000000000207008 258455001 122462000 1 118171006 900000000000011006 900000000000451002 +1956409021 20030131 1 900000000000207008 258455001 33463005 0 370133003 900000000000011006 900000000000451002 +1956409021 20080731 1 900000000000207008 258455001 33463005 1 370133003 900000000000011006 900000000000451002 +1956410027 20030131 1 900000000000207008 258456000 66696003 0 118168003 900000000000011006 900000000000451002 +1956410027 20080731 0 900000000000207008 258456000 66696003 0 118168003 900000000000011006 900000000000451002 +1956410027 20090131 1 900000000000207008 258456000 66696003 1 118168003 900000000000011006 900000000000451002 +1956411028 20030131 1 900000000000207008 258456000 33463005 0 370133003 900000000000011006 900000000000451002 +1956411028 20080731 0 900000000000207008 258456000 33463005 0 370133003 900000000000011006 900000000000451002 +1956412024 20030131 1 900000000000207008 258457009 33463005 0 370133003 900000000000011006 900000000000451002 +1956412024 20110731 0 900000000000207008 258457009 33463005 0 370133003 900000000000011006 900000000000451002 +1956413025 20030131 1 900000000000207008 258457009 39477002 0 370133003 900000000000011006 900000000000451002 +1956413025 20190731 1 900000000000207008 258457009 39477002 2 370133003 900000000000011006 900000000000451002 +1956414020 20030131 1 900000000000207008 258458004 118622000 0 118168003 900000000000011006 900000000000451002 +1956414020 20080731 0 900000000000207008 258458004 118622000 0 118168003 900000000000011006 900000000000451002 +1956414020 20090131 1 900000000000207008 258458004 118622000 1 118168003 900000000000011006 900000000000451002 +1956415021 20030131 1 900000000000207008 258458004 33463005 0 370133003 900000000000011006 900000000000451002 +1956415021 20080731 0 900000000000207008 258458004 33463005 0 370133003 900000000000011006 900000000000451002 +1956416022 20030131 1 900000000000207008 258459007 122865005 0 118169006 900000000000011006 900000000000451002 +1956416022 20080731 0 900000000000207008 258459007 122865005 0 118169006 900000000000011006 900000000000451002 +1956417029 20030131 1 900000000000207008 258459007 31773000 0 370133003 900000000000011006 900000000000451002 +1956417029 20080731 0 900000000000207008 258459007 31773000 0 370133003 900000000000011006 900000000000451002 +1956417029 20090131 1 900000000000207008 258459007 31773000 1 370133003 900000000000011006 900000000000451002 +1956426026 20030131 1 900000000000207008 258461003 49755003 0 118168003 900000000000011006 900000000000451002 +1956426026 20080731 0 900000000000207008 258461003 49755003 0 118168003 900000000000011006 900000000000451002 +1956427024 20030131 1 900000000000207008 258461003 12817009 0 118169006 900000000000011006 900000000000451002 +1956427024 20080731 0 900000000000207008 258461003 12817009 0 118169006 900000000000011006 900000000000451002 +1956428025 20030131 1 900000000000207008 258461003 33463005 0 370133003 900000000000011006 900000000000451002 +1956428025 20080731 0 900000000000207008 258461003 33463005 0 370133003 900000000000011006 900000000000451002 +1956428025 20090131 1 900000000000207008 258461003 33463005 1 370133003 900000000000011006 900000000000451002 +1956428025 20110731 0 900000000000207008 258461003 33463005 1 370133003 900000000000011006 900000000000451002 +1956429022 20030131 1 900000000000207008 258462005 34516001 0 118169006 900000000000011006 900000000000451002 +1956429022 20080731 0 900000000000207008 258462005 34516001 0 118169006 900000000000011006 900000000000451002 +1956429022 20090131 1 900000000000207008 258462005 34516001 1 118169006 900000000000011006 900000000000451002 +1956430028 20030131 1 900000000000207008 258462005 33463005 0 370133003 900000000000011006 900000000000451002 +1956430028 20070731 0 900000000000207008 258462005 33463005 0 370133003 900000000000011006 900000000000451002 +1956431029 20030131 1 900000000000207008 258463000 21306003 0 118169006 900000000000011006 900000000000451002 +1956431029 20080731 0 900000000000207008 258463000 21306003 0 118169006 900000000000011006 900000000000451002 +1956431029 20090131 1 900000000000207008 258463000 21306003 1 118169006 900000000000011006 900000000000451002 +1956432020 20030131 1 900000000000207008 258463000 33463005 0 370133003 900000000000011006 900000000000451002 +1956432020 20070731 0 900000000000207008 258463000 33463005 0 370133003 900000000000011006 900000000000451002 +1956433026 20030131 1 900000000000207008 258465007 13561001 0 118169006 900000000000011006 900000000000451002 +1956433026 20080731 0 900000000000207008 258465007 13561001 0 118169006 900000000000011006 900000000000451002 +1956433026 20090131 1 900000000000207008 258465007 13561001 1 118169006 900000000000011006 900000000000451002 +1956434021 20030131 1 900000000000207008 258465007 81745001 0 118169006 900000000000011006 900000000000451002 +1956434021 20080731 0 900000000000207008 258465007 81745001 0 118169006 900000000000011006 900000000000451002 +1956435022 20030131 1 900000000000207008 258465007 33463005 0 370133003 900000000000011006 900000000000451002 +1956435022 20040731 0 900000000000207008 258465007 33463005 0 370133003 900000000000011006 900000000000451002 +1956436023 20030131 1 900000000000207008 258466008 25342003 0 118169006 900000000000011006 900000000000451002 +1956436023 20080731 0 900000000000207008 258466008 25342003 0 118169006 900000000000011006 900000000000451002 +1956436023 20090131 1 900000000000207008 258466008 25342003 1 118169006 900000000000011006 900000000000451002 +1956436023 20170731 0 900000000000207008 258466008 25342003 1 118169006 900000000000011006 900000000000451002 +1956437025 20030131 1 900000000000207008 258466008 32457005 0 370133003 900000000000011006 900000000000451002 +1956437025 20080731 0 900000000000207008 258466008 32457005 0 370133003 900000000000011006 900000000000451002 +1956438024 20030131 1 900000000000207008 258467004 18962004 0 118169006 900000000000011006 900000000000451002 +1956438024 20080731 0 900000000000207008 258467004 18962004 0 118169006 900000000000011006 900000000000451002 +1956438024 20090731 1 900000000000207008 258467004 18962004 1 118169006 900000000000011006 900000000000451002 +1956439027 20030131 1 900000000000207008 258467004 72869002 0 370133003 900000000000011006 900000000000451002 +1956439027 20040731 0 900000000000207008 258467004 72869002 0 370133003 900000000000011006 900000000000451002 +1956440025 20030131 1 900000000000207008 258468009 79654002 0 118168003 900000000000011006 900000000000451002 +1956440025 20080731 0 900000000000207008 258468009 79654002 0 118168003 900000000000011006 900000000000451002 +1956441026 20030131 1 900000000000207008 258468009 33463005 0 370133003 900000000000011006 900000000000451002 +1956441026 20080731 0 900000000000207008 258468009 33463005 0 370133003 900000000000011006 900000000000451002 +1956442022 20030131 1 900000000000207008 258469001 2175005 0 118169006 900000000000011006 900000000000451002 +1956442022 20070731 0 900000000000207008 258469001 2175005 0 118169006 900000000000011006 900000000000451002 +1956443028 20030131 1 900000000000207008 258469001 72869002 0 370133003 900000000000011006 900000000000451002 +1956443028 20040731 0 900000000000207008 258469001 72869002 0 370133003 900000000000011006 900000000000451002 +1956444023 20030131 1 900000000000207008 258470000 41216001 0 118169006 900000000000011006 900000000000451002 +1956444023 20080731 0 900000000000207008 258470000 41216001 0 118169006 900000000000011006 900000000000451002 +1956444023 20090131 1 900000000000207008 258470000 41216001 1 118169006 900000000000011006 900000000000451002 +1956444023 20110131 0 900000000000207008 258470000 41216001 1 118169006 900000000000011006 900000000000451002 +1956444023 20110731 1 900000000000207008 258470000 41216001 1 118169006 900000000000011006 900000000000451002 +1956444023 20170731 0 900000000000207008 258470000 41216001 1 118169006 900000000000011006 900000000000451002 +1956445024 20030131 1 900000000000207008 258470000 32457005 0 370133003 900000000000011006 900000000000451002 +1956445024 20080731 0 900000000000207008 258470000 32457005 0 370133003 900000000000011006 900000000000451002 +1956445024 20110731 1 900000000000207008 258470000 32457005 1 370133003 900000000000011006 900000000000451002 +1956445024 20170731 0 900000000000207008 258470000 32457005 1 370133003 900000000000011006 900000000000451002 +1956446020 20030131 1 900000000000207008 258471001 41216001 0 118169006 900000000000011006 900000000000451002 +1956446020 20080731 0 900000000000207008 258471001 41216001 0 118169006 900000000000011006 900000000000451002 +1956446020 20090131 1 900000000000207008 258471001 41216001 1 118169006 900000000000011006 900000000000451002 +1956446020 20170731 0 900000000000207008 258471001 41216001 1 118169006 900000000000011006 900000000000451002 +1956447027 20030131 1 900000000000207008 258471001 64663002 0 118171006 900000000000011006 900000000000451002 +1956447027 20080731 0 900000000000207008 258471001 64663002 0 118171006 900000000000011006 900000000000451002 +1956447027 20090131 1 900000000000207008 258471001 64663002 1 118171006 900000000000011006 900000000000451002 +1956447027 20170731 0 900000000000207008 258471001 64663002 1 118171006 900000000000011006 900000000000451002 +1956448021 20030131 1 900000000000207008 258471001 32457005 0 370133003 900000000000011006 900000000000451002 +1956448021 20080731 0 900000000000207008 258471001 32457005 0 370133003 900000000000011006 900000000000451002 +1956448021 20090131 1 900000000000207008 258471001 32457005 1 370133003 900000000000011006 900000000000451002 +1956448021 20170731 0 900000000000207008 258471001 32457005 1 370133003 900000000000011006 900000000000451002 +1956449029 20030131 1 900000000000207008 258472008 25990002 0 118169006 900000000000011006 900000000000451002 +1956449029 20080731 0 900000000000207008 258472008 25990002 0 118169006 900000000000011006 900000000000451002 +1956449029 20090131 1 900000000000207008 258472008 25990002 1 118169006 900000000000011006 900000000000451002 +1956450029 20030131 1 900000000000207008 258472008 32457005 0 370133003 900000000000011006 900000000000451002 +1956450029 20080731 0 900000000000207008 258472008 32457005 0 370133003 900000000000011006 900000000000451002 +1956451025 20030131 1 900000000000207008 258474009 2095001 0 118169006 900000000000011006 900000000000451002 +1956451025 20080731 0 900000000000207008 258474009 2095001 0 118169006 900000000000011006 900000000000451002 +1956451025 20090131 1 900000000000207008 258474009 2095001 1 118169006 900000000000011006 900000000000451002 +1956452021 20030131 1 900000000000207008 258474009 72869002 0 370133003 900000000000011006 900000000000451002 +1956452021 20040731 0 900000000000207008 258474009 72869002 0 370133003 900000000000011006 900000000000451002 +1956453027 20030131 1 900000000000207008 258475005 2095001 0 118169006 900000000000011006 900000000000451002 +1956453027 20080731 0 900000000000207008 258475005 2095001 0 118169006 900000000000011006 900000000000451002 +1956453027 20090731 1 900000000000207008 258475005 2095001 1 118169006 900000000000011006 900000000000451002 +1956454022 20030131 1 900000000000207008 258475005 72869002 0 370133003 900000000000011006 900000000000451002 +1956454022 20040731 0 900000000000207008 258475005 72869002 0 370133003 900000000000011006 900000000000451002 +1956455023 20030131 1 900000000000207008 258476006 81745001 0 118169006 900000000000011006 900000000000451002 +1956455023 20080731 0 900000000000207008 258476006 81745001 0 118169006 900000000000011006 900000000000451002 +1956455023 20090131 1 900000000000207008 258476006 81745001 1 118169006 900000000000011006 900000000000451002 +1956456024 20030131 1 900000000000207008 258476006 33463005 0 370133003 900000000000011006 900000000000451002 +1956456024 20070731 0 900000000000207008 258476006 33463005 0 370133003 900000000000011006 900000000000451002 +1956461021 20030131 1 900000000000207008 258479004 85756007 0 118169006 900000000000011006 900000000000451002 +1956461021 20080731 0 900000000000207008 258479004 85756007 0 118169006 900000000000011006 900000000000451002 +1956461021 20090131 1 900000000000207008 258479004 85756007 1 118169006 900000000000011006 900000000000451002 +1956462025 20030131 1 900000000000207008 258479004 33463005 0 370133003 900000000000011006 900000000000451002 +1956462025 20080731 0 900000000000207008 258479004 33463005 0 370133003 900000000000011006 900000000000451002 +1956463024 20030131 1 900000000000207008 258480001 58675001 0 118169006 900000000000011006 900000000000451002 +1956463024 20040731 0 900000000000207008 258480001 58675001 0 118169006 900000000000011006 900000000000451002 +1956464029 20030131 1 900000000000207008 258480001 129112001 0 118171006 900000000000011006 900000000000451002 +1956464029 20190731 1 900000000000207008 258480001 129112001 2 118171006 900000000000011006 900000000000451002 +1956464029 20220630 0 900000000000207008 258480001 129112001 2 118171006 900000000000011006 900000000000451002 +1956465028 20030131 1 900000000000207008 258480001 72869002 0 370133003 900000000000011006 900000000000451002 +1956465028 20040731 0 900000000000207008 258480001 72869002 0 370133003 900000000000011006 900000000000451002 +1956466027 20030131 1 900000000000207008 258481002 76784001 0 118169006 900000000000011006 900000000000451002 +1956466027 20080731 1 900000000000207008 258481002 76784001 1 118169006 900000000000011006 900000000000451002 +1956466027 20090131 0 900000000000207008 258481002 76784001 1 118169006 900000000000011006 900000000000451002 +1956466027 20090731 1 900000000000207008 258481002 76784001 1 118169006 900000000000011006 900000000000451002 +1956467020 20030131 1 900000000000207008 258481002 309942007 0 118170007 900000000000011006 900000000000451002 +1956467020 20030731 0 900000000000207008 258481002 309942007 0 118170007 900000000000011006 900000000000451002 +1956468026 20030131 1 900000000000207008 258481002 50473004 0 370133003 900000000000011006 900000000000451002 +1956468026 20080731 1 900000000000207008 258481002 50473004 1 370133003 900000000000011006 900000000000451002 +1956468026 20090131 0 900000000000207008 258481002 50473004 1 370133003 900000000000011006 900000000000451002 +1956468026 20090731 1 900000000000207008 258481002 50473004 1 370133003 900000000000011006 900000000000451002 +1956469023 20030131 1 900000000000207008 258482009 82515000 0 118168003 900000000000011006 900000000000451002 +1956469023 20080731 0 900000000000207008 258482009 82515000 0 118168003 900000000000011006 900000000000451002 +1956469023 20090131 1 900000000000207008 258482009 82515000 1 118168003 900000000000011006 900000000000451002 +1956469023 20170731 0 900000000000207008 258482009 82515000 1 118168003 900000000000011006 900000000000451002 +1956470024 20030131 1 900000000000207008 258482009 33463005 0 370133003 900000000000011006 900000000000451002 +1956470024 20080731 0 900000000000207008 258482009 33463005 0 370133003 900000000000011006 900000000000451002 +1956471023 20030131 1 900000000000207008 258483004 49909006 0 370133003 900000000000011006 900000000000451002 +1956471023 20190731 1 900000000000207008 258483004 49909006 1 370133003 900000000000011006 900000000000451002 +1956472027 20030131 1 900000000000207008 258484005 168461002 0 118171006 900000000000011006 900000000000451002 +1956472027 20080731 0 900000000000207008 258484005 168461002 0 118171006 900000000000011006 900000000000451002 +1956472027 20090131 1 900000000000207008 258484005 168461002 1 118171006 900000000000011006 900000000000451002 +1956473021 20030131 1 900000000000207008 258485006 28726007 0 118169006 900000000000011006 900000000000451002 +1956473021 20080731 1 900000000000207008 258485006 28726007 1 118169006 900000000000011006 900000000000451002 +1956474026 20030131 1 900000000000207008 258485006 85756007 0 118169006 900000000000011006 900000000000451002 +1956474026 20080731 0 900000000000207008 258485006 85756007 0 118169006 900000000000011006 900000000000451002 +1956475025 20030131 1 900000000000207008 258485006 56757003 0 118171006 900000000000011006 900000000000451002 +1956475025 20080731 1 900000000000207008 258485006 56757003 1 118171006 900000000000011006 900000000000451002 +1956476029 20030131 1 900000000000207008 258487003 39477002 0 370133003 900000000000011006 900000000000451002 +1956476029 20080731 1 900000000000207008 258487003 39477002 1 370133003 900000000000011006 900000000000451002 +1956476029 20110731 0 900000000000207008 258487003 39477002 1 370133003 900000000000011006 900000000000451002 +1956477022 20030131 1 900000000000207008 258488008 59441001 0 118169006 900000000000011006 900000000000451002 +1956477022 20080731 1 900000000000207008 258488008 59441001 1 118169006 900000000000011006 900000000000451002 +1956477022 20110731 0 900000000000207008 258488008 59441001 1 118169006 900000000000011006 900000000000451002 +1956478028 20030131 1 900000000000207008 258488008 165369002 0 118171006 900000000000011006 900000000000451002 +1956478028 20040731 0 900000000000207008 258488008 165369002 0 118171006 900000000000011006 900000000000451002 +1956479020 20030131 1 900000000000207008 258488008 87612001 0 370133003 900000000000011006 900000000000451002 +1956479020 20040731 0 900000000000207008 258488008 87612001 0 370133003 900000000000011006 900000000000451002 +1956480023 20030131 1 900000000000207008 258489000 314818000 0 118169006 900000000000011006 900000000000451002 +1956480023 20080731 0 900000000000207008 258489000 314818000 0 118169006 900000000000011006 900000000000451002 +1956481022 20030131 1 900000000000207008 258489000 39937001 0 118169006 900000000000011006 900000000000451002 +1956481022 20080731 0 900000000000207008 258489000 39937001 0 118169006 900000000000011006 900000000000451002 +1956481022 20090131 1 900000000000207008 258489000 39937001 1 118169006 900000000000011006 900000000000451002 +1956481022 20110731 0 900000000000207008 258489000 39937001 1 118169006 900000000000011006 900000000000451002 +1956482026 20030131 1 900000000000207008 258489000 386148007 0 118171006 900000000000011006 900000000000451002 +1956482026 20040131 0 900000000000207008 258489000 386148007 0 118171006 900000000000011006 900000000000451002 +1956483020 20030131 1 900000000000207008 258490009 56381008 0 118168003 900000000000011006 900000000000451002 +1956483020 20040731 0 900000000000207008 258490009 56381008 0 118168003 900000000000011006 900000000000451002 +1956484025 20030131 1 900000000000207008 258490009 386101005 0 370133003 900000000000011006 900000000000451002 +1956484025 20190731 1 900000000000207008 258490009 386101005 1 370133003 900000000000011006 900000000000451002 +1956484025 20200731 0 900000000000207008 258490009 386101005 1 370133003 900000000000011006 900000000000451002 +1956488027 20030131 1 900000000000207008 258492001 56381008 0 118168003 900000000000011006 900000000000451002 +1956488027 20040731 0 900000000000207008 258492001 56381008 0 118168003 900000000000011006 900000000000451002 +1956489024 20030131 1 900000000000207008 258492001 256896000 0 370133003 900000000000011006 900000000000451002 +1956489024 20190731 1 900000000000207008 258492001 256896000 1 370133003 900000000000011006 900000000000451002 +1956490026 20030131 1 900000000000207008 258492001 386101005 0 370133003 900000000000011006 900000000000451002 +1956490026 20040131 0 900000000000207008 258492001 386101005 0 370133003 900000000000011006 900000000000451002 +1956491027 20030131 1 900000000000207008 258493006 56381008 0 118168003 900000000000011006 900000000000451002 +1956491027 20040731 0 900000000000207008 258493006 56381008 0 118168003 900000000000011006 900000000000451002 +1956492023 20030131 1 900000000000207008 258493006 386102003 0 370133003 900000000000011006 900000000000451002 +1956492023 20190731 1 900000000000207008 258493006 386102003 1 370133003 900000000000011006 900000000000451002 +1956493029 20030131 1 900000000000207008 258494000 56381008 0 118168003 900000000000011006 900000000000451002 +1956493029 20040731 0 900000000000207008 258494000 56381008 0 118168003 900000000000011006 900000000000451002 +1956494024 20030131 1 900000000000207008 258494000 256895001 0 370133003 900000000000011006 900000000000451002 +1956494024 20190731 1 900000000000207008 258494000 256895001 1 370133003 900000000000011006 900000000000451002 +1956495020 20030131 1 900000000000207008 258495004 56381008 0 118168003 900000000000011006 900000000000451002 +1956495020 20040731 0 900000000000207008 258495004 56381008 0 118168003 900000000000011006 900000000000451002 +1956496021 20030131 1 900000000000207008 258495004 386103008 0 370133003 900000000000011006 900000000000451002 +1956496021 20190731 1 900000000000207008 258495004 386103008 1 370133003 900000000000011006 900000000000451002 +1956497028 20030131 1 900000000000207008 258496003 56381008 0 118168003 900000000000011006 900000000000451002 +1956497028 20040731 0 900000000000207008 258496003 56381008 0 118168003 900000000000011006 900000000000451002 +1956498022 20030131 1 900000000000207008 258496003 386104002 0 370133003 900000000000011006 900000000000451002 +1956498022 20190731 1 900000000000207008 258496003 386104002 1 370133003 900000000000011006 900000000000451002 +1956499025 20030131 1 900000000000207008 258497007 44132006 0 118168003 900000000000011006 900000000000451002 +1956499025 20080731 1 900000000000207008 258497007 44132006 1 118168003 900000000000011006 900000000000451002 +1956500023 20030131 1 900000000000207008 258498002 29445007 0 118169006 900000000000011006 900000000000451002 +1956500023 20080731 1 900000000000207008 258498002 29445007 1 118169006 900000000000011006 900000000000451002 +1956500023 20100731 0 900000000000207008 258498002 29445007 1 118169006 900000000000011006 900000000000451002 +1956500023 20110131 1 900000000000207008 258498002 29445007 1 118169006 900000000000011006 900000000000451002 +1956501022 20030131 1 900000000000207008 258499005 58675001 0 118169006 900000000000011006 900000000000451002 +1956501022 20080731 0 900000000000207008 258499005 58675001 0 118169006 900000000000011006 900000000000451002 +1956501022 20090131 1 900000000000207008 258499005 58675001 1 118169006 900000000000011006 900000000000451002 +1956502026 20030131 1 900000000000207008 258499005 285570007 0 118171006 900000000000011006 900000000000451002 +1956502026 20080731 0 900000000000207008 258499005 285570007 0 118171006 900000000000011006 900000000000451002 +1956503020 20030131 1 900000000000207008 258500001 71836000 0 118169006 900000000000011006 900000000000451002 +1956503020 20080731 0 900000000000207008 258500001 71836000 0 118169006 900000000000011006 900000000000451002 +1956503020 20090131 1 900000000000207008 258500001 71836000 1 118169006 900000000000011006 900000000000451002 +1956504025 20030131 1 900000000000207008 258500001 285570007 0 118171006 900000000000011006 900000000000451002 +1956504025 20080731 0 900000000000207008 258500001 285570007 0 118171006 900000000000011006 900000000000451002 +1956504025 20090131 1 900000000000207008 258500001 285570007 1 118171006 900000000000011006 900000000000451002 +1956507021 20030131 1 900000000000207008 258502009 367646009 0 118168003 900000000000011006 900000000000451002 +1956507021 20080731 0 900000000000207008 258502009 367646009 0 118168003 900000000000011006 900000000000451002 +1956508027 20030131 1 900000000000207008 258502009 11311000 0 370133003 900000000000011006 900000000000451002 +1956508027 20080731 1 900000000000207008 258502009 11311000 1 370133003 900000000000011006 900000000000451002 +1956508027 20110731 0 900000000000207008 258502009 11311000 1 370133003 900000000000011006 900000000000451002 +1956509024 20030131 1 900000000000207008 258503004 314818000 0 118169006 900000000000011006 900000000000451002 +1956509024 20080731 0 900000000000207008 258503004 314818000 0 118169006 900000000000011006 900000000000451002 +1956510025 20030131 1 900000000000207008 258503004 39937001 0 118169006 900000000000011006 900000000000451002 +1956510025 20080731 0 900000000000207008 258503004 39937001 0 118169006 900000000000011006 900000000000451002 +1956510025 20090131 1 900000000000207008 258503004 39937001 1 118169006 900000000000011006 900000000000451002 +1956510025 20130131 0 900000000000207008 258503004 39937001 1 118169006 900000000000011006 900000000000451002 +1956511026 20030131 1 900000000000207008 258503004 312881002 0 118171006 900000000000011006 900000000000451002 +1956511026 20080731 0 900000000000207008 258503004 312881002 0 118171006 900000000000011006 900000000000451002 +1956511026 20090131 1 900000000000207008 258503004 312881002 1 118171006 900000000000011006 900000000000451002 +1956511026 20130131 0 900000000000207008 258503004 312881002 1 118171006 900000000000011006 900000000000451002 +1956512022 20030131 1 900000000000207008 258504005 314818000 0 118169006 900000000000011006 900000000000451002 +1956512022 20080731 0 900000000000207008 258504005 314818000 0 118169006 900000000000011006 900000000000451002 +1956513028 20030131 1 900000000000207008 258504005 39937001 0 118169006 900000000000011006 900000000000451002 +1956513028 20080731 0 900000000000207008 258504005 39937001 0 118169006 900000000000011006 900000000000451002 +1956514023 20030131 1 900000000000207008 258504005 312881002 0 118171006 900000000000011006 900000000000451002 +1956514023 20080731 0 900000000000207008 258504005 312881002 0 118171006 900000000000011006 900000000000451002 +1956515024 20030131 1 900000000000207008 258505006 56208002 0 118168003 900000000000011006 900000000000451002 +1956515024 20080731 0 900000000000207008 258505006 56208002 0 118168003 900000000000011006 900000000000451002 +1956515024 20090131 1 900000000000207008 258505006 56208002 1 118168003 900000000000011006 900000000000451002 +1956515024 20130131 0 900000000000207008 258505006 56208002 1 118168003 900000000000011006 900000000000451002 +1956516020 20030131 1 900000000000207008 258505006 314818000 0 118169006 900000000000011006 900000000000451002 +1956516020 20080731 0 900000000000207008 258505006 314818000 0 118169006 900000000000011006 900000000000451002 +1956517027 20030131 1 900000000000207008 258505006 39937001 0 118169006 900000000000011006 900000000000451002 +1956517027 20080731 0 900000000000207008 258505006 39937001 0 118169006 900000000000011006 900000000000451002 +1956517027 20090131 1 900000000000207008 258505006 39937001 1 118169006 900000000000011006 900000000000451002 +1956517027 20130131 0 900000000000207008 258505006 39937001 1 118169006 900000000000011006 900000000000451002 +1956518021 20030131 1 900000000000207008 258505006 225137003 0 118171006 900000000000011006 900000000000451002 +1956518021 20080731 0 900000000000207008 258505006 225137003 0 118171006 900000000000011006 900000000000451002 +1956519029 20030131 1 900000000000207008 258505006 312881002 0 118171006 900000000000011006 900000000000451002 +1956519029 20080731 0 900000000000207008 258505006 312881002 0 118171006 900000000000011006 900000000000451002 +1956519029 20090131 1 900000000000207008 258505006 312881002 1 118171006 900000000000011006 900000000000451002 +1956519029 20130131 0 900000000000207008 258505006 312881002 1 118171006 900000000000011006 900000000000451002 +1956520024 20030131 1 900000000000207008 258506007 386143003 0 118168003 900000000000011006 900000000000451002 +1956520024 20080731 0 900000000000207008 258506007 386143003 0 118168003 900000000000011006 900000000000451002 +1956520024 20090131 1 900000000000207008 258506007 386143003 1 118168003 900000000000011006 900000000000451002 +1956521023 20030131 1 900000000000207008 258506007 314818000 0 118169006 900000000000011006 900000000000451002 +1956521023 20080731 0 900000000000207008 258506007 314818000 0 118169006 900000000000011006 900000000000451002 +1956522027 20030131 1 900000000000207008 258506007 39937001 0 118169006 900000000000011006 900000000000451002 +1956522027 20080731 0 900000000000207008 258506007 39937001 0 118169006 900000000000011006 900000000000451002 +1956523021 20030131 1 900000000000207008 258506007 312881002 0 118171006 900000000000011006 900000000000451002 +1956523021 20080731 0 900000000000207008 258506007 312881002 0 118171006 900000000000011006 900000000000451002 +1956524026 20030131 1 900000000000207008 258507003 386144009 0 118168003 900000000000011006 900000000000451002 +1956524026 20080731 0 900000000000207008 258507003 386144009 0 118168003 900000000000011006 900000000000451002 +1956524026 20090131 1 900000000000207008 258507003 386144009 1 118168003 900000000000011006 900000000000451002 +1956525025 20030131 1 900000000000207008 258507003 314818000 0 118169006 900000000000011006 900000000000451002 +1956525025 20080731 0 900000000000207008 258507003 314818000 0 118169006 900000000000011006 900000000000451002 +1956526029 20030131 1 900000000000207008 258507003 39937001 0 118169006 900000000000011006 900000000000451002 +1956526029 20080731 0 900000000000207008 258507003 39937001 0 118169006 900000000000011006 900000000000451002 +1956527022 20030131 1 900000000000207008 258507003 312881002 0 118171006 900000000000011006 900000000000451002 +1956527022 20080731 0 900000000000207008 258507003 312881002 0 118171006 900000000000011006 900000000000451002 +1956528028 20030131 1 900000000000207008 258508008 71934003 0 118169006 900000000000011006 900000000000451002 +1956528028 20080731 1 900000000000207008 258508008 71934003 1 118169006 900000000000011006 900000000000451002 +1956529020 20030131 1 900000000000207008 258509000 90264002 0 118169006 900000000000011006 900000000000451002 +1956529020 20080731 1 900000000000207008 258509000 90264002 1 118169006 900000000000011006 900000000000451002 +1956530026 20030131 1 900000000000207008 258510005 18911002 0 118169006 900000000000011006 900000000000451002 +1956530026 20080731 0 900000000000207008 258510005 18911002 0 118169006 900000000000011006 900000000000451002 +1956530026 20090131 1 900000000000207008 258510005 18911002 1 118169006 900000000000011006 900000000000451002 +1956531027 20030131 1 900000000000207008 258511009 6375001 0 118169006 900000000000011006 900000000000451002 +1956531027 20080731 1 900000000000207008 258511009 6375001 1 118169006 900000000000011006 900000000000451002 +1956531027 20110731 0 900000000000207008 258511009 6375001 1 118169006 900000000000011006 900000000000451002 +1956532023 20030131 1 900000000000207008 258512002 60319009 0 118169006 900000000000011006 900000000000451002 +1956532023 20080731 1 900000000000207008 258512002 60319009 1 118169006 900000000000011006 900000000000451002 +1956533029 20030131 1 900000000000207008 258513007 17880006 0 118169006 900000000000011006 900000000000451002 +1956533029 20080731 1 900000000000207008 258513007 17880006 1 118169006 900000000000011006 900000000000451002 +1956533029 20110731 0 900000000000207008 258513007 17880006 1 118169006 900000000000011006 900000000000451002 +1956534024 20030131 1 900000000000207008 258514001 17880006 0 118169006 900000000000011006 900000000000451002 +1956534024 20080731 0 900000000000207008 258514001 17880006 0 118169006 900000000000011006 900000000000451002 +1956535020 20030131 1 900000000000207008 258515000 44981009 0 118169006 900000000000011006 900000000000451002 +1956535020 20080731 0 900000000000207008 258515000 44981009 0 118169006 900000000000011006 900000000000451002 +1956535020 20090131 1 900000000000207008 258515000 44981009 1 118169006 900000000000011006 900000000000451002 +1956536021 20030131 1 900000000000207008 258516004 46636005 0 118169006 900000000000011006 900000000000451002 +1956536021 20080731 0 900000000000207008 258516004 46636005 0 118169006 900000000000011006 900000000000451002 +1956536021 20090131 1 900000000000207008 258516004 46636005 1 118169006 900000000000011006 900000000000451002 +1956536021 20110731 0 900000000000207008 258516004 46636005 1 118169006 900000000000011006 900000000000451002 +1956537028 20030131 1 900000000000207008 258517008 119230000 0 118169006 900000000000011006 900000000000451002 +1956537028 20080731 0 900000000000207008 258517008 119230000 0 118169006 900000000000011006 900000000000451002 +1956538022 20030131 1 900000000000207008 258518003 20233005 0 118169006 900000000000011006 900000000000451002 +1956538022 20080731 0 900000000000207008 258518003 20233005 0 118169006 900000000000011006 900000000000451002 +1956538022 20090131 1 900000000000207008 258518003 20233005 1 118169006 900000000000011006 900000000000451002 +1956539025 20030131 1 900000000000207008 258519006 53065001 0 118169006 900000000000011006 900000000000451002 +1956539025 20080731 1 900000000000207008 258519006 53065001 1 118169006 900000000000011006 900000000000451002 +1956540028 20030131 1 900000000000207008 258520000 76784001 0 118169006 900000000000011006 900000000000451002 +1956540028 20080731 1 900000000000207008 258520000 76784001 1 118169006 900000000000011006 900000000000451002 +1956541029 20030131 1 900000000000207008 258520000 309942007 0 118170007 900000000000011006 900000000000451002 +1956541029 20030731 0 900000000000207008 258520000 309942007 0 118170007 900000000000011006 900000000000451002 +1956542020 20030131 1 900000000000207008 258521001 76784001 0 118169006 900000000000011006 900000000000451002 +1956542020 20080731 1 900000000000207008 258521001 76784001 1 118169006 900000000000011006 900000000000451002 +1956542020 20150731 0 900000000000207008 258521001 76784001 1 118169006 900000000000011006 900000000000451002 +1956543026 20030131 1 900000000000207008 258521001 309942007 0 118170007 900000000000011006 900000000000451002 +1956543026 20030731 0 900000000000207008 258521001 309942007 0 118170007 900000000000011006 900000000000451002 +1956544021 20030131 1 900000000000207008 258521001 301805004 0 118171006 900000000000011006 900000000000451002 +1956544021 20080731 1 900000000000207008 258521001 301805004 1 118171006 900000000000011006 900000000000451002 +1956544021 20150731 0 900000000000207008 258521001 301805004 1 118171006 900000000000011006 900000000000451002 +1956545022 20030131 1 900000000000207008 258522008 76784001 0 118169006 900000000000011006 900000000000451002 +1956545022 20080731 1 900000000000207008 258522008 76784001 1 118169006 900000000000011006 900000000000451002 +1956545022 20150731 0 900000000000207008 258522008 76784001 1 118169006 900000000000011006 900000000000451002 +1956546023 20030131 1 900000000000207008 258522008 309942007 0 118170007 900000000000011006 900000000000451002 +1956546023 20030731 0 900000000000207008 258522008 309942007 0 118170007 900000000000011006 900000000000451002 +1956547025 20030131 1 900000000000207008 258522008 312877002 0 118171006 900000000000011006 900000000000451002 +1956547025 20080731 1 900000000000207008 258522008 312877002 1 118171006 900000000000011006 900000000000451002 +1956547025 20150731 0 900000000000207008 258522008 312877002 1 118171006 900000000000011006 900000000000451002 +1956548024 20030131 1 900000000000207008 258523003 45292006 0 118169006 900000000000011006 900000000000451002 +1956548024 20080731 0 900000000000207008 258523003 45292006 0 118169006 900000000000011006 900000000000451002 +1956548024 20090131 1 900000000000207008 258523003 45292006 1 118169006 900000000000011006 900000000000451002 +1956549027 20030131 1 900000000000207008 258523003 309942007 0 118170007 900000000000011006 900000000000451002 +1956549027 20030731 0 900000000000207008 258523003 309942007 0 118170007 900000000000011006 900000000000451002 +1956550027 20030131 1 900000000000207008 258524009 71252005 0 118169006 900000000000011006 900000000000451002 +1956550027 20080731 1 900000000000207008 258524009 71252005 1 118169006 900000000000011006 900000000000451002 +1956551028 20030131 1 900000000000207008 258525005 38864007 0 118169006 900000000000011006 900000000000451002 +1956551028 20080731 0 900000000000207008 258525005 38864007 0 118169006 900000000000011006 900000000000451002 +1956551028 20090131 1 900000000000207008 258525005 38864007 1 118169006 900000000000011006 900000000000451002 +1956552024 20030131 1 900000000000207008 258526006 90566001 0 118169006 900000000000011006 900000000000451002 +1956552024 20030731 0 900000000000207008 258526006 90566001 0 118169006 900000000000011006 900000000000451002 +1956553025 20030131 1 900000000000207008 258527002 53505006 0 118169006 900000000000011006 900000000000451002 +1956553025 20080731 0 900000000000207008 258527002 53505006 0 118169006 900000000000011006 900000000000451002 +1956553025 20090131 1 900000000000207008 258527002 53505006 1 118169006 900000000000011006 900000000000451002 +1956554020 20030131 1 900000000000207008 258528007 34402009 0 118169006 900000000000011006 900000000000451002 +1956554020 20080731 0 900000000000207008 258528007 34402009 0 118169006 900000000000011006 900000000000451002 +1956554020 20090131 1 900000000000207008 258528007 34402009 1 118169006 900000000000011006 900000000000451002 +1956554020 20110731 0 900000000000207008 258528007 34402009 1 118169006 900000000000011006 900000000000451002 +1956555021 20030131 1 900000000000207008 258529004 54066008 0 118169006 900000000000011006 900000000000451002 +1956555021 20080731 0 900000000000207008 258529004 54066008 0 118169006 900000000000011006 900000000000451002 +1956555021 20090131 1 900000000000207008 258529004 54066008 1 118169006 900000000000011006 900000000000451002 +1956556022 20030131 1 900000000000207008 258529004 285570007 0 118171006 900000000000011006 900000000000451002 +1956556022 20080731 0 900000000000207008 258529004 285570007 0 118171006 900000000000011006 900000000000451002 +1956557029 20030131 1 900000000000207008 258530009 13648007 0 118169006 900000000000011006 900000000000451002 +1956557029 20080731 1 900000000000207008 258530009 13648007 1 118169006 900000000000011006 900000000000451002 +1956558023 20030131 1 900000000000207008 258530009 312876006 0 118171006 900000000000011006 900000000000451002 +1956558023 20080731 1 900000000000207008 258530009 312876006 1 118171006 900000000000011006 900000000000451002 +1956560020 20030131 1 900000000000207008 258531008 13924000 0 118168003 900000000000011006 900000000000451002 +1956560020 20080731 1 900000000000207008 258531008 13924000 1 118168003 900000000000011006 900000000000451002 +1956562028 20030131 1 900000000000207008 258535004 224901002 0 118170007 900000000000011006 900000000000451002 +1956562028 20080731 0 900000000000207008 258535004 224901002 0 118170007 900000000000011006 900000000000451002 +1956563022 20030131 1 900000000000207008 258536003 49062001 0 118170007 900000000000011006 900000000000451002 +1956563022 20080731 1 900000000000207008 258536003 49062001 1 118170007 900000000000011006 900000000000451002 +1956564027 20030131 1 900000000000207008 258538002 17307002 0 118168003 900000000000011006 900000000000451002 +1956564027 20080731 0 900000000000207008 258538002 17307002 0 118168003 900000000000011006 900000000000451002 +1956565026 20030131 1 900000000000207008 258538002 91720002 0 370133003 900000000000011006 900000000000451002 +1956565026 20080731 0 900000000000207008 258538002 91720002 0 370133003 900000000000011006 900000000000451002 +1956566025 20030131 1 900000000000207008 258539005 272673000 0 118169006 900000000000011006 900000000000451002 +1956566025 20190731 1 900000000000207008 258539005 272673000 1 118169006 900000000000011006 900000000000451002 +1956567023 20030131 1 900000000000207008 258539005 39352004 0 118169006 900000000000011006 900000000000451002 +1956567023 20190731 1 900000000000207008 258539005 39352004 2 118169006 900000000000011006 900000000000451002 +1956570022 20030131 1 900000000000207008 258541006 113257007 0 118169006 900000000000011006 900000000000451002 +1956570022 20190731 1 900000000000207008 258541006 113257007 1 118169006 900000000000011006 900000000000451002 +1956571021 20030131 1 900000000000207008 258542004 17401000 0 118169006 900000000000011006 900000000000451002 +1956571021 20190731 1 900000000000207008 258542004 17401000 1 118169006 900000000000011006 900000000000451002 +1956574029 20030131 1 900000000000207008 258544003 17401000 0 118169006 900000000000011006 900000000000451002 +1956574029 20190731 1 900000000000207008 258544003 17401000 2 118169006 900000000000011006 900000000000451002 +1956574029 20220630 0 900000000000207008 258544003 17401000 2 118169006 900000000000011006 900000000000451002 +1956575028 20030131 1 900000000000207008 258544003 386109007 0 118169006 900000000000011006 900000000000451002 +1956575028 20190731 1 900000000000207008 258544003 386109007 1 118169006 900000000000011006 900000000000451002 +1956575028 20220630 0 900000000000207008 258544003 386109007 1 118169006 900000000000011006 900000000000451002 +1956576027 20030131 1 900000000000207008 258545002 363564008 0 118168003 900000000000011006 900000000000451002 +1956576027 20080731 1 900000000000207008 258545002 363564008 1 118168003 900000000000011006 900000000000451002 +1956576027 20090131 0 900000000000207008 258545002 363564008 1 118168003 900000000000011006 900000000000451002 +1956576027 20090731 1 900000000000207008 258545002 363564008 1 118168003 900000000000011006 900000000000451002 +1956577020 20030131 1 900000000000207008 258545002 17401000 0 118169006 900000000000011006 900000000000451002 +1956577020 20080731 1 900000000000207008 258545002 17401000 1 118169006 900000000000011006 900000000000451002 +1956577020 20090131 0 900000000000207008 258545002 17401000 1 118169006 900000000000011006 900000000000451002 +1956577020 20090731 1 900000000000207008 258545002 17401000 1 118169006 900000000000011006 900000000000451002 +1956578026 20030131 1 900000000000207008 258545002 25510005 0 118170007 900000000000011006 900000000000451002 +1956578026 20080731 1 900000000000207008 258545002 25510005 1 118170007 900000000000011006 900000000000451002 +1956578026 20090131 0 900000000000207008 258545002 25510005 1 118170007 900000000000011006 900000000000451002 +1956578026 20090731 1 900000000000207008 258545002 25510005 1 118170007 900000000000011006 900000000000451002 +1956579023 20030131 1 900000000000207008 258546001 363564008 0 118168003 900000000000011006 900000000000451002 +1956579023 20080731 1 900000000000207008 258546001 363564008 1 118168003 900000000000011006 900000000000451002 +1956580021 20030131 1 900000000000207008 258546001 17401000 0 118169006 900000000000011006 900000000000451002 +1956580021 20080731 1 900000000000207008 258546001 17401000 1 118169006 900000000000011006 900000000000451002 +1956581020 20030131 1 900000000000207008 258546001 386109007 0 118169006 900000000000011006 900000000000451002 +1956581020 20030731 0 900000000000207008 258546001 386109007 0 118169006 900000000000011006 900000000000451002 +1956582029 20030131 1 900000000000207008 258548000 39937001 0 118169006 900000000000011006 900000000000451002 +1956582029 20040731 0 900000000000207008 258548000 39937001 0 118169006 900000000000011006 900000000000451002 +1956583023 20030131 1 900000000000207008 258549008 13389002 0 118169006 900000000000011006 900000000000451002 +1956583023 20080731 0 900000000000207008 258549008 13389002 0 118169006 900000000000011006 900000000000451002 +1956584028 20030131 1 900000000000207008 258549008 314818000 0 118169006 900000000000011006 900000000000451002 +1956584028 20080731 0 900000000000207008 258549008 314818000 0 118169006 900000000000011006 900000000000451002 +1956586026 20030131 1 900000000000207008 258553005 38848004 0 118169006 900000000000011006 900000000000451002 +1956586026 20080731 0 900000000000207008 258553005 38848004 0 118169006 900000000000011006 900000000000451002 +1956586026 20090131 1 900000000000207008 258553005 38848004 1 118169006 900000000000011006 900000000000451002 +1956587024 20030131 1 900000000000207008 258554004 39477002 0 370133003 900000000000011006 900000000000451002 +1956587024 20190731 1 900000000000207008 258554004 39477002 1 370133003 900000000000011006 900000000000451002 +1956588025 20030131 1 900000000000207008 258555003 39477002 0 370133003 900000000000011006 900000000000451002 +1956588025 20190731 1 900000000000207008 258555003 39477002 1 370133003 900000000000011006 900000000000451002 +1956594022 20030131 1 900000000000207008 258558001 74262004 0 118169006 900000000000011006 900000000000451002 +1956594022 20040731 0 900000000000207008 258558001 74262004 0 118169006 900000000000011006 900000000000451002 +1956595023 20030131 1 900000000000207008 258558001 75535001 0 118169006 900000000000011006 900000000000451002 +1956595023 20080731 0 900000000000207008 258558001 75535001 0 118169006 900000000000011006 900000000000451002 +1956596024 20030131 1 900000000000207008 258558001 256897009 0 370133003 900000000000011006 900000000000451002 +1956596024 20080731 0 900000000000207008 258558001 256897009 0 370133003 900000000000011006 900000000000451002 +1956597026 20030131 1 900000000000207008 258558001 386093002 0 370133003 900000000000011006 900000000000451002 +1956597026 20110731 0 900000000000207008 258558001 386093002 0 370133003 900000000000011006 900000000000451002 +1956598020 20030131 1 900000000000207008 258559009 386153002 0 118169006 900000000000011006 900000000000451002 +1956598020 20070731 0 900000000000207008 258559009 386153002 0 118169006 900000000000011006 900000000000451002 +1956599028 20030131 1 900000000000207008 258559009 75535001 0 118169006 900000000000011006 900000000000451002 +1956599028 20080731 0 900000000000207008 258559009 75535001 0 118169006 900000000000011006 900000000000451002 +1956600025 20030131 1 900000000000207008 258559009 256897009 0 370133003 900000000000011006 900000000000451002 +1956600025 20080731 0 900000000000207008 258559009 256897009 0 370133003 900000000000011006 900000000000451002 +1956601026 20030131 1 900000000000207008 258560004 74262004 0 118169006 900000000000011006 900000000000451002 +1956601026 20040731 0 900000000000207008 258560004 74262004 0 118169006 900000000000011006 900000000000451002 +1956601026 20150131 1 900000000000207008 258560004 74262004 2 118169006 900000000000011006 900000000000451002 +1956601026 20220630 0 900000000000207008 258560004 74262004 2 118169006 900000000000011006 900000000000451002 +1956602022 20030131 1 900000000000207008 258560004 75535001 0 118169006 900000000000011006 900000000000451002 +1956602022 20080731 1 900000000000207008 258560004 75535001 1 118169006 900000000000011006 900000000000451002 +1956603028 20030131 1 900000000000207008 258560004 256897009 0 370133003 900000000000011006 900000000000451002 +1956603028 20080731 1 900000000000207008 258560004 256897009 1 370133003 900000000000011006 900000000000451002 +1956604023 20030131 1 900000000000207008 258561000 45289007 0 118169006 900000000000011006 900000000000451002 +1956604023 20080731 0 900000000000207008 258561000 45289007 0 118169006 900000000000011006 900000000000451002 +1956604023 20090131 1 900000000000207008 258561000 45289007 1 118169006 900000000000011006 900000000000451002 +1956605024 20030131 1 900000000000207008 258561000 74262004 0 118169006 900000000000011006 900000000000451002 +1956605024 20040731 0 900000000000207008 258561000 74262004 0 118169006 900000000000011006 900000000000451002 +1956606020 20030131 1 900000000000207008 258561000 386094008 0 370133003 900000000000011006 900000000000451002 +1956606020 20080731 0 900000000000207008 258561000 386094008 0 370133003 900000000000011006 900000000000451002 +1956606020 20090131 1 900000000000207008 258561000 386094008 1 370133003 900000000000011006 900000000000451002 +1956607027 20030131 1 900000000000207008 258562007 67271001 0 370133003 900000000000011006 900000000000451002 +1956607027 20040731 0 900000000000207008 258562007 67271001 0 370133003 900000000000011006 900000000000451002 +1956608021 20030131 1 900000000000207008 258563002 70847004 0 118169006 900000000000011006 900000000000451002 +1956608021 20190731 1 900000000000207008 258563002 70847004 1 118169006 900000000000011006 900000000000451002 +1956609029 20030131 1 900000000000207008 258563002 85756007 0 118169006 900000000000011006 900000000000451002 +1956609029 20080731 0 900000000000207008 258563002 85756007 0 118169006 900000000000011006 900000000000451002 +1956610023 20030131 1 900000000000207008 258564008 74262004 0 118169006 900000000000011006 900000000000451002 +1956610023 20080731 0 900000000000207008 258564008 74262004 0 118169006 900000000000011006 900000000000451002 +1956611022 20030131 1 900000000000207008 258564008 303995001 0 118171006 900000000000011006 900000000000451002 +1956611022 20080731 0 900000000000207008 258564008 303995001 0 118171006 900000000000011006 900000000000451002 +1956611022 20090731 1 900000000000207008 258564008 303995001 1 118171006 900000000000011006 900000000000451002 +1956611022 20110731 0 900000000000207008 258564008 303995001 1 118171006 900000000000011006 900000000000451002 +1956612026 20030131 1 900000000000207008 258565009 2049008 0 118169006 900000000000011006 900000000000451002 +1956612026 20190731 1 900000000000207008 258565009 2049008 1 118169006 900000000000011006 900000000000451002 +1956613020 20030131 1 900000000000207008 258565009 309942007 0 118170007 900000000000011006 900000000000451002 +1956613020 20030731 0 900000000000207008 258565009 309942007 0 118170007 900000000000011006 900000000000451002 +1956614025 20030131 1 900000000000207008 258566005 24851008 0 370133003 900000000000011006 900000000000451002 +1956614025 20190731 1 900000000000207008 258566005 24851008 1 370133003 900000000000011006 900000000000451002 +1956615029 20030131 1 900000000000207008 258566005 67271001 0 370133003 900000000000011006 900000000000451002 +1956615029 20040731 0 900000000000207008 258566005 67271001 0 370133003 900000000000011006 900000000000451002 +1956616028 20030131 1 900000000000207008 258567001 43174007 0 118169006 900000000000011006 900000000000451002 +1956616028 20190731 1 900000000000207008 258567001 43174007 1 118169006 900000000000011006 900000000000451002 +1956617021 20030131 1 900000000000207008 258568006 67271001 0 370133003 900000000000011006 900000000000451002 +1956617021 20040731 0 900000000000207008 258568006 67271001 0 370133003 900000000000011006 900000000000451002 +1956618027 20030131 1 900000000000207008 258569003 386121006 0 118169006 900000000000011006 900000000000451002 +1956618027 20080731 0 900000000000207008 258569003 386121006 0 118169006 900000000000011006 900000000000451002 +1956619024 20030131 1 900000000000207008 258570002 21514008 0 118169006 900000000000011006 900000000000451002 +1956619024 20190731 1 900000000000207008 258570002 21514008 1 118169006 900000000000011006 900000000000451002 +1956620029 20030131 1 900000000000207008 258571003 302497006 0 118171006 900000000000011006 900000000000451002 +1956620029 20080731 0 900000000000207008 258571003 302497006 0 118171006 900000000000011006 900000000000451002 +1956620029 20090131 1 900000000000207008 258571003 302497006 1 118171006 900000000000011006 900000000000451002 +1956620029 20100731 0 900000000000207008 258571003 302497006 1 118171006 900000000000011006 900000000000451002 +1956621025 20030131 1 900000000000207008 258571003 256906008 0 370133003 900000000000011006 900000000000451002 +1956621025 20080731 0 900000000000207008 258571003 256906008 0 370133003 900000000000011006 900000000000451002 +1956622021 20030131 1 900000000000207008 258572005 33463005 0 370133003 900000000000011006 900000000000451002 +1956622021 20080731 0 900000000000207008 258572005 33463005 0 370133003 900000000000011006 900000000000451002 +1956622021 20090131 1 900000000000207008 258572005 33463005 1 370133003 900000000000011006 900000000000451002 +1956623027 20030131 1 900000000000207008 258574006 35461009 0 118169006 900000000000011006 900000000000451002 +1956623027 20080731 0 900000000000207008 258574006 35461009 0 118169006 900000000000011006 900000000000451002 +1956624022 20030131 1 900000000000207008 258574006 225271002 0 118171006 900000000000011006 900000000000451002 +1956624022 20080731 0 900000000000207008 258574006 225271002 0 118171006 900000000000011006 900000000000451002 +1956624022 20090131 1 900000000000207008 258574006 225271002 1 118171006 900000000000011006 900000000000451002 +1956625023 20030131 1 900000000000207008 258574006 78014005 0 370133003 900000000000011006 900000000000451002 +1956625023 20080731 0 900000000000207008 258574006 78014005 0 370133003 900000000000011006 900000000000451002 +1956625023 20090131 1 900000000000207008 258574006 78014005 1 370133003 900000000000011006 900000000000451002 +1956626024 20030131 1 900000000000207008 258575007 35461009 0 118169006 900000000000011006 900000000000451002 +1956626024 20080731 0 900000000000207008 258575007 35461009 0 118169006 900000000000011006 900000000000451002 +1956627026 20030131 1 900000000000207008 258575007 225111001 0 118171006 900000000000011006 900000000000451002 +1956627026 20080731 0 900000000000207008 258575007 225111001 0 118171006 900000000000011006 900000000000451002 +1956627026 20090131 1 900000000000207008 258575007 225111001 1 118171006 900000000000011006 900000000000451002 +1956628020 20030131 1 900000000000207008 258575007 78014005 0 370133003 900000000000011006 900000000000451002 +1956628020 20080731 0 900000000000207008 258575007 78014005 0 370133003 900000000000011006 900000000000451002 +1956628020 20090131 1 900000000000207008 258575007 78014005 1 370133003 900000000000011006 900000000000451002 +1956629028 20030131 1 900000000000207008 258576008 35461009 0 118169006 900000000000011006 900000000000451002 +1956629028 20080731 0 900000000000207008 258576008 35461009 0 118169006 900000000000011006 900000000000451002 +1956630022 20030131 1 900000000000207008 258576008 58088002 0 118171006 900000000000011006 900000000000451002 +1956630022 20080731 0 900000000000207008 258576008 58088002 0 118171006 900000000000011006 900000000000451002 +1956630022 20090131 1 900000000000207008 258576008 58088002 1 118171006 900000000000011006 900000000000451002 +1956630022 20100131 0 900000000000207008 258576008 58088002 1 118171006 900000000000011006 900000000000451002 +1956630022 20100731 1 900000000000207008 258576008 58088002 1 118171006 900000000000011006 900000000000451002 +1956630022 20110131 0 900000000000207008 258576008 58088002 1 118171006 900000000000011006 900000000000451002 +1956630022 20110731 1 900000000000207008 258576008 58088002 1 118171006 900000000000011006 900000000000451002 +1956631021 20030131 1 900000000000207008 258576008 78014005 0 370133003 900000000000011006 900000000000451002 +1956631021 20080731 0 900000000000207008 258576008 78014005 0 370133003 900000000000011006 900000000000451002 +1956631021 20090131 1 900000000000207008 258576008 78014005 1 370133003 900000000000011006 900000000000451002 +1956631021 20100131 0 900000000000207008 258576008 78014005 1 370133003 900000000000011006 900000000000451002 +1956631021 20100731 1 900000000000207008 258576008 78014005 1 370133003 900000000000011006 900000000000451002 +1956631021 20110131 0 900000000000207008 258576008 78014005 1 370133003 900000000000011006 900000000000451002 +1956631021 20110731 1 900000000000207008 258576008 78014005 1 370133003 900000000000011006 900000000000451002 +1956632025 20030131 1 900000000000207008 258577004 53065001 0 118169006 900000000000011006 900000000000451002 +1956632025 20080731 0 900000000000207008 258577004 53065001 0 118169006 900000000000011006 900000000000451002 +1956633024 20030131 1 900000000000207008 258577004 309942007 0 118170007 900000000000011006 900000000000451002 +1956633024 20030731 0 900000000000207008 258577004 309942007 0 118170007 900000000000011006 900000000000451002 +1956634029 20030131 1 900000000000207008 258577004 3318003 0 370133003 900000000000011006 900000000000451002 +1956634029 20080731 0 900000000000207008 258577004 3318003 0 370133003 900000000000011006 900000000000451002 +1956634029 20090131 1 900000000000207008 258577004 3318003 1 370133003 900000000000011006 900000000000451002 +1956638026 20030131 1 900000000000207008 258580003 165369002 0 118171006 900000000000011006 900000000000451002 +1956638026 20040731 0 900000000000207008 258580003 165369002 0 118171006 900000000000011006 900000000000451002 +1956639023 20030131 1 900000000000207008 258580003 87612001 0 370133003 900000000000011006 900000000000451002 +1956639023 20090731 0 900000000000207008 258580003 87612001 0 370133003 900000000000011006 900000000000451002 +1956640020 20030131 1 900000000000207008 258581004 75753009 0 118168003 900000000000011006 900000000000451002 +1956640020 20090131 0 900000000000207008 258581004 75753009 0 118168003 900000000000011006 900000000000451002 +1956641024 20030131 1 900000000000207008 258581004 165369002 0 118171006 900000000000011006 900000000000451002 +1956641024 20040731 0 900000000000207008 258581004 165369002 0 118171006 900000000000011006 900000000000451002 +1956642028 20030131 1 900000000000207008 258581004 87612001 0 370133003 900000000000011006 900000000000451002 +1956642028 20090731 0 900000000000207008 258581004 87612001 0 370133003 900000000000011006 900000000000451002 +1956643022 20030131 1 900000000000207008 258582006 75753009 0 118168003 900000000000011006 900000000000451002 +1956643022 20190731 1 900000000000207008 258582006 75753009 1 118168003 900000000000011006 900000000000451002 +1956644027 20030131 1 900000000000207008 258582006 165369002 0 118171006 900000000000011006 900000000000451002 +1956644027 20040731 0 900000000000207008 258582006 165369002 0 118171006 900000000000011006 900000000000451002 +1956645026 20030131 1 900000000000207008 258582006 87612001 0 370133003 900000000000011006 900000000000451002 +1956645026 20080731 0 900000000000207008 258582006 87612001 0 370133003 900000000000011006 900000000000451002 +1956646025 20030131 1 900000000000207008 258583001 75753009 0 118168003 900000000000011006 900000000000451002 +1956646025 20030731 0 900000000000207008 258583001 75753009 0 118168003 900000000000011006 900000000000451002 +1956647023 20030131 1 900000000000207008 258583001 279729006 0 118169006 900000000000011006 900000000000451002 +1956647023 20060731 0 900000000000207008 258583001 279729006 0 118169006 900000000000011006 900000000000451002 +1956648029 20030131 1 900000000000207008 258583001 85756007 0 118169006 900000000000011006 900000000000451002 +1956648029 20040731 0 900000000000207008 258583001 85756007 0 118169006 900000000000011006 900000000000451002 +1956649021 20030131 1 900000000000207008 258583001 165369002 0 118171006 900000000000011006 900000000000451002 +1956649021 20040731 0 900000000000207008 258583001 165369002 0 118171006 900000000000011006 900000000000451002 +1956650021 20030131 1 900000000000207008 258583001 87612001 0 370133003 900000000000011006 900000000000451002 +1956650021 20040731 0 900000000000207008 258583001 87612001 0 370133003 900000000000011006 900000000000451002 +1956651020 20030131 1 900000000000207008 258584007 279729006 0 118169006 900000000000011006 900000000000451002 +1956651020 20060731 0 900000000000207008 258584007 279729006 0 118169006 900000000000011006 900000000000451002 +1956652029 20030131 1 900000000000207008 258584007 85756007 0 118169006 900000000000011006 900000000000451002 +1956652029 20040731 0 900000000000207008 258584007 85756007 0 118169006 900000000000011006 900000000000451002 +1956653023 20030131 1 900000000000207008 258584007 165369002 0 118171006 900000000000011006 900000000000451002 +1956653023 20040731 0 900000000000207008 258584007 165369002 0 118171006 900000000000011006 900000000000451002 +1956654028 20030131 1 900000000000207008 258584007 87612001 0 370133003 900000000000011006 900000000000451002 +1956654028 20040731 0 900000000000207008 258584007 87612001 0 370133003 900000000000011006 900000000000451002 +1956655027 20030131 1 900000000000207008 258585008 279729006 0 118169006 900000000000011006 900000000000451002 +1956655027 20060731 0 900000000000207008 258585008 279729006 0 118169006 900000000000011006 900000000000451002 +1956656026 20030131 1 900000000000207008 258585008 85756007 0 118169006 900000000000011006 900000000000451002 +1956656026 20040731 0 900000000000207008 258585008 85756007 0 118169006 900000000000011006 900000000000451002 +1956657024 20030131 1 900000000000207008 258585008 165369002 0 118171006 900000000000011006 900000000000451002 +1956657024 20040731 0 900000000000207008 258585008 165369002 0 118171006 900000000000011006 900000000000451002 +1956658025 20030131 1 900000000000207008 258585008 234328006 0 118171006 900000000000011006 900000000000451002 +1956658025 20080731 0 900000000000207008 258585008 234328006 0 118171006 900000000000011006 900000000000451002 +1956658025 20090731 1 900000000000207008 258585008 234328006 1 118171006 900000000000011006 900000000000451002 +1956659022 20030131 1 900000000000207008 258585008 87612001 0 370133003 900000000000011006 900000000000451002 +1956659022 20040731 0 900000000000207008 258585008 87612001 0 370133003 900000000000011006 900000000000451002 +1956660028 20030131 1 900000000000207008 258587000 165369002 0 118171006 900000000000011006 900000000000451002 +1956660028 20040731 0 900000000000207008 258587000 165369002 0 118171006 900000000000011006 900000000000451002 +1956661029 20030131 1 900000000000207008 258587000 87612001 0 370133003 900000000000011006 900000000000451002 +1956661029 20040731 0 900000000000207008 258587000 87612001 0 370133003 900000000000011006 900000000000451002 +1956662020 20030131 1 900000000000207008 258588005 35566002 0 118168003 900000000000011006 900000000000451002 +1956662020 20190731 1 900000000000207008 258588005 35566002 1 118168003 900000000000011006 900000000000451002 +1956663026 20030131 1 900000000000207008 258589002 59441001 0 118169006 900000000000011006 900000000000451002 +1956663026 20190731 1 900000000000207008 258589002 59441001 1 118169006 900000000000011006 900000000000451002 +1956664021 20030131 1 900000000000207008 258589002 165369002 0 118171006 900000000000011006 900000000000451002 +1956664021 20040731 0 900000000000207008 258589002 165369002 0 118171006 900000000000011006 900000000000451002 +1956665022 20030131 1 900000000000207008 258589002 87612001 0 370133003 900000000000011006 900000000000451002 +1956665022 20040731 0 900000000000207008 258589002 87612001 0 370133003 900000000000011006 900000000000451002 +1956668024 20030131 1 900000000000207008 258590006 165369002 0 118171006 900000000000011006 900000000000451002 +1956668024 20040731 0 900000000000207008 258590006 165369002 0 118171006 900000000000011006 900000000000451002 +1956669027 20030131 1 900000000000207008 258590006 386122004 0 370133003 900000000000011006 900000000000451002 +1956669027 20190731 1 900000000000207008 258590006 386122004 1 370133003 900000000000011006 900000000000451002 +1956670026 20030131 1 900000000000207008 258590006 87612001 0 370133003 900000000000011006 900000000000451002 +1956670026 20040731 0 900000000000207008 258590006 87612001 0 370133003 900000000000011006 900000000000451002 +1956671027 20030131 1 900000000000207008 258591005 52501007 0 118169006 900000000000011006 900000000000451002 +1956671027 20080731 0 900000000000207008 258591005 52501007 0 118169006 900000000000011006 900000000000451002 +1956671027 20090731 1 900000000000207008 258591005 52501007 0 118169006 900000000000011006 900000000000451002 +1956671027 20190731 1 900000000000207008 258591005 52501007 1 118169006 900000000000011006 900000000000451002 +1956672023 20030131 1 900000000000207008 258591005 165369002 0 118171006 900000000000011006 900000000000451002 +1956672023 20040731 0 900000000000207008 258591005 165369002 0 118171006 900000000000011006 900000000000451002 +1956673029 20030131 1 900000000000207008 258591005 87612001 0 370133003 900000000000011006 900000000000451002 +1956673029 20040731 0 900000000000207008 258591005 87612001 0 370133003 900000000000011006 900000000000451002 +1956677028 20030131 1 900000000000207008 258601009 78076003 0 118169006 900000000000011006 900000000000451002 +1956677028 20080731 0 900000000000207008 258601009 78076003 0 118169006 900000000000011006 900000000000451002 +1956678022 20030131 1 900000000000207008 258601009 85756007 0 118169006 900000000000011006 900000000000451002 +1956678022 20030731 0 900000000000207008 258601009 85756007 0 118169006 900000000000011006 900000000000451002 +1956679025 20030131 1 900000000000207008 258602002 78076003 0 118169006 900000000000011006 900000000000451002 +1956679025 20080731 0 900000000000207008 258602002 78076003 0 118169006 900000000000011006 900000000000451002 +1956680027 20030131 1 900000000000207008 258602002 85756007 0 118169006 900000000000011006 900000000000451002 +1956680027 20030731 0 900000000000207008 258602002 85756007 0 118169006 900000000000011006 900000000000451002 +1956681028 20030131 1 900000000000207008 258603007 321667001 0 118169006 900000000000011006 900000000000451002 +1956681028 20080731 0 900000000000207008 258603007 321667001 0 118169006 900000000000011006 900000000000451002 +1956682024 20030131 1 900000000000207008 258604001 58675001 0 118169006 900000000000011006 900000000000451002 +1956682024 20190731 1 900000000000207008 258604001 58675001 1 118169006 900000000000011006 900000000000451002 +1956685021 20030131 1 900000000000207008 258606004 82094008 0 118169006 900000000000011006 900000000000451002 +1956685021 20190731 1 900000000000207008 258606004 82094008 1 118169006 900000000000011006 900000000000451002 +1956686022 20030131 1 900000000000207008 258607008 82094008 0 118169006 900000000000011006 900000000000451002 +1956686022 20080731 0 900000000000207008 258607008 82094008 0 118169006 900000000000011006 900000000000451002 +1956686022 20090731 1 900000000000207008 258607008 82094008 1 118169006 900000000000011006 900000000000451002 +1956686022 20170731 0 900000000000207008 258607008 82094008 1 118169006 900000000000011006 900000000000451002 +1956686022 20190731 1 900000000000207008 258607008 82094008 1 118169006 900000000000011006 900000000000451002 +1956687029 20030131 1 900000000000207008 258607008 64732008 0 118171006 900000000000011006 900000000000451002 +1956687029 20030731 0 900000000000207008 258607008 64732008 0 118171006 900000000000011006 900000000000451002 +1956688023 20030131 1 900000000000207008 258607008 87200008 0 370133003 900000000000011006 900000000000451002 +1956688023 20080731 0 900000000000207008 258607008 87200008 0 370133003 900000000000011006 900000000000451002 +1956688023 20090731 1 900000000000207008 258607008 87200008 1 370133003 900000000000011006 900000000000451002 +1956688023 20170731 0 900000000000207008 258607008 87200008 1 370133003 900000000000011006 900000000000451002 +1956689026 20030131 1 900000000000207008 258608003 58675001 0 118169006 900000000000011006 900000000000451002 +1956689026 20040731 0 900000000000207008 258608003 58675001 0 118169006 900000000000011006 900000000000451002 +1956690024 20030131 1 900000000000207008 258608003 82094008 0 118169006 900000000000011006 900000000000451002 +1956690024 20080731 1 900000000000207008 258608003 82094008 1 118169006 900000000000011006 900000000000451002 +1956691023 20030131 1 900000000000207008 258608003 386087005 0 118171006 900000000000011006 900000000000451002 +1956691023 20080731 1 900000000000207008 258608003 386087005 1 118171006 900000000000011006 900000000000451002 +1956692027 20030131 1 900000000000207008 258608003 45710003 0 370133003 900000000000011006 900000000000451002 +1956692027 20080731 1 900000000000207008 258608003 45710003 1 370133003 900000000000011006 900000000000451002 +1956693021 20030131 1 900000000000207008 258608003 72869002 0 370133003 900000000000011006 900000000000451002 +1956693021 20040731 0 900000000000207008 258608003 72869002 0 370133003 900000000000011006 900000000000451002 +1956694026 20030131 1 900000000000207008 258609006 44567001 0 118169006 900000000000011006 900000000000451002 +1956694026 20080731 0 900000000000207008 258609006 44567001 0 118169006 900000000000011006 900000000000451002 +1956694026 20090131 1 900000000000207008 258609006 44567001 1 118169006 900000000000011006 900000000000451002 +1956695025 20030131 1 900000000000207008 258609006 58675001 0 118169006 900000000000011006 900000000000451002 +1956695025 20040731 0 900000000000207008 258609006 58675001 0 118169006 900000000000011006 900000000000451002 +1956696029 20030131 1 900000000000207008 258609006 129112001 0 118171006 900000000000011006 900000000000451002 +1956696029 20080731 0 900000000000207008 258609006 129112001 0 118171006 900000000000011006 900000000000451002 +1956697022 20030131 1 900000000000207008 258609006 386087005 0 118171006 900000000000011006 900000000000451002 +1956697022 20080731 0 900000000000207008 258609006 386087005 0 118171006 900000000000011006 900000000000451002 +1956697022 20090131 1 900000000000207008 258609006 386087005 1 118171006 900000000000011006 900000000000451002 +1956698028 20030131 1 900000000000207008 258609006 45710003 0 370133003 900000000000011006 900000000000451002 +1956698028 20080731 0 900000000000207008 258609006 45710003 0 370133003 900000000000011006 900000000000451002 +1956698028 20090131 1 900000000000207008 258609006 45710003 1 370133003 900000000000011006 900000000000451002 +1956699020 20030131 1 900000000000207008 258609006 72869002 0 370133003 900000000000011006 900000000000451002 +1956699020 20040731 0 900000000000207008 258609006 72869002 0 370133003 900000000000011006 900000000000451002 +1956700021 20030131 1 900000000000207008 258610001 58675001 0 118169006 900000000000011006 900000000000451002 +1956700021 20040731 0 900000000000207008 258610001 58675001 0 118169006 900000000000011006 900000000000451002 +1956701020 20030131 1 900000000000207008 258610001 82094008 0 118169006 900000000000011006 900000000000451002 +1956701020 20080731 1 900000000000207008 258610001 82094008 1 118169006 900000000000011006 900000000000451002 +1956702029 20030131 1 900000000000207008 258610001 386088000 0 118171006 900000000000011006 900000000000451002 +1956702029 20080731 1 900000000000207008 258610001 386088000 1 118171006 900000000000011006 900000000000451002 +1956703023 20030131 1 900000000000207008 258610001 45710003 0 370133003 900000000000011006 900000000000451002 +1956703023 20080731 1 900000000000207008 258610001 45710003 1 370133003 900000000000011006 900000000000451002 +1956704028 20030131 1 900000000000207008 258610001 72869002 0 370133003 900000000000011006 900000000000451002 +1956704028 20040731 0 900000000000207008 258610001 72869002 0 370133003 900000000000011006 900000000000451002 +1956705027 20030131 1 900000000000207008 258611002 58675001 0 118169006 900000000000011006 900000000000451002 +1956705027 20040731 0 900000000000207008 258611002 58675001 0 118169006 900000000000011006 900000000000451002 +1956706026 20030131 1 900000000000207008 258611002 82094008 0 118169006 900000000000011006 900000000000451002 +1956706026 20080731 1 900000000000207008 258611002 82094008 1 118169006 900000000000011006 900000000000451002 +1956707024 20030131 1 900000000000207008 258611002 37705003 0 118171006 900000000000011006 900000000000451002 +1956707024 20080731 1 900000000000207008 258611002 37705003 1 118171006 900000000000011006 900000000000451002 +1956708025 20030131 1 900000000000207008 258611002 45710003 0 370133003 900000000000011006 900000000000451002 +1956708025 20080731 1 900000000000207008 258611002 45710003 1 370133003 900000000000011006 900000000000451002 +1956709022 20030131 1 900000000000207008 258611002 72869002 0 370133003 900000000000011006 900000000000451002 +1956709022 20040731 0 900000000000207008 258611002 72869002 0 370133003 900000000000011006 900000000000451002 +1956713026 20030131 1 900000000000207008 258627009 116204000 0 118170007 900000000000011006 900000000000451002 +1956713026 20080731 0 900000000000207008 258627009 116204000 0 118170007 900000000000011006 900000000000451002 +1956714021 20030131 1 900000000000207008 258627009 12150006 0 118170007 900000000000011006 900000000000451002 +1956714021 20190731 1 900000000000207008 258627009 12150006 1 118170007 900000000000011006 900000000000451002 +1956714021 20210131 0 900000000000207008 258627009 12150006 1 118170007 900000000000011006 900000000000451002 +1956715022 20030131 1 900000000000207008 258628004 116204000 0 118170007 900000000000011006 900000000000451002 +1956715022 20080731 0 900000000000207008 258628004 116204000 0 118170007 900000000000011006 900000000000451002 +1956716023 20030131 1 900000000000207008 258628004 258620006 0 118170007 900000000000011006 900000000000451002 +1956716023 20190731 1 900000000000207008 258628004 258620006 1 118170007 900000000000011006 900000000000451002 +1956716023 20210131 0 900000000000207008 258628004 258620006 1 118170007 900000000000011006 900000000000451002 +1956717025 20030131 1 900000000000207008 258629007 116204000 0 118170007 900000000000011006 900000000000451002 +1956717025 20080731 0 900000000000207008 258629007 116204000 0 118170007 900000000000011006 900000000000451002 +1956718024 20030131 1 900000000000207008 258629007 75192006 0 118170007 900000000000011006 900000000000451002 +1956718024 20190731 1 900000000000207008 258629007 75192006 1 118170007 900000000000011006 900000000000451002 +1956718024 20210131 0 900000000000207008 258629007 75192006 1 118170007 900000000000011006 900000000000451002 +1956719027 20030131 1 900000000000207008 258630002 116204000 0 118170007 900000000000011006 900000000000451002 +1956719027 20080731 0 900000000000207008 258630002 116204000 0 118170007 900000000000011006 900000000000451002 +1956720022 20030131 1 900000000000207008 258630002 258621005 0 118170007 900000000000011006 900000000000451002 +1956720022 20190731 1 900000000000207008 258630002 258621005 1 118170007 900000000000011006 900000000000451002 +1956720022 20210131 0 900000000000207008 258630002 258621005 1 118170007 900000000000011006 900000000000451002 +1956721021 20030131 1 900000000000207008 258631003 116204000 0 118170007 900000000000011006 900000000000451002 +1956721021 20080731 0 900000000000207008 258631003 116204000 0 118170007 900000000000011006 900000000000451002 +1956722025 20030131 1 900000000000207008 258631003 258620006 0 118170007 900000000000011006 900000000000451002 +1956722025 20190731 1 900000000000207008 258631003 258620006 2 118170007 900000000000011006 900000000000451002 +1956722025 20210131 0 900000000000207008 258631003 258620006 2 118170007 900000000000011006 900000000000451002 +1956723024 20030131 1 900000000000207008 258631003 258622003 0 118170007 900000000000011006 900000000000451002 +1956723024 20190731 1 900000000000207008 258631003 258622003 1 118170007 900000000000011006 900000000000451002 +1956723024 20210131 0 900000000000207008 258631003 258622003 1 118170007 900000000000011006 900000000000451002 +1956725028 20030131 1 900000000000207008 258649003 14152002 0 118171006 900000000000011006 900000000000451002 +1956725028 20040731 0 900000000000207008 258649003 14152002 0 118171006 900000000000011006 900000000000451002 +1956726027 20030131 1 900000000000207008 258650003 14152002 0 118171006 900000000000011006 900000000000451002 +1956726027 20040731 0 900000000000207008 258650003 14152002 0 118171006 900000000000011006 900000000000451002 +1956727020 20030131 1 900000000000207008 258650003 70106000 0 370133003 900000000000011006 900000000000451002 +1956727020 20190731 1 900000000000207008 258650003 70106000 1 370133003 900000000000011006 900000000000451002 +1956727020 20220630 0 900000000000207008 258650003 70106000 1 370133003 900000000000011006 900000000000451002 +1956728026 20030131 1 900000000000207008 258651004 255621006 0 370133003 900000000000011006 900000000000451002 +1956728026 20190731 1 900000000000207008 258651004 255621006 1 370133003 900000000000011006 900000000000451002 +1956729023 20030131 1 900000000000207008 258652006 227708009 0 370133003 900000000000011006 900000000000451002 +1956729023 20190731 1 900000000000207008 258652006 227708009 1 370133003 900000000000011006 900000000000451002 +1956730029 20030131 1 900000000000207008 258652006 255621006 0 370133003 900000000000011006 900000000000451002 +1956730029 20040731 0 900000000000207008 258652006 255621006 0 370133003 900000000000011006 900000000000451002 +1956731025 20030131 1 900000000000207008 258653001 386127005 0 370133003 900000000000011006 900000000000451002 +1956731025 20190731 1 900000000000207008 258653001 386127005 1 370133003 900000000000011006 900000000000451002 +1956732021 20030131 1 900000000000207008 258654007 226793001 0 370133003 900000000000011006 900000000000451002 +1956732021 20190731 1 900000000000207008 258654007 226793001 1 370133003 900000000000011006 900000000000451002 +1956733027 20030131 1 900000000000207008 258655008 3718001 0 370133003 900000000000011006 900000000000451002 +1956733027 20190731 1 900000000000207008 258655008 3718001 1 370133003 900000000000011006 900000000000451002 +1956734022 20030131 1 900000000000207008 258656009 226767008 0 370133003 900000000000011006 900000000000451002 +1956734022 20190731 1 900000000000207008 258656009 226767008 1 370133003 900000000000011006 900000000000451002 +1956735023 20030131 1 900000000000207008 258657000 226763007 0 370133003 900000000000011006 900000000000451002 +1956735023 20190731 1 900000000000207008 258657000 226763007 1 370133003 900000000000011006 900000000000451002 +1956736024 20030131 1 900000000000207008 258658005 25743006 0 370133003 900000000000011006 900000000000451002 +1956736024 20190731 1 900000000000207008 258658005 25743006 1 370133003 900000000000011006 900000000000451002 +1956737026 20030131 1 900000000000207008 258659002 226791004 0 370133003 900000000000011006 900000000000451002 +1956737026 20190731 1 900000000000207008 258659002 226791004 1 370133003 900000000000011006 900000000000451002 +1956738020 20030131 1 900000000000207008 258660007 83595008 0 370133003 900000000000011006 900000000000451002 +1956738020 20190731 1 900000000000207008 258660007 83595008 1 370133003 900000000000011006 900000000000451002 +1957577027 20030131 1 900000000000207008 264380007 272673000 0 118169006 900000000000011006 900000000000451002 +1957577027 20080731 0 900000000000207008 264380007 272673000 0 118169006 900000000000011006 900000000000451002 +1957578021 20030131 1 900000000000207008 264380007 39352004 0 118169006 900000000000011006 900000000000451002 +1957578021 20080731 0 900000000000207008 264380007 39352004 0 118169006 900000000000011006 900000000000451002 +1959762025 20030131 1 900000000000207008 271514008 32980006 0 118169006 900000000000011006 900000000000451002 +1959762025 20080731 0 900000000000207008 271514008 32980006 0 118169006 900000000000011006 900000000000451002 +1959763024 20030131 1 900000000000207008 271514008 85756007 0 118169006 900000000000011006 900000000000451002 +1959763024 20040731 0 900000000000207008 271514008 85756007 0 118169006 900000000000011006 900000000000451002 +1959764029 20030131 1 900000000000207008 271514008 165369002 0 118171006 900000000000011006 900000000000451002 +1959764029 20040731 0 900000000000207008 271514008 165369002 0 118171006 900000000000011006 900000000000451002 +1959765028 20030131 1 900000000000207008 271514008 87612001 0 370133003 900000000000011006 900000000000451002 +1959765028 20040731 0 900000000000207008 271514008 87612001 0 370133003 900000000000011006 900000000000451002 +1959766027 20030131 1 900000000000207008 271515009 20677005 0 118169006 900000000000011006 900000000000451002 +1959766027 20080731 0 900000000000207008 271515009 20677005 0 118169006 900000000000011006 900000000000451002 +1959767020 20030131 1 900000000000207008 271515009 85756007 0 118169006 900000000000011006 900000000000451002 +1959767020 20040731 0 900000000000207008 271515009 85756007 0 118169006 900000000000011006 900000000000451002 +1959768026 20030131 1 900000000000207008 271515009 165369002 0 118171006 900000000000011006 900000000000451002 +1959768026 20040731 0 900000000000207008 271515009 165369002 0 118171006 900000000000011006 900000000000451002 +1959769023 20030131 1 900000000000207008 271515009 87612001 0 370133003 900000000000011006 900000000000451002 +1959769023 20040731 0 900000000000207008 271515009 87612001 0 370133003 900000000000011006 900000000000451002 +1959770024 20030131 1 900000000000207008 271516005 313231007 0 118169006 900000000000011006 900000000000451002 +1959770024 20080731 0 900000000000207008 271516005 313231007 0 118169006 900000000000011006 900000000000451002 +1959771023 20030131 1 900000000000207008 271516005 85756007 0 118169006 900000000000011006 900000000000451002 +1959771023 20040731 0 900000000000207008 271516005 85756007 0 118169006 900000000000011006 900000000000451002 +1959772027 20030131 1 900000000000207008 271516005 165369002 0 118171006 900000000000011006 900000000000451002 +1959772027 20040731 0 900000000000207008 271516005 165369002 0 118171006 900000000000011006 900000000000451002 +1959773021 20030131 1 900000000000207008 271516005 87612001 0 370133003 900000000000011006 900000000000451002 +1959773021 20040731 0 900000000000207008 271516005 87612001 0 370133003 900000000000011006 900000000000451002 +1959774026 20030131 1 900000000000207008 271518006 313228006 0 118169006 900000000000011006 900000000000451002 +1959774026 20080731 0 900000000000207008 271518006 313228006 0 118169006 900000000000011006 900000000000451002 +1959775025 20030131 1 900000000000207008 271518006 85756007 0 118169006 900000000000011006 900000000000451002 +1959775025 20040731 0 900000000000207008 271518006 85756007 0 118169006 900000000000011006 900000000000451002 +1959776029 20030131 1 900000000000207008 271518006 165369002 0 118171006 900000000000011006 900000000000451002 +1959776029 20040731 0 900000000000207008 271518006 165369002 0 118171006 900000000000011006 900000000000451002 +1959777022 20030131 1 900000000000207008 271518006 87612001 0 370133003 900000000000011006 900000000000451002 +1959777022 20040731 0 900000000000207008 271518006 87612001 0 370133003 900000000000011006 900000000000451002 +1961119022 20030131 1 900000000000207008 276446009 71252005 0 118169006 900000000000011006 900000000000451002 +1961119022 20080731 1 900000000000207008 276446009 71252005 1 118169006 900000000000011006 900000000000451002 +1961119022 20110731 0 900000000000207008 276446009 71252005 1 118169006 900000000000011006 900000000000451002 +1961120027 20030131 1 900000000000207008 276446009 309942007 0 118170007 900000000000011006 900000000000451002 +1961120027 20030731 0 900000000000207008 276446009 309942007 0 118170007 900000000000011006 900000000000451002 +1961230029 20030131 1 900000000000207008 276833005 35461009 0 118169006 900000000000011006 900000000000451002 +1961230029 20080731 0 900000000000207008 276833005 35461009 0 118169006 900000000000011006 900000000000451002 +1961231025 20030131 1 900000000000207008 276833005 2475000 0 118171006 900000000000011006 900000000000451002 +1961231025 20080731 0 900000000000207008 276833005 2475000 0 118171006 900000000000011006 900000000000451002 +1961231025 20090131 1 900000000000207008 276833005 2475000 1 118171006 900000000000011006 900000000000451002 +1961232021 20030131 1 900000000000207008 276833005 78014005 0 370133003 900000000000011006 900000000000451002 +1961232021 20080731 0 900000000000207008 276833005 78014005 0 370133003 900000000000011006 900000000000451002 +1961232021 20090131 1 900000000000207008 276833005 78014005 1 370133003 900000000000011006 900000000000451002 +1961616027 20030131 1 900000000000207008 278020009 35461009 0 118169006 900000000000011006 900000000000451002 +1961616027 20080731 0 900000000000207008 278020009 35461009 0 118169006 900000000000011006 900000000000451002 +1961617020 20030131 1 900000000000207008 278020009 386099003 0 118171006 900000000000011006 900000000000451002 +1961617020 20080731 0 900000000000207008 278020009 386099003 0 118171006 900000000000011006 900000000000451002 +1961617020 20090131 1 900000000000207008 278020009 386099003 1 118171006 900000000000011006 900000000000451002 +1961618026 20030131 1 900000000000207008 278020009 78014005 0 370133003 900000000000011006 900000000000451002 +1961618026 20080731 0 900000000000207008 278020009 78014005 0 370133003 900000000000011006 900000000000451002 +1961618026 20090131 1 900000000000207008 278020009 78014005 1 370133003 900000000000011006 900000000000451002 +1980070029 20030131 1 900000000000207008 302794003 122865005 0 118169006 900000000000011006 900000000000451002 +1980070029 20060131 0 900000000000207008 302794003 122865005 0 118169006 900000000000011006 900000000000451002 +1980071025 20030131 1 900000000000207008 302794003 14766002 0 118171006 900000000000011006 900000000000451002 +1980071025 20080731 0 900000000000207008 302794003 14766002 0 118171006 900000000000011006 900000000000451002 +1980072021 20030131 1 900000000000207008 302794003 31773000 0 370133003 900000000000011006 900000000000451002 +1980072021 20060131 0 900000000000207008 302794003 31773000 0 370133003 900000000000011006 900000000000451002 +1980073027 20030131 1 900000000000207008 302795002 59441001 0 118169006 900000000000011006 900000000000451002 +1980073027 20080731 1 900000000000207008 302795002 59441001 1 118169006 900000000000011006 900000000000451002 +1980074022 20030131 1 900000000000207008 302795002 14766002 0 118171006 900000000000011006 900000000000451002 +1980074022 20080731 1 900000000000207008 302795002 14766002 1 118171006 900000000000011006 900000000000451002 +1980075023 20030131 1 900000000000207008 302795002 165369002 0 118171006 900000000000011006 900000000000451002 +1980075023 20040731 0 900000000000207008 302795002 165369002 0 118171006 900000000000011006 900000000000451002 +1980076024 20030131 1 900000000000207008 302795002 87612001 0 370133003 900000000000011006 900000000000451002 +1980076024 20040731 0 900000000000207008 302795002 87612001 0 370133003 900000000000011006 900000000000451002 +1980202027 20030131 1 900000000000207008 303247002 23451007 0 118169006 900000000000011006 900000000000451002 +1980202027 20080731 0 900000000000207008 303247002 23451007 0 118169006 900000000000011006 900000000000451002 +1980202027 20090731 1 900000000000207008 303247002 23451007 1 118169006 900000000000011006 900000000000451002 +1980203021 20030131 1 900000000000207008 303247002 85756007 0 118169006 900000000000011006 900000000000451002 +1980203021 20080731 0 900000000000207008 303247002 85756007 0 118169006 900000000000011006 900000000000451002 +1980204026 20030131 1 900000000000207008 303248007 165369002 0 118171006 900000000000011006 900000000000451002 +1980204026 20040731 0 900000000000207008 303248007 165369002 0 118171006 900000000000011006 900000000000451002 +1980205025 20030131 1 900000000000207008 303248007 87612001 0 370133003 900000000000011006 900000000000451002 +1980205025 20080731 0 900000000000207008 303248007 87612001 0 370133003 900000000000011006 900000000000451002 +1980205025 20090131 1 900000000000207008 303248007 87612001 1 370133003 900000000000011006 900000000000451002 +1980205025 20090731 0 900000000000207008 303248007 87612001 1 370133003 900000000000011006 900000000000451002 +1980205025 20100131 1 900000000000207008 303248007 87612001 1 370133003 900000000000011006 900000000000451002 +1980205025 20110731 0 900000000000207008 303248007 87612001 1 370133003 900000000000011006 900000000000451002 +1982146024 20030131 1 900000000000207008 309048008 113331007 0 118169006 900000000000011006 900000000000451002 +1982146024 20190731 1 900000000000207008 309048008 113331007 1 118169006 900000000000011006 900000000000451002 +1982147026 20030131 1 900000000000207008 309049000 49755003 0 118168003 900000000000011006 900000000000451002 +1982147026 20190731 1 900000000000207008 309049000 49755003 1 118168003 900000000000011006 900000000000451002 +1982147026 20220630 0 900000000000207008 309049000 49755003 1 118168003 900000000000011006 900000000000451002 +1982148020 20030131 1 900000000000207008 309050000 91720002 0 370133003 900000000000011006 900000000000451002 +1982148020 20190731 1 900000000000207008 309050000 91720002 1 370133003 900000000000011006 900000000000451002 +1982149028 20030131 1 900000000000207008 309051001 32457005 0 370133003 900000000000011006 900000000000451002 +1982149028 20190731 1 900000000000207008 309051001 32457005 1 370133003 900000000000011006 900000000000451002 +1982150028 20030131 1 900000000000207008 309052008 90264002 0 118169006 900000000000011006 900000000000451002 +1982150028 20190731 1 900000000000207008 309052008 90264002 1 118169006 900000000000011006 900000000000451002 +1982151029 20030131 1 900000000000207008 309053003 53065001 0 118169006 900000000000011006 900000000000451002 +1982151029 20190731 1 900000000000207008 309053003 53065001 1 118169006 900000000000011006 900000000000451002 +1982152020 20030131 1 900000000000207008 309053003 309942007 0 118170007 900000000000011006 900000000000451002 +1982152020 20030731 0 900000000000207008 309053003 309942007 0 118170007 900000000000011006 900000000000451002 +1982153026 20030131 1 900000000000207008 309055005 76752008 0 118169006 900000000000011006 900000000000451002 +1982153026 20080731 0 900000000000207008 309055005 76752008 0 118169006 900000000000011006 900000000000451002 +1982153026 20090131 1 900000000000207008 309055005 76752008 1 118169006 900000000000011006 900000000000451002 +1982154021 20030131 1 900000000000207008 309055005 32457005 0 370133003 900000000000011006 900000000000451002 +1982154021 20040731 0 900000000000207008 309055005 32457005 0 370133003 900000000000011006 900000000000451002 +1982159027 20030131 1 900000000000207008 309057002 76752008 0 118169006 900000000000011006 900000000000451002 +1982159027 20080731 0 900000000000207008 309057002 76752008 0 118169006 900000000000011006 900000000000451002 +1982159027 20090131 1 900000000000207008 309057002 76752008 1 118169006 900000000000011006 900000000000451002 +1982159027 20110731 0 900000000000207008 309057002 76752008 1 118169006 900000000000011006 900000000000451002 +1982160021 20030131 1 900000000000207008 309058007 76752008 0 118169006 900000000000011006 900000000000451002 +1982160021 20080731 0 900000000000207008 309058007 76752008 0 118169006 900000000000011006 900000000000451002 +1982160021 20090131 1 900000000000207008 309058007 76752008 1 118169006 900000000000011006 900000000000451002 +1982161020 20030131 1 900000000000207008 309058007 85756007 0 118169006 900000000000011006 900000000000451002 +1982161020 20080731 0 900000000000207008 309058007 85756007 0 118169006 900000000000011006 900000000000451002 +1982162029 20030131 1 900000000000207008 309058007 303689004 0 118171006 900000000000011006 900000000000451002 +1982162029 20080731 0 900000000000207008 309058007 303689004 0 118171006 900000000000011006 900000000000451002 +1982162029 20090131 1 900000000000207008 309058007 303689004 1 118171006 900000000000011006 900000000000451002 +1982163023 20030131 1 900000000000207008 309059004 76752008 0 118169006 900000000000011006 900000000000451002 +1982163023 20080731 0 900000000000207008 309059004 76752008 0 118169006 900000000000011006 900000000000451002 +1982163023 20090131 1 900000000000207008 309059004 76752008 1 118169006 900000000000011006 900000000000451002 +1982164028 20030131 1 900000000000207008 309059004 85756007 0 118169006 900000000000011006 900000000000451002 +1982164028 20080731 0 900000000000207008 309059004 85756007 0 118169006 900000000000011006 900000000000451002 +1982165027 20030131 1 900000000000207008 309059004 122548005 0 118171006 900000000000011006 900000000000451002 +1982165027 20030731 0 900000000000207008 309059004 122548005 0 118171006 900000000000011006 900000000000451002 +1982169022 20030131 1 900000000000207008 309061008 76752008 0 118169006 900000000000011006 900000000000451002 +1982169022 20080731 0 900000000000207008 309061008 76752008 0 118169006 900000000000011006 900000000000451002 +1982169022 20090131 1 900000000000207008 309061008 76752008 1 118169006 900000000000011006 900000000000451002 +1982169022 20110731 0 900000000000207008 309061008 76752008 1 118169006 900000000000011006 900000000000451002 +1982170023 20030131 1 900000000000207008 309061008 387736007 0 118171006 900000000000011006 900000000000451002 +1982170023 20080731 0 900000000000207008 309061008 387736007 0 118171006 900000000000011006 900000000000451002 +1982170023 20090131 1 900000000000207008 309061008 387736007 1 118171006 900000000000011006 900000000000451002 +1982170023 20110731 0 900000000000207008 309061008 387736007 1 118171006 900000000000011006 900000000000451002 +1982171022 20030131 1 900000000000207008 309061008 32457005 0 370133003 900000000000011006 900000000000451002 +1982171022 20040731 0 900000000000207008 309061008 32457005 0 370133003 900000000000011006 900000000000451002 +1982174025 20030131 1 900000000000207008 309066003 314818000 0 118169006 900000000000011006 900000000000451002 +1982174025 20080731 0 900000000000207008 309066003 314818000 0 118169006 900000000000011006 900000000000451002 +1982175029 20030131 1 900000000000207008 309066003 39937001 0 118169006 900000000000011006 900000000000451002 +1982175029 20040731 0 900000000000207008 309066003 39937001 0 118169006 900000000000011006 900000000000451002 +1982176028 20030131 1 900000000000207008 309066003 240977001 0 118171006 900000000000011006 900000000000451002 +1982176028 20080731 0 900000000000207008 309066003 240977001 0 118171006 900000000000011006 900000000000451002 +1982176028 20090131 1 900000000000207008 309066003 240977001 1 118171006 900000000000011006 900000000000451002 +1982177021 20030131 1 900000000000207008 309067007 314818000 0 118169006 900000000000011006 900000000000451002 +1982177021 20080731 0 900000000000207008 309067007 314818000 0 118169006 900000000000011006 900000000000451002 +1982178027 20030131 1 900000000000207008 309067007 39937001 0 118169006 900000000000011006 900000000000451002 +1982178027 20040731 0 900000000000207008 309067007 39937001 0 118169006 900000000000011006 900000000000451002 +1982179024 20030131 1 900000000000207008 309067007 68688001 0 118171006 900000000000011006 900000000000451002 +1982179024 20030731 0 900000000000207008 309067007 68688001 0 118171006 900000000000011006 900000000000451002 +1982180022 20030131 1 900000000000207008 309068002 49755003 0 118168003 900000000000011006 900000000000451002 +1982180022 20080731 0 900000000000207008 309068002 49755003 0 118168003 900000000000011006 900000000000451002 +1982180022 20090131 1 900000000000207008 309068002 49755003 1 118168003 900000000000011006 900000000000451002 +1982180022 20220630 0 900000000000207008 309068002 49755003 1 118168003 900000000000011006 900000000000451002 +1982181021 20030131 1 900000000000207008 309068002 314818000 0 118169006 900000000000011006 900000000000451002 +1982181021 20080731 0 900000000000207008 309068002 314818000 0 118169006 900000000000011006 900000000000451002 +1982182025 20030131 1 900000000000207008 309068002 39937001 0 118169006 900000000000011006 900000000000451002 +1982182025 20040731 0 900000000000207008 309068002 39937001 0 118169006 900000000000011006 900000000000451002 +1982184029 20030131 1 900000000000207008 309070006 28822000 0 118169006 900000000000011006 900000000000451002 +1982184029 20030731 0 900000000000207008 309070006 28822000 0 118169006 900000000000011006 900000000000451002 +1982185028 20030131 1 900000000000207008 309070006 314818000 0 118169006 900000000000011006 900000000000451002 +1982185028 20080731 0 900000000000207008 309070006 314818000 0 118169006 900000000000011006 900000000000451002 +1982186027 20030131 1 900000000000207008 309070006 309942007 0 118170007 900000000000011006 900000000000451002 +1982186027 20030731 0 900000000000207008 309070006 309942007 0 118170007 900000000000011006 900000000000451002 +1982187020 20030131 1 900000000000207008 309070006 240977001 0 118171006 900000000000011006 900000000000451002 +1982187020 20080731 0 900000000000207008 309070006 240977001 0 118171006 900000000000011006 900000000000451002 +1982187020 20090131 1 900000000000207008 309070006 240977001 1 118171006 900000000000011006 900000000000451002 +1982188026 20030131 1 900000000000207008 309071005 314818000 0 118169006 900000000000011006 900000000000451002 +1982188026 20080731 0 900000000000207008 309071005 314818000 0 118169006 900000000000011006 900000000000451002 +1982189023 20030131 1 900000000000207008 309071005 35900000 0 118169006 900000000000011006 900000000000451002 +1982189023 20080731 0 900000000000207008 309071005 35900000 0 118169006 900000000000011006 900000000000451002 +1982189023 20090131 1 900000000000207008 309071005 35900000 1 118169006 900000000000011006 900000000000451002 +1982190025 20030131 1 900000000000207008 309071005 176557003 0 118171006 900000000000011006 900000000000451002 +1982190025 20080731 0 900000000000207008 309071005 176557003 0 118171006 900000000000011006 900000000000451002 +1982191026 20030131 1 900000000000207008 309071005 240977001 0 118171006 900000000000011006 900000000000451002 +1982191026 20080731 0 900000000000207008 309071005 240977001 0 118171006 900000000000011006 900000000000451002 +1982191026 20090131 1 900000000000207008 309071005 240977001 1 118171006 900000000000011006 900000000000451002 +1982192022 20030131 1 900000000000207008 309072003 87784001 0 118169006 900000000000011006 900000000000451002 +1982192022 20190731 1 900000000000207008 309072003 87784001 1 118169006 900000000000011006 900000000000451002 +1982193028 20030131 1 900000000000207008 309073008 108369006 0 118168003 900000000000011006 900000000000451002 +1982193028 20080731 0 900000000000207008 309073008 108369006 0 118168003 900000000000011006 900000000000451002 +1982194023 20030131 1 900000000000207008 309073008 55603005 0 118169006 900000000000011006 900000000000451002 +1982194023 20080731 0 900000000000207008 309073008 55603005 0 118169006 900000000000011006 900000000000451002 +1982195024 20030131 1 900000000000207008 309073008 274068006 0 118171006 900000000000011006 900000000000451002 +1982195024 20080731 0 900000000000207008 309073008 274068006 0 118171006 900000000000011006 900000000000451002 +1982196020 20030131 1 900000000000207008 309074002 87784001 0 118169006 900000000000011006 900000000000451002 +1982196020 20080731 1 900000000000207008 309074002 87784001 1 118169006 900000000000011006 900000000000451002 +1982197027 20030131 1 900000000000207008 309074002 75016008 0 118171006 900000000000011006 900000000000451002 +1982197027 20080731 1 900000000000207008 309074002 75016008 1 118171006 900000000000011006 900000000000451002 +1982198021 20030131 1 900000000000207008 309075001 367643001 0 118168003 900000000000011006 900000000000451002 +1982198021 20080731 0 900000000000207008 309075001 367643001 0 118168003 900000000000011006 900000000000451002 +1982198021 20090131 1 900000000000207008 309075001 367643001 1 118168003 900000000000011006 900000000000451002 +1982199029 20030131 1 900000000000207008 309075001 314818000 0 118169006 900000000000011006 900000000000451002 +1982199029 20080731 0 900000000000207008 309075001 314818000 0 118169006 900000000000011006 900000000000451002 +1982200026 20030131 1 900000000000207008 309075001 39937001 0 118169006 900000000000011006 900000000000451002 +1982200026 20080731 0 900000000000207008 309075001 39937001 0 118169006 900000000000011006 900000000000451002 +1982200026 20090131 1 900000000000207008 309075001 39937001 1 118169006 900000000000011006 900000000000451002 +1982201027 20030131 1 900000000000207008 309077009 165369002 0 118171006 900000000000011006 900000000000451002 +1982201027 20040731 0 900000000000207008 309077009 165369002 0 118171006 900000000000011006 900000000000451002 +1982202023 20030131 1 900000000000207008 309077009 87612001 0 370133003 900000000000011006 900000000000451002 +1982202023 20040731 0 900000000000207008 309077009 87612001 0 370133003 900000000000011006 900000000000451002 +1982203029 20030131 1 900000000000207008 309078004 59441001 0 118169006 900000000000011006 900000000000451002 +1982203029 20080731 0 900000000000207008 309078004 59441001 0 118169006 900000000000011006 900000000000451002 +1982203029 20090131 1 900000000000207008 309078004 59441001 1 118169006 900000000000011006 900000000000451002 +1982204024 20030131 1 900000000000207008 309078004 165369002 0 118171006 900000000000011006 900000000000451002 +1982204024 20040731 0 900000000000207008 309078004 165369002 0 118171006 900000000000011006 900000000000451002 +1982205020 20030131 1 900000000000207008 309078004 256891005 0 370133003 900000000000011006 900000000000451002 +1982205020 20080731 0 900000000000207008 309078004 256891005 0 370133003 900000000000011006 900000000000451002 +1982206021 20030131 1 900000000000207008 309078004 87612001 0 370133003 900000000000011006 900000000000451002 +1982206021 20040731 0 900000000000207008 309078004 87612001 0 370133003 900000000000011006 900000000000451002 +1982207028 20030131 1 900000000000207008 309079007 59441001 0 118169006 900000000000011006 900000000000451002 +1982207028 20080731 0 900000000000207008 309079007 59441001 0 118169006 900000000000011006 900000000000451002 +1982207028 20090731 1 900000000000207008 309079007 59441001 1 118169006 900000000000011006 900000000000451002 +1982208022 20030131 1 900000000000207008 309079007 165369002 0 118171006 900000000000011006 900000000000451002 +1982208022 20040731 0 900000000000207008 309079007 165369002 0 118171006 900000000000011006 900000000000451002 +1982209025 20030131 1 900000000000207008 309079007 256891005 0 370133003 900000000000011006 900000000000451002 +1982209025 20080731 0 900000000000207008 309079007 256891005 0 370133003 900000000000011006 900000000000451002 +1982210024 20030131 1 900000000000207008 309079007 87612001 0 370133003 900000000000011006 900000000000451002 +1982210024 20040731 0 900000000000207008 309079007 87612001 0 370133003 900000000000011006 900000000000451002 +1982216029 20030131 1 900000000000207008 309101008 272673000 0 118169006 900000000000011006 900000000000451002 +1982216029 20080731 0 900000000000207008 309101008 272673000 0 118169006 900000000000011006 900000000000451002 +1982217022 20030131 1 900000000000207008 309101008 39352004 0 118169006 900000000000011006 900000000000451002 +1982217022 20080731 0 900000000000207008 309101008 39352004 0 118169006 900000000000011006 900000000000451002 +1982218028 20030131 1 900000000000207008 309102001 272673000 0 118169006 900000000000011006 900000000000451002 +1982218028 20080731 0 900000000000207008 309102001 272673000 0 118169006 900000000000011006 900000000000451002 +1982219020 20030131 1 900000000000207008 309102001 39352004 0 118169006 900000000000011006 900000000000451002 +1982219020 20080731 0 900000000000207008 309102001 39352004 0 118169006 900000000000011006 900000000000451002 +1982220025 20030131 1 900000000000207008 309103006 272673000 0 118169006 900000000000011006 900000000000451002 +1982220025 20080731 0 900000000000207008 309103006 272673000 0 118169006 900000000000011006 900000000000451002 +1982221026 20030131 1 900000000000207008 309103006 39352004 0 118169006 900000000000011006 900000000000451002 +1982221026 20080731 0 900000000000207008 309103006 39352004 0 118169006 900000000000011006 900000000000451002 +1982222022 20030131 1 900000000000207008 309104000 26107004 0 118169006 900000000000011006 900000000000451002 +1982222022 20190731 1 900000000000207008 309104000 26107004 1 118169006 900000000000011006 900000000000451002 +1982223028 20030131 1 900000000000207008 309105004 134359009 0 118169006 900000000000011006 900000000000451002 +1982223028 20070731 0 900000000000207008 309105004 134359009 0 118169006 900000000000011006 900000000000451002 +1982224023 20030131 1 900000000000207008 309105004 272673000 0 118169006 900000000000011006 900000000000451002 +1982224023 20070731 0 900000000000207008 309105004 272673000 0 118169006 900000000000011006 900000000000451002 +1982225024 20030131 1 900000000000207008 309105004 39352004 0 118169006 900000000000011006 900000000000451002 +1982225024 20040731 0 900000000000207008 309105004 39352004 0 118169006 900000000000011006 900000000000451002 +1982226020 20030131 1 900000000000207008 309105004 13861005 0 118171006 900000000000011006 900000000000451002 +1982226020 20080731 0 900000000000207008 309105004 13861005 0 118171006 900000000000011006 900000000000451002 +1982226020 20090131 1 900000000000207008 309105004 13861005 1 118171006 900000000000011006 900000000000451002 +1982228021 20030131 1 900000000000207008 309107007 26107004 0 118169006 900000000000011006 900000000000451002 +1982228021 20070731 0 900000000000207008 309107007 26107004 0 118169006 900000000000011006 900000000000451002 +1982229029 20030131 1 900000000000207008 309108002 26107004 0 118169006 900000000000011006 900000000000451002 +1982229029 20070731 0 900000000000207008 309108002 26107004 0 118169006 900000000000011006 900000000000451002 +1982230023 20030131 1 900000000000207008 309109005 26107004 0 118169006 900000000000011006 900000000000451002 +1982230023 20080731 0 900000000000207008 309109005 26107004 0 118169006 900000000000011006 900000000000451002 +1982231022 20030131 1 900000000000207008 309110000 26107004 0 118169006 900000000000011006 900000000000451002 +1982231022 20080731 0 900000000000207008 309110000 26107004 0 118169006 900000000000011006 900000000000451002 +1982232026 20030131 1 900000000000207008 309111001 26107004 0 118169006 900000000000011006 900000000000451002 +1982232026 20080731 0 900000000000207008 309111001 26107004 0 118169006 900000000000011006 900000000000451002 +1982233020 20030131 1 900000000000207008 309112008 26107004 0 118169006 900000000000011006 900000000000451002 +1982233020 20080731 0 900000000000207008 309112008 26107004 0 118169006 900000000000011006 900000000000451002 +1982234025 20030131 1 900000000000207008 309113003 26107004 0 118169006 900000000000011006 900000000000451002 +1982234025 20070731 0 900000000000207008 309113003 26107004 0 118169006 900000000000011006 900000000000451002 +1982235029 20030131 1 900000000000207008 309114009 26107004 0 118169006 900000000000011006 900000000000451002 +1982235029 20080731 0 900000000000207008 309114009 26107004 0 118169006 900000000000011006 900000000000451002 +1982236028 20030131 1 900000000000207008 309115005 26107004 0 118169006 900000000000011006 900000000000451002 +1982236028 20080731 0 900000000000207008 309115005 26107004 0 118169006 900000000000011006 900000000000451002 +1982237021 20030131 1 900000000000207008 309116006 26107004 0 118169006 900000000000011006 900000000000451002 +1982237021 20080731 0 900000000000207008 309116006 26107004 0 118169006 900000000000011006 900000000000451002 +1982238027 20030131 1 900000000000207008 309117002 26107004 0 118169006 900000000000011006 900000000000451002 +1982238027 20080731 0 900000000000207008 309117002 26107004 0 118169006 900000000000011006 900000000000451002 +1982239024 20030131 1 900000000000207008 309118007 26107004 0 118169006 900000000000011006 900000000000451002 +1982239024 20080731 0 900000000000207008 309118007 26107004 0 118169006 900000000000011006 900000000000451002 +1982240021 20030131 1 900000000000207008 309119004 26107004 0 118169006 900000000000011006 900000000000451002 +1982240021 20080731 0 900000000000207008 309119004 26107004 0 118169006 900000000000011006 900000000000451002 +1982241020 20030131 1 900000000000207008 309120005 134359009 0 118169006 900000000000011006 900000000000451002 +1982241020 20070731 0 900000000000207008 309120005 134359009 0 118169006 900000000000011006 900000000000451002 +1982242029 20030131 1 900000000000207008 309120005 2812003 0 118169006 900000000000011006 900000000000451002 +1982242029 20190731 1 900000000000207008 309120005 2812003 1 118169006 900000000000011006 900000000000451002 +1982243023 20030131 1 900000000000207008 309121009 272673000 0 118169006 900000000000011006 900000000000451002 +1982243023 20080731 0 900000000000207008 309121009 272673000 0 118169006 900000000000011006 900000000000451002 +1982244028 20030131 1 900000000000207008 309121009 39352004 0 118169006 900000000000011006 900000000000451002 +1982244028 20080731 0 900000000000207008 309121009 39352004 0 118169006 900000000000011006 900000000000451002 +1982245027 20030131 1 900000000000207008 309122002 272673000 0 118169006 900000000000011006 900000000000451002 +1982245027 20080731 0 900000000000207008 309122002 272673000 0 118169006 900000000000011006 900000000000451002 +1982246026 20030131 1 900000000000207008 309122002 39352004 0 118169006 900000000000011006 900000000000451002 +1982246026 20080731 0 900000000000207008 309122002 39352004 0 118169006 900000000000011006 900000000000451002 +1982247024 20030131 1 900000000000207008 309123007 272673000 0 118169006 900000000000011006 900000000000451002 +1982247024 20080731 0 900000000000207008 309123007 272673000 0 118169006 900000000000011006 900000000000451002 +1982248025 20030131 1 900000000000207008 309123007 39352004 0 118169006 900000000000011006 900000000000451002 +1982248025 20080731 0 900000000000207008 309123007 39352004 0 118169006 900000000000011006 900000000000451002 +1982249022 20030131 1 900000000000207008 309124001 272673000 0 118169006 900000000000011006 900000000000451002 +1982249022 20080731 0 900000000000207008 309124001 272673000 0 118169006 900000000000011006 900000000000451002 +1982250022 20030131 1 900000000000207008 309124001 39352004 0 118169006 900000000000011006 900000000000451002 +1982250022 20080731 0 900000000000207008 309124001 39352004 0 118169006 900000000000011006 900000000000451002 +1982250022 20090131 1 900000000000207008 309124001 39352004 1 118169006 900000000000011006 900000000000451002 +1982251021 20030131 1 900000000000207008 309125000 272673000 0 118169006 900000000000011006 900000000000451002 +1982251021 20080731 0 900000000000207008 309125000 272673000 0 118169006 900000000000011006 900000000000451002 +1982252025 20030131 1 900000000000207008 309125000 39352004 0 118169006 900000000000011006 900000000000451002 +1982252025 20190731 1 900000000000207008 309125000 39352004 1 118169006 900000000000011006 900000000000451002 +1982253024 20030131 1 900000000000207008 309126004 272673000 0 118169006 900000000000011006 900000000000451002 +1982253024 20080731 0 900000000000207008 309126004 272673000 0 118169006 900000000000011006 900000000000451002 +1982254029 20030131 1 900000000000207008 309126004 39352004 0 118169006 900000000000011006 900000000000451002 +1982254029 20080731 0 900000000000207008 309126004 39352004 0 118169006 900000000000011006 900000000000451002 +1982254029 20090131 1 900000000000207008 309126004 39352004 1 118169006 900000000000011006 900000000000451002 +1982255028 20030131 1 900000000000207008 309127008 272673000 0 118169006 900000000000011006 900000000000451002 +1982255028 20080731 0 900000000000207008 309127008 272673000 0 118169006 900000000000011006 900000000000451002 +1982256027 20030131 1 900000000000207008 309127008 39352004 0 118169006 900000000000011006 900000000000451002 +1982256027 20080731 0 900000000000207008 309127008 39352004 0 118169006 900000000000011006 900000000000451002 +1982256027 20090731 1 900000000000207008 309127008 39352004 1 118169006 900000000000011006 900000000000451002 +1982257020 20030131 1 900000000000207008 309128003 81745001 0 118169006 900000000000011006 900000000000451002 +1982257020 20080731 0 900000000000207008 309128003 81745001 0 118169006 900000000000011006 900000000000451002 +1982257020 20090131 1 900000000000207008 309128003 81745001 1 118169006 900000000000011006 900000000000451002 +1982258026 20030131 1 900000000000207008 309128003 33463005 0 370133003 900000000000011006 900000000000451002 +1982258026 20070731 0 900000000000207008 309128003 33463005 0 370133003 900000000000011006 900000000000451002 +1982259023 20030131 1 900000000000207008 309129006 3057000 0 118169006 900000000000011006 900000000000451002 +1982259023 20080731 0 900000000000207008 309129006 3057000 0 118169006 900000000000011006 900000000000451002 +1982259023 20090131 1 900000000000207008 309129006 3057000 1 118169006 900000000000011006 900000000000451002 +1982260029 20030131 1 900000000000207008 309130001 3057000 0 118169006 900000000000011006 900000000000451002 +1982260029 20080731 0 900000000000207008 309130001 3057000 0 118169006 900000000000011006 900000000000451002 +1982260029 20090131 1 900000000000207008 309130001 3057000 1 118169006 900000000000011006 900000000000451002 +1982261025 20030131 1 900000000000207008 309130001 171612001 0 118171006 900000000000011006 900000000000451002 +1982261025 20080731 0 900000000000207008 309130001 171612001 0 118171006 900000000000011006 900000000000451002 +1982261025 20090131 1 900000000000207008 309130001 171612001 1 118171006 900000000000011006 900000000000451002 +1982262021 20030131 1 900000000000207008 309131002 25169009 0 118168003 900000000000011006 900000000000451002 +1982262021 20080731 0 900000000000207008 309131002 25169009 0 118168003 900000000000011006 900000000000451002 +1982262021 20090131 1 900000000000207008 309131002 25169009 1 118168003 900000000000011006 900000000000451002 +1982262021 20100131 0 900000000000207008 309131002 25169009 1 118168003 900000000000011006 900000000000451002 +1982263027 20030131 1 900000000000207008 309131002 3057000 0 118169006 900000000000011006 900000000000451002 +1982263027 20080731 0 900000000000207008 309131002 3057000 0 118169006 900000000000011006 900000000000451002 +1982263027 20090131 1 900000000000207008 309131002 3057000 1 118169006 900000000000011006 900000000000451002 +1982263027 20100131 0 900000000000207008 309131002 3057000 1 118169006 900000000000011006 900000000000451002 +1982263027 20100731 1 900000000000207008 309131002 3057000 1 118169006 900000000000011006 900000000000451002 +1982264022 20030131 1 900000000000207008 309132009 41216001 0 118169006 900000000000011006 900000000000451002 +1982264022 20080731 0 900000000000207008 309132009 41216001 0 118169006 900000000000011006 900000000000451002 +1982264022 20090131 1 900000000000207008 309132009 41216001 1 118169006 900000000000011006 900000000000451002 +1982265023 20030131 1 900000000000207008 309132009 85756007 0 118169006 900000000000011006 900000000000451002 +1982265023 20080731 0 900000000000207008 309132009 85756007 0 118169006 900000000000011006 900000000000451002 +1982266024 20030131 1 900000000000207008 309132009 65575008 0 118171006 900000000000011006 900000000000451002 +1982266024 20080731 0 900000000000207008 309132009 65575008 0 118171006 900000000000011006 900000000000451002 +1982266024 20090131 1 900000000000207008 309132009 65575008 1 118171006 900000000000011006 900000000000451002 +1982267026 20030131 1 900000000000207008 309133004 41216001 0 118169006 900000000000011006 900000000000451002 +1982267026 20080731 0 900000000000207008 309133004 41216001 0 118169006 900000000000011006 900000000000451002 +1982267026 20090731 1 900000000000207008 309133004 41216001 1 118169006 900000000000011006 900000000000451002 +1982268020 20030131 1 900000000000207008 309133004 85756007 0 118169006 900000000000011006 900000000000451002 +1982268020 20080731 0 900000000000207008 309133004 85756007 0 118169006 900000000000011006 900000000000451002 +1982269028 20030131 1 900000000000207008 309133004 65801008 0 118171006 900000000000011006 900000000000451002 +1982269028 20080731 0 900000000000207008 309133004 65801008 0 118171006 900000000000011006 900000000000451002 +1982270027 20030131 1 900000000000207008 309134005 41216001 0 118169006 900000000000011006 900000000000451002 +1982270027 20080731 0 900000000000207008 309134005 41216001 0 118169006 900000000000011006 900000000000451002 +1982270027 20090131 1 900000000000207008 309134005 41216001 1 118169006 900000000000011006 900000000000451002 +1982271028 20030131 1 900000000000207008 309134005 85756007 0 118169006 900000000000011006 900000000000451002 +1982271028 20080731 0 900000000000207008 309134005 85756007 0 118169006 900000000000011006 900000000000451002 +1982272024 20030131 1 900000000000207008 309134005 301759007 0 118171006 900000000000011006 900000000000451002 +1982272024 20080731 0 900000000000207008 309134005 301759007 0 118171006 900000000000011006 900000000000451002 +1982272024 20090131 1 900000000000207008 309134005 301759007 1 118171006 900000000000011006 900000000000451002 +1982273025 20030131 1 900000000000207008 309135006 386152007 0 118168003 900000000000011006 900000000000451002 +1982273025 20190731 1 900000000000207008 309135006 386152007 1 118168003 900000000000011006 900000000000451002 +1982274020 20030131 1 900000000000207008 309135006 90264002 0 118169006 900000000000011006 900000000000451002 +1982274020 20080731 0 900000000000207008 309135006 90264002 0 118169006 900000000000011006 900000000000451002 +1982276022 20030131 1 900000000000207008 309137003 279572002 0 118169006 900000000000011006 900000000000451002 +1982276022 20080731 0 900000000000207008 309137003 279572002 0 118169006 900000000000011006 900000000000451002 +1982276022 20090131 1 900000000000207008 309137003 279572002 1 118169006 900000000000011006 900000000000451002 +1982276022 20140131 0 900000000000207008 309137003 279572002 1 118169006 900000000000011006 900000000000451002 +1982277029 20030131 1 900000000000207008 309137003 85756007 0 118169006 900000000000011006 900000000000451002 +1982277029 20080731 0 900000000000207008 309137003 85756007 0 118169006 900000000000011006 900000000000451002 +1982278023 20030131 1 900000000000207008 309137003 118958009 0 118171006 900000000000011006 900000000000451002 +1982278023 20080731 0 900000000000207008 309137003 118958009 0 118171006 900000000000011006 900000000000451002 +1982278023 20090131 1 900000000000207008 309137003 118958009 1 118171006 900000000000011006 900000000000451002 +1982278023 20140131 0 900000000000207008 309137003 118958009 1 118171006 900000000000011006 900000000000451002 +1982279026 20030131 1 900000000000207008 309138008 279572002 0 118169006 900000000000011006 900000000000451002 +1982279026 20080731 0 900000000000207008 309138008 279572002 0 118169006 900000000000011006 900000000000451002 +1982279026 20090731 1 900000000000207008 309138008 279572002 1 118169006 900000000000011006 900000000000451002 +1982279026 20140131 0 900000000000207008 309138008 279572002 1 118169006 900000000000011006 900000000000451002 +1982280028 20030131 1 900000000000207008 309138008 85756007 0 118169006 900000000000011006 900000000000451002 +1982280028 20080731 0 900000000000207008 309138008 85756007 0 118169006 900000000000011006 900000000000451002 +1982281029 20030131 1 900000000000207008 309138008 120001005 0 118171006 900000000000011006 900000000000451002 +1982281029 20080731 0 900000000000207008 309138008 120001005 0 118171006 900000000000011006 900000000000451002 +1982281029 20090731 1 900000000000207008 309138008 120001005 1 118171006 900000000000011006 900000000000451002 +1982281029 20140131 0 900000000000207008 309138008 120001005 1 118171006 900000000000011006 900000000000451002 +1982282020 20030131 1 900000000000207008 309139000 57671007 0 118169006 900000000000011006 900000000000451002 +1982282020 20190731 1 900000000000207008 309139000 57671007 1 118169006 900000000000011006 900000000000451002 +1982283026 20030131 1 900000000000207008 309140003 87644002 0 118169006 900000000000011006 900000000000451002 +1982283026 20190731 1 900000000000207008 309140003 87644002 1 118169006 900000000000011006 900000000000451002 +1982284021 20030131 1 900000000000207008 309141004 23451007 0 118169006 900000000000011006 900000000000451002 +1982284021 20190731 1 900000000000207008 309141004 23451007 1 118169006 900000000000011006 900000000000451002 +1982285022 20030131 1 900000000000207008 309142006 23451007 0 118169006 900000000000011006 900000000000451002 +1982285022 20080731 0 900000000000207008 309142006 23451007 0 118169006 900000000000011006 900000000000451002 +1982285022 20090131 1 900000000000207008 309142006 23451007 1 118169006 900000000000011006 900000000000451002 +1982286023 20030131 1 900000000000207008 309142006 85756007 0 118169006 900000000000011006 900000000000451002 +1982286023 20080731 0 900000000000207008 309142006 85756007 0 118169006 900000000000011006 900000000000451002 +1982287025 20030131 1 900000000000207008 309142006 274371008 0 118171006 900000000000011006 900000000000451002 +1982287025 20080731 0 900000000000207008 309142006 274371008 0 118171006 900000000000011006 900000000000451002 +1982287025 20090131 1 900000000000207008 309142006 274371008 1 118171006 900000000000011006 900000000000451002 +1982288024 20030131 1 900000000000207008 309143001 23451007 0 118169006 900000000000011006 900000000000451002 +1982288024 20080731 0 900000000000207008 309143001 23451007 0 118169006 900000000000011006 900000000000451002 +1982288024 20090731 1 900000000000207008 309143001 23451007 1 118169006 900000000000011006 900000000000451002 +1982289027 20030131 1 900000000000207008 309143001 85756007 0 118169006 900000000000011006 900000000000451002 +1982289027 20080731 0 900000000000207008 309143001 85756007 0 118169006 900000000000011006 900000000000451002 +1982290020 20030131 1 900000000000207008 309143001 31904001 0 118171006 900000000000011006 900000000000451002 +1982290020 20080731 0 900000000000207008 309143001 31904001 0 118171006 900000000000011006 900000000000451002 +1982290020 20090731 1 900000000000207008 309143001 31904001 1 118171006 900000000000011006 900000000000451002 +1982291024 20030131 1 900000000000207008 309144007 60894006 0 118169006 900000000000011006 900000000000451002 +1982291024 20080731 0 900000000000207008 309144007 60894006 0 118169006 900000000000011006 900000000000451002 +1982292028 20030131 1 900000000000207008 309145008 69748006 0 118169006 900000000000011006 900000000000451002 +1982292028 20080731 1 900000000000207008 309145008 69748006 1 118169006 900000000000011006 900000000000451002 +1982292028 20110731 0 900000000000207008 309145008 69748006 1 118169006 900000000000011006 900000000000451002 +1982293022 20030131 1 900000000000207008 309145008 85756007 0 118169006 900000000000011006 900000000000451002 +1982293022 20030731 0 900000000000207008 309145008 85756007 0 118169006 900000000000011006 900000000000451002 +1982294027 20030131 1 900000000000207008 309145008 33463005 0 370133003 900000000000011006 900000000000451002 +1982294027 20080731 1 900000000000207008 309145008 33463005 1 370133003 900000000000011006 900000000000451002 +1982294027 20110731 0 900000000000207008 309145008 33463005 1 370133003 900000000000011006 900000000000451002 +1982295026 20030131 1 900000000000207008 309146009 69748006 0 118169006 900000000000011006 900000000000451002 +1982295026 20080731 0 900000000000207008 309146009 69748006 0 118169006 900000000000011006 900000000000451002 +1982295026 20090131 1 900000000000207008 309146009 69748006 1 118169006 900000000000011006 900000000000451002 +1982296025 20030131 1 900000000000207008 309146009 85756007 0 118169006 900000000000011006 900000000000451002 +1982296025 20030731 0 900000000000207008 309146009 85756007 0 118169006 900000000000011006 900000000000451002 +1982297023 20030131 1 900000000000207008 309146009 48635004 0 118171006 900000000000011006 900000000000451002 +1982297023 20080731 0 900000000000207008 309146009 48635004 0 118171006 900000000000011006 900000000000451002 +1982297023 20090131 1 900000000000207008 309146009 48635004 1 118171006 900000000000011006 900000000000451002 +1982298029 20030131 1 900000000000207008 309146009 33463005 0 370133003 900000000000011006 900000000000451002 +1982298029 20040731 0 900000000000207008 309146009 33463005 0 370133003 900000000000011006 900000000000451002 +1982299021 20030131 1 900000000000207008 309147000 367643001 0 118168003 900000000000011006 900000000000451002 +1982299021 20080731 1 900000000000207008 309147000 367643001 1 118168003 900000000000011006 900000000000451002 +1982299021 20110731 0 900000000000207008 309147000 367643001 1 118168003 900000000000011006 900000000000451002 +1982300029 20030131 1 900000000000207008 309147000 69748006 0 118169006 900000000000011006 900000000000451002 +1982300029 20080731 1 900000000000207008 309147000 69748006 1 118169006 900000000000011006 900000000000451002 +1982300029 20110731 0 900000000000207008 309147000 69748006 1 118169006 900000000000011006 900000000000451002 +1982301025 20030131 1 900000000000207008 309147000 85756007 0 118169006 900000000000011006 900000000000451002 +1982301025 20030731 0 900000000000207008 309147000 85756007 0 118169006 900000000000011006 900000000000451002 +1982302021 20030131 1 900000000000207008 309147000 33463005 0 370133003 900000000000011006 900000000000451002 +1982302021 20080731 1 900000000000207008 309147000 33463005 1 370133003 900000000000011006 900000000000451002 +1982302021 20110731 0 900000000000207008 309147000 33463005 1 370133003 900000000000011006 900000000000451002 +1982303027 20030131 1 900000000000207008 309148005 69748006 0 118169006 900000000000011006 900000000000451002 +1982303027 20080731 0 900000000000207008 309148005 69748006 0 118169006 900000000000011006 900000000000451002 +1982303027 20090131 1 900000000000207008 309148005 69748006 1 118169006 900000000000011006 900000000000451002 +1982303027 20110731 0 900000000000207008 309148005 69748006 1 118169006 900000000000011006 900000000000451002 +1982304022 20030131 1 900000000000207008 309148005 85756007 0 118169006 900000000000011006 900000000000451002 +1982304022 20030731 0 900000000000207008 309148005 85756007 0 118169006 900000000000011006 900000000000451002 +1982305023 20030131 1 900000000000207008 309149002 111002 0 118169006 900000000000011006 900000000000451002 +1982305023 20190731 1 900000000000207008 309149002 111002 1 118169006 900000000000011006 900000000000451002 +1982306024 20030131 1 900000000000207008 309150002 111002 0 118169006 900000000000011006 900000000000451002 +1982306024 20080731 0 900000000000207008 309150002 111002 0 118169006 900000000000011006 900000000000451002 +1982306024 20090131 1 900000000000207008 309150002 111002 1 118169006 900000000000011006 900000000000451002 +1982307026 20030131 1 900000000000207008 309150002 85756007 0 118169006 900000000000011006 900000000000451002 +1982307026 20080731 0 900000000000207008 309150002 85756007 0 118169006 900000000000011006 900000000000451002 +1982308020 20030131 1 900000000000207008 309151003 111002 0 118169006 900000000000011006 900000000000451002 +1982308020 20080731 0 900000000000207008 309151003 111002 0 118169006 900000000000011006 900000000000451002 +1982308020 20090131 1 900000000000207008 309151003 111002 1 118169006 900000000000011006 900000000000451002 +1982309028 20030131 1 900000000000207008 309151003 85756007 0 118169006 900000000000011006 900000000000451002 +1982309028 20080731 0 900000000000207008 309151003 85756007 0 118169006 900000000000011006 900000000000451002 +1982310022 20030131 1 900000000000207008 309151003 87451000 0 118171006 900000000000011006 900000000000451002 +1982310022 20080731 0 900000000000207008 309151003 87451000 0 118171006 900000000000011006 900000000000451002 +1982310022 20090131 1 900000000000207008 309151003 87451000 1 118171006 900000000000011006 900000000000451002 +1982311021 20030131 1 900000000000207008 309153000 111002 0 118169006 900000000000011006 900000000000451002 +1982311021 20080731 0 900000000000207008 309153000 111002 0 118169006 900000000000011006 900000000000451002 +1982311021 20090731 1 900000000000207008 309153000 111002 1 118169006 900000000000011006 900000000000451002 +1982312025 20030131 1 900000000000207008 309153000 85756007 0 118169006 900000000000011006 900000000000451002 +1982312025 20080731 0 900000000000207008 309153000 85756007 0 118169006 900000000000011006 900000000000451002 +1982313024 20030131 1 900000000000207008 309153000 53304009 0 118171006 900000000000011006 900000000000451002 +1982313024 20080731 0 900000000000207008 309153000 53304009 0 118171006 900000000000011006 900000000000451002 +1982313024 20090731 1 900000000000207008 309153000 53304009 1 118171006 900000000000011006 900000000000451002 +1982314029 20030131 1 900000000000207008 309154006 56329008 0 118169006 900000000000011006 900000000000451002 +1982314029 20190731 1 900000000000207008 309154006 56329008 1 118169006 900000000000011006 900000000000451002 +1982316027 20030131 1 900000000000207008 309164002 58675001 0 118169006 900000000000011006 900000000000451002 +1982316027 20080731 1 900000000000207008 309164002 58675001 1 118169006 900000000000011006 900000000000451002 +1982317020 20030131 1 900000000000207008 309164002 285570007 0 118171006 900000000000011006 900000000000451002 +1982317020 20080731 1 900000000000207008 309164002 285570007 1 118171006 900000000000011006 900000000000451002 +1982318026 20030131 1 900000000000207008 309165001 117590005 0 118169006 900000000000011006 900000000000451002 +1982318026 20190731 1 900000000000207008 309165001 117590005 1 118169006 900000000000011006 900000000000451002 +1982319023 20030131 1 900000000000207008 309166000 117590005 0 118169006 900000000000011006 900000000000451002 +1982319023 20080731 1 900000000000207008 309166000 117590005 1 118169006 900000000000011006 900000000000451002 +1982320028 20030131 1 900000000000207008 309166000 312879004 0 118171006 900000000000011006 900000000000451002 +1982320028 20080731 1 900000000000207008 309166000 312879004 1 118171006 900000000000011006 900000000000451002 +1982321029 20030131 1 900000000000207008 309167009 25342003 0 118169006 900000000000011006 900000000000451002 +1982321029 20080731 0 900000000000207008 309167009 25342003 0 118169006 900000000000011006 900000000000451002 +1982321029 20090131 1 900000000000207008 309167009 25342003 1 118169006 900000000000011006 900000000000451002 +1982322020 20030131 1 900000000000207008 309167009 85756007 0 118169006 900000000000011006 900000000000451002 +1982322020 20080731 0 900000000000207008 309167009 85756007 0 118169006 900000000000011006 900000000000451002 +1982323026 20030131 1 900000000000207008 309167009 209055006 0 118171006 900000000000011006 900000000000451002 +1982323026 20080731 0 900000000000207008 309167009 209055006 0 118171006 900000000000011006 900000000000451002 +1982323026 20090131 1 900000000000207008 309167009 209055006 1 118171006 900000000000011006 900000000000451002 +1982324021 20030131 1 900000000000207008 309168004 58675001 0 118169006 900000000000011006 900000000000451002 +1982324021 20080731 0 900000000000207008 309168004 58675001 0 118169006 900000000000011006 900000000000451002 +1982324021 20090131 1 900000000000207008 309168004 58675001 1 118169006 900000000000011006 900000000000451002 +1982325022 20030131 1 900000000000207008 309169007 58675001 0 118169006 900000000000011006 900000000000451002 +1982325022 20080731 0 900000000000207008 309169007 58675001 0 118169006 900000000000011006 900000000000451002 +1982326023 20030131 1 900000000000207008 309169007 31232000 0 118171006 900000000000011006 900000000000451002 +1982326023 20080731 0 900000000000207008 309169007 31232000 0 118171006 900000000000011006 900000000000451002 +1982326023 20090131 1 900000000000207008 309169007 31232000 1 118171006 900000000000011006 900000000000451002 +1982327025 20030131 1 900000000000207008 309170008 82094008 0 118169006 900000000000011006 900000000000451002 +1982327025 20080731 0 900000000000207008 309170008 82094008 0 118169006 900000000000011006 900000000000451002 +1982327025 20090131 1 900000000000207008 309170008 82094008 1 118169006 900000000000011006 900000000000451002 +1982328024 20030131 1 900000000000207008 309171007 82094008 0 118169006 900000000000011006 900000000000451002 +1982328024 20080731 1 900000000000207008 309171007 82094008 1 118169006 900000000000011006 900000000000451002 +1982329027 20030131 1 900000000000207008 309171007 87200008 0 370133003 900000000000011006 900000000000451002 +1982329027 20080731 1 900000000000207008 309171007 87200008 1 370133003 900000000000011006 900000000000451002 +1982330021 20030131 1 900000000000207008 309172000 82094008 0 118169006 900000000000011006 900000000000451002 +1982330021 20030731 0 900000000000207008 309172000 82094008 0 118169006 900000000000011006 900000000000451002 +1982331020 20030131 1 900000000000207008 309172000 116025006 0 118171006 900000000000011006 900000000000451002 +1982331020 20080731 0 900000000000207008 309172000 116025006 0 118171006 900000000000011006 900000000000451002 +1982331020 20090131 1 900000000000207008 309172000 116025006 1 118171006 900000000000011006 900000000000451002 +1982332029 20030131 1 900000000000207008 309173005 82094008 0 118169006 900000000000011006 900000000000451002 +1982332029 20080731 0 900000000000207008 309173005 82094008 0 118169006 900000000000011006 900000000000451002 +1982333023 20030131 1 900000000000207008 309174004 82094008 0 118169006 900000000000011006 900000000000451002 +1982333023 20080731 0 900000000000207008 309174004 82094008 0 118169006 900000000000011006 900000000000451002 +1982334028 20030131 1 900000000000207008 309174004 312849006 0 118171006 900000000000011006 900000000000451002 +1982334028 20080731 0 900000000000207008 309174004 312849006 0 118171006 900000000000011006 900000000000451002 +1982334028 20090131 1 900000000000207008 309174004 312849006 1 118171006 900000000000011006 900000000000451002 +1982335027 20030131 1 900000000000207008 309175003 82094008 0 118169006 900000000000011006 900000000000451002 +1982335027 20030731 0 900000000000207008 309175003 82094008 0 118169006 900000000000011006 900000000000451002 +1982336026 20030131 1 900000000000207008 309175003 119746007 0 118171006 900000000000011006 900000000000451002 +1982336026 20080731 0 900000000000207008 309175003 119746007 0 118171006 900000000000011006 900000000000451002 +1982336026 20090731 1 900000000000207008 309175003 119746007 1 118171006 900000000000011006 900000000000451002 +1982337024 20030131 1 900000000000207008 309176002 955009 0 118169006 900000000000011006 900000000000451002 +1982337024 20080731 0 900000000000207008 309176002 955009 0 118169006 900000000000011006 900000000000451002 +1982337024 20090131 1 900000000000207008 309176002 955009 1 118169006 900000000000011006 900000000000451002 +1982338025 20030131 1 900000000000207008 309177006 82094008 0 118169006 900000000000011006 900000000000451002 +1982338025 20080731 0 900000000000207008 309177006 82094008 0 118169006 900000000000011006 900000000000451002 +1982339022 20030131 1 900000000000207008 309178001 45206002 0 118169006 900000000000011006 900000000000451002 +1982339022 20080731 0 900000000000207008 309178001 45206002 0 118169006 900000000000011006 900000000000451002 +1982339022 20090131 1 900000000000207008 309178001 45206002 1 118169006 900000000000011006 900000000000451002 +1982339022 20110131 0 900000000000207008 309178001 45206002 1 118169006 900000000000011006 900000000000451002 +1982339022 20110731 1 900000000000207008 309178001 45206002 1 118169006 900000000000011006 900000000000451002 +1982340024 20030131 1 900000000000207008 309178001 86273004 0 118171006 900000000000011006 900000000000451002 +1982340024 20080731 0 900000000000207008 309178001 86273004 0 118171006 900000000000011006 900000000000451002 +1982341023 20030131 1 900000000000207008 309179009 277160009 0 118168003 900000000000011006 900000000000451002 +1982341023 20080731 0 900000000000207008 309179009 277160009 0 118168003 900000000000011006 900000000000451002 +1982342027 20030131 1 900000000000207008 309179009 45206002 0 118169006 900000000000011006 900000000000451002 +1982342027 20080731 0 900000000000207008 309179009 45206002 0 118169006 900000000000011006 900000000000451002 +1982343021 20030131 1 900000000000207008 309180007 58675001 0 118169006 900000000000011006 900000000000451002 +1982343021 20080731 0 900000000000207008 309180007 58675001 0 118169006 900000000000011006 900000000000451002 +1982344026 20030131 1 900000000000207008 309180007 232539009 0 118171006 900000000000011006 900000000000451002 +1982344026 20080731 0 900000000000207008 309180007 232539009 0 118171006 900000000000011006 900000000000451002 +1982344026 20090131 1 900000000000207008 309180007 232539009 1 118171006 900000000000011006 900000000000451002 +1982348028 20030131 1 900000000000207008 309181006 59066005 0 118169006 900000000000011006 900000000000451002 +1982348028 20080731 0 900000000000207008 309181006 59066005 0 118169006 900000000000011006 900000000000451002 +1982348028 20090731 1 900000000000207008 309181006 59066005 1 118169006 900000000000011006 900000000000451002 +1982349020 20030131 1 900000000000207008 309181006 85756007 0 118169006 900000000000011006 900000000000451002 +1982349020 20040731 0 900000000000207008 309181006 85756007 0 118169006 900000000000011006 900000000000451002 +1982350020 20030131 1 900000000000207008 309181006 172659005 0 118171006 900000000000011006 900000000000451002 +1982350020 20080731 0 900000000000207008 309181006 172659005 0 118171006 900000000000011006 900000000000451002 +1982350020 20090731 1 900000000000207008 309181006 172659005 1 118171006 900000000000011006 900000000000451002 +1982351024 20030131 1 900000000000207008 309182004 58675001 0 118169006 900000000000011006 900000000000451002 +1982351024 20080731 0 900000000000207008 309182004 58675001 0 118169006 900000000000011006 900000000000451002 +1982352028 20030131 1 900000000000207008 309183009 58675001 0 118169006 900000000000011006 900000000000451002 +1982352028 20080731 0 900000000000207008 309183009 58675001 0 118169006 900000000000011006 900000000000451002 +1982353022 20030131 1 900000000000207008 309183009 72791001 0 118171006 900000000000011006 900000000000451002 +1982353022 20080731 0 900000000000207008 309183009 72791001 0 118171006 900000000000011006 900000000000451002 +1982353022 20090731 1 900000000000207008 309183009 72791001 1 118171006 900000000000011006 900000000000451002 +1982354027 20030131 1 900000000000207008 309184003 46105003 0 118169006 900000000000011006 900000000000451002 +1982354027 20080731 0 900000000000207008 309184003 46105003 0 118169006 900000000000011006 900000000000451002 +1982354027 20090131 1 900000000000207008 309184003 46105003 1 118169006 900000000000011006 900000000000451002 +1982355026 20030131 1 900000000000207008 309184003 86273004 0 118171006 900000000000011006 900000000000451002 +1982355026 20080731 0 900000000000207008 309184003 86273004 0 118171006 900000000000011006 900000000000451002 +1982356025 20030131 1 900000000000207008 309185002 74262004 0 118169006 900000000000011006 900000000000451002 +1982356025 20190731 1 900000000000207008 309185002 74262004 1 118169006 900000000000011006 900000000000451002 +1982357023 20030131 1 900000000000207008 309186001 74262004 0 118169006 900000000000011006 900000000000451002 +1982357023 20080731 0 900000000000207008 309186001 74262004 0 118169006 900000000000011006 900000000000451002 +1982357023 20090131 1 900000000000207008 309186001 74262004 1 118169006 900000000000011006 900000000000451002 +1982357023 20220630 0 900000000000207008 309186001 74262004 1 118169006 900000000000011006 900000000000451002 +1982358029 20030131 1 900000000000207008 309186001 85756007 0 118169006 900000000000011006 900000000000451002 +1982358029 20080731 0 900000000000207008 309186001 85756007 0 118169006 900000000000011006 900000000000451002 +1982359021 20030131 1 900000000000207008 309187005 38199008 0 118169006 900000000000011006 900000000000451002 +1982359021 20080731 0 900000000000207008 309187005 38199008 0 118169006 900000000000011006 900000000000451002 +1982359021 20090131 1 900000000000207008 309187005 38199008 1 118169006 900000000000011006 900000000000451002 +1982359021 20110731 0 900000000000207008 309187005 38199008 1 118169006 900000000000011006 900000000000451002 +1982360027 20030131 1 900000000000207008 309187005 85756007 0 118169006 900000000000011006 900000000000451002 +1982360027 20080731 0 900000000000207008 309187005 85756007 0 118169006 900000000000011006 900000000000451002 +1982361028 20030131 1 900000000000207008 309188000 74262004 0 118169006 900000000000011006 900000000000451002 +1982361028 20080731 0 900000000000207008 309188000 74262004 0 118169006 900000000000011006 900000000000451002 +1982362024 20030131 1 900000000000207008 309188000 85756007 0 118169006 900000000000011006 900000000000451002 +1982362024 20080731 0 900000000000207008 309188000 85756007 0 118169006 900000000000011006 900000000000451002 +1982363025 20030131 1 900000000000207008 309188000 304502009 0 118171006 900000000000011006 900000000000451002 +1982363025 20080731 0 900000000000207008 309188000 304502009 0 118171006 900000000000011006 900000000000451002 +1982363025 20090131 1 900000000000207008 309188000 304502009 1 118171006 900000000000011006 900000000000451002 +1982364020 20030131 1 900000000000207008 309189008 74262004 0 118169006 900000000000011006 900000000000451002 +1982364020 20080731 0 900000000000207008 309189008 74262004 0 118169006 900000000000011006 900000000000451002 +1982365021 20030131 1 900000000000207008 309189008 85756007 0 118169006 900000000000011006 900000000000451002 +1982365021 20080731 0 900000000000207008 309189008 85756007 0 118169006 900000000000011006 900000000000451002 +1982366022 20030131 1 900000000000207008 309189008 177124000 0 118171006 900000000000011006 900000000000451002 +1982366022 20080731 0 900000000000207008 309189008 177124000 0 118171006 900000000000011006 900000000000451002 +1982366022 20090131 1 900000000000207008 309189008 177124000 1 118171006 900000000000011006 900000000000451002 +1982367029 20030131 1 900000000000207008 309190004 74262004 0 118169006 900000000000011006 900000000000451002 +1982367029 20080731 0 900000000000207008 309190004 74262004 0 118169006 900000000000011006 900000000000451002 +1982368023 20030131 1 900000000000207008 309190004 75535001 0 118169006 900000000000011006 900000000000451002 +1982368023 20080731 0 900000000000207008 309190004 75535001 0 118169006 900000000000011006 900000000000451002 +1982369026 20030131 1 900000000000207008 309190004 85756007 0 118169006 900000000000011006 900000000000451002 +1982369026 20080731 0 900000000000207008 309190004 85756007 0 118169006 900000000000011006 900000000000451002 +1982370025 20030131 1 900000000000207008 309190004 65801008 0 118171006 900000000000011006 900000000000451002 +1982370025 20080731 0 900000000000207008 309190004 65801008 0 118171006 900000000000011006 900000000000451002 +1982372022 20030131 1 900000000000207008 309191000 74262004 0 118169006 900000000000011006 900000000000451002 +1982372022 20080731 0 900000000000207008 309191000 74262004 0 118169006 900000000000011006 900000000000451002 +1982373028 20030131 1 900000000000207008 309191000 85756007 0 118169006 900000000000011006 900000000000451002 +1982373028 20080731 0 900000000000207008 309191000 85756007 0 118169006 900000000000011006 900000000000451002 +1982374023 20030131 1 900000000000207008 309191000 90750001 0 118171006 900000000000011006 900000000000451002 +1982374023 20080731 0 900000000000207008 309191000 90750001 0 118171006 900000000000011006 900000000000451002 +1982374023 20090131 1 900000000000207008 309191000 90750001 1 118171006 900000000000011006 900000000000451002 +1982374023 20090731 0 900000000000207008 309191000 90750001 1 118171006 900000000000011006 900000000000451002 +1982374023 20100131 1 900000000000207008 309191000 90750001 1 118171006 900000000000011006 900000000000451002 +1982375024 20030131 1 900000000000207008 309192007 74262004 0 118169006 900000000000011006 900000000000451002 +1982375024 20080731 0 900000000000207008 309192007 74262004 0 118169006 900000000000011006 900000000000451002 +1982376020 20030131 1 900000000000207008 309192007 85756007 0 118169006 900000000000011006 900000000000451002 +1982376020 20080731 0 900000000000207008 309192007 85756007 0 118169006 900000000000011006 900000000000451002 +1982377027 20030131 1 900000000000207008 309192007 173422009 0 118171006 900000000000011006 900000000000451002 +1982377027 20080731 0 900000000000207008 309192007 173422009 0 118171006 900000000000011006 900000000000451002 +1982377027 20090131 1 900000000000207008 309192007 173422009 1 118171006 900000000000011006 900000000000451002 +1982378021 20030131 1 900000000000207008 309193002 58675001 0 118169006 900000000000011006 900000000000451002 +1982378021 20080731 0 900000000000207008 309193002 58675001 0 118169006 900000000000011006 900000000000451002 +1982379029 20030131 1 900000000000207008 309193002 16299004 0 118171006 900000000000011006 900000000000451002 +1982379029 20080731 0 900000000000207008 309193002 16299004 0 118171006 900000000000011006 900000000000451002 +1982379029 20090131 1 900000000000207008 309193002 16299004 1 118171006 900000000000011006 900000000000451002 +1982380026 20030131 1 900000000000207008 309199003 122865005 0 118169006 900000000000011006 900000000000451002 +1982380026 20080731 1 900000000000207008 309199003 122865005 1 118169006 900000000000011006 900000000000451002 +1982381027 20030131 1 900000000000207008 309199003 33463005 0 370133003 900000000000011006 900000000000451002 +1982381027 20070731 0 900000000000207008 309199003 33463005 0 370133003 900000000000011006 900000000000451002 +1982382023 20030131 1 900000000000207008 309200000 34402009 0 118169006 900000000000011006 900000000000451002 +1982382023 20080731 0 900000000000207008 309200000 34402009 0 118169006 900000000000011006 900000000000451002 +1982382023 20090131 1 900000000000207008 309200000 34402009 1 118169006 900000000000011006 900000000000451002 +1982382023 20110731 0 900000000000207008 309200000 34402009 1 118169006 900000000000011006 900000000000451002 +1982383029 20030131 1 900000000000207008 309200000 85756007 0 118169006 900000000000011006 900000000000451002 +1982383029 20080731 0 900000000000207008 309200000 85756007 0 118169006 900000000000011006 900000000000451002 +1982384024 20030131 1 900000000000207008 309201001 122865005 0 118169006 900000000000011006 900000000000451002 +1982384024 20040131 0 900000000000207008 309201001 122865005 0 118169006 900000000000011006 900000000000451002 +1982385020 20030131 1 900000000000207008 309201001 8121009 0 370133003 900000000000011006 900000000000451002 +1982385020 20040731 0 900000000000207008 309201001 8121009 0 370133003 900000000000011006 900000000000451002 +1982386021 20030131 1 900000000000207008 309202008 122865005 0 118169006 900000000000011006 900000000000451002 +1982386021 20080731 0 900000000000207008 309202008 122865005 0 118169006 900000000000011006 900000000000451002 +1982386021 20090131 1 900000000000207008 309202008 122865005 1 118169006 900000000000011006 900000000000451002 +1982386021 20110731 0 900000000000207008 309202008 122865005 1 118169006 900000000000011006 900000000000451002 +1982387028 20030131 1 900000000000207008 309203003 10200004 0 118169006 900000000000011006 900000000000451002 +1982387028 20080731 0 900000000000207008 309203003 10200004 0 118169006 900000000000011006 900000000000451002 +1982387028 20090131 1 900000000000207008 309203003 10200004 1 118169006 900000000000011006 900000000000451002 +1982388022 20030131 1 900000000000207008 309203003 122865005 0 118169006 900000000000011006 900000000000451002 +1982388022 20030731 0 900000000000207008 309203003 122865005 0 118169006 900000000000011006 900000000000451002 +1982389025 20030131 1 900000000000207008 309203003 85756007 0 118169006 900000000000011006 900000000000451002 +1982389025 20080731 0 900000000000207008 309203003 85756007 0 118169006 900000000000011006 900000000000451002 +1982390023 20030131 1 900000000000207008 309203003 86259008 0 118171006 900000000000011006 900000000000451002 +1982390023 20080731 0 900000000000207008 309203003 86259008 0 118171006 900000000000011006 900000000000451002 +1982390023 20090131 1 900000000000207008 309203003 86259008 1 118171006 900000000000011006 900000000000451002 +1982391022 20030131 1 900000000000207008 309204009 10200004 0 118169006 900000000000011006 900000000000451002 +1982391022 20080731 0 900000000000207008 309204009 10200004 0 118169006 900000000000011006 900000000000451002 +1982391022 20090131 1 900000000000207008 309204009 10200004 1 118169006 900000000000011006 900000000000451002 +1982391022 20110731 0 900000000000207008 309204009 10200004 1 118169006 900000000000011006 900000000000451002 +1982392026 20030131 1 900000000000207008 309204009 122865005 0 118169006 900000000000011006 900000000000451002 +1982392026 20080731 0 900000000000207008 309204009 122865005 0 118169006 900000000000011006 900000000000451002 +1982393020 20030131 1 900000000000207008 309205005 122865005 0 118169006 900000000000011006 900000000000451002 +1982393020 20030731 0 900000000000207008 309205005 122865005 0 118169006 900000000000011006 900000000000451002 +1982394025 20030131 1 900000000000207008 309205005 34707002 0 118169006 900000000000011006 900000000000451002 +1982394025 20030731 0 900000000000207008 309205005 34707002 0 118169006 900000000000011006 900000000000451002 +1982395029 20030131 1 900000000000207008 309205005 85756007 0 118169006 900000000000011006 900000000000451002 +1982395029 20080731 0 900000000000207008 309205005 85756007 0 118169006 900000000000011006 900000000000451002 +1982396028 20030131 1 900000000000207008 309205005 38102005 0 118171006 900000000000011006 900000000000451002 +1982396028 20080731 0 900000000000207008 309205005 38102005 0 118171006 900000000000011006 900000000000451002 +1982396028 20090731 1 900000000000207008 309205005 38102005 1 118171006 900000000000011006 900000000000451002 +1982397021 20030131 1 900000000000207008 309206006 122865005 0 118169006 900000000000011006 900000000000451002 +1982397021 20030731 0 900000000000207008 309206006 122865005 0 118169006 900000000000011006 900000000000451002 +1982398027 20030131 1 900000000000207008 309206006 15776009 0 118169006 900000000000011006 900000000000451002 +1982398027 20080731 0 900000000000207008 309206006 15776009 0 118169006 900000000000011006 900000000000451002 +1982398027 20090131 1 900000000000207008 309206006 15776009 1 118169006 900000000000011006 900000000000451002 +1982399024 20030131 1 900000000000207008 309206006 85756007 0 118169006 900000000000011006 900000000000451002 +1982399024 20080731 0 900000000000207008 309206006 85756007 0 118169006 900000000000011006 900000000000451002 +1982400028 20030131 1 900000000000207008 309206006 32774009 0 118171006 900000000000011006 900000000000451002 +1982400028 20080731 0 900000000000207008 309206006 32774009 0 118171006 900000000000011006 900000000000451002 +1982400028 20090131 1 900000000000207008 309206006 32774009 1 118171006 900000000000011006 900000000000451002 +1982401029 20030131 1 900000000000207008 309207002 122865005 0 118169006 900000000000011006 900000000000451002 +1982401029 20030731 0 900000000000207008 309207002 122865005 0 118169006 900000000000011006 900000000000451002 +1982402020 20030131 1 900000000000207008 309207002 85756007 0 118169006 900000000000011006 900000000000451002 +1982402020 20080731 0 900000000000207008 309207002 85756007 0 118169006 900000000000011006 900000000000451002 +1982403026 20030131 1 900000000000207008 309207002 29481005 0 118171006 900000000000011006 900000000000451002 +1982403026 20080731 0 900000000000207008 309207002 29481005 0 118171006 900000000000011006 900000000000451002 +1982403026 20090131 1 900000000000207008 309207002 29481005 1 118171006 900000000000011006 900000000000451002 +1982404021 20030131 1 900000000000207008 309208007 122865005 0 118169006 900000000000011006 900000000000451002 +1982404021 20030731 0 900000000000207008 309208007 122865005 0 118169006 900000000000011006 900000000000451002 +1982405022 20030131 1 900000000000207008 309208007 27398004 0 118169006 900000000000011006 900000000000451002 +1982405022 20080731 0 900000000000207008 309208007 27398004 0 118169006 900000000000011006 900000000000451002 +1982405022 20090131 1 900000000000207008 309208007 27398004 1 118169006 900000000000011006 900000000000451002 +1982406023 20030131 1 900000000000207008 309208007 17444001 0 118171006 900000000000011006 900000000000451002 +1982406023 20080731 0 900000000000207008 309208007 17444001 0 118171006 900000000000011006 900000000000451002 +1982406023 20090131 1 900000000000207008 309208007 17444001 1 118171006 900000000000011006 900000000000451002 +1982407025 20030131 1 900000000000207008 309209004 32849002 0 118169006 900000000000011006 900000000000451002 +1982407025 20080731 0 900000000000207008 309209004 32849002 0 118169006 900000000000011006 900000000000451002 +1982407025 20090131 1 900000000000207008 309209004 32849002 1 118169006 900000000000011006 900000000000451002 +1982408024 20030131 1 900000000000207008 309209004 85756007 0 118169006 900000000000011006 900000000000451002 +1982408024 20080731 0 900000000000207008 309209004 85756007 0 118169006 900000000000011006 900000000000451002 +1982409027 20030131 1 900000000000207008 309209004 32218000 0 118171006 900000000000011006 900000000000451002 +1982409027 20080731 0 900000000000207008 309209004 32218000 0 118171006 900000000000011006 900000000000451002 +1982409027 20090131 1 900000000000207008 309209004 32218000 1 118171006 900000000000011006 900000000000451002 +1982410021 20030131 1 900000000000207008 309210009 32849002 0 118169006 900000000000011006 900000000000451002 +1982410021 20080731 0 900000000000207008 309210009 32849002 0 118169006 900000000000011006 900000000000451002 +1982410021 20090131 1 900000000000207008 309210009 32849002 1 118169006 900000000000011006 900000000000451002 +1982411020 20030131 1 900000000000207008 309210009 49230008 0 118171006 900000000000011006 900000000000451002 +1982411020 20080731 0 900000000000207008 309210009 49230008 0 118171006 900000000000011006 900000000000451002 +1982412029 20030131 1 900000000000207008 309211008 24065009 0 118169006 900000000000011006 900000000000451002 +1982412029 20080731 0 900000000000207008 309211008 24065009 0 118169006 900000000000011006 900000000000451002 +1982413023 20030131 1 900000000000207008 309211008 79121003 0 118171006 900000000000011006 900000000000451002 +1982413023 20080731 0 900000000000207008 309211008 79121003 0 118171006 900000000000011006 900000000000451002 +1982413023 20090131 1 900000000000207008 309211008 79121003 1 118171006 900000000000011006 900000000000451002 +1982414028 20030131 1 900000000000207008 309212001 24065009 0 118169006 900000000000011006 900000000000451002 +1982414028 20080731 0 900000000000207008 309212001 24065009 0 118169006 900000000000011006 900000000000451002 +1982415027 20030131 1 900000000000207008 309212001 66051006 0 118169006 900000000000011006 900000000000451002 +1982415027 20080731 1 900000000000207008 309212001 66051006 1 118169006 900000000000011006 900000000000451002 +1982416026 20030131 1 900000000000207008 309212001 79121003 0 118171006 900000000000011006 900000000000451002 +1982416026 20080731 1 900000000000207008 309212001 79121003 1 118171006 900000000000011006 900000000000451002 +1982417024 20030131 1 900000000000207008 309213006 122865005 0 118169006 900000000000011006 900000000000451002 +1982417024 20030731 0 900000000000207008 309213006 122865005 0 118169006 900000000000011006 900000000000451002 +1982418025 20030131 1 900000000000207008 309213006 235157009 0 118171006 900000000000011006 900000000000451002 +1982418025 20080731 1 900000000000207008 309213006 235157009 1 118171006 900000000000011006 900000000000451002 +1982419022 20030131 1 900000000000207008 309214000 24065009 0 118169006 900000000000011006 900000000000451002 +1982419022 20080731 0 900000000000207008 309214000 24065009 0 118169006 900000000000011006 900000000000451002 +1982420027 20030131 1 900000000000207008 309214000 414003 0 118169006 900000000000011006 900000000000451002 +1982420027 20080731 1 900000000000207008 309214000 414003 1 118169006 900000000000011006 900000000000451002 +1982421028 20030131 1 900000000000207008 309214000 79121003 0 118171006 900000000000011006 900000000000451002 +1982421028 20080731 1 900000000000207008 309214000 79121003 1 118171006 900000000000011006 900000000000451002 +1982422024 20030131 1 900000000000207008 309215004 56208002 0 118168003 900000000000011006 900000000000451002 +1982422024 20080731 0 900000000000207008 309215004 56208002 0 118168003 900000000000011006 900000000000451002 +1982422024 20090131 1 900000000000207008 309215004 56208002 1 118168003 900000000000011006 900000000000451002 +1982423025 20030131 1 900000000000207008 309215004 24065009 0 118169006 900000000000011006 900000000000451002 +1982423025 20080731 0 900000000000207008 309215004 24065009 0 118169006 900000000000011006 900000000000451002 +1982424020 20030131 1 900000000000207008 309216003 30315005 0 118169006 900000000000011006 900000000000451002 +1982424020 20080731 0 900000000000207008 309216003 30315005 0 118169006 900000000000011006 900000000000451002 +1982425021 20030131 1 900000000000207008 309216003 85756007 0 118169006 900000000000011006 900000000000451002 +1982425021 20080731 0 900000000000207008 309216003 85756007 0 118169006 900000000000011006 900000000000451002 +1982426022 20030131 1 900000000000207008 309216003 116154003 0 118170007 900000000000011006 900000000000451002 +1982426022 20040731 0 900000000000207008 309216003 116154003 0 118170007 900000000000011006 900000000000451002 +1982427029 20030131 1 900000000000207008 309216003 235261009 0 118171006 900000000000011006 900000000000451002 +1982427029 20080731 0 900000000000207008 309216003 235261009 0 118171006 900000000000011006 900000000000451002 +1982427029 20090131 1 900000000000207008 309216003 235261009 1 118171006 900000000000011006 900000000000451002 +1982428023 20030131 1 900000000000207008 309217007 30315005 0 118169006 900000000000011006 900000000000451002 +1982428023 20080731 0 900000000000207008 309217007 30315005 0 118169006 900000000000011006 900000000000451002 +1982429026 20030131 1 900000000000207008 309217007 85756007 0 118169006 900000000000011006 900000000000451002 +1982429026 20080731 0 900000000000207008 309217007 85756007 0 118169006 900000000000011006 900000000000451002 +1982430020 20030131 1 900000000000207008 309217007 116154003 0 118170007 900000000000011006 900000000000451002 +1982430020 20040731 0 900000000000207008 309217007 116154003 0 118170007 900000000000011006 900000000000451002 +1982431024 20030131 1 900000000000207008 309217007 299694009 0 118171006 900000000000011006 900000000000451002 +1982431024 20080731 0 900000000000207008 309217007 299694009 0 118171006 900000000000011006 900000000000451002 +1982431024 20090131 1 900000000000207008 309217007 299694009 1 118171006 900000000000011006 900000000000451002 +1982432028 20030131 1 900000000000207008 309218002 30315005 0 118169006 900000000000011006 900000000000451002 +1982432028 20080731 0 900000000000207008 309218002 30315005 0 118169006 900000000000011006 900000000000451002 +1982433022 20030131 1 900000000000207008 309218002 85756007 0 118169006 900000000000011006 900000000000451002 +1982433022 20080731 0 900000000000207008 309218002 85756007 0 118169006 900000000000011006 900000000000451002 +1982434027 20030131 1 900000000000207008 309218002 116154003 0 118170007 900000000000011006 900000000000451002 +1982434027 20040731 0 900000000000207008 309218002 116154003 0 118170007 900000000000011006 900000000000451002 +1982435026 20030131 1 900000000000207008 309218002 51346007 0 118171006 900000000000011006 900000000000451002 +1982435026 20080731 0 900000000000207008 309218002 51346007 0 118171006 900000000000011006 900000000000451002 +1982435026 20090131 1 900000000000207008 309218002 51346007 1 118171006 900000000000011006 900000000000451002 +1982436025 20030131 1 900000000000207008 309219005 30315005 0 118169006 900000000000011006 900000000000451002 +1982436025 20080731 0 900000000000207008 309219005 30315005 0 118169006 900000000000011006 900000000000451002 +1982437023 20030131 1 900000000000207008 309219005 85756007 0 118169006 900000000000011006 900000000000451002 +1982437023 20080731 0 900000000000207008 309219005 85756007 0 118169006 900000000000011006 900000000000451002 +1982438029 20030131 1 900000000000207008 309219005 116154003 0 118170007 900000000000011006 900000000000451002 +1982438029 20040731 0 900000000000207008 309219005 116154003 0 118170007 900000000000011006 900000000000451002 +1982439021 20030131 1 900000000000207008 309219005 299693003 0 118171006 900000000000011006 900000000000451002 +1982439021 20080731 0 900000000000207008 309219005 299693003 0 118171006 900000000000011006 900000000000451002 +1982439021 20090131 1 900000000000207008 309219005 299693003 1 118171006 900000000000011006 900000000000451002 +1982440023 20030131 1 900000000000207008 309220004 30315005 0 118169006 900000000000011006 900000000000451002 +1982440023 20080731 0 900000000000207008 309220004 30315005 0 118169006 900000000000011006 900000000000451002 +1982440023 20090731 1 900000000000207008 309220004 30315005 1 118169006 900000000000011006 900000000000451002 +1982441022 20030131 1 900000000000207008 309220004 85756007 0 118169006 900000000000011006 900000000000451002 +1982441022 20080731 0 900000000000207008 309220004 85756007 0 118169006 900000000000011006 900000000000451002 +1982442026 20030131 1 900000000000207008 309220004 116154003 0 118170007 900000000000011006 900000000000451002 +1982442026 20040731 0 900000000000207008 309220004 116154003 0 118170007 900000000000011006 900000000000451002 +1982443020 20030131 1 900000000000207008 309220004 107938000 0 118171006 900000000000011006 900000000000451002 +1982443020 20080731 0 900000000000207008 309220004 107938000 0 118171006 900000000000011006 900000000000451002 +1982443020 20090731 1 900000000000207008 309220004 107938000 1 118171006 900000000000011006 900000000000451002 +1982446028 20030131 1 900000000000207008 309221000 85756007 0 118169006 900000000000011006 900000000000451002 +1982446028 20080731 0 900000000000207008 309221000 85756007 0 118169006 900000000000011006 900000000000451002 +1982447021 20030131 1 900000000000207008 309221000 85774003 0 118169006 900000000000011006 900000000000451002 +1982447021 20080731 0 900000000000207008 309221000 85774003 0 118169006 900000000000011006 900000000000451002 +1982447021 20090131 1 900000000000207008 309221000 85774003 1 118169006 900000000000011006 900000000000451002 +1982448027 20030131 1 900000000000207008 309221000 116154003 0 118170007 900000000000011006 900000000000451002 +1982448027 20040731 0 900000000000207008 309221000 116154003 0 118170007 900000000000011006 900000000000451002 +1982449024 20030131 1 900000000000207008 309221000 65801008 0 118171006 900000000000011006 900000000000451002 +1982449024 20080731 0 900000000000207008 309221000 65801008 0 118171006 900000000000011006 900000000000451002 +1982450024 20030131 1 900000000000207008 309222007 66754008 0 118169006 900000000000011006 900000000000451002 +1982450024 20190731 1 900000000000207008 309222007 66754008 1 118169006 900000000000011006 900000000000451002 +1982451023 20030131 1 900000000000207008 309222007 85756007 0 118169006 900000000000011006 900000000000451002 +1982451023 20080731 0 900000000000207008 309222007 85756007 0 118169006 900000000000011006 900000000000451002 +1982452027 20030131 1 900000000000207008 309223002 71854001 0 118169006 900000000000011006 900000000000451002 +1982452027 20080731 0 900000000000207008 309223002 71854001 0 118169006 900000000000011006 900000000000451002 +1982452027 20090731 1 900000000000207008 309223002 71854001 1 118169006 900000000000011006 900000000000451002 +1982453021 20030131 1 900000000000207008 309223002 85756007 0 118169006 900000000000011006 900000000000451002 +1982453021 20080731 0 900000000000207008 309223002 85756007 0 118169006 900000000000011006 900000000000451002 +1982454026 20030131 1 900000000000207008 309223002 23968004 0 118171006 900000000000011006 900000000000451002 +1982454026 20080731 0 900000000000207008 309223002 23968004 0 118171006 900000000000011006 900000000000451002 +1982454026 20090731 1 900000000000207008 309223002 23968004 1 118171006 900000000000011006 900000000000451002 +1982455025 20030131 1 900000000000207008 309224008 71854001 0 118169006 900000000000011006 900000000000451002 +1982455025 20080731 0 900000000000207008 309224008 71854001 0 118169006 900000000000011006 900000000000451002 +1982455025 20090131 1 900000000000207008 309224008 71854001 1 118169006 900000000000011006 900000000000451002 +1982456029 20030131 1 900000000000207008 309224008 85756007 0 118169006 900000000000011006 900000000000451002 +1982456029 20080731 0 900000000000207008 309224008 85756007 0 118169006 900000000000011006 900000000000451002 +1982457022 20030131 1 900000000000207008 309225009 71854001 0 118169006 900000000000011006 900000000000451002 +1982457022 20080731 0 900000000000207008 309225009 71854001 0 118169006 900000000000011006 900000000000451002 +1982457022 20090131 1 900000000000207008 309225009 71854001 1 118169006 900000000000011006 900000000000451002 +1982458028 20030131 1 900000000000207008 309225009 85756007 0 118169006 900000000000011006 900000000000451002 +1982458028 20080731 0 900000000000207008 309225009 85756007 0 118169006 900000000000011006 900000000000451002 +1982459020 20030131 1 900000000000207008 309225009 76164006 0 118171006 900000000000011006 900000000000451002 +1982459020 20080731 0 900000000000207008 309225009 76164006 0 118171006 900000000000011006 900000000000451002 +1982459020 20090131 1 900000000000207008 309225009 76164006 1 118171006 900000000000011006 900000000000451002 +1982460026 20030131 1 900000000000207008 309226005 277160009 0 118168003 900000000000011006 900000000000451002 +1982460026 20080731 0 900000000000207008 309226005 277160009 0 118168003 900000000000011006 900000000000451002 +1982461027 20030131 1 900000000000207008 309226005 71854001 0 118169006 900000000000011006 900000000000451002 +1982461027 20080731 0 900000000000207008 309226005 71854001 0 118169006 900000000000011006 900000000000451002 +1982461027 20090131 1 900000000000207008 309226005 71854001 1 118169006 900000000000011006 900000000000451002 +1982462023 20030131 1 900000000000207008 309226005 85756007 0 118169006 900000000000011006 900000000000451002 +1982462023 20080731 0 900000000000207008 309226005 85756007 0 118169006 900000000000011006 900000000000451002 +1982463029 20030131 1 900000000000207008 309227001 277160009 0 118168003 900000000000011006 900000000000451002 +1982463029 20080731 0 900000000000207008 309227001 277160009 0 118168003 900000000000011006 900000000000451002 +1982464024 20030131 1 900000000000207008 309227001 60184004 0 118169006 900000000000011006 900000000000451002 +1982464024 20080731 0 900000000000207008 309227001 60184004 0 118169006 900000000000011006 900000000000451002 +1982464024 20090131 1 900000000000207008 309227001 60184004 1 118169006 900000000000011006 900000000000451002 +1982465020 20030131 1 900000000000207008 309227001 85756007 0 118169006 900000000000011006 900000000000451002 +1982465020 20080731 0 900000000000207008 309227001 85756007 0 118169006 900000000000011006 900000000000451002 +1982481026 20030131 1 900000000000207008 309260003 60184004 0 118169006 900000000000011006 900000000000451002 +1982481026 20080731 1 900000000000207008 309260003 60184004 1 118169006 900000000000011006 900000000000451002 +1982482022 20030131 1 900000000000207008 309260003 85756007 0 118169006 900000000000011006 900000000000451002 +1982482022 20080731 0 900000000000207008 309260003 85756007 0 118169006 900000000000011006 900000000000451002 +1982483028 20030131 1 900000000000207008 309260003 76164006 0 118171006 900000000000011006 900000000000451002 +1982483028 20080731 1 900000000000207008 309260003 76164006 1 118171006 900000000000011006 900000000000451002 +1982484023 20030131 1 900000000000207008 309261004 60184004 0 118169006 900000000000011006 900000000000451002 +1982484023 20080731 0 900000000000207008 309261004 60184004 0 118169006 900000000000011006 900000000000451002 +1982484023 20090131 1 900000000000207008 309261004 60184004 1 118169006 900000000000011006 900000000000451002 +1982485024 20030131 1 900000000000207008 309261004 24420007 0 118171006 900000000000011006 900000000000451002 +1982485024 20030731 0 900000000000207008 309261004 24420007 0 118171006 900000000000011006 900000000000451002 +1982486020 20030131 1 900000000000207008 309262006 34402009 0 118169006 900000000000011006 900000000000451002 +1982486020 20080731 0 900000000000207008 309262006 34402009 0 118169006 900000000000011006 900000000000451002 +1982486020 20090131 1 900000000000207008 309262006 34402009 1 118169006 900000000000011006 900000000000451002 +1982486020 20110731 0 900000000000207008 309262006 34402009 1 118169006 900000000000011006 900000000000451002 +1982487027 20030131 1 900000000000207008 309262006 85756007 0 118169006 900000000000011006 900000000000451002 +1982487027 20080731 0 900000000000207008 309262006 85756007 0 118169006 900000000000011006 900000000000451002 +1982488021 20030131 1 900000000000207008 309262006 54686006 0 118171006 900000000000011006 900000000000451002 +1982488021 20080731 0 900000000000207008 309262006 54686006 0 118171006 900000000000011006 900000000000451002 +1982488021 20090131 1 900000000000207008 309262006 54686006 1 118171006 900000000000011006 900000000000451002 +1982488021 20110731 0 900000000000207008 309262006 54686006 1 118171006 900000000000011006 900000000000451002 +1982489029 20030131 1 900000000000207008 309263001 277160009 0 118168003 900000000000011006 900000000000451002 +1982489029 20080731 0 900000000000207008 309263001 277160009 0 118168003 900000000000011006 900000000000451002 +1982490022 20030131 1 900000000000207008 309263001 34402009 0 118169006 900000000000011006 900000000000451002 +1982490022 20080731 0 900000000000207008 309263001 34402009 0 118169006 900000000000011006 900000000000451002 +1982490022 20090131 1 900000000000207008 309263001 34402009 1 118169006 900000000000011006 900000000000451002 +1982491021 20030131 1 900000000000207008 309263001 85756007 0 118169006 900000000000011006 900000000000451002 +1982491021 20080731 0 900000000000207008 309263001 85756007 0 118169006 900000000000011006 900000000000451002 +1982492025 20030131 1 900000000000207008 309264007 34402009 0 118169006 900000000000011006 900000000000451002 +1982492025 20080731 0 900000000000207008 309264007 34402009 0 118169006 900000000000011006 900000000000451002 +1982492025 20090131 1 900000000000207008 309264007 34402009 1 118169006 900000000000011006 900000000000451002 +1982492025 20100131 0 900000000000207008 309264007 34402009 1 118169006 900000000000011006 900000000000451002 +1982492025 20100731 1 900000000000207008 309264007 34402009 1 118169006 900000000000011006 900000000000451002 +1982493024 20030131 1 900000000000207008 309264007 85756007 0 118169006 900000000000011006 900000000000451002 +1982493024 20080731 0 900000000000207008 309264007 85756007 0 118169006 900000000000011006 900000000000451002 +1982494029 20030131 1 900000000000207008 309264007 87677003 0 118171006 900000000000011006 900000000000451002 +1982494029 20080731 0 900000000000207008 309264007 87677003 0 118171006 900000000000011006 900000000000451002 +1982494029 20090131 1 900000000000207008 309264007 87677003 1 118171006 900000000000011006 900000000000451002 +1982494029 20100131 0 900000000000207008 309264007 87677003 1 118171006 900000000000011006 900000000000451002 +1982494029 20100731 1 900000000000207008 309264007 87677003 1 118171006 900000000000011006 900000000000451002 +1982495028 20030131 1 900000000000207008 309265008 53505006 0 118169006 900000000000011006 900000000000451002 +1982495028 20080731 0 900000000000207008 309265008 53505006 0 118169006 900000000000011006 900000000000451002 +1982495028 20090131 1 900000000000207008 309265008 53505006 1 118169006 900000000000011006 900000000000451002 +1982496027 20030131 1 900000000000207008 309265008 85756007 0 118169006 900000000000011006 900000000000451002 +1982496027 20080731 0 900000000000207008 309265008 85756007 0 118169006 900000000000011006 900000000000451002 +1982497020 20030131 1 900000000000207008 309265008 36488007 0 118171006 900000000000011006 900000000000451002 +1982497020 20080731 0 900000000000207008 309265008 36488007 0 118171006 900000000000011006 900000000000451002 +1982497020 20090131 1 900000000000207008 309265008 36488007 1 118171006 900000000000011006 900000000000451002 +1982498026 20030131 1 900000000000207008 309266009 41329004 0 118168003 900000000000011006 900000000000451002 +1982498026 20080731 0 900000000000207008 309266009 41329004 0 118168003 900000000000011006 900000000000451002 +1982498026 20090131 1 900000000000207008 309266009 41329004 1 118168003 900000000000011006 900000000000451002 +1982499023 20030131 1 900000000000207008 309266009 53505006 0 118169006 900000000000011006 900000000000451002 +1982499023 20080731 0 900000000000207008 309266009 53505006 0 118169006 900000000000011006 900000000000451002 +1982499023 20090131 1 900000000000207008 309266009 53505006 1 118169006 900000000000011006 900000000000451002 +1982500025 20030131 1 900000000000207008 309266009 85756007 0 118169006 900000000000011006 900000000000451002 +1982500025 20080731 0 900000000000207008 309266009 85756007 0 118169006 900000000000011006 900000000000451002 +1982501026 20030131 1 900000000000207008 309267000 53505006 0 118169006 900000000000011006 900000000000451002 +1982501026 20080731 0 900000000000207008 309267000 53505006 0 118169006 900000000000011006 900000000000451002 +1982501026 20090731 1 900000000000207008 309267000 53505006 1 118169006 900000000000011006 900000000000451002 +1982502022 20030131 1 900000000000207008 309267000 85756007 0 118169006 900000000000011006 900000000000451002 +1982502022 20080731 0 900000000000207008 309267000 85756007 0 118169006 900000000000011006 900000000000451002 +1982503028 20030131 1 900000000000207008 309267000 119894003 0 118171006 900000000000011006 900000000000451002 +1982503028 20080731 0 900000000000207008 309267000 119894003 0 118171006 900000000000011006 900000000000451002 +1982503028 20090731 1 900000000000207008 309267000 119894003 1 118171006 900000000000011006 900000000000451002 +1982504023 20030131 1 900000000000207008 309268005 35461009 0 118169006 900000000000011006 900000000000451002 +1982504023 20080731 0 900000000000207008 309268005 35461009 0 118169006 900000000000011006 900000000000451002 +1982505024 20030131 1 900000000000207008 309268005 32457005 0 370133003 900000000000011006 900000000000451002 +1982505024 20080731 0 900000000000207008 309268005 32457005 0 370133003 900000000000011006 900000000000451002 +1982506020 20030131 1 900000000000207008 309269002 35461009 0 118169006 900000000000011006 900000000000451002 +1982506020 20050131 0 900000000000207008 309269002 35461009 0 118169006 900000000000011006 900000000000451002 +1982507027 20030131 1 900000000000207008 309269002 64033007 0 118169006 900000000000011006 900000000000451002 +1982507027 20080731 0 900000000000207008 309269002 64033007 0 118169006 900000000000011006 900000000000451002 +1982507027 20090131 1 900000000000207008 309269002 64033007 1 118169006 900000000000011006 900000000000451002 +1982508021 20030131 1 900000000000207008 309269002 85756007 0 118169006 900000000000011006 900000000000451002 +1982508021 20050131 0 900000000000207008 309269002 85756007 0 118169006 900000000000011006 900000000000451002 +1982509029 20030131 1 900000000000207008 309269002 7246002 0 118171006 900000000000011006 900000000000451002 +1982509029 20080731 0 900000000000207008 309269002 7246002 0 118171006 900000000000011006 900000000000451002 +1982509029 20090131 1 900000000000207008 309269002 7246002 1 118171006 900000000000011006 900000000000451002 +1982510023 20030131 1 900000000000207008 309270001 35461009 0 118169006 900000000000011006 900000000000451002 +1982510023 20050131 0 900000000000207008 309270001 35461009 0 118169006 900000000000011006 900000000000451002 +1982511022 20030131 1 900000000000207008 309270001 64033007 0 118169006 900000000000011006 900000000000451002 +1982511022 20080731 0 900000000000207008 309270001 64033007 0 118169006 900000000000011006 900000000000451002 +1982511022 20090731 1 900000000000207008 309270001 64033007 1 118169006 900000000000011006 900000000000451002 +1982512026 20030131 1 900000000000207008 309270001 85756007 0 118169006 900000000000011006 900000000000451002 +1982512026 20050131 0 900000000000207008 309270001 85756007 0 118169006 900000000000011006 900000000000451002 +1982513020 20030131 1 900000000000207008 309270001 108022006 0 118171006 900000000000011006 900000000000451002 +1982513020 20080731 0 900000000000207008 309270001 108022006 0 118171006 900000000000011006 900000000000451002 +1982513020 20090731 1 900000000000207008 309270001 108022006 1 118171006 900000000000011006 900000000000451002 +1982514025 20030131 1 900000000000207008 309271002 85756007 0 118169006 900000000000011006 900000000000451002 +1982514025 20030731 0 900000000000207008 309271002 85756007 0 118169006 900000000000011006 900000000000451002 +1982515029 20030131 1 900000000000207008 309271002 87953007 0 118169006 900000000000011006 900000000000451002 +1982515029 20080731 0 900000000000207008 309271002 87953007 0 118169006 900000000000011006 900000000000451002 +1982515029 20090131 1 900000000000207008 309271002 87953007 1 118169006 900000000000011006 900000000000451002 +1982516028 20030131 1 900000000000207008 309271002 86273004 0 118171006 900000000000011006 900000000000451002 +1982516028 20080731 0 900000000000207008 309271002 86273004 0 118171006 900000000000011006 900000000000451002 +1982517021 20030131 1 900000000000207008 309272009 85756007 0 118169006 900000000000011006 900000000000451002 +1982517021 20080731 0 900000000000207008 309272009 85756007 0 118169006 900000000000011006 900000000000451002 +1982518027 20030131 1 900000000000207008 309272009 89837001 0 118169006 900000000000011006 900000000000451002 +1982518027 20080731 0 900000000000207008 309272009 89837001 0 118169006 900000000000011006 900000000000451002 +1982518027 20090131 1 900000000000207008 309272009 89837001 1 118169006 900000000000011006 900000000000451002 +1982518027 20100131 0 900000000000207008 309272009 89837001 1 118169006 900000000000011006 900000000000451002 +1982518027 20100731 1 900000000000207008 309272009 89837001 1 118169006 900000000000011006 900000000000451002 +1982519024 20030131 1 900000000000207008 309273004 85756007 0 118169006 900000000000011006 900000000000451002 +1982519024 20080731 0 900000000000207008 309273004 85756007 0 118169006 900000000000011006 900000000000451002 +1982520029 20030131 1 900000000000207008 309273004 89837001 0 118169006 900000000000011006 900000000000451002 +1982520029 20080731 0 900000000000207008 309273004 89837001 0 118169006 900000000000011006 900000000000451002 +1982520029 20090131 1 900000000000207008 309273004 89837001 1 118169006 900000000000011006 900000000000451002 +1982520029 20100131 0 900000000000207008 309273004 89837001 1 118169006 900000000000011006 900000000000451002 +1982520029 20100731 1 900000000000207008 309273004 89837001 1 118169006 900000000000011006 900000000000451002 +1982521025 20030131 1 900000000000207008 309273004 36503003 0 118171006 900000000000011006 900000000000451002 +1982521025 20080731 0 900000000000207008 309273004 36503003 0 118171006 900000000000011006 900000000000451002 +1982521025 20090131 1 900000000000207008 309273004 36503003 1 118171006 900000000000011006 900000000000451002 +1982521025 20100131 0 900000000000207008 309273004 36503003 1 118171006 900000000000011006 900000000000451002 +1982521025 20100731 1 900000000000207008 309273004 36503003 1 118171006 900000000000011006 900000000000451002 +1982522021 20030131 1 900000000000207008 309274005 85756007 0 118169006 900000000000011006 900000000000451002 +1982522021 20080731 0 900000000000207008 309274005 85756007 0 118169006 900000000000011006 900000000000451002 +1982523027 20030131 1 900000000000207008 309274005 89837001 0 118169006 900000000000011006 900000000000451002 +1982523027 20080731 0 900000000000207008 309274005 89837001 0 118169006 900000000000011006 900000000000451002 +1982523027 20090131 1 900000000000207008 309274005 89837001 1 118169006 900000000000011006 900000000000451002 +1982524022 20030131 1 900000000000207008 309274005 68688001 0 118171006 900000000000011006 900000000000451002 +1982524022 20080731 0 900000000000207008 309274005 68688001 0 118171006 900000000000011006 900000000000451002 +1982524022 20090131 1 900000000000207008 309274005 68688001 1 118171006 900000000000011006 900000000000451002 +1982525023 20030131 1 900000000000207008 309275006 85756007 0 118169006 900000000000011006 900000000000451002 +1982525023 20080731 0 900000000000207008 309275006 85756007 0 118169006 900000000000011006 900000000000451002 +1982526024 20030131 1 900000000000207008 309275006 89837001 0 118169006 900000000000011006 900000000000451002 +1982526024 20080731 0 900000000000207008 309275006 89837001 0 118169006 900000000000011006 900000000000451002 +1982526024 20090731 1 900000000000207008 309275006 89837001 1 118169006 900000000000011006 900000000000451002 +1982527026 20030131 1 900000000000207008 309275006 108034003 0 118171006 900000000000011006 900000000000451002 +1982527026 20080731 0 900000000000207008 309275006 108034003 0 118171006 900000000000011006 900000000000451002 +1982527026 20090731 1 900000000000207008 309275006 108034003 1 118171006 900000000000011006 900000000000451002 +1982528020 20030131 1 900000000000207008 309276007 85756007 0 118169006 900000000000011006 900000000000451002 +1982528020 20080731 0 900000000000207008 309276007 85756007 0 118169006 900000000000011006 900000000000451002 +1982529028 20030131 1 900000000000207008 309276007 89837001 0 118169006 900000000000011006 900000000000451002 +1982529028 20080731 0 900000000000207008 309276007 89837001 0 118169006 900000000000011006 900000000000451002 +1982529028 20090131 1 900000000000207008 309276007 89837001 1 118169006 900000000000011006 900000000000451002 +1982530022 20030131 1 900000000000207008 309277003 35461009 0 118169006 900000000000011006 900000000000451002 +1982530022 20030731 0 900000000000207008 309277003 35461009 0 118169006 900000000000011006 900000000000451002 +1982531021 20030131 1 900000000000207008 309277003 85756007 0 118169006 900000000000011006 900000000000451002 +1982531021 20080731 0 900000000000207008 309277003 85756007 0 118169006 900000000000011006 900000000000451002 +1982532025 20030131 1 900000000000207008 309277003 217136007 0 118171006 900000000000011006 900000000000451002 +1982532025 20080731 0 900000000000207008 309277003 217136007 0 118171006 900000000000011006 900000000000451002 +1982532025 20090731 1 900000000000207008 309277003 217136007 1 118171006 900000000000011006 900000000000451002 +1982533024 20030131 1 900000000000207008 309278008 53065001 0 118169006 900000000000011006 900000000000451002 +1982533024 20080731 0 900000000000207008 309278008 53065001 0 118169006 900000000000011006 900000000000451002 +1982533024 20090131 1 900000000000207008 309278008 53065001 1 118169006 900000000000011006 900000000000451002 +1982534029 20030131 1 900000000000207008 309278008 85756007 0 118169006 900000000000011006 900000000000451002 +1982534029 20080731 0 900000000000207008 309278008 85756007 0 118169006 900000000000011006 900000000000451002 +1982535028 20030131 1 900000000000207008 309278008 309942007 0 118170007 900000000000011006 900000000000451002 +1982535028 20030731 0 900000000000207008 309278008 309942007 0 118170007 900000000000011006 900000000000451002 +1982538026 20030131 1 900000000000207008 309280002 76784001 0 118169006 900000000000011006 900000000000451002 +1982538026 20080731 0 900000000000207008 309280002 76784001 0 118169006 900000000000011006 900000000000451002 +1982538026 20090131 1 900000000000207008 309280002 76784001 1 118169006 900000000000011006 900000000000451002 +1982539023 20030131 1 900000000000207008 309280002 85756007 0 118169006 900000000000011006 900000000000451002 +1982539023 20080731 0 900000000000207008 309280002 85756007 0 118169006 900000000000011006 900000000000451002 +1982540020 20030131 1 900000000000207008 309280002 309942007 0 118170007 900000000000011006 900000000000451002 +1982540020 20030731 0 900000000000207008 309280002 309942007 0 118170007 900000000000011006 900000000000451002 +1982541024 20030131 1 900000000000207008 309280002 12125008 0 118171006 900000000000011006 900000000000451002 +1982541024 20080731 0 900000000000207008 309280002 12125008 0 118171006 900000000000011006 900000000000451002 +1982541024 20090131 1 900000000000207008 309280002 12125008 1 118171006 900000000000011006 900000000000451002 +1982542028 20030131 1 900000000000207008 309281003 367611001 0 118169006 900000000000011006 900000000000451002 +1982542028 20080731 1 900000000000207008 309281003 367611001 1 118169006 900000000000011006 900000000000451002 +1982543022 20030131 1 900000000000207008 309281003 85756007 0 118169006 900000000000011006 900000000000451002 +1982543022 20080731 0 900000000000207008 309281003 85756007 0 118169006 900000000000011006 900000000000451002 +1982544027 20030131 1 900000000000207008 309281003 309942007 0 118170007 900000000000011006 900000000000451002 +1982544027 20030731 0 900000000000207008 309281003 309942007 0 118170007 900000000000011006 900000000000451002 +1982545026 20030131 1 900000000000207008 309281003 12125008 0 118171006 900000000000011006 900000000000451002 +1982545026 20080731 1 900000000000207008 309281003 12125008 1 118171006 900000000000011006 900000000000451002 +1982551020 20030131 1 900000000000207008 309283000 71252005 0 118169006 900000000000011006 900000000000451002 +1982551020 20080731 0 900000000000207008 309283000 71252005 0 118169006 900000000000011006 900000000000451002 +1982551020 20090131 1 900000000000207008 309283000 71252005 1 118169006 900000000000011006 900000000000451002 +1982552029 20030131 1 900000000000207008 309283000 85756007 0 118169006 900000000000011006 900000000000451002 +1982552029 20080731 0 900000000000207008 309283000 85756007 0 118169006 900000000000011006 900000000000451002 +1982553023 20030131 1 900000000000207008 309283000 309942007 0 118170007 900000000000011006 900000000000451002 +1982553023 20030731 0 900000000000207008 309283000 309942007 0 118170007 900000000000011006 900000000000451002 +1982554028 20030131 1 900000000000207008 309283000 50796003 0 118171006 900000000000011006 900000000000451002 +1982554028 20080731 0 900000000000207008 309283000 50796003 0 118171006 900000000000011006 900000000000451002 +1982554028 20090131 1 900000000000207008 309283000 50796003 1 118171006 900000000000011006 900000000000451002 +1982559022 20030131 1 900000000000207008 309285007 71252005 0 118169006 900000000000011006 900000000000451002 +1982559022 20080731 0 900000000000207008 309285007 71252005 0 118169006 900000000000011006 900000000000451002 +1982559022 20090131 1 900000000000207008 309285007 71252005 1 118169006 900000000000011006 900000000000451002 +1982560028 20030131 1 900000000000207008 309285007 85756007 0 118169006 900000000000011006 900000000000451002 +1982560028 20080731 0 900000000000207008 309285007 85756007 0 118169006 900000000000011006 900000000000451002 +1982561029 20030131 1 900000000000207008 309285007 309942007 0 118170007 900000000000011006 900000000000451002 +1982561029 20030731 0 900000000000207008 309285007 309942007 0 118170007 900000000000011006 900000000000451002 +1982562020 20030131 1 900000000000207008 309285007 120038005 0 118171006 900000000000011006 900000000000451002 +1982562020 20080731 0 900000000000207008 309285007 120038005 0 118171006 900000000000011006 900000000000451002 +1982563026 20030131 1 900000000000207008 309286008 41329004 0 118168003 900000000000011006 900000000000451002 +1982563026 20080731 0 900000000000207008 309286008 41329004 0 118168003 900000000000011006 900000000000451002 +1982563026 20090131 1 900000000000207008 309286008 41329004 1 118168003 900000000000011006 900000000000451002 +1982564021 20030131 1 900000000000207008 309286008 71252005 0 118169006 900000000000011006 900000000000451002 +1982564021 20080731 0 900000000000207008 309286008 71252005 0 118169006 900000000000011006 900000000000451002 +1982564021 20090131 1 900000000000207008 309286008 71252005 1 118169006 900000000000011006 900000000000451002 +1982565022 20030131 1 900000000000207008 309286008 85756007 0 118169006 900000000000011006 900000000000451002 +1982565022 20080731 0 900000000000207008 309286008 85756007 0 118169006 900000000000011006 900000000000451002 +1982566023 20030131 1 900000000000207008 309286008 309942007 0 118170007 900000000000011006 900000000000451002 +1982566023 20030731 0 900000000000207008 309286008 309942007 0 118170007 900000000000011006 900000000000451002 +1982567025 20030131 1 900000000000207008 309287004 35039007 0 118169006 900000000000011006 900000000000451002 +1982567025 20080731 0 900000000000207008 309287004 35039007 0 118169006 900000000000011006 900000000000451002 +1982568024 20030131 1 900000000000207008 309287004 85756007 0 118169006 900000000000011006 900000000000451002 +1982568024 20080731 0 900000000000207008 309287004 85756007 0 118169006 900000000000011006 900000000000451002 +1982569027 20030131 1 900000000000207008 309287004 309942007 0 118170007 900000000000011006 900000000000451002 +1982569027 20030731 0 900000000000207008 309287004 309942007 0 118170007 900000000000011006 900000000000451002 +1982570026 20030131 1 900000000000207008 309287004 236886002 0 118171006 900000000000011006 900000000000451002 +1982570026 20080731 0 900000000000207008 309287004 236886002 0 118171006 900000000000011006 900000000000451002 +1982571027 20030131 1 900000000000207008 309287004 29827000 0 118171006 900000000000011006 900000000000451002 +1982571027 20080731 0 900000000000207008 309287004 29827000 0 118171006 900000000000011006 900000000000451002 +1982572023 20030131 1 900000000000207008 309288009 41329004 0 118168003 900000000000011006 900000000000451002 +1982572023 20080731 0 900000000000207008 309288009 41329004 0 118168003 900000000000011006 900000000000451002 +1982572023 20090131 1 900000000000207008 309288009 41329004 1 118168003 900000000000011006 900000000000451002 +1982573029 20030131 1 900000000000207008 309288009 2739003 0 118169006 900000000000011006 900000000000451002 +1982573029 20080731 0 900000000000207008 309288009 2739003 0 118169006 900000000000011006 900000000000451002 +1982573029 20090131 1 900000000000207008 309288009 2739003 1 118169006 900000000000011006 900000000000451002 +1982574024 20030131 1 900000000000207008 309288009 85756007 0 118169006 900000000000011006 900000000000451002 +1982574024 20080731 0 900000000000207008 309288009 85756007 0 118169006 900000000000011006 900000000000451002 +1982575020 20030131 1 900000000000207008 309288009 309942007 0 118170007 900000000000011006 900000000000451002 +1982575020 20030731 0 900000000000207008 309288009 309942007 0 118170007 900000000000011006 900000000000451002 +1982576021 20030131 1 900000000000207008 309289001 2739003 0 118169006 900000000000011006 900000000000451002 +1982576021 20080731 0 900000000000207008 309289001 2739003 0 118169006 900000000000011006 900000000000451002 +1982576021 20090131 1 900000000000207008 309289001 2739003 1 118169006 900000000000011006 900000000000451002 +1982577028 20030131 1 900000000000207008 309289001 85756007 0 118169006 900000000000011006 900000000000451002 +1982577028 20080731 0 900000000000207008 309289001 85756007 0 118169006 900000000000011006 900000000000451002 +1982578022 20030131 1 900000000000207008 309289001 309942007 0 118170007 900000000000011006 900000000000451002 +1982578022 20030731 0 900000000000207008 309289001 309942007 0 118170007 900000000000011006 900000000000451002 +1982579025 20030131 1 900000000000207008 309289001 65801008 0 118171006 900000000000011006 900000000000451002 +1982579025 20080731 0 900000000000207008 309289001 65801008 0 118171006 900000000000011006 900000000000451002 +1982580027 20030131 1 900000000000207008 309290005 31435000 0 118169006 900000000000011006 900000000000451002 +1982580027 20080731 0 900000000000207008 309290005 31435000 0 118169006 900000000000011006 900000000000451002 +1982580027 20090131 1 900000000000207008 309290005 31435000 1 118169006 900000000000011006 900000000000451002 +1982581028 20030131 1 900000000000207008 309290005 85756007 0 118169006 900000000000011006 900000000000451002 +1982581028 20080731 0 900000000000207008 309290005 85756007 0 118169006 900000000000011006 900000000000451002 +1982582024 20030131 1 900000000000207008 309290005 309942007 0 118170007 900000000000011006 900000000000451002 +1982582024 20030731 0 900000000000207008 309290005 309942007 0 118170007 900000000000011006 900000000000451002 +1982583025 20030131 1 900000000000207008 309290005 81899004 0 118171006 900000000000011006 900000000000451002 +1982583025 20080731 0 900000000000207008 309290005 81899004 0 118171006 900000000000011006 900000000000451002 +1982583025 20090131 1 900000000000207008 309290005 81899004 1 118171006 900000000000011006 900000000000451002 +1982584020 20030131 1 900000000000207008 309291009 367643001 0 118168003 900000000000011006 900000000000451002 +1982584020 20080731 0 900000000000207008 309291009 367643001 0 118168003 900000000000011006 900000000000451002 +1982584020 20090131 1 900000000000207008 309291009 367643001 1 118168003 900000000000011006 900000000000451002 +1982585021 20030131 1 900000000000207008 309291009 15497006 0 118169006 900000000000011006 900000000000451002 +1982585021 20080731 0 900000000000207008 309291009 15497006 0 118169006 900000000000011006 900000000000451002 +1982585021 20090131 1 900000000000207008 309291009 15497006 1 118169006 900000000000011006 900000000000451002 +1982586022 20030131 1 900000000000207008 309291009 85756007 0 118169006 900000000000011006 900000000000451002 +1982586022 20080731 0 900000000000207008 309291009 85756007 0 118169006 900000000000011006 900000000000451002 +1982587029 20030131 1 900000000000207008 309291009 309942007 0 118170007 900000000000011006 900000000000451002 +1982587029 20030731 0 900000000000207008 309291009 309942007 0 118170007 900000000000011006 900000000000451002 +1982588023 20030131 1 900000000000207008 309292002 15497006 0 118169006 900000000000011006 900000000000451002 +1982588023 20080731 1 900000000000207008 309292002 15497006 1 118169006 900000000000011006 900000000000451002 +1982589026 20030131 1 900000000000207008 309292002 309942007 0 118170007 900000000000011006 900000000000451002 +1982589026 20030731 0 900000000000207008 309292002 309942007 0 118170007 900000000000011006 900000000000451002 +1982590024 20030131 1 900000000000207008 309292002 50473004 0 370133003 900000000000011006 900000000000451002 +1982590024 20080731 1 900000000000207008 309292002 50473004 1 370133003 900000000000011006 900000000000451002 +1982591023 20030131 1 900000000000207008 309293007 78067005 0 118169006 900000000000011006 900000000000451002 +1982591023 20080731 0 900000000000207008 309293007 78067005 0 118169006 900000000000011006 900000000000451002 +1982591023 20090131 1 900000000000207008 309293007 78067005 1 118169006 900000000000011006 900000000000451002 +1982592027 20030131 1 900000000000207008 309293007 85756007 0 118169006 900000000000011006 900000000000451002 +1982592027 20080731 0 900000000000207008 309293007 85756007 0 118169006 900000000000011006 900000000000451002 +1982593021 20030131 1 900000000000207008 309293007 309942007 0 118170007 900000000000011006 900000000000451002 +1982593021 20030731 0 900000000000207008 309293007 309942007 0 118170007 900000000000011006 900000000000451002 +1982594026 20030131 1 900000000000207008 309293007 302381002 0 118171006 900000000000011006 900000000000451002 +1982594026 20080731 0 900000000000207008 309293007 302381002 0 118171006 900000000000011006 900000000000451002 +1982594026 20090131 1 900000000000207008 309293007 302381002 1 118171006 900000000000011006 900000000000451002 +1982635020 20030131 1 900000000000207008 309476009 59441001 0 118169006 900000000000011006 900000000000451002 +1982635020 20080731 0 900000000000207008 309476009 59441001 0 118169006 900000000000011006 900000000000451002 +1982635020 20090131 1 900000000000207008 309476009 59441001 1 118169006 900000000000011006 900000000000451002 +1982636021 20030131 1 900000000000207008 309476009 165369002 0 118171006 900000000000011006 900000000000451002 +1982636021 20040731 0 900000000000207008 309476009 165369002 0 118171006 900000000000011006 900000000000451002 +1982637028 20030131 1 900000000000207008 309476009 256891005 0 370133003 900000000000011006 900000000000451002 +1982637028 20080731 0 900000000000207008 309476009 256891005 0 370133003 900000000000011006 900000000000451002 +1982638022 20030131 1 900000000000207008 309476009 87612001 0 370133003 900000000000011006 900000000000451002 +1982638022 20040731 0 900000000000207008 309476009 87612001 0 370133003 900000000000011006 900000000000451002 +1982639025 20030131 1 900000000000207008 309478005 70281000 0 118168003 900000000000011006 900000000000451002 +1982639025 20030731 0 900000000000207008 309478005 70281000 0 118168003 900000000000011006 900000000000451002 +1982640028 20030131 1 900000000000207008 309478005 165369002 0 118171006 900000000000011006 900000000000451002 +1982640028 20040731 0 900000000000207008 309478005 165369002 0 118171006 900000000000011006 900000000000451002 +1982641029 20030131 1 900000000000207008 309478005 87612001 0 370133003 900000000000011006 900000000000451002 +1982641029 20040731 0 900000000000207008 309478005 87612001 0 370133003 900000000000011006 900000000000451002 +1982642020 20030131 1 900000000000207008 309479002 51114001 0 118169006 900000000000011006 900000000000451002 +1982642020 20190731 1 900000000000207008 309479002 51114001 1 118169006 900000000000011006 900000000000451002 +1982643026 20030131 1 900000000000207008 309480004 85439003 0 118169006 900000000000011006 900000000000451002 +1982643026 20080731 0 900000000000207008 309480004 85439003 0 118169006 900000000000011006 900000000000451002 +1982644021 20030131 1 900000000000207008 309481000 68930004 0 118169006 900000000000011006 900000000000451002 +1982644021 20080731 0 900000000000207008 309481000 68930004 0 118169006 900000000000011006 900000000000451002 +1982645022 20030131 1 900000000000207008 309482007 59441001 0 118169006 900000000000011006 900000000000451002 +1982645022 20080731 0 900000000000207008 309482007 59441001 0 118169006 900000000000011006 900000000000451002 +1982645022 20090131 1 900000000000207008 309482007 59441001 1 118169006 900000000000011006 900000000000451002 +1982646023 20030131 1 900000000000207008 309482007 165369002 0 118171006 900000000000011006 900000000000451002 +1982646023 20040731 0 900000000000207008 309482007 165369002 0 118171006 900000000000011006 900000000000451002 +1982647025 20030131 1 900000000000207008 309482007 256891005 0 370133003 900000000000011006 900000000000451002 +1982647025 20080731 0 900000000000207008 309482007 256891005 0 370133003 900000000000011006 900000000000451002 +1982648024 20030131 1 900000000000207008 309482007 87612001 0 370133003 900000000000011006 900000000000451002 +1982648024 20040731 0 900000000000207008 309482007 87612001 0 370133003 900000000000011006 900000000000451002 +1982649027 20030131 1 900000000000207008 309483002 74262004 0 118169006 900000000000011006 900000000000451002 +1982649027 20080731 0 900000000000207008 309483002 74262004 0 118169006 900000000000011006 900000000000451002 +1982650027 20030131 1 900000000000207008 309483002 85756007 0 118169006 900000000000011006 900000000000451002 +1982650027 20080731 0 900000000000207008 309483002 85756007 0 118169006 900000000000011006 900000000000451002 +1982651028 20030131 1 900000000000207008 309483002 11570006 0 118171006 900000000000011006 900000000000451002 +1982651028 20080731 0 900000000000207008 309483002 11570006 0 118171006 900000000000011006 900000000000451002 +1982651028 20090131 1 900000000000207008 309483002 11570006 1 118171006 900000000000011006 900000000000451002 +1982652024 20030131 1 900000000000207008 309484008 74262004 0 118169006 900000000000011006 900000000000451002 +1982652024 20080731 0 900000000000207008 309484008 74262004 0 118169006 900000000000011006 900000000000451002 +1982653025 20030131 1 900000000000207008 309484008 75535001 0 118169006 900000000000011006 900000000000451002 +1982653025 20030731 0 900000000000207008 309484008 75535001 0 118169006 900000000000011006 900000000000451002 +1982654020 20030131 1 900000000000207008 309484008 85756007 0 118169006 900000000000011006 900000000000451002 +1982654020 20080731 0 900000000000207008 309484008 85756007 0 118169006 900000000000011006 900000000000451002 +1982655021 20030131 1 900000000000207008 309484008 81870009 0 118171006 900000000000011006 900000000000451002 +1982655021 20080731 0 900000000000207008 309484008 81870009 0 118171006 900000000000011006 900000000000451002 +1982655021 20090731 1 900000000000207008 309484008 81870009 1 118171006 900000000000011006 900000000000451002 +1982656022 20030131 1 900000000000207008 309485009 74262004 0 118169006 900000000000011006 900000000000451002 +1982656022 20050131 0 900000000000207008 309485009 74262004 0 118169006 900000000000011006 900000000000451002 +1982657029 20030131 1 900000000000207008 309485009 88481005 0 118169006 900000000000011006 900000000000451002 +1982657029 20080731 0 900000000000207008 309485009 88481005 0 118169006 900000000000011006 900000000000451002 +1982657029 20090731 1 900000000000207008 309485009 88481005 1 118169006 900000000000011006 900000000000451002 +1982658023 20030131 1 900000000000207008 309485009 65801008 0 118171006 900000000000011006 900000000000451002 +1982658023 20030731 0 900000000000207008 309485009 65801008 0 118171006 900000000000011006 900000000000451002 +1982659026 20030131 1 900000000000207008 309486005 54019009 0 118169006 900000000000011006 900000000000451002 +1982659026 20030731 0 900000000000207008 309486005 54019009 0 118169006 900000000000011006 900000000000451002 +1982660020 20030131 1 900000000000207008 309486005 74262004 0 118169006 900000000000011006 900000000000451002 +1982660020 20080731 0 900000000000207008 309486005 74262004 0 118169006 900000000000011006 900000000000451002 +1982661024 20030131 1 900000000000207008 309486005 85756007 0 118169006 900000000000011006 900000000000451002 +1982661024 20080731 0 900000000000207008 309486005 85756007 0 118169006 900000000000011006 900000000000451002 +1982662028 20030131 1 900000000000207008 309486005 65801008 0 118171006 900000000000011006 900000000000451002 +1982662028 20030731 0 900000000000207008 309486005 65801008 0 118171006 900000000000011006 900000000000451002 +1982663022 20030131 1 900000000000207008 309487001 71854001 0 118169006 900000000000011006 900000000000451002 +1982663022 20080731 0 900000000000207008 309487001 71854001 0 118169006 900000000000011006 900000000000451002 +1982663022 20090131 1 900000000000207008 309487001 71854001 1 118169006 900000000000011006 900000000000451002 +1982664027 20030131 1 900000000000207008 309487001 85756007 0 118169006 900000000000011006 900000000000451002 +1982664027 20080731 0 900000000000207008 309487001 85756007 0 118169006 900000000000011006 900000000000451002 +1982665026 20030131 1 900000000000207008 309487001 26390003 0 118171006 900000000000011006 900000000000451002 +1982665026 20080731 0 900000000000207008 309487001 26390003 0 118171006 900000000000011006 900000000000451002 +1982665026 20090131 1 900000000000207008 309487001 26390003 1 118171006 900000000000011006 900000000000451002 +1982666025 20030131 1 900000000000207008 309488006 71854001 0 118169006 900000000000011006 900000000000451002 +1982666025 20080731 0 900000000000207008 309488006 71854001 0 118169006 900000000000011006 900000000000451002 +1982666025 20090131 1 900000000000207008 309488006 71854001 1 118169006 900000000000011006 900000000000451002 +1982667023 20030131 1 900000000000207008 309488006 85756007 0 118169006 900000000000011006 900000000000451002 +1982667023 20080731 0 900000000000207008 309488006 85756007 0 118169006 900000000000011006 900000000000451002 +1982668029 20030131 1 900000000000207008 309488006 43075005 0 118171006 900000000000011006 900000000000451002 +1982668029 20080731 0 900000000000207008 309488006 43075005 0 118171006 900000000000011006 900000000000451002 +1982668029 20090131 1 900000000000207008 309488006 43075005 1 118171006 900000000000011006 900000000000451002 +1982669021 20030131 1 900000000000207008 309489003 34402009 0 118169006 900000000000011006 900000000000451002 +1982669021 20080731 0 900000000000207008 309489003 34402009 0 118169006 900000000000011006 900000000000451002 +1982669021 20090731 1 900000000000207008 309489003 34402009 1 118169006 900000000000011006 900000000000451002 +1982670022 20030131 1 900000000000207008 309489003 85756007 0 118169006 900000000000011006 900000000000451002 +1982670022 20080731 0 900000000000207008 309489003 85756007 0 118169006 900000000000011006 900000000000451002 +1982671021 20030131 1 900000000000207008 309489003 4558008 0 118171006 900000000000011006 900000000000451002 +1982671021 20080731 0 900000000000207008 309489003 4558008 0 118171006 900000000000011006 900000000000451002 +1982671021 20090731 1 900000000000207008 309489003 4558008 1 118171006 900000000000011006 900000000000451002 +1982672025 20030131 1 900000000000207008 309490007 122865005 0 118169006 900000000000011006 900000000000451002 +1982672025 20030731 0 900000000000207008 309490007 122865005 0 118169006 900000000000011006 900000000000451002 +1982673024 20030131 1 900000000000207008 309490007 15776009 0 118169006 900000000000011006 900000000000451002 +1982673024 20080731 0 900000000000207008 309490007 15776009 0 118169006 900000000000011006 900000000000451002 +1982673024 20090731 1 900000000000207008 309490007 15776009 1 118169006 900000000000011006 900000000000451002 +1982674029 20030131 1 900000000000207008 309490007 85756007 0 118169006 900000000000011006 900000000000451002 +1982674029 20080731 0 900000000000207008 309490007 85756007 0 118169006 900000000000011006 900000000000451002 +1982675028 20030131 1 900000000000207008 309490007 33149006 0 118171006 900000000000011006 900000000000451002 +1982675028 20080731 0 900000000000207008 309490007 33149006 0 118171006 900000000000011006 900000000000451002 +1982675028 20090731 1 900000000000207008 309490007 33149006 1 118171006 900000000000011006 900000000000451002 +1982676027 20030131 1 900000000000207008 309491006 122865005 0 118169006 900000000000011006 900000000000451002 +1982676027 20030731 0 900000000000207008 309491006 122865005 0 118169006 900000000000011006 900000000000451002 +1982677020 20030131 1 900000000000207008 309491006 34707002 0 118169006 900000000000011006 900000000000451002 +1982677020 20080731 0 900000000000207008 309491006 34707002 0 118169006 900000000000011006 900000000000451002 +1982677020 20090131 1 900000000000207008 309491006 34707002 1 118169006 900000000000011006 900000000000451002 +1982677020 20100131 0 900000000000207008 309491006 34707002 1 118169006 900000000000011006 900000000000451002 +1982677020 20100731 1 900000000000207008 309491006 34707002 1 118169006 900000000000011006 900000000000451002 +1982677020 20110731 0 900000000000207008 309491006 34707002 1 118169006 900000000000011006 900000000000451002 +1982678026 20030131 1 900000000000207008 309491006 85756007 0 118169006 900000000000011006 900000000000451002 +1982678026 20080731 0 900000000000207008 309491006 85756007 0 118169006 900000000000011006 900000000000451002 +1982679023 20030131 1 900000000000207008 309493009 122865005 0 118169006 900000000000011006 900000000000451002 +1982679023 20030731 0 900000000000207008 309493009 122865005 0 118169006 900000000000011006 900000000000451002 +1982680021 20030131 1 900000000000207008 309493009 28273000 0 118169006 900000000000011006 900000000000451002 +1982680021 20080731 0 900000000000207008 309493009 28273000 0 118169006 900000000000011006 900000000000451002 +1982680021 20090131 1 900000000000207008 309493009 28273000 1 118169006 900000000000011006 900000000000451002 +1982680021 20100131 0 900000000000207008 309493009 28273000 1 118169006 900000000000011006 900000000000451002 +1982680021 20100731 1 900000000000207008 309493009 28273000 1 118169006 900000000000011006 900000000000451002 +1982680021 20110731 0 900000000000207008 309493009 28273000 1 118169006 900000000000011006 900000000000451002 +1982681020 20030131 1 900000000000207008 309493009 85756007 0 118169006 900000000000011006 900000000000451002 +1982681020 20080731 0 900000000000207008 309493009 85756007 0 118169006 900000000000011006 900000000000451002 +1982682029 20030131 1 900000000000207008 309493009 48508003 0 118171006 900000000000011006 900000000000451002 +1982682029 20080731 0 900000000000207008 309493009 48508003 0 118171006 900000000000011006 900000000000451002 +1982682029 20090131 1 900000000000207008 309493009 48508003 1 118171006 900000000000011006 900000000000451002 +1982682029 20100131 0 900000000000207008 309493009 48508003 1 118171006 900000000000011006 900000000000451002 +1982682029 20100731 1 900000000000207008 309493009 48508003 1 118171006 900000000000011006 900000000000451002 +1982682029 20110731 0 900000000000207008 309493009 48508003 1 118171006 900000000000011006 900000000000451002 +1982683023 20030131 1 900000000000207008 309494003 67109009 0 118169006 900000000000011006 900000000000451002 +1982683023 20080731 0 900000000000207008 309494003 67109009 0 118169006 900000000000011006 900000000000451002 +1982683023 20090131 1 900000000000207008 309494003 67109009 1 118169006 900000000000011006 900000000000451002 +1982684028 20030131 1 900000000000207008 309494003 85756007 0 118169006 900000000000011006 900000000000451002 +1982684028 20080731 0 900000000000207008 309494003 85756007 0 118169006 900000000000011006 900000000000451002 +1982685027 20030131 1 900000000000207008 309494003 119289007 0 118171006 900000000000011006 900000000000451002 +1982685027 20080731 0 900000000000207008 309494003 119289007 0 118171006 900000000000011006 900000000000451002 +1982685027 20090131 1 900000000000207008 309494003 119289007 1 118171006 900000000000011006 900000000000451002 +1982686026 20030131 1 900000000000207008 309495002 122865005 0 118169006 900000000000011006 900000000000451002 +1982686026 20030731 0 900000000000207008 309495002 122865005 0 118169006 900000000000011006 900000000000451002 +1982687024 20030131 1 900000000000207008 309495002 27398004 0 118169006 900000000000011006 900000000000451002 +1982687024 20080731 0 900000000000207008 309495002 27398004 0 118169006 900000000000011006 900000000000451002 +1982687024 20090131 1 900000000000207008 309495002 27398004 1 118169006 900000000000011006 900000000000451002 +1982688025 20030131 1 900000000000207008 309496001 122865005 0 118169006 900000000000011006 900000000000451002 +1982688025 20030731 0 900000000000207008 309496001 122865005 0 118169006 900000000000011006 900000000000451002 +1982689022 20030131 1 900000000000207008 309496001 27398004 0 118169006 900000000000011006 900000000000451002 +1982689022 20080731 0 900000000000207008 309496001 27398004 0 118169006 900000000000011006 900000000000451002 +1982689022 20090731 1 900000000000207008 309496001 27398004 1 118169006 900000000000011006 900000000000451002 +1982690029 20030131 1 900000000000207008 309496001 78384007 0 118171006 900000000000011006 900000000000451002 +1982690029 20080731 0 900000000000207008 309496001 78384007 0 118171006 900000000000011006 900000000000451002 +1982690029 20090731 1 900000000000207008 309496001 78384007 1 118171006 900000000000011006 900000000000451002 +1982691025 20030131 1 900000000000207008 309497005 35461009 0 118169006 900000000000011006 900000000000451002 +1982691025 20050131 0 900000000000207008 309497005 35461009 0 118169006 900000000000011006 900000000000451002 +1982692021 20030131 1 900000000000207008 309497005 64033007 0 118169006 900000000000011006 900000000000451002 +1982692021 20080731 0 900000000000207008 309497005 64033007 0 118169006 900000000000011006 900000000000451002 +1982692021 20090131 1 900000000000207008 309497005 64033007 1 118169006 900000000000011006 900000000000451002 +1982693027 20030131 1 900000000000207008 309497005 85756007 0 118169006 900000000000011006 900000000000451002 +1982693027 20050131 0 900000000000207008 309497005 85756007 0 118169006 900000000000011006 900000000000451002 +1982694022 20030131 1 900000000000207008 309497005 175905003 0 118171006 900000000000011006 900000000000451002 +1982694022 20080731 0 900000000000207008 309497005 175905003 0 118171006 900000000000011006 900000000000451002 +1982694022 20090131 1 900000000000207008 309497005 175905003 1 118171006 900000000000011006 900000000000451002 +1982695023 20030131 1 900000000000207008 309498000 35461009 0 118169006 900000000000011006 900000000000451002 +1982695023 20050131 0 900000000000207008 309498000 35461009 0 118169006 900000000000011006 900000000000451002 +1982696024 20030131 1 900000000000207008 309498000 64033007 0 118169006 900000000000011006 900000000000451002 +1982696024 20080731 0 900000000000207008 309498000 64033007 0 118169006 900000000000011006 900000000000451002 +1982696024 20090131 1 900000000000207008 309498000 64033007 1 118169006 900000000000011006 900000000000451002 +1982697026 20030131 1 900000000000207008 309498000 85756007 0 118169006 900000000000011006 900000000000451002 +1982697026 20050131 0 900000000000207008 309498000 85756007 0 118169006 900000000000011006 900000000000451002 +1982698020 20030131 1 900000000000207008 309498000 81516001 0 118171006 900000000000011006 900000000000451002 +1982698020 20080731 0 900000000000207008 309498000 81516001 0 118171006 900000000000011006 900000000000451002 +1982698020 20090131 1 900000000000207008 309498000 81516001 1 118171006 900000000000011006 900000000000451002 +1982699028 20030131 1 900000000000207008 309499008 314818000 0 118169006 900000000000011006 900000000000451002 +1982699028 20080731 0 900000000000207008 309499008 314818000 0 118169006 900000000000011006 900000000000451002 +1982700027 20030131 1 900000000000207008 309499008 39059001 0 118169006 900000000000011006 900000000000451002 +1982700027 20080731 1 900000000000207008 309499008 39059001 1 118169006 900000000000011006 900000000000451002 +1982701028 20030131 1 900000000000207008 309499008 176557003 0 118171006 900000000000011006 900000000000451002 +1982701028 20080731 0 900000000000207008 309499008 176557003 0 118171006 900000000000011006 900000000000451002 +1982702024 20030131 1 900000000000207008 309499008 240977001 0 118171006 900000000000011006 900000000000451002 +1982702024 20080731 1 900000000000207008 309499008 240977001 1 118171006 900000000000011006 900000000000451002 +1982709026 20030131 1 900000000000207008 309501000 35039007 0 118169006 900000000000011006 900000000000451002 +1982709026 20080731 0 900000000000207008 309501000 35039007 0 118169006 900000000000011006 900000000000451002 +1982709026 20090731 1 900000000000207008 309501000 35039007 1 118169006 900000000000011006 900000000000451002 +1982710020 20030131 1 900000000000207008 309501000 85756007 0 118169006 900000000000011006 900000000000451002 +1982710020 20080731 0 900000000000207008 309501000 85756007 0 118169006 900000000000011006 900000000000451002 +1982711024 20030131 1 900000000000207008 309501000 309942007 0 118170007 900000000000011006 900000000000451002 +1982711024 20030731 0 900000000000207008 309501000 309942007 0 118170007 900000000000011006 900000000000451002 +1982712028 20030131 1 900000000000207008 309501000 236886002 0 118171006 900000000000011006 900000000000451002 +1982712028 20080731 0 900000000000207008 309501000 236886002 0 118171006 900000000000011006 900000000000451002 +1982712028 20090731 1 900000000000207008 309501000 236886002 1 118171006 900000000000011006 900000000000451002 +1982713022 20030131 1 900000000000207008 309502007 55460000 0 118169006 900000000000011006 900000000000451002 +1982713022 20190731 1 900000000000207008 309502007 55460000 1 118169006 900000000000011006 900000000000451002 +1982714027 20030131 1 900000000000207008 309502007 309942007 0 118170007 900000000000011006 900000000000451002 +1982714027 20030731 0 900000000000207008 309502007 309942007 0 118170007 900000000000011006 900000000000451002 +1982715026 20030131 1 900000000000207008 309503002 24142002 0 118169006 900000000000011006 900000000000451002 +1982715026 20080731 1 900000000000207008 309503002 24142002 1 118169006 900000000000011006 900000000000451002 +1982716025 20030131 1 900000000000207008 309503002 307488001 0 370133003 900000000000011006 900000000000451002 +1982716025 20040731 0 900000000000207008 309503002 307488001 0 370133003 900000000000011006 900000000000451002 +1982717023 20030131 1 900000000000207008 309504008 314818000 0 118169006 900000000000011006 900000000000451002 +1982717023 20080731 0 900000000000207008 309504008 314818000 0 118169006 900000000000011006 900000000000451002 +1982718029 20030131 1 900000000000207008 309504008 39937001 0 118169006 900000000000011006 900000000000451002 +1982718029 20080731 0 900000000000207008 309504008 39937001 0 118169006 900000000000011006 900000000000451002 +1982718029 20090731 1 900000000000207008 309504008 39937001 1 118169006 900000000000011006 900000000000451002 +1982718029 20100731 0 900000000000207008 309504008 39937001 1 118169006 900000000000011006 900000000000451002 +1982718029 20110131 1 900000000000207008 309504008 39937001 1 118169006 900000000000011006 900000000000451002 +1982719021 20030131 1 900000000000207008 309504008 87697008 0 118171006 900000000000011006 900000000000451002 +1982719021 20080731 0 900000000000207008 309504008 87697008 0 118171006 900000000000011006 900000000000451002 +1982719021 20090731 1 900000000000207008 309504008 87697008 1 118171006 900000000000011006 900000000000451002 +1982719021 20100731 0 900000000000207008 309504008 87697008 1 118171006 900000000000011006 900000000000451002 +1982719021 20110131 1 900000000000207008 309504008 87697008 1 118171006 900000000000011006 900000000000451002 +1982720026 20030131 1 900000000000207008 309505009 314818000 0 118169006 900000000000011006 900000000000451002 +1982720026 20080731 0 900000000000207008 309505009 314818000 0 118169006 900000000000011006 900000000000451002 +1982721027 20030131 1 900000000000207008 309505009 39937001 0 118169006 900000000000011006 900000000000451002 +1982721027 20080731 0 900000000000207008 309505009 39937001 0 118169006 900000000000011006 900000000000451002 +1982721027 20090131 1 900000000000207008 309505009 39937001 1 118169006 900000000000011006 900000000000451002 +1982722023 20030131 1 900000000000207008 309505009 282014007 0 118171006 900000000000011006 900000000000451002 +1982722023 20080731 0 900000000000207008 309505009 282014007 0 118171006 900000000000011006 900000000000451002 +1982722023 20090131 1 900000000000207008 309505009 282014007 1 118171006 900000000000011006 900000000000451002 +1982723029 20030131 1 900000000000207008 309506005 314818000 0 118169006 900000000000011006 900000000000451002 +1982723029 20080731 0 900000000000207008 309506005 314818000 0 118169006 900000000000011006 900000000000451002 +1982724024 20030131 1 900000000000207008 309506005 39937001 0 118169006 900000000000011006 900000000000451002 +1982724024 20080731 0 900000000000207008 309506005 39937001 0 118169006 900000000000011006 900000000000451002 +1982724024 20090131 1 900000000000207008 309506005 39937001 1 118169006 900000000000011006 900000000000451002 +1982725020 20030131 1 900000000000207008 309506005 240977001 0 118171006 900000000000011006 900000000000451002 +1982725020 20080731 0 900000000000207008 309506005 240977001 0 118171006 900000000000011006 900000000000451002 +1982726021 20030131 1 900000000000207008 309506005 8889005 0 118171006 900000000000011006 900000000000451002 +1982726021 20080731 0 900000000000207008 309506005 8889005 0 118171006 900000000000011006 900000000000451002 +1982727028 20030131 1 900000000000207008 309507001 87784001 0 118169006 900000000000011006 900000000000451002 +1982727028 20080731 0 900000000000207008 309507001 87784001 0 118169006 900000000000011006 900000000000451002 +1982728022 20030131 1 900000000000207008 309507001 178263003 0 118171006 900000000000011006 900000000000451002 +1982728022 20080731 0 900000000000207008 309507001 178263003 0 118171006 900000000000011006 900000000000451002 +1982728022 20090131 1 900000000000207008 309507001 178263003 1 118171006 900000000000011006 900000000000451002 +1982729025 20030131 1 900000000000207008 309508006 49755003 0 118168003 900000000000011006 900000000000451002 +1982729025 20080731 0 900000000000207008 309508006 49755003 0 118168003 900000000000011006 900000000000451002 +1982729025 20090131 1 900000000000207008 309508006 49755003 1 118168003 900000000000011006 900000000000451002 +1982729025 20220630 0 900000000000207008 309508006 49755003 1 118168003 900000000000011006 900000000000451002 +1982730024 20030131 1 900000000000207008 309508006 87784001 0 118169006 900000000000011006 900000000000451002 +1982730024 20080731 0 900000000000207008 309508006 87784001 0 118169006 900000000000011006 900000000000451002 +1982730024 20090131 1 900000000000207008 309508006 87784001 1 118169006 900000000000011006 900000000000451002 +1982731023 20030131 1 900000000000207008 309508006 48635004 0 118171006 900000000000011006 900000000000451002 +1982731023 20080731 0 900000000000207008 309508006 48635004 0 118171006 900000000000011006 900000000000451002 +1982731023 20090131 1 900000000000207008 309508006 48635004 1 118171006 900000000000011006 900000000000451002 +1982744029 20030131 1 900000000000207008 309546004 76752008 0 118169006 900000000000011006 900000000000451002 +1982744029 20080731 0 900000000000207008 309546004 76752008 0 118169006 900000000000011006 900000000000451002 +1982744029 20090131 1 900000000000207008 309546004 76752008 1 118169006 900000000000011006 900000000000451002 +1982745028 20030131 1 900000000000207008 309546004 85756007 0 118169006 900000000000011006 900000000000451002 +1982745028 20080731 0 900000000000207008 309546004 85756007 0 118169006 900000000000011006 900000000000451002 +1982746027 20030131 1 900000000000207008 309547008 76752008 0 118169006 900000000000011006 900000000000451002 +1982746027 20080731 0 900000000000207008 309547008 76752008 0 118169006 900000000000011006 900000000000451002 +1982746027 20090131 1 900000000000207008 309547008 76752008 1 118169006 900000000000011006 900000000000451002 +1982746027 20200731 0 900000000000207008 309547008 76752008 1 118169006 900000000000011006 900000000000451002 +1982747020 20030131 1 900000000000207008 309547008 85756007 0 118169006 900000000000011006 900000000000451002 +1982747020 20080731 0 900000000000207008 309547008 85756007 0 118169006 900000000000011006 900000000000451002 +1982748026 20030131 1 900000000000207008 309547008 237370008 0 118171006 900000000000011006 900000000000451002 +1982748026 20080731 0 900000000000207008 309547008 237370008 0 118171006 900000000000011006 900000000000451002 +1982748026 20090131 1 900000000000207008 309547008 237370008 1 118171006 900000000000011006 900000000000451002 +1982749023 20030131 1 900000000000207008 309548003 343011009 0 118169006 900000000000011006 900000000000451002 +1982749023 20080731 0 900000000000207008 309548003 343011009 0 118169006 900000000000011006 900000000000451002 +1982750023 20030131 1 900000000000207008 309548003 76752008 0 118169006 900000000000011006 900000000000451002 +1982750023 20080731 0 900000000000207008 309548003 76752008 0 118169006 900000000000011006 900000000000451002 +1982751022 20030131 1 900000000000207008 309548003 85756007 0 118169006 900000000000011006 900000000000451002 +1982751022 20080731 0 900000000000207008 309548003 85756007 0 118169006 900000000000011006 900000000000451002 +1982752026 20030131 1 900000000000207008 309549006 74262004 0 118169006 900000000000011006 900000000000451002 +1982752026 20080731 0 900000000000207008 309549006 74262004 0 118169006 900000000000011006 900000000000451002 +1982753020 20030131 1 900000000000207008 309549006 85756007 0 118169006 900000000000011006 900000000000451002 +1982753020 20080731 0 900000000000207008 309549006 85756007 0 118169006 900000000000011006 900000000000451002 +1982754025 20030131 1 900000000000207008 309549006 87626005 0 118169006 900000000000011006 900000000000451002 +1982754025 20190731 1 900000000000207008 309549006 87626005 1 118169006 900000000000011006 900000000000451002 +1982755029 20030131 1 900000000000207008 309549006 65801008 0 118171006 900000000000011006 900000000000451002 +1982755029 20080731 0 900000000000207008 309549006 65801008 0 118171006 900000000000011006 900000000000451002 +1983662023 20030131 1 900000000000207008 312494007 53065001 0 118169006 900000000000011006 900000000000451002 +1983662023 20080731 0 900000000000207008 312494007 53065001 0 118169006 900000000000011006 900000000000451002 +1983663029 20030131 1 900000000000207008 312494007 309942007 0 118170007 900000000000011006 900000000000451002 +1983663029 20030731 0 900000000000207008 312494007 309942007 0 118170007 900000000000011006 900000000000451002 +1983664024 20030131 1 900000000000207008 312494007 177075000 0 118171006 900000000000011006 900000000000451002 +1983664024 20080731 0 900000000000207008 312494007 177075000 0 118171006 900000000000011006 900000000000451002 +1997411025 20030131 1 900000000000207008 363311008 86762007 0 118169006 900000000000011006 900000000000451002 +1997411025 20190731 1 900000000000207008 363311008 86762007 1 118169006 900000000000011006 900000000000451002 +1997423020 20030131 1 900000000000207008 363328006 85756007 0 118169006 900000000000011006 900000000000451002 +1997423020 20080731 0 900000000000207008 363328006 85756007 0 118169006 900000000000011006 900000000000451002 +1997424025 20030131 1 900000000000207008 363328006 86762007 0 118169006 900000000000011006 900000000000451002 +1997424025 20080731 0 900000000000207008 363328006 86762007 0 118169006 900000000000011006 900000000000451002 +1997424025 20090131 1 900000000000207008 363328006 86762007 1 118169006 900000000000011006 900000000000451002 +1997425029 20030131 1 900000000000207008 363329003 321667001 0 118169006 900000000000011006 900000000000451002 +1997425029 20080731 0 900000000000207008 363329003 321667001 0 118169006 900000000000011006 900000000000451002 +1998211029 20030131 1 900000000000207008 369611008 30315005 0 118169006 900000000000011006 900000000000451002 +1998211029 20080731 0 900000000000207008 369611008 30315005 0 118169006 900000000000011006 900000000000451002 +1998211029 20090131 1 900000000000207008 369611008 30315005 1 118169006 900000000000011006 900000000000451002 +1998212020 20030131 1 900000000000207008 369611008 85756007 0 118169006 900000000000011006 900000000000451002 +1998212020 20080731 0 900000000000207008 369611008 85756007 0 118169006 900000000000011006 900000000000451002 +1998213026 20030131 1 900000000000207008 369611008 119286000 0 118171006 900000000000011006 900000000000451002 +1998213026 20080731 0 900000000000207008 369611008 119286000 0 118171006 900000000000011006 900000000000451002 +1998213026 20090131 1 900000000000207008 369611008 119286000 1 118171006 900000000000011006 900000000000451002 +1998217025 20030131 1 900000000000207008 369613006 59441001 0 118169006 900000000000011006 900000000000451002 +1998217025 20080731 0 900000000000207008 369613006 59441001 0 118169006 900000000000011006 900000000000451002 +1998218024 20030131 1 900000000000207008 369613006 165369002 0 118171006 900000000000011006 900000000000451002 +1998218024 20040731 0 900000000000207008 369613006 165369002 0 118171006 900000000000011006 900000000000451002 +1998219027 20030131 1 900000000000207008 369613006 256891005 0 370133003 900000000000011006 900000000000451002 +1998219027 20080731 0 900000000000207008 369613006 256891005 0 370133003 900000000000011006 900000000000451002 +1998220022 20030131 1 900000000000207008 369613006 87612001 0 370133003 900000000000011006 900000000000451002 +1998220022 20040731 0 900000000000207008 369613006 87612001 0 370133003 900000000000011006 900000000000451002 +1998221021 20030131 1 900000000000207008 369614000 122865005 0 118169006 900000000000011006 900000000000451002 +1998221021 20030731 0 900000000000207008 369614000 122865005 0 118169006 900000000000011006 900000000000451002 +1998222025 20030131 1 900000000000207008 369614000 16014003 0 118169006 900000000000011006 900000000000451002 +1998222025 20080731 0 900000000000207008 369614000 16014003 0 118169006 900000000000011006 900000000000451002 +1998222025 20090131 1 900000000000207008 369614000 16014003 1 118169006 900000000000011006 900000000000451002 +1998223024 20030131 1 900000000000207008 369614000 85756007 0 118169006 900000000000011006 900000000000451002 +1998223024 20080731 0 900000000000207008 369614000 85756007 0 118169006 900000000000011006 900000000000451002 +1998224029 20030131 1 900000000000207008 369614000 48508003 0 118171006 900000000000011006 900000000000451002 +1998224029 20080731 0 900000000000207008 369614000 48508003 0 118171006 900000000000011006 900000000000451002 +1998224029 20090131 1 900000000000207008 369614000 48508003 1 118171006 900000000000011006 900000000000451002 +1998225028 20030131 1 900000000000207008 369615004 122865005 0 118169006 900000000000011006 900000000000451002 +1998225028 20080731 0 900000000000207008 369615004 122865005 0 118169006 900000000000011006 900000000000451002 +1998226027 20030131 1 900000000000207008 369615004 16014003 0 118169006 900000000000011006 900000000000451002 +1998226027 20080731 0 900000000000207008 369615004 16014003 0 118169006 900000000000011006 900000000000451002 +1998226027 20090731 1 900000000000207008 369615004 16014003 1 118169006 900000000000011006 900000000000451002 +1998227020 20030131 1 900000000000207008 369615004 85756007 0 118169006 900000000000011006 900000000000451002 +1998227020 20080731 0 900000000000207008 369615004 85756007 0 118169006 900000000000011006 900000000000451002 +1998228026 20030131 1 900000000000207008 369616003 122865005 0 118169006 900000000000011006 900000000000451002 +1998228026 20030731 0 900000000000207008 369616003 122865005 0 118169006 900000000000011006 900000000000451002 +1998229023 20030131 1 900000000000207008 369616003 28231008 0 118169006 900000000000011006 900000000000451002 +1998229023 20080731 0 900000000000207008 369616003 28231008 0 118169006 900000000000011006 900000000000451002 +1998229023 20090131 1 900000000000207008 369616003 28231008 1 118169006 900000000000011006 900000000000451002 +1998230029 20030131 1 900000000000207008 369616003 85756007 0 118169006 900000000000011006 900000000000451002 +1998230029 20080731 0 900000000000207008 369616003 85756007 0 118169006 900000000000011006 900000000000451002 +1998231025 20030131 1 900000000000207008 369616003 86273004 0 118171006 900000000000011006 900000000000451002 +1998231025 20080731 0 900000000000207008 369616003 86273004 0 118171006 900000000000011006 900000000000451002 +1998232021 20030131 1 900000000000207008 369617007 122865005 0 118169006 900000000000011006 900000000000451002 +1998232021 20030731 0 900000000000207008 369617007 122865005 0 118169006 900000000000011006 900000000000451002 +1998233027 20030131 1 900000000000207008 369617007 28231008 0 118169006 900000000000011006 900000000000451002 +1998233027 20080731 0 900000000000207008 369617007 28231008 0 118169006 900000000000011006 900000000000451002 +1998234022 20030131 1 900000000000207008 369617007 85756007 0 118169006 900000000000011006 900000000000451002 +1998234022 20080731 0 900000000000207008 369617007 85756007 0 118169006 900000000000011006 900000000000451002 +1998235023 20030131 1 900000000000207008 369617007 38102005 0 118171006 900000000000011006 900000000000451002 +1998235023 20080731 0 900000000000207008 369617007 38102005 0 118171006 900000000000011006 900000000000451002 +1998236024 20030131 1 900000000000207008 369617007 71273005 0 118171006 900000000000011006 900000000000451002 +1998236024 20080731 0 900000000000207008 369617007 71273005 0 118171006 900000000000011006 900000000000451002 +1998237026 20030131 1 900000000000207008 369618002 45292006 0 118169006 900000000000011006 900000000000451002 +1998237026 20080731 0 900000000000207008 369618002 45292006 0 118169006 900000000000011006 900000000000451002 +1998237026 20090131 1 900000000000207008 369618002 45292006 1 118169006 900000000000011006 900000000000451002 +1998238020 20030131 1 900000000000207008 369618002 85756007 0 118169006 900000000000011006 900000000000451002 +1998238020 20080731 0 900000000000207008 369618002 85756007 0 118169006 900000000000011006 900000000000451002 +1998239028 20030131 1 900000000000207008 369618002 309942007 0 118170007 900000000000011006 900000000000451002 +1998239028 20030731 0 900000000000207008 369618002 309942007 0 118170007 900000000000011006 900000000000451002 +1998240026 20030131 1 900000000000207008 369618002 274942001 0 118171006 900000000000011006 900000000000451002 +1998240026 20080731 0 900000000000207008 369618002 274942001 0 118171006 900000000000011006 900000000000451002 +1998240026 20090131 1 900000000000207008 369618002 274942001 1 118171006 900000000000011006 900000000000451002 +1998575027 20030131 1 900000000000207008 370108001 16014003 0 118169006 900000000000011006 900000000000451002 +1998575027 20190731 1 900000000000207008 370108001 16014003 1 118169006 900000000000011006 900000000000451002 +1998576026 20030131 1 900000000000207008 370108001 85756007 0 118169006 900000000000011006 900000000000451002 +1998576026 20030731 0 900000000000207008 370108001 85756007 0 118169006 900000000000011006 900000000000451002 +1998577024 20030131 1 900000000000207008 370108001 116147009 0 118171006 900000000000011006 900000000000451002 +1998577024 20030731 0 900000000000207008 370108001 116147009 0 118171006 900000000000011006 900000000000451002 +1999877020 20030131 1 900000000000207008 371782000 272673000 0 118169006 900000000000011006 900000000000451002 +1999877020 20190731 1 900000000000207008 371782000 272673000 1 118169006 900000000000011006 900000000000451002 +1999878026 20030131 1 900000000000207008 371782000 279495008 0 118169006 900000000000011006 900000000000451002 +1999878026 20080731 0 900000000000207008 371782000 279495008 0 118169006 900000000000011006 900000000000451002 +1999879023 20030131 1 900000000000207008 371782000 272171002 0 370133003 900000000000011006 900000000000451002 +1999879023 20190731 1 900000000000207008 371782000 272171002 2 370133003 900000000000011006 900000000000451002 +1999880021 20030131 1 900000000000207008 371783005 272171002 0 370133003 900000000000011006 900000000000451002 +1999880021 20190731 1 900000000000207008 371783005 272171002 1 370133003 900000000000011006 900000000000451002 +1999881020 20030131 1 900000000000207008 371784004 38866009 0 118169006 900000000000011006 900000000000451002 +1999881020 20190731 1 900000000000207008 371784004 38866009 1 118169006 900000000000011006 900000000000451002 +2000144023 20030131 1 900000000000207008 373101006 76752008 0 118169006 900000000000011006 900000000000451002 +2000144023 20080731 0 900000000000207008 373101006 76752008 0 118169006 900000000000011006 900000000000451002 +2000144023 20090731 1 900000000000207008 373101006 76752008 1 118169006 900000000000011006 900000000000451002 +2000145024 20030131 1 900000000000207008 373101006 85756007 0 118169006 900000000000011006 900000000000451002 +2000145024 20030731 0 900000000000207008 373101006 85756007 0 118169006 900000000000011006 900000000000451002 +2000146020 20030131 1 900000000000207008 373101006 116147009 0 118171006 900000000000011006 900000000000451002 +2000146020 20030731 0 900000000000207008 373101006 116147009 0 118171006 900000000000011006 900000000000451002 +2000147027 20030131 1 900000000000207008 373101006 265253005 0 118171006 900000000000011006 900000000000451002 +2000147027 20080731 0 900000000000207008 373101006 265253005 0 118171006 900000000000011006 900000000000451002 +2000148021 20030131 1 900000000000207008 373102004 76752008 0 118169006 900000000000011006 900000000000451002 +2000148021 20080731 0 900000000000207008 373102004 76752008 0 118169006 900000000000011006 900000000000451002 +2000148021 20090131 1 900000000000207008 373102004 76752008 1 118169006 900000000000011006 900000000000451002 +2000149029 20030131 1 900000000000207008 373102004 85756007 0 118169006 900000000000011006 900000000000451002 +2000149029 20080731 0 900000000000207008 373102004 85756007 0 118169006 900000000000011006 900000000000451002 +2000150029 20030131 1 900000000000207008 373102004 129248005 0 118170007 900000000000011006 900000000000451002 +2000150029 20080731 0 900000000000207008 373102004 129248005 0 118170007 900000000000011006 900000000000451002 +2000151025 20030131 1 900000000000207008 373102004 277590007 0 118171006 900000000000011006 900000000000451002 +2000151025 20080731 0 900000000000207008 373102004 277590007 0 118171006 900000000000011006 900000000000451002 +2000152021 20030131 1 900000000000207008 373103009 76752008 0 118169006 900000000000011006 900000000000451002 +2000152021 20080731 0 900000000000207008 373103009 76752008 0 118169006 900000000000011006 900000000000451002 +2000152021 20090131 1 900000000000207008 373103009 76752008 1 118169006 900000000000011006 900000000000451002 +2000153027 20030131 1 900000000000207008 373103009 85756007 0 118169006 900000000000011006 900000000000451002 +2000153027 20030731 0 900000000000207008 373103009 85756007 0 118169006 900000000000011006 900000000000451002 +2000154022 20030131 1 900000000000207008 373103009 116147009 0 118171006 900000000000011006 900000000000451002 +2000154022 20030731 0 900000000000207008 373103009 116147009 0 118171006 900000000000011006 900000000000451002 +2000155023 20030131 1 900000000000207008 373103009 237378001 0 118171006 900000000000011006 900000000000451002 +2000155023 20080731 0 900000000000207008 373103009 237378001 0 118171006 900000000000011006 900000000000451002 +2000155023 20090131 1 900000000000207008 373103009 237378001 1 118171006 900000000000011006 900000000000451002 +2000189024 20030131 1 900000000000207008 373192005 59441001 0 118169006 900000000000011006 900000000000451002 +2000189024 20080731 0 900000000000207008 373192005 59441001 0 118169006 900000000000011006 900000000000451002 +2000190026 20030131 1 900000000000207008 373192005 122459003 0 118171006 900000000000011006 900000000000451002 +2000190026 20080731 0 900000000000207008 373192005 122459003 0 118171006 900000000000011006 900000000000451002 +2000190026 20090131 1 900000000000207008 373192005 122459003 1 118171006 900000000000011006 900000000000451002 +2000190026 20100731 0 900000000000207008 373192005 122459003 1 118171006 900000000000011006 900000000000451002 +2000190026 20110131 1 900000000000207008 373192005 122459003 1 118171006 900000000000011006 900000000000451002 +2000191027 20030131 1 900000000000207008 373192005 165369002 0 118171006 900000000000011006 900000000000451002 +2000191027 20040731 0 900000000000207008 373192005 165369002 0 118171006 900000000000011006 900000000000451002 +2000192023 20030131 1 900000000000207008 373192005 301796003 0 118171006 900000000000011006 900000000000451002 +2000192023 20080731 0 900000000000207008 373192005 301796003 0 118171006 900000000000011006 900000000000451002 +2000193029 20030131 1 900000000000207008 373192005 87612001 0 370133003 900000000000011006 900000000000451002 +2000193029 20040731 0 900000000000207008 373192005 87612001 0 370133003 900000000000011006 900000000000451002 +2000194024 20030131 1 900000000000207008 373193000 59441001 0 118169006 900000000000011006 900000000000451002 +2000194024 20080731 0 900000000000207008 373193000 59441001 0 118169006 900000000000011006 900000000000451002 +2000194024 20090131 1 900000000000207008 373193000 59441001 1 118169006 900000000000011006 900000000000451002 +2000194024 20100731 0 900000000000207008 373193000 59441001 1 118169006 900000000000011006 900000000000451002 +2000194024 20110131 1 900000000000207008 373193000 59441001 1 118169006 900000000000011006 900000000000451002 +2000195020 20030131 1 900000000000207008 373193000 122459003 0 118171006 900000000000011006 900000000000451002 +2000195020 20080731 0 900000000000207008 373193000 122459003 0 118171006 900000000000011006 900000000000451002 +2000195020 20090131 1 900000000000207008 373193000 122459003 1 118171006 900000000000011006 900000000000451002 +2000195020 20100731 0 900000000000207008 373193000 122459003 1 118171006 900000000000011006 900000000000451002 +2000195020 20110131 1 900000000000207008 373193000 122459003 1 118171006 900000000000011006 900000000000451002 +2000196021 20030131 1 900000000000207008 373193000 165369002 0 118171006 900000000000011006 900000000000451002 +2000196021 20040731 0 900000000000207008 373193000 165369002 0 118171006 900000000000011006 900000000000451002 +2000197028 20030131 1 900000000000207008 373193000 87612001 0 370133003 900000000000011006 900000000000451002 +2000197028 20040731 0 900000000000207008 373193000 87612001 0 370133003 900000000000011006 900000000000451002 +2008010026 20030131 1 900000000000207008 384744003 258589002 0 116680003 900000000000011006 900000000000451002 +2008010026 20080731 0 900000000000207008 384744003 258589002 0 116680003 900000000000011006 900000000000451002 +2008011027 20030131 1 900000000000207008 384744003 59441001 0 118169006 900000000000011006 900000000000451002 +2008011027 20080731 0 900000000000207008 384744003 59441001 0 118169006 900000000000011006 900000000000451002 +2008012023 20030131 1 900000000000207008 384744003 165369002 0 118171006 900000000000011006 900000000000451002 +2008012023 20040731 0 900000000000207008 384744003 165369002 0 118171006 900000000000011006 900000000000451002 +2008013029 20030131 1 900000000000207008 384744003 87612001 0 370133003 900000000000011006 900000000000451002 +2008013029 20040731 0 900000000000207008 384744003 87612001 0 370133003 900000000000011006 900000000000451002 +2008020020 20030131 1 900000000000207008 384746001 122610009 0 116680003 900000000000011006 900000000000451002 +2008021024 20030131 1 900000000000207008 384746001 39607008 0 118169006 900000000000011006 900000000000451002 +2008021024 20080731 0 900000000000207008 384746001 39607008 0 118169006 900000000000011006 900000000000451002 +2008021024 20090731 1 900000000000207008 384746001 39607008 1 118169006 900000000000011006 900000000000451002 +2008022028 20030131 1 900000000000207008 384746001 85756007 0 118169006 900000000000011006 900000000000451002 +2008022028 20080731 0 900000000000207008 384746001 85756007 0 118169006 900000000000011006 900000000000451002 +2008023022 20030131 1 900000000000207008 384746001 116030005 0 118171006 900000000000011006 900000000000451002 +2008023022 20080731 0 900000000000207008 384746001 116030005 0 118171006 900000000000011006 900000000000451002 +2008023022 20090731 1 900000000000207008 384746001 116030005 1 118171006 900000000000011006 900000000000451002 +2008024027 20030131 1 900000000000207008 384747005 122610009 0 116680003 900000000000011006 900000000000451002 +2008024027 20080731 0 900000000000207008 384747005 122610009 0 116680003 900000000000011006 900000000000451002 +2008025026 20030131 1 900000000000207008 384747005 39607008 0 118169006 900000000000011006 900000000000451002 +2008025026 20080731 0 900000000000207008 384747005 39607008 0 118169006 900000000000011006 900000000000451002 +2008025026 20090131 1 900000000000207008 384747005 39607008 1 118169006 900000000000011006 900000000000451002 +2008026025 20030131 1 900000000000207008 384747005 85756007 0 118169006 900000000000011006 900000000000451002 +2008026025 20080731 0 900000000000207008 384747005 85756007 0 118169006 900000000000011006 900000000000451002 +2008027023 20030131 1 900000000000207008 384747005 14211004 0 118171006 900000000000011006 900000000000451002 +2008027023 20080731 0 900000000000207008 384747005 14211004 0 118171006 900000000000011006 900000000000451002 +2008028029 20030131 1 900000000000207008 384747005 78603008 0 118171006 900000000000011006 900000000000451002 +2008028029 20080731 0 900000000000207008 384747005 78603008 0 118171006 900000000000011006 900000000000451002 +2008205022 20030131 1 900000000000207008 384819001 119386002 0 116680003 900000000000011006 900000000000451002 +2008205022 20030731 0 900000000000207008 384819001 119386002 0 116680003 900000000000011006 900000000000451002 +2008206023 20030131 1 900000000000207008 384819001 41216001 0 118169006 900000000000011006 900000000000451002 +2008206023 20080731 1 900000000000207008 384819001 41216001 1 118169006 900000000000011006 900000000000451002 +2008207025 20030131 1 900000000000207008 384819001 236258004 0 118171006 900000000000011006 900000000000451002 +2008207025 20080731 1 900000000000207008 384819001 236258004 1 118171006 900000000000011006 900000000000451002 +2008208024 20030131 1 900000000000207008 384820007 119386002 0 116680003 900000000000011006 900000000000451002 +2008208024 20030731 0 900000000000207008 384820007 119386002 0 116680003 900000000000011006 900000000000451002 +2008209027 20030131 1 900000000000207008 384820007 41216001 0 118169006 900000000000011006 900000000000451002 +2008209027 20080731 0 900000000000207008 384820007 41216001 0 118169006 900000000000011006 900000000000451002 +2008209027 20090131 1 900000000000207008 384820007 41216001 1 118169006 900000000000011006 900000000000451002 +2008210021 20030131 1 900000000000207008 384820007 90199006 0 118171006 900000000000011006 900000000000451002 +2008210021 20080731 0 900000000000207008 384820007 90199006 0 118171006 900000000000011006 900000000000451002 +2008210021 20090131 1 900000000000207008 384820007 90199006 1 118171006 900000000000011006 900000000000451002 +2008951027 20030131 1 900000000000207008 385338007 119392008 0 116680003 900000000000011006 900000000000451002 +2008951027 20030731 0 900000000000207008 385338007 119392008 0 116680003 900000000000011006 900000000000451002 +2008952023 20030131 1 900000000000207008 385338007 53505006 0 118169006 900000000000011006 900000000000451002 +2008952023 20080731 0 900000000000207008 385338007 53505006 0 118169006 900000000000011006 900000000000451002 +2008952023 20090131 1 900000000000207008 385338007 53505006 1 118169006 900000000000011006 900000000000451002 +2008953029 20030131 1 900000000000207008 385339004 385338007 0 116680003 900000000000011006 900000000000451002 +2008954024 20030131 1 900000000000207008 385339004 53505006 0 118169006 900000000000011006 900000000000451002 +2008954024 20080731 0 900000000000207008 385339004 53505006 0 118169006 900000000000011006 900000000000451002 +2008954024 20090131 1 900000000000207008 385339004 53505006 1 118169006 900000000000011006 900000000000451002 +2008955020 20030131 1 900000000000207008 385340002 385338007 0 116680003 900000000000011006 900000000000451002 +2008956021 20030131 1 900000000000207008 385340002 53505006 0 118169006 900000000000011006 900000000000451002 +2008956021 20080731 0 900000000000207008 385340002 53505006 0 118169006 900000000000011006 900000000000451002 +2008956021 20090131 1 900000000000207008 385340002 53505006 1 118169006 900000000000011006 900000000000451002 +2029051026 20030131 1 900000000000207008 40511003 385597004 0 370133003 900000000000011006 900000000000451002 +2029051026 20190731 1 900000000000207008 40511003 385597004 1 370133003 900000000000011006 900000000000451002 +2032063026 20030131 1 900000000000207008 48469005 85756007 0 118169006 900000000000011006 900000000000451002 +2032063026 20030731 0 900000000000207008 48469005 85756007 0 118169006 900000000000011006 900000000000451002 +2032064021 20030131 1 900000000000207008 48469005 116147009 0 118171006 900000000000011006 900000000000451002 +2032064021 20030731 0 900000000000207008 48469005 116147009 0 118171006 900000000000011006 900000000000451002 +2219771026 20030731 1 900000000000207008 110894008 127456000 0 116680003 900000000000011006 900000000000451002 +2219773028 20030731 1 900000000000207008 110899003 127456000 0 116680003 900000000000011006 900000000000451002 +2219773028 20080731 0 900000000000207008 110899003 127456000 0 116680003 900000000000011006 900000000000451002 +2219805029 20030731 1 900000000000207008 110943000 397233003 0 116680003 900000000000011006 900000000000451002 +2219806028 20030731 1 900000000000207008 110945007 397129002 0 116680003 900000000000011006 900000000000451002 +2219810025 20030731 1 900000000000207008 110969006 258450006 0 116680003 900000000000011006 900000000000451002 +2219810025 20180731 0 900000000000207008 110969006 258450006 0 116680003 900000000000011006 900000000000451002 +2221394029 20030731 1 900000000000207008 258420003 119376003 0 116680003 900000000000011006 900000000000451002 +2221394029 20230630 0 900000000000207008 258420003 119376003 0 116680003 900000000000011006 900000000000451002 +2221395028 20030731 1 900000000000207008 258422006 119376003 0 116680003 900000000000011006 900000000000451002 +2221395028 20080731 0 900000000000207008 258422006 119376003 0 116680003 900000000000011006 900000000000451002 +2221396027 20030731 1 900000000000207008 258424007 119376003 0 116680003 900000000000011006 900000000000451002 +2221396027 20080731 0 900000000000207008 258424007 119376003 0 116680003 900000000000011006 900000000000451002 +2221397020 20030731 1 900000000000207008 258439008 309051001 0 116680003 900000000000011006 900000000000451002 +2221398026 20030731 1 900000000000207008 258441009 309051001 0 116680003 900000000000011006 900000000000451002 +2221399023 20030731 1 900000000000207008 258448003 119376003 0 116680003 900000000000011006 900000000000451002 +2221399023 20040731 0 900000000000207008 258448003 119376003 0 116680003 900000000000011006 900000000000451002 +2221400027 20030731 1 900000000000207008 258450006 119372001 0 116680003 900000000000011006 900000000000451002 +2221400027 20040731 0 900000000000207008 258450006 119372001 0 116680003 900000000000011006 900000000000451002 +2221401028 20030731 1 900000000000207008 258472008 397233003 0 116680003 900000000000011006 900000000000451002 +2221402024 20030731 1 900000000000207008 258479004 119376003 0 116680003 900000000000011006 900000000000451002 +2221402024 20080731 0 900000000000207008 258479004 119376003 0 116680003 900000000000011006 900000000000451002 +2221403025 20030731 1 900000000000207008 258498002 119376003 0 116680003 900000000000011006 900000000000451002 +2221403025 20040731 0 900000000000207008 258498002 119376003 0 116680003 900000000000011006 900000000000451002 +2221404020 20030731 1 900000000000207008 258523003 397129002 0 116680003 900000000000011006 900000000000451002 +2221405021 20030731 1 900000000000207008 258544003 119376003 0 116680003 900000000000011006 900000000000451002 +2221405021 20080731 0 900000000000207008 258544003 119376003 0 116680003 900000000000011006 900000000000451002 +2221407029 20030731 1 900000000000207008 258559009 119376003 0 116680003 900000000000011006 900000000000451002 +2221407029 20040731 0 900000000000207008 258559009 119376003 0 116680003 900000000000011006 900000000000451002 +2221409026 20030731 1 900000000000207008 258601009 119399004 0 116680003 900000000000011006 900000000000451002 +2222580029 20030731 1 900000000000207008 116160003 399680007 0 116680003 900000000000011006 900000000000451002 +2223497028 20030731 1 900000000000207008 303247002 119376003 0 116680003 900000000000011006 900000000000451002 +2223497028 20090131 0 900000000000207008 303247002 119376003 0 116680003 900000000000011006 900000000000451002 +2223709022 20030731 1 900000000000207008 309059004 127457009 0 116680003 900000000000011006 900000000000451002 +2223710028 20030731 1 900000000000207008 309070006 397129002 0 116680003 900000000000011006 900000000000451002 +2223711029 20030731 1 900000000000207008 309072003 119376003 0 116680003 900000000000011006 900000000000451002 +2223711029 20080731 0 900000000000207008 309072003 119376003 0 116680003 900000000000011006 900000000000451002 +2223711029 20210131 1 900000000000207008 309072003 119376003 0 116680003 900000000000011006 900000000000451002 +2223715022 20030731 1 900000000000207008 309144007 399680007 0 116680003 900000000000011006 900000000000451002 +2223716023 20030731 1 900000000000207008 309145008 399680007 0 116680003 900000000000011006 900000000000451002 +2223717025 20030731 1 900000000000207008 309148005 399680007 0 116680003 900000000000011006 900000000000451002 +2223718024 20030731 1 900000000000207008 309150002 119376003 0 116680003 900000000000011006 900000000000451002 +2223720022 20030731 1 900000000000207008 309172000 127460002 0 116680003 900000000000011006 900000000000451002 +2223720022 20080731 0 900000000000207008 309172000 127460002 0 116680003 900000000000011006 900000000000451002 +2223721021 20030731 1 900000000000207008 309175003 399492000 0 116680003 900000000000011006 900000000000451002 +2223722025 20030731 1 900000000000207008 309186001 119376003 0 116680003 900000000000011006 900000000000451002 +2223722025 20080731 0 900000000000207008 309186001 119376003 0 116680003 900000000000011006 900000000000451002 +2223723024 20030731 1 900000000000207008 309205005 122656001 0 116680003 900000000000011006 900000000000451002 +2223724029 20030731 1 900000000000207008 309210009 127463000 0 116680003 900000000000011006 900000000000451002 +2223724029 20080731 0 900000000000207008 309210009 127463000 0 116680003 900000000000011006 900000000000451002 +2223725028 20030731 1 900000000000207008 309213006 119379005 0 116680003 900000000000011006 900000000000451002 +2223731025 20030731 1 900000000000207008 309261004 119382000 0 116680003 900000000000011006 900000000000451002 +2223731025 20080731 0 900000000000207008 309261004 119382000 0 116680003 900000000000011006 900000000000451002 +2223731025 20220630 1 900000000000207008 309261004 119382000 0 116680003 900000000000011006 900000000000451002 +2223732021 20030731 1 900000000000207008 309271002 399402006 0 116680003 900000000000011006 900000000000451002 +2223733027 20030731 1 900000000000207008 309277003 128174004 0 116680003 900000000000011006 900000000000451002 +2223733027 20080731 0 900000000000207008 309277003 128174004 0 116680003 900000000000011006 900000000000451002 +2223733027 20090131 1 900000000000207008 309277003 128174004 0 116680003 900000000000011006 900000000000451002 +2223734022 20030731 1 900000000000207008 309278008 119376003 0 116680003 900000000000011006 900000000000451002 +2223734022 20080731 0 900000000000207008 309278008 119376003 0 116680003 900000000000011006 900000000000451002 +2223735023 20030731 1 900000000000207008 309290005 127483004 0 116680003 900000000000011006 900000000000451002 +2223735023 20080731 0 900000000000207008 309290005 127483004 0 116680003 900000000000011006 900000000000451002 +2223742023 20030731 1 900000000000207008 309484008 399526005 0 116680003 900000000000011006 900000000000451002 +2223742023 20090131 0 900000000000207008 309484008 399526005 0 116680003 900000000000011006 900000000000451002 +2223743029 20030731 1 900000000000207008 309485009 399526005 0 116680003 900000000000011006 900000000000451002 +2223743029 20090131 0 900000000000207008 309485009 399526005 0 116680003 900000000000011006 900000000000451002 +2223744024 20030731 1 900000000000207008 309486005 399526005 0 116680003 900000000000011006 900000000000451002 +2223744024 20090131 0 900000000000207008 309486005 399526005 0 116680003 900000000000011006 900000000000451002 +2223745020 20030731 1 900000000000207008 309494003 127468009 0 116680003 900000000000011006 900000000000451002 +2223745020 20080731 0 900000000000207008 309494003 127468009 0 116680003 900000000000011006 900000000000451002 +2223756020 20030731 1 900000000000207008 119323008 309051001 0 116680003 900000000000011006 900000000000451002 +2223757027 20030731 1 900000000000207008 119332005 119376003 0 116680003 900000000000011006 900000000000451002 +2223757027 20040731 0 900000000000207008 119332005 119376003 0 116680003 900000000000011006 900000000000451002 +2223781023 20030731 1 900000000000207008 119400006 119399004 0 116680003 900000000000011006 900000000000451002 +2223782027 20030731 1 900000000000207008 119401005 119376003 0 116680003 900000000000011006 900000000000451002 +2223782027 20040731 0 900000000000207008 119401005 119376003 0 116680003 900000000000011006 900000000000451002 +2223783021 20030731 1 900000000000207008 119401005 119399004 0 116680003 900000000000011006 900000000000451002 +2223783021 20050131 0 900000000000207008 119401005 119399004 0 116680003 900000000000011006 900000000000451002 +2223783021 20080731 1 900000000000207008 119401005 119399004 0 116680003 900000000000011006 900000000000451002 +2224220028 20030731 1 900000000000207008 122550002 119376003 0 116680003 900000000000011006 900000000000451002 +2224220028 20040731 0 900000000000207008 122550002 119376003 0 116680003 900000000000011006 900000000000451002 +2224221029 20030731 1 900000000000207008 122580007 119402003 0 116680003 900000000000011006 900000000000451002 +2224221029 20040731 0 900000000000207008 122580007 119402003 0 116680003 900000000000011006 900000000000451002 +2224222020 20030731 1 900000000000207008 122596005 397199005 0 116680003 900000000000011006 900000000000451002 +2224223026 20030731 1 900000000000207008 122601001 397077004 0 116680003 900000000000011006 900000000000451002 +2224223026 20050731 0 900000000000207008 122601001 397077004 0 116680003 900000000000011006 900000000000451002 +2224225022 20030731 1 900000000000207008 122605005 309175003 0 116680003 900000000000011006 900000000000451002 +2224225022 20080731 0 900000000000207008 122605005 309175003 0 116680003 900000000000011006 900000000000451002 +2224226023 20030731 1 900000000000207008 122606006 309175003 0 116680003 900000000000011006 900000000000451002 +2224227025 20030731 1 900000000000207008 122607002 309175003 0 116680003 900000000000011006 900000000000451002 +2224228024 20030731 1 900000000000207008 122610009 399492000 0 116680003 900000000000011006 900000000000451002 +2224228024 20080731 0 900000000000207008 122610009 399492000 0 116680003 900000000000011006 900000000000451002 +2224229027 20030731 1 900000000000207008 122613006 309170008 0 116680003 900000000000011006 900000000000451002 +2224229027 20080731 0 900000000000207008 122613006 309170008 0 116680003 900000000000011006 900000000000451002 +2224231020 20030731 1 900000000000207008 122616003 309172000 0 116680003 900000000000011006 900000000000451002 +2224232029 20030731 1 900000000000207008 122617007 309172000 0 116680003 900000000000011006 900000000000451002 +2224233023 20030731 1 900000000000207008 122618002 127459007 0 116680003 900000000000011006 900000000000451002 +2224233023 20080731 0 900000000000207008 122618002 127459007 0 116680003 900000000000011006 900000000000451002 +2224234028 20030731 1 900000000000207008 122621000 309172000 0 116680003 900000000000011006 900000000000451002 +2224235027 20030731 1 900000000000207008 122622007 309172000 0 116680003 900000000000011006 900000000000451002 +2224236026 20030731 1 900000000000207008 122623002 128166000 0 116680003 900000000000011006 900000000000451002 +2224236026 20080731 0 900000000000207008 122623002 128166000 0 116680003 900000000000011006 900000000000451002 +2224237024 20030731 1 900000000000207008 122624008 397078009 0 116680003 900000000000011006 900000000000451002 +2224238025 20030731 1 900000000000207008 122625009 397077004 0 116680003 900000000000011006 900000000000451002 +2224239022 20030731 1 900000000000207008 122627001 397077004 0 116680003 900000000000011006 900000000000451002 +2224240024 20030731 1 900000000000207008 122628006 397077004 0 116680003 900000000000011006 900000000000451002 +2224240024 20080731 0 900000000000207008 122628006 397077004 0 116680003 900000000000011006 900000000000451002 +2224241023 20030731 1 900000000000207008 122628006 309209004 0 116680003 900000000000011006 900000000000451002 +2224242027 20030731 1 900000000000207008 122629003 309209004 0 116680003 900000000000011006 900000000000451002 +2224243021 20030731 1 900000000000207008 122629003 397078009 0 116680003 900000000000011006 900000000000451002 +2224247022 20030731 1 900000000000207008 122632000 309211008 0 116680003 900000000000011006 900000000000451002 +2224248028 20030731 1 900000000000207008 122633005 309211008 0 116680003 900000000000011006 900000000000451002 +2224248028 20080731 0 900000000000207008 122633005 309211008 0 116680003 900000000000011006 900000000000451002 +2224249020 20030731 1 900000000000207008 122633005 397078009 0 116680003 900000000000011006 900000000000451002 +2224249020 20080731 0 900000000000207008 122633005 397078009 0 116680003 900000000000011006 900000000000451002 +2224250020 20030731 1 900000000000207008 122634004 399629006 0 116680003 900000000000011006 900000000000451002 +2224251024 20030731 1 900000000000207008 122635003 399629006 0 116680003 900000000000011006 900000000000451002 +2224252028 20030731 1 900000000000207008 122644002 397077004 0 116680003 900000000000011006 900000000000451002 +2224252028 20080731 0 900000000000207008 122644002 397077004 0 116680003 900000000000011006 900000000000451002 +2224253022 20030731 1 900000000000207008 122645001 397078009 0 116680003 900000000000011006 900000000000451002 +2224253022 20080731 0 900000000000207008 122645001 397078009 0 116680003 900000000000011006 900000000000451002 +2224254027 20030731 1 900000000000207008 122652004 128159001 0 116680003 900000000000011006 900000000000451002 +2224254027 20080731 0 900000000000207008 122652004 128159001 0 116680003 900000000000011006 900000000000451002 +2224254027 20190731 1 900000000000207008 122652004 128159001 0 116680003 900000000000011006 900000000000451002 +2224255026 20030731 1 900000000000207008 122657005 397077004 0 116680003 900000000000011006 900000000000451002 +2224255026 20080731 0 900000000000207008 122657005 397077004 0 116680003 900000000000011006 900000000000451002 +2224256025 20030731 1 900000000000207008 122667000 397077004 0 116680003 900000000000011006 900000000000451002 +2224257023 20030731 1 900000000000207008 122669002 309272009 0 116680003 900000000000011006 900000000000451002 +2224258029 20030731 1 900000000000207008 122672009 397077004 0 116680003 900000000000011006 900000000000451002 +2224259021 20030731 1 900000000000207008 122674005 399741007 0 116680003 900000000000011006 900000000000451002 +2224260027 20030731 1 900000000000207008 122680002 399741007 0 116680003 900000000000011006 900000000000451002 +2224261028 20030731 1 900000000000207008 122688009 309272009 0 116680003 900000000000011006 900000000000451002 +2224261028 20080731 0 900000000000207008 122688009 309272009 0 116680003 900000000000011006 900000000000451002 +2224262024 20030731 1 900000000000207008 122689001 122674005 0 116680003 900000000000011006 900000000000451002 +2224263025 20030731 1 900000000000207008 122690005 122680002 0 116680003 900000000000011006 900000000000451002 +2224264020 20030731 1 900000000000207008 122691009 397077004 0 116680003 900000000000011006 900000000000451002 +2224265021 20030731 1 900000000000207008 122692002 397078009 0 116680003 900000000000011006 900000000000451002 +2224266022 20030731 1 900000000000207008 122698003 397077004 0 116680003 900000000000011006 900000000000451002 +2224267029 20030731 1 900000000000207008 122699006 397078009 0 116680003 900000000000011006 900000000000451002 +2224267029 20080731 0 900000000000207008 122699006 397078009 0 116680003 900000000000011006 900000000000451002 +2224269026 20030731 1 900000000000207008 122703009 128163008 0 116680003 900000000000011006 900000000000451002 +2224270025 20030731 1 900000000000207008 122704003 128163008 0 116680003 900000000000011006 900000000000451002 +2224270025 20080731 0 900000000000207008 122704003 128163008 0 116680003 900000000000011006 900000000000451002 +2224271026 20030731 1 900000000000207008 122705002 128163008 0 116680003 900000000000011006 900000000000451002 +2224272022 20030731 1 900000000000207008 122707005 122697008 0 116680003 900000000000011006 900000000000451002 +2224273028 20030731 1 900000000000207008 122707005 128163008 0 116680003 900000000000011006 900000000000451002 +2224274023 20030731 1 900000000000207008 122709008 397077004 0 116680003 900000000000011006 900000000000451002 +2224275024 20030731 1 900000000000207008 122713001 122710003 0 116680003 900000000000011006 900000000000451002 +2224276020 20030731 1 900000000000207008 122717000 122710003 0 116680003 900000000000011006 900000000000451002 +2224277027 20030731 1 900000000000207008 122718005 122710003 0 116680003 900000000000011006 900000000000451002 +2224277027 20080731 0 900000000000207008 122718005 122710003 0 116680003 900000000000011006 900000000000451002 +2224278021 20030731 1 900000000000207008 122722000 127483004 0 116680003 900000000000011006 900000000000451002 +2224279029 20030731 1 900000000000207008 122723005 127483004 0 116680003 900000000000011006 900000000000451002 +2224280026 20030731 1 900000000000207008 122724004 309133004 0 116680003 900000000000011006 900000000000451002 +2224281027 20030731 1 900000000000207008 122725003 309133004 0 116680003 900000000000011006 900000000000451002 +2224282023 20030731 1 900000000000207008 122726002 309133004 0 116680003 900000000000011006 900000000000451002 +2224283029 20030731 1 900000000000207008 122727006 309133004 0 116680003 900000000000011006 900000000000451002 +2224767025 20030731 1 900000000000207008 127456000 123038009 0 116680003 900000000000011006 900000000000451002 +2224767025 20080731 0 900000000000207008 127456000 123038009 0 116680003 900000000000011006 900000000000451002 +2224768024 20030731 1 900000000000207008 127458004 258606004 0 116680003 900000000000011006 900000000000451002 +2224769027 20030731 1 900000000000207008 127459007 258603007 0 116680003 900000000000011006 900000000000451002 +2224770026 20030731 1 900000000000207008 127459007 119376003 0 116680003 900000000000011006 900000000000451002 +2224770026 20040731 0 900000000000207008 127459007 119376003 0 116680003 900000000000011006 900000000000451002 +2224771027 20030731 1 900000000000207008 127465007 363311008 0 116680003 900000000000011006 900000000000451002 +2224771027 20040731 0 900000000000207008 127465007 363311008 0 116680003 900000000000011006 900000000000451002 +2224772023 20030731 1 900000000000207008 127466008 122643008 0 116680003 900000000000011006 900000000000451002 +2224772023 20040731 0 900000000000207008 127466008 122643008 0 116680003 900000000000011006 900000000000451002 +2224773029 20030731 1 900000000000207008 127467004 127469001 0 116680003 900000000000011006 900000000000451002 +2224774024 20030731 1 900000000000207008 127468009 119376003 0 116680003 900000000000011006 900000000000451002 +2224774024 20080731 0 900000000000207008 127468009 119376003 0 116680003 900000000000011006 900000000000451002 +2224776021 20030731 1 900000000000207008 127478007 399680007 0 116680003 900000000000011006 900000000000451002 +2224777028 20030731 1 900000000000207008 127479004 309053003 0 116680003 900000000000011006 900000000000451002 +2224777028 20130731 0 900000000000207008 127479004 309053003 0 116680003 900000000000011006 900000000000451002 +2224777028 20210731 1 900000000000207008 127479004 309053003 0 116680003 900000000000011006 900000000000451002 +2224777028 20231201 0 900000000000207008 127479004 309053003 0 116680003 900000000000011006 900000000000451002 +2224778022 20030731 1 900000000000207008 127482009 128155007 0 116680003 900000000000011006 900000000000451002 +2224813029 20030731 1 900000000000207008 128159001 122643008 0 116680003 900000000000011006 900000000000451002 +2224814024 20030731 1 900000000000207008 128161005 119376003 0 116680003 900000000000011006 900000000000451002 +2224814024 20050131 0 900000000000207008 128161005 119376003 0 116680003 900000000000011006 900000000000451002 +2228529023 20030731 1 900000000000207008 48469005 123038009 0 116680003 900000000000011006 900000000000451002 +2228529023 20180731 0 900000000000207008 48469005 123038009 0 116680003 900000000000011006 900000000000451002 +2233996024 20030731 1 900000000000207008 363311008 119299002 0 116680003 900000000000011006 900000000000451002 +2233996024 20040731 0 900000000000207008 363311008 119299002 0 116680003 900000000000011006 900000000000451002 +2233998020 20030731 1 900000000000207008 363328006 119376003 0 116680003 900000000000011006 900000000000451002 +2238975025 20030731 1 900000000000207008 369611008 122638001 0 116680003 900000000000011006 900000000000451002 +2238976029 20030731 1 900000000000207008 369615004 399541005 0 116680003 900000000000011006 900000000000451002 +2238976029 20211031 0 900000000000207008 369615004 399541005 0 116680003 900000000000011006 900000000000451002 +2239021028 20030731 1 900000000000207008 370108001 399460001 0 116680003 900000000000011006 900000000000451002 +2240419023 20030731 1 900000000000207008 384819001 309132009 0 116680003 900000000000011006 900000000000451002 +2240420028 20030731 1 900000000000207008 384820007 309133004 0 116680003 900000000000011006 900000000000451002 +2240516029 20030731 1 900000000000207008 385338007 309267000 0 116680003 900000000000011006 900000000000451002 +2240776024 20030731 1 900000000000207008 396273004 127481002 0 116680003 900000000000011006 900000000000451002 +2240776024 20080731 0 900000000000207008 396273004 127481002 0 116680003 900000000000011006 900000000000451002 +2240889021 20030731 1 900000000000207008 396353007 396355000 0 116680003 900000000000011006 900000000000451002 +2240890028 20030731 1 900000000000207008 396354001 396355000 0 116680003 900000000000011006 900000000000451002 +2240891029 20030731 1 900000000000207008 396355000 119325001 0 116680003 900000000000011006 900000000000451002 +2240892020 20030731 1 900000000000207008 396356004 119325001 0 116680003 900000000000011006 900000000000451002 +2240893026 20030731 1 900000000000207008 396357008 396356004 0 116680003 900000000000011006 900000000000451002 +2240894021 20030731 1 900000000000207008 396358003 396356004 0 116680003 900000000000011006 900000000000451002 +2240895022 20030731 1 900000000000207008 396359006 258589002 0 116680003 900000000000011006 900000000000451002 +2240895022 20080731 0 900000000000207008 396359006 258589002 0 116680003 900000000000011006 900000000000451002 +2241042025 20030731 1 900000000000207008 396476009 128168004 0 116680003 900000000000011006 900000000000451002 +2241042025 20090131 0 900000000000207008 396476009 128168004 0 116680003 900000000000011006 900000000000451002 +2241043024 20030731 1 900000000000207008 396477000 128168004 0 116680003 900000000000011006 900000000000451002 +2241043024 20080731 0 900000000000207008 396477000 128168004 0 116680003 900000000000011006 900000000000451002 +2241044029 20030731 1 900000000000207008 396478005 128168004 0 116680003 900000000000011006 900000000000451002 +2241044029 20090131 0 900000000000207008 396478005 128168004 0 116680003 900000000000011006 900000000000451002 +2241045028 20030731 1 900000000000207008 396479002 128168004 0 116680003 900000000000011006 900000000000451002 +2241045028 20090131 0 900000000000207008 396479002 128168004 0 116680003 900000000000011006 900000000000451002 +2241046027 20030731 1 900000000000207008 396480004 128168004 0 116680003 900000000000011006 900000000000451002 +2241046027 20090131 0 900000000000207008 396480004 128168004 0 116680003 900000000000011006 900000000000451002 +2241047020 20030731 1 900000000000207008 396481000 128168004 0 116680003 900000000000011006 900000000000451002 +2241050023 20030731 1 900000000000207008 396483002 119325001 0 116680003 900000000000011006 900000000000451002 +2241102022 20030731 1 900000000000207008 396525008 309142006 0 116680003 900000000000011006 900000000000451002 +2241102022 20080731 0 900000000000207008 396525008 309142006 0 116680003 900000000000011006 900000000000451002 +2241103028 20030731 1 900000000000207008 396526009 309143001 0 116680003 900000000000011006 900000000000451002 +2241104023 20030731 1 900000000000207008 396527000 309143001 0 116680003 900000000000011006 900000000000451002 +2241340025 20030731 1 900000000000207008 396685001 309275006 0 116680003 900000000000011006 900000000000451002 +2241340025 20080731 0 900000000000207008 396685001 309275006 0 116680003 900000000000011006 900000000000451002 +2241486029 20030731 1 900000000000207008 396804002 309490007 0 116680003 900000000000011006 900000000000451002 +2241486029 20080731 0 900000000000207008 396804002 309490007 0 116680003 900000000000011006 900000000000451002 +2241487022 20030731 1 900000000000207008 396805001 309490007 0 116680003 900000000000011006 900000000000451002 +2241487022 20080731 0 900000000000207008 396805001 309490007 0 116680003 900000000000011006 900000000000451002 +2241488028 20030731 1 900000000000207008 396806000 309490007 0 116680003 900000000000011006 900000000000451002 +2241488028 20080731 0 900000000000207008 396806000 309490007 0 116680003 900000000000011006 900000000000451002 +2241489020 20030731 1 900000000000207008 396807009 309490007 0 116680003 900000000000011006 900000000000451002 +2241489020 20080731 0 900000000000207008 396807009 309490007 0 116680003 900000000000011006 900000000000451002 +2241591026 20030731 1 900000000000207008 396896007 123038009 0 116680003 900000000000011006 900000000000451002 +2241591026 20080731 0 900000000000207008 396896007 123038009 0 116680003 900000000000011006 900000000000451002 +2241592022 20030731 1 900000000000207008 396897003 127478007 0 116680003 900000000000011006 900000000000451002 +2241592022 20080731 0 900000000000207008 396897003 127478007 0 116680003 900000000000011006 900000000000451002 +2241593028 20030731 1 900000000000207008 396898008 399572009 0 116680003 900000000000011006 900000000000451002 +2241593028 20080731 0 900000000000207008 396898008 399572009 0 116680003 900000000000011006 900000000000451002 +2241594023 20030731 1 900000000000207008 396899000 399633004 0 116680003 900000000000011006 900000000000451002 +2241595024 20030731 1 900000000000207008 396900005 399633004 0 116680003 900000000000011006 900000000000451002 +2241597027 20030731 1 900000000000207008 396902002 399633004 0 116680003 900000000000011006 900000000000451002 +2241599029 20030731 1 900000000000207008 396904001 396898008 0 116680003 900000000000011006 900000000000451002 +2241601027 20030731 1 900000000000207008 396906004 396898008 0 116680003 900000000000011006 900000000000451002 +2241601027 20240601 0 900000000000207008 396906004 396898008 0 116680003 900000000000011006 900000000000451002 +2241623028 20030731 1 900000000000207008 396928004 128164002 0 116680003 900000000000011006 900000000000451002 +2241699021 20030731 1 900000000000207008 396997002 119359002 0 116680003 900000000000011006 900000000000451002 +2241700022 20030731 1 900000000000207008 396998007 396997002 0 116680003 900000000000011006 900000000000451002 +2241701021 20030731 1 900000000000207008 396998007 396999004 0 116680003 900000000000011006 900000000000451002 +2241702025 20030731 1 900000000000207008 396999004 309105004 0 116680003 900000000000011006 900000000000451002 +2241702025 20080731 0 900000000000207008 396999004 309105004 0 116680003 900000000000011006 900000000000451002 +2241703024 20030731 1 900000000000207008 396999004 119359002 0 116680003 900000000000011006 900000000000451002 +2241791029 20030731 1 900000000000207008 397053005 122638001 0 116680003 900000000000011006 900000000000451002 +2241791029 20080731 0 900000000000207008 397053005 122638001 0 116680003 900000000000011006 900000000000451002 +2241793026 20030731 1 900000000000207008 397055003 122638001 0 116680003 900000000000011006 900000000000451002 +2241793026 20080731 0 900000000000207008 397055003 122638001 0 116680003 900000000000011006 900000000000451002 +2241794021 20030731 1 900000000000207008 397056002 122638001 0 116680003 900000000000011006 900000000000451002 +2241794021 20080731 0 900000000000207008 397056002 122638001 0 116680003 900000000000011006 900000000000451002 +2241817024 20030731 1 900000000000207008 397077004 258415003 0 116680003 900000000000011006 900000000000451002 +2241818025 20030731 1 900000000000207008 397078009 258415003 0 116680003 900000000000011006 900000000000451002 +2241868022 20030731 1 900000000000207008 397111007 122693007 0 116680003 900000000000011006 900000000000451002 +2241897020 20030731 1 900000000000207008 397129002 309053003 0 116680003 900000000000011006 900000000000451002 +2241897020 20130731 0 900000000000207008 397129002 309053003 0 116680003 900000000000011006 900000000000451002 +2241897020 20210731 1 900000000000207008 397129002 309053003 0 116680003 900000000000011006 900000000000451002 +2241897020 20231201 0 900000000000207008 397129002 309053003 0 116680003 900000000000011006 900000000000451002 +2241898026 20030731 1 900000000000207008 397130007 399486006 0 116680003 900000000000011006 900000000000451002 +2241899023 20030731 1 900000000000207008 397131006 399486006 0 116680003 900000000000011006 900000000000451002 +2241899023 20211031 0 900000000000207008 397131006 399486006 0 116680003 900000000000011006 900000000000451002 +2241900029 20030731 1 900000000000207008 397132004 399486006 0 116680003 900000000000011006 900000000000451002 +2241901025 20030731 1 900000000000207008 397133009 399486006 0 116680003 900000000000011006 900000000000451002 +2241902021 20030731 1 900000000000207008 397134003 399486006 0 116680003 900000000000011006 900000000000451002 +2241902021 20080731 0 900000000000207008 397134003 399486006 0 116680003 900000000000011006 900000000000451002 +2241903027 20030731 1 900000000000207008 397135002 258589002 0 116680003 900000000000011006 900000000000451002 +2241904022 20030731 1 900000000000207008 397136001 258589002 0 116680003 900000000000011006 900000000000451002 +2241904022 20080731 0 900000000000207008 397136001 258589002 0 116680003 900000000000011006 900000000000451002 +2242009028 20030731 1 900000000000207008 397199005 309060009 0 116680003 900000000000011006 900000000000451002 +2242009028 20200731 0 900000000000207008 397199005 309060009 0 116680003 900000000000011006 900000000000451002 +2242045025 20030731 1 900000000000207008 397221008 309269002 0 116680003 900000000000011006 900000000000451002 +2242046029 20030731 1 900000000000207008 397221008 399532000 0 116680003 900000000000011006 900000000000451002 +2242046029 20080731 0 900000000000207008 397221008 399532000 0 116680003 900000000000011006 900000000000451002 +2242057023 20030731 1 900000000000207008 397232008 399532000 0 116680003 900000000000011006 900000000000451002 +2242058029 20030731 1 900000000000207008 397233003 127473003 0 116680003 900000000000011006 900000000000451002 +2242059021 20030731 1 900000000000207008 397234009 397232008 0 116680003 900000000000011006 900000000000451002 +2242060027 20030731 1 900000000000207008 397235005 397232008 0 116680003 900000000000011006 900000000000451002 +2242073028 20030731 1 900000000000207008 397245007 122712006 0 116680003 900000000000011006 900000000000451002 +2242074023 20030731 1 900000000000207008 397246008 122712006 0 116680003 900000000000011006 900000000000451002 +2242160025 20030731 1 900000000000207008 397326000 119384004 0 116680003 900000000000011006 900000000000451002 +2242161026 20030731 1 900000000000207008 397326000 122719002 0 116680003 900000000000011006 900000000000451002 +2242168021 20030731 1 900000000000207008 397333000 119384004 0 116680003 900000000000011006 900000000000451002 +2242169029 20030731 1 900000000000207008 397333000 127483004 0 116680003 900000000000011006 900000000000451002 +2242170028 20030731 1 900000000000207008 397334006 127483004 0 116680003 900000000000011006 900000000000451002 +2242171029 20030731 1 900000000000207008 397334006 119385003 0 116680003 900000000000011006 900000000000451002 +2242300022 20030731 1 900000000000207008 397436009 258589002 0 116680003 900000000000011006 900000000000451002 +2242300022 20080731 0 900000000000207008 397436009 258589002 0 116680003 900000000000011006 900000000000451002 +2242302025 20030731 1 900000000000207008 397438005 258589002 0 116680003 900000000000011006 900000000000451002 +2242325029 20030731 1 900000000000207008 397455009 399672000 0 116680003 900000000000011006 900000000000451002 +2242325029 20080731 0 900000000000207008 397455009 399672000 0 116680003 900000000000011006 900000000000451002 +2242326028 20030731 1 900000000000207008 397456005 399672000 0 116680003 900000000000011006 900000000000451002 +2242326028 20080731 0 900000000000207008 397456005 399672000 0 116680003 900000000000011006 900000000000451002 +2242327021 20030731 1 900000000000207008 397457001 119376003 0 116680003 900000000000011006 900000000000451002 +2242327021 20080731 0 900000000000207008 397457001 119376003 0 116680003 900000000000011006 900000000000451002 +2242328027 20030731 1 900000000000207008 397458006 399672000 0 116680003 900000000000011006 900000000000451002 +2242328027 20080731 0 900000000000207008 397458006 399672000 0 116680003 900000000000011006 900000000000451002 +2242332022 20030731 1 900000000000207008 397462000 119376003 0 116680003 900000000000011006 900000000000451002 +2242332022 20090131 0 900000000000207008 397462000 119376003 0 116680003 900000000000011006 900000000000451002 +2242357028 20030731 1 900000000000207008 397482001 399541005 0 116680003 900000000000011006 900000000000451002 +2242357028 20211031 0 900000000000207008 397482001 399541005 0 116680003 900000000000011006 900000000000451002 +2242358022 20030731 1 900000000000207008 397483006 399541005 0 116680003 900000000000011006 900000000000451002 +2242358022 20211031 0 900000000000207008 397483006 399541005 0 116680003 900000000000011006 900000000000451002 +2244933024 20030731 1 900000000000207008 399388008 122719002 0 116680003 900000000000011006 900000000000451002 +2244942028 20030731 1 900000000000207008 399396003 399657004 0 116680003 900000000000011006 900000000000451002 +2244950021 20030731 1 900000000000207008 399402006 127471001 0 116680003 900000000000011006 900000000000451002 +2244956026 20030731 1 900000000000207008 399407000 399624001 0 116680003 900000000000011006 900000000000451002 +2244960028 20030731 1 900000000000207008 399411006 123038009 0 116680003 900000000000011006 900000000000451002 +2244989026 20030731 1 900000000000207008 399436000 258592003 0 116680003 900000000000011006 900000000000451002 +2244989026 20040731 0 900000000000207008 399436000 258592003 0 116680003 900000000000011006 900000000000451002 +2244995025 20030731 1 900000000000207008 399440009 399624001 0 116680003 900000000000011006 900000000000451002 +2244995025 20080731 0 900000000000207008 399440009 399624001 0 116680003 900000000000011006 900000000000451002 +2244998028 20030731 1 900000000000207008 399443006 128164002 0 116680003 900000000000011006 900000000000451002 +2245003022 20030731 1 900000000000207008 399447007 399657004 0 116680003 900000000000011006 900000000000451002 +2245003022 20080731 0 900000000000207008 399447007 399657004 0 116680003 900000000000011006 900000000000451002 +2245008029 20030731 1 900000000000207008 399451009 128164002 0 116680003 900000000000011006 900000000000451002 +2245021020 20030731 1 900000000000207008 399460001 127465007 0 116680003 900000000000011006 900000000000451002 +2245021020 20080731 0 900000000000207008 399460001 127465007 0 116680003 900000000000011006 900000000000451002 +2245030028 20030731 1 900000000000207008 399467003 399619004 0 116680003 900000000000011006 900000000000451002 +2245031029 20030731 1 900000000000207008 399467003 399735000 0 116680003 900000000000011006 900000000000451002 +2245053027 20030731 1 900000000000207008 399484009 309484008 0 116680003 900000000000011006 900000000000451002 +2245056024 20030731 1 900000000000207008 399486006 397129002 0 116680003 900000000000011006 900000000000451002 +2245057026 20030731 1 900000000000207008 399486006 119376003 0 116680003 900000000000011006 900000000000451002 +2245057026 20080731 0 900000000000207008 399486006 119376003 0 116680003 900000000000011006 900000000000451002 +2245064029 20030731 1 900000000000207008 399492000 119376003 0 116680003 900000000000011006 900000000000451002 +2245064029 20080731 0 900000000000207008 399492000 119376003 0 116680003 900000000000011006 900000000000451002 +2245065028 20030731 1 900000000000207008 399492000 127458004 0 116680003 900000000000011006 900000000000451002 +2245072027 20030731 1 900000000000207008 399499009 399443006 0 116680003 900000000000011006 900000000000451002 +2245073021 20030731 1 900000000000207008 399499009 399619004 0 116680003 900000000000011006 900000000000451002 +2245077022 20030731 1 900000000000207008 399502008 399657004 0 116680003 900000000000011006 900000000000451002 +2245090026 20030731 1 900000000000207008 399512001 399451009 0 116680003 900000000000011006 900000000000451002 +2245091027 20030731 1 900000000000207008 399512001 396928004 0 116680003 900000000000011006 900000000000451002 +2245110029 20030731 1 900000000000207008 399526005 399747006 0 116680003 900000000000011006 900000000000451002 +2245117026 20030731 1 900000000000207008 399532000 119376003 0 116680003 900000000000011006 900000000000451002 +2245117026 20080731 0 900000000000207008 399532000 119376003 0 116680003 900000000000011006 900000000000451002 +2245118020 20030731 1 900000000000207008 399532000 397233003 0 116680003 900000000000011006 900000000000451002 +2245130025 20030731 1 900000000000207008 399541005 399460001 0 116680003 900000000000011006 900000000000451002 +2245131026 20030731 1 900000000000207008 399541005 119376003 0 116680003 900000000000011006 900000000000451002 +2245131026 20080731 0 900000000000207008 399541005 119376003 0 116680003 900000000000011006 900000000000451002 +2245132022 20030731 1 900000000000207008 399542003 119376003 0 116680003 900000000000011006 900000000000451002 +2245133028 20030731 1 900000000000207008 399542003 399436000 0 116680003 900000000000011006 900000000000451002 +2245142024 20030731 1 900000000000207008 399551006 399542003 0 116680003 900000000000011006 900000000000451002 +2245142024 20080731 0 900000000000207008 399551006 399542003 0 116680003 900000000000011006 900000000000451002 +2245154024 20030731 1 900000000000207008 399559008 396928004 0 116680003 900000000000011006 900000000000451002 +2245155020 20030731 1 900000000000207008 399559008 399619004 0 116680003 900000000000011006 900000000000451002 +2245172029 20030731 1 900000000000207008 399572009 119376003 0 116680003 900000000000011006 900000000000451002 +2245173023 20030731 1 900000000000207008 399572009 396896007 0 116680003 900000000000011006 900000000000451002 +2245212025 20030731 1 900000000000207008 399603006 399443006 0 116680003 900000000000011006 900000000000451002 +2245213024 20030731 1 900000000000207008 399603006 399451009 0 116680003 900000000000011006 900000000000451002 +2245226023 20030731 1 900000000000207008 399614009 399542003 0 116680003 900000000000011006 900000000000451002 +2245237024 20030731 1 900000000000207008 399619004 128164002 0 116680003 900000000000011006 900000000000451002 +2245240024 20030731 1 900000000000207008 399622002 127478007 0 116680003 900000000000011006 900000000000451002 +2245240024 20080731 0 900000000000207008 399622002 127478007 0 116680003 900000000000011006 900000000000451002 +2245243021 20030731 1 900000000000207008 399624001 399402006 0 116680003 900000000000011006 900000000000451002 +2245244026 20030731 1 900000000000207008 399624001 119376003 0 116680003 900000000000011006 900000000000451002 +2245244026 20080731 0 900000000000207008 399624001 119376003 0 116680003 900000000000011006 900000000000451002 +2245249020 20030731 1 900000000000207008 399629006 128171007 0 116680003 900000000000011006 900000000000451002 +2245253022 20030731 1 900000000000207008 399633004 399572009 0 116680003 900000000000011006 900000000000451002 +2245253022 20080731 0 900000000000207008 399633004 399572009 0 116680003 900000000000011006 900000000000451002 +2245262024 20030731 1 900000000000207008 399640003 399451009 0 116680003 900000000000011006 900000000000451002 +2245263025 20030731 1 900000000000207008 399640003 399735000 0 116680003 900000000000011006 900000000000451002 +2245270025 20030731 1 900000000000207008 399645008 399526005 0 116680003 900000000000011006 900000000000451002 +2245274023 20030731 1 900000000000207008 399649002 397436009 0 116680003 900000000000011006 900000000000451002 +2245282023 20030731 1 900000000000207008 399657004 399411006 0 116680003 900000000000011006 900000000000451002 +2245283029 20030731 1 900000000000207008 399657004 119376003 0 116680003 900000000000011006 900000000000451002 +2245283029 20130731 0 900000000000207008 399657004 119376003 0 116680003 900000000000011006 900000000000451002 +2245284024 20030731 1 900000000000207008 399658009 399657004 0 116680003 900000000000011006 900000000000451002 +2245287028 20030731 1 900000000000207008 399661005 397436009 0 116680003 900000000000011006 900000000000451002 +2245287028 20080731 0 900000000000207008 399661005 397436009 0 116680003 900000000000011006 900000000000451002 +2245288022 20030731 1 900000000000207008 399661005 397135002 0 116680003 900000000000011006 900000000000451002 +2245300027 20030731 1 900000000000207008 399672000 397457001 0 116680003 900000000000011006 900000000000451002 +2245311024 20030731 1 900000000000207008 399680007 123038009 0 116680003 900000000000011006 900000000000451002 +2245311024 20040731 0 900000000000207008 399680007 123038009 0 116680003 900000000000011006 900000000000451002 +2245321027 20030731 1 900000000000207008 399689008 127478007 0 116680003 900000000000011006 900000000000451002 +2245326021 20030731 1 900000000000207008 399693002 309484008 0 116680003 900000000000011006 900000000000451002 +2245348026 20030731 1 900000000000207008 399713008 127481002 0 116680003 900000000000011006 900000000000451002 +2245348026 20080731 0 900000000000207008 399713008 127481002 0 116680003 900000000000011006 900000000000451002 +2245364023 20030731 1 900000000000207008 399728008 399542003 0 116680003 900000000000011006 900000000000451002 +2245369029 20030731 1 900000000000207008 399731009 128156008 0 116680003 900000000000011006 900000000000451002 +2245369029 20080731 0 900000000000207008 399731009 128156008 0 116680003 900000000000011006 900000000000451002 +2245370028 20030731 1 900000000000207008 399732002 399542003 0 116680003 900000000000011006 900000000000451002 +2245374021 20030731 1 900000000000207008 399735000 128164002 0 116680003 900000000000011006 900000000000451002 +2245381025 20030731 1 900000000000207008 399741007 309270001 0 116680003 900000000000011006 900000000000451002 +2245381025 20080731 0 900000000000207008 399741007 309270001 0 116680003 900000000000011006 900000000000451002 +2245388020 20030731 1 900000000000207008 399747006 363311008 0 116680003 900000000000011006 900000000000451002 +2245396026 20030731 1 900000000000207008 399751008 127479004 0 116680003 900000000000011006 900000000000451002 +2245396026 20080731 0 900000000000207008 399751008 127479004 0 116680003 900000000000011006 900000000000451002 +2245397024 20030731 1 900000000000207008 399752001 128156008 0 116680003 900000000000011006 900000000000451002 +2245397024 20080731 0 900000000000207008 399752001 128156008 0 116680003 900000000000011006 900000000000451002 +2251173021 20030731 1 900000000000207008 167868004 272673000 0 118169006 900000000000011006 900000000000451002 +2251173021 20080731 0 900000000000207008 167868004 272673000 0 118169006 900000000000011006 900000000000451002 +2251176029 20030731 1 900000000000207008 168136008 398740003 0 118171006 900000000000011006 900000000000451002 +2251176029 20080731 0 900000000000207008 168136008 398740003 0 118171006 900000000000011006 900000000000451002 +2251177022 20030731 1 900000000000207008 168137004 33463005 0 370133003 900000000000011006 900000000000451002 +2251177022 20040731 0 900000000000207008 168137004 33463005 0 370133003 900000000000011006 900000000000451002 +2251178028 20030731 1 900000000000207008 168138009 33463005 0 370133003 900000000000011006 900000000000451002 +2251178028 20040731 0 900000000000207008 168138009 33463005 0 370133003 900000000000011006 900000000000451002 +2251179020 20030731 1 900000000000207008 168139001 33463005 0 370133003 900000000000011006 900000000000451002 +2251179020 20040131 0 900000000000207008 168139001 33463005 0 370133003 900000000000011006 900000000000451002 +2256889022 20030731 1 900000000000207008 256912003 33463005 0 370133003 900000000000011006 900000000000451002 +2256889022 20080731 1 900000000000207008 256912003 33463005 1 370133003 900000000000011006 900000000000451002 +2256889022 20090731 0 900000000000207008 256912003 33463005 1 370133003 900000000000011006 900000000000451002 +2256889022 20100131 1 900000000000207008 256912003 33463005 1 370133003 900000000000011006 900000000000451002 +2256921022 20030731 1 900000000000207008 258423001 39937001 0 118169006 900000000000011006 900000000000451002 +2256921022 20040731 0 900000000000207008 258423001 39937001 0 118169006 900000000000011006 900000000000451002 +2256922026 20030731 1 900000000000207008 258429002 116154003 0 118170007 900000000000011006 900000000000451002 +2256922026 20040731 0 900000000000207008 258429002 116154003 0 118170007 900000000000011006 900000000000451002 +2256923020 20030731 1 900000000000207008 258430007 116154003 0 118170007 900000000000011006 900000000000451002 +2256923020 20040731 0 900000000000207008 258430007 116154003 0 118170007 900000000000011006 900000000000451002 +2256925029 20030731 1 900000000000207008 258452003 33463005 0 370133003 900000000000011006 900000000000451002 +2256925029 20040731 0 900000000000207008 258452003 33463005 0 370133003 900000000000011006 900000000000451002 +2256926028 20030731 1 900000000000207008 258459007 33463005 0 370133003 900000000000011006 900000000000451002 +2256926028 20040731 0 900000000000207008 258459007 33463005 0 370133003 900000000000011006 900000000000451002 +2256928027 20030731 1 900000000000207008 258466008 33463005 0 370133003 900000000000011006 900000000000451002 +2256928027 20040731 0 900000000000207008 258466008 33463005 0 370133003 900000000000011006 900000000000451002 +2256928027 20090131 1 900000000000207008 258466008 33463005 1 370133003 900000000000011006 900000000000451002 +2256928027 20170731 0 900000000000207008 258466008 33463005 1 370133003 900000000000011006 900000000000451002 +2256929024 20030731 1 900000000000207008 258470000 33463005 0 370133003 900000000000011006 900000000000451002 +2256929024 20040731 0 900000000000207008 258470000 33463005 0 370133003 900000000000011006 900000000000451002 +2256929024 20090131 1 900000000000207008 258470000 33463005 1 370133003 900000000000011006 900000000000451002 +2256929024 20110131 0 900000000000207008 258470000 33463005 1 370133003 900000000000011006 900000000000451002 +2256930025 20030731 1 900000000000207008 258471001 33463005 0 370133003 900000000000011006 900000000000451002 +2256930025 20040731 0 900000000000207008 258471001 33463005 0 370133003 900000000000011006 900000000000451002 +2256932022 20030731 1 900000000000207008 258526006 21308002 0 118169006 900000000000011006 900000000000451002 +2256932022 20080731 0 900000000000207008 258526006 21308002 0 118169006 900000000000011006 900000000000451002 +2256933028 20030731 1 900000000000207008 258549008 39937001 0 118169006 900000000000011006 900000000000451002 +2256933028 20080731 0 900000000000207008 258549008 39937001 0 118169006 900000000000011006 900000000000451002 +2256933028 20090131 1 900000000000207008 258549008 39937001 1 118169006 900000000000011006 900000000000451002 +2256934023 20030731 1 900000000000207008 258558001 33463005 0 370133003 900000000000011006 900000000000451002 +2256934023 20040731 0 900000000000207008 258558001 33463005 0 370133003 900000000000011006 900000000000451002 +2256935024 20030731 1 900000000000207008 258559009 33463005 0 370133003 900000000000011006 900000000000451002 +2256935024 20040731 0 900000000000207008 258559009 33463005 0 370133003 900000000000011006 900000000000451002 +2256936020 20030731 1 900000000000207008 258560004 33463005 0 370133003 900000000000011006 900000000000451002 +2256936020 20040731 0 900000000000207008 258560004 33463005 0 370133003 900000000000011006 900000000000451002 +2256937027 20030731 1 900000000000207008 258561000 33463005 0 370133003 900000000000011006 900000000000451002 +2256937027 20040731 0 900000000000207008 258561000 33463005 0 370133003 900000000000011006 900000000000451002 +2256938021 20030731 1 900000000000207008 258569003 85756007 0 118169006 900000000000011006 900000000000451002 +2256938021 20080731 0 900000000000207008 258569003 85756007 0 118169006 900000000000011006 900000000000451002 +2256939029 20030731 1 900000000000207008 258571003 33463005 0 370133003 900000000000011006 900000000000451002 +2256939029 20040731 0 900000000000207008 258571003 33463005 0 370133003 900000000000011006 900000000000451002 +2256941028 20030731 1 900000000000207008 258590006 33463005 0 370133003 900000000000011006 900000000000451002 +2256941028 20040731 0 900000000000207008 258590006 33463005 0 370133003 900000000000011006 900000000000451002 +2256942024 20030731 1 900000000000207008 258607008 397398007 0 118171006 900000000000011006 900000000000451002 +2256942024 20080731 0 900000000000207008 258607008 397398007 0 118171006 900000000000011006 900000000000451002 +2256943025 20030731 1 900000000000207008 258608003 33463005 0 370133003 900000000000011006 900000000000451002 +2256943025 20040731 0 900000000000207008 258608003 33463005 0 370133003 900000000000011006 900000000000451002 +2256944020 20030731 1 900000000000207008 258609006 82094008 0 118169006 900000000000011006 900000000000451002 +2256944020 20070131 0 900000000000207008 258609006 82094008 0 118169006 900000000000011006 900000000000451002 +2256945021 20030731 1 900000000000207008 258609006 33463005 0 370133003 900000000000011006 900000000000451002 +2256945021 20040731 0 900000000000207008 258609006 33463005 0 370133003 900000000000011006 900000000000451002 +2256946022 20030731 1 900000000000207008 258610001 33463005 0 370133003 900000000000011006 900000000000451002 +2256946022 20040731 0 900000000000207008 258610001 33463005 0 370133003 900000000000011006 900000000000451002 +2256947029 20030731 1 900000000000207008 258611002 33463005 0 370133003 900000000000011006 900000000000451002 +2256947029 20040731 0 900000000000207008 258611002 33463005 0 370133003 900000000000011006 900000000000451002 +2260358022 20030731 1 900000000000207008 302794003 33463005 0 370133003 900000000000011006 900000000000451002 +2260358022 20040731 0 900000000000207008 302794003 33463005 0 370133003 900000000000011006 900000000000451002 +2260815029 20030731 1 900000000000207008 309058007 70871006 0 118171006 900000000000011006 900000000000451002 +2260815029 20050731 0 900000000000207008 309058007 70871006 0 118171006 900000000000011006 900000000000451002 +2260817021 20030731 1 900000000000207008 309067007 87591000 0 118171006 900000000000011006 900000000000451002 +2260817021 20080731 0 900000000000207008 309067007 87591000 0 118171006 900000000000011006 900000000000451002 +2260817021 20090731 1 900000000000207008 309067007 87591000 1 118171006 900000000000011006 900000000000451002 +2260818027 20030731 1 900000000000207008 309070006 19938000 0 118169006 900000000000011006 900000000000451002 +2260818027 20080731 0 900000000000207008 309070006 19938000 0 118169006 900000000000011006 900000000000451002 +2260823027 20030731 1 900000000000207008 309172000 3120008 0 118169006 900000000000011006 900000000000451002 +2260823027 20080731 0 900000000000207008 309172000 3120008 0 118169006 900000000000011006 900000000000451002 +2260823027 20090131 1 900000000000207008 309172000 3120008 1 118169006 900000000000011006 900000000000451002 +2260824022 20030731 1 900000000000207008 309172000 321667001 0 118169006 900000000000011006 900000000000451002 +2260824022 20080731 0 900000000000207008 309172000 321667001 0 118169006 900000000000011006 900000000000451002 +2260825023 20030731 1 900000000000207008 309175003 85756007 0 118169006 900000000000011006 900000000000451002 +2260825023 20080731 0 900000000000207008 309175003 85756007 0 118169006 900000000000011006 900000000000451002 +2260826024 20030731 1 900000000000207008 309175003 39607008 0 118169006 900000000000011006 900000000000451002 +2260826024 20080731 0 900000000000207008 309175003 39607008 0 118169006 900000000000011006 900000000000451002 +2260826024 20090731 1 900000000000207008 309175003 39607008 1 118169006 900000000000011006 900000000000451002 +2260827026 20030731 1 900000000000207008 309178001 58675001 0 118169006 900000000000011006 900000000000451002 +2260827026 20080731 0 900000000000207008 309178001 58675001 0 118169006 900000000000011006 900000000000451002 +2260828020 20030731 1 900000000000207008 309179009 58675001 0 118169006 900000000000011006 900000000000451002 +2260828020 20080731 0 900000000000207008 309179009 58675001 0 118169006 900000000000011006 900000000000451002 +2260829028 20030731 1 900000000000207008 309181006 117590005 0 118169006 900000000000011006 900000000000451002 +2260829028 20080731 0 900000000000207008 309181006 117590005 0 118169006 900000000000011006 900000000000451002 +2260830022 20030731 1 900000000000207008 309187005 74262004 0 118169006 900000000000011006 900000000000451002 +2260830022 20040731 0 900000000000207008 309187005 74262004 0 118169006 900000000000011006 900000000000451002 +2260831021 20030731 1 900000000000207008 309200000 116154003 0 118170007 900000000000011006 900000000000451002 +2260831021 20040731 0 900000000000207008 309200000 116154003 0 118170007 900000000000011006 900000000000451002 +2260832025 20030731 1 900000000000207008 309201001 33463005 0 370133003 900000000000011006 900000000000451002 +2260832025 20040131 0 900000000000207008 309201001 33463005 0 370133003 900000000000011006 900000000000451002 +2260833024 20030731 1 900000000000207008 309203003 14742008 0 118169006 900000000000011006 900000000000451002 +2260833024 20040731 0 900000000000207008 309203003 14742008 0 118169006 900000000000011006 900000000000451002 +2260834029 20030731 1 900000000000207008 309203003 116154003 0 118170007 900000000000011006 900000000000451002 +2260834029 20040731 0 900000000000207008 309203003 116154003 0 118170007 900000000000011006 900000000000451002 +2260835028 20030731 1 900000000000207008 309205005 28231008 0 118169006 900000000000011006 900000000000451002 +2260835028 20080731 0 900000000000207008 309205005 28231008 0 118169006 900000000000011006 900000000000451002 +2260835028 20090731 1 900000000000207008 309205005 28231008 1 118169006 900000000000011006 900000000000451002 +2260836027 20030731 1 900000000000207008 309205005 116154003 0 118170007 900000000000011006 900000000000451002 +2260836027 20040731 0 900000000000207008 309205005 116154003 0 118170007 900000000000011006 900000000000451002 +2260837020 20030731 1 900000000000207008 309205005 14742008 0 118169006 900000000000011006 900000000000451002 +2260837020 20040731 0 900000000000207008 309205005 14742008 0 118169006 900000000000011006 900000000000451002 +2260838026 20030731 1 900000000000207008 309206006 14742008 0 118169006 900000000000011006 900000000000451002 +2260838026 20040731 0 900000000000207008 309206006 14742008 0 118169006 900000000000011006 900000000000451002 +2260839023 20030731 1 900000000000207008 309206006 116154003 0 118170007 900000000000011006 900000000000451002 +2260839023 20040731 0 900000000000207008 309206006 116154003 0 118170007 900000000000011006 900000000000451002 +2260840020 20030731 1 900000000000207008 309207002 116154003 0 118170007 900000000000011006 900000000000451002 +2260840020 20040731 0 900000000000207008 309207002 116154003 0 118170007 900000000000011006 900000000000451002 +2260841024 20030731 1 900000000000207008 309207002 14742008 0 118169006 900000000000011006 900000000000451002 +2260841024 20040731 0 900000000000207008 309207002 14742008 0 118169006 900000000000011006 900000000000451002 +2260842028 20030731 1 900000000000207008 309208007 14742008 0 118169006 900000000000011006 900000000000451002 +2260842028 20040731 0 900000000000207008 309208007 14742008 0 118169006 900000000000011006 900000000000451002 +2260843022 20030731 1 900000000000207008 309208007 116154003 0 118170007 900000000000011006 900000000000451002 +2260843022 20040731 0 900000000000207008 309208007 116154003 0 118170007 900000000000011006 900000000000451002 +2260844027 20030731 1 900000000000207008 309209004 116154003 0 118170007 900000000000011006 900000000000451002 +2260844027 20040731 0 900000000000207008 309209004 116154003 0 118170007 900000000000011006 900000000000451002 +2260845026 20030731 1 900000000000207008 309209004 14742008 0 118169006 900000000000011006 900000000000451002 +2260845026 20040731 0 900000000000207008 309209004 14742008 0 118169006 900000000000011006 900000000000451002 +2260846025 20030731 1 900000000000207008 309210009 116154003 0 118170007 900000000000011006 900000000000451002 +2260846025 20040731 0 900000000000207008 309210009 116154003 0 118170007 900000000000011006 900000000000451002 +2260847023 20030731 1 900000000000207008 309211008 116154003 0 118170007 900000000000011006 900000000000451002 +2260847023 20040731 0 900000000000207008 309211008 116154003 0 118170007 900000000000011006 900000000000451002 +2260848029 20030731 1 900000000000207008 309212001 116154003 0 118170007 900000000000011006 900000000000451002 +2260848029 20040731 0 900000000000207008 309212001 116154003 0 118170007 900000000000011006 900000000000451002 +2260849021 20030731 1 900000000000207008 309213006 116154003 0 118170007 900000000000011006 900000000000451002 +2260849021 20040731 0 900000000000207008 309213006 116154003 0 118170007 900000000000011006 900000000000451002 +2260850021 20030731 1 900000000000207008 309213006 69695003 0 118169006 900000000000011006 900000000000451002 +2260850021 20080731 1 900000000000207008 309213006 69695003 1 118169006 900000000000011006 900000000000451002 +2260851020 20030731 1 900000000000207008 309214000 116154003 0 118170007 900000000000011006 900000000000451002 +2260851020 20040731 0 900000000000207008 309214000 116154003 0 118170007 900000000000011006 900000000000451002 +2260852029 20030731 1 900000000000207008 309215004 116154003 0 118170007 900000000000011006 900000000000451002 +2260852029 20040731 0 900000000000207008 309215004 116154003 0 118170007 900000000000011006 900000000000451002 +2260853023 20030731 1 900000000000207008 309222007 116154003 0 118170007 900000000000011006 900000000000451002 +2260853023 20040731 0 900000000000207008 309222007 116154003 0 118170007 900000000000011006 900000000000451002 +2260854028 20030731 1 900000000000207008 309223002 116154003 0 118170007 900000000000011006 900000000000451002 +2260854028 20040731 0 900000000000207008 309223002 116154003 0 118170007 900000000000011006 900000000000451002 +2260855027 20030731 1 900000000000207008 309224008 116154003 0 118170007 900000000000011006 900000000000451002 +2260855027 20040731 0 900000000000207008 309224008 116154003 0 118170007 900000000000011006 900000000000451002 +2260856026 20030731 1 900000000000207008 309225009 116154003 0 118170007 900000000000011006 900000000000451002 +2260856026 20040731 0 900000000000207008 309225009 116154003 0 118170007 900000000000011006 900000000000451002 +2260857024 20030731 1 900000000000207008 309226005 116154003 0 118170007 900000000000011006 900000000000451002 +2260857024 20040731 0 900000000000207008 309226005 116154003 0 118170007 900000000000011006 900000000000451002 +2260858025 20030731 1 900000000000207008 309227001 116154003 0 118170007 900000000000011006 900000000000451002 +2260858025 20040731 0 900000000000207008 309227001 116154003 0 118170007 900000000000011006 900000000000451002 +2260866023 20030731 1 900000000000207008 309260003 116154003 0 118170007 900000000000011006 900000000000451002 +2260866023 20040731 0 900000000000207008 309260003 116154003 0 118170007 900000000000011006 900000000000451002 +2260867025 20030731 1 900000000000207008 309261004 116154003 0 118170007 900000000000011006 900000000000451002 +2260867025 20040731 0 900000000000207008 309261004 116154003 0 118170007 900000000000011006 900000000000451002 +2260868024 20030731 1 900000000000207008 309262006 116154003 0 118170007 900000000000011006 900000000000451002 +2260868024 20040731 0 900000000000207008 309262006 116154003 0 118170007 900000000000011006 900000000000451002 +2260869027 20030731 1 900000000000207008 309263001 116154003 0 118170007 900000000000011006 900000000000451002 +2260869027 20040731 0 900000000000207008 309263001 116154003 0 118170007 900000000000011006 900000000000451002 +2260870026 20030731 1 900000000000207008 309264007 116154003 0 118170007 900000000000011006 900000000000451002 +2260870026 20040731 0 900000000000207008 309264007 116154003 0 118170007 900000000000011006 900000000000451002 +2260871027 20030731 1 900000000000207008 309277003 13648007 0 118169006 900000000000011006 900000000000451002 +2260871027 20080731 0 900000000000207008 309277003 13648007 0 118169006 900000000000011006 900000000000451002 +2260871027 20090731 1 900000000000207008 309277003 13648007 1 118169006 900000000000011006 900000000000451002 +2260878022 20030731 1 900000000000207008 309478005 396339007 0 118168003 900000000000011006 900000000000451002 +2260878022 20190731 1 900000000000207008 309478005 396339007 1 118168003 900000000000011006 900000000000451002 +2260879025 20030731 1 900000000000207008 309484008 119282003 0 118169006 900000000000011006 900000000000451002 +2260879025 20080731 0 900000000000207008 309484008 119282003 0 118169006 900000000000011006 900000000000451002 +2260880027 20030731 1 900000000000207008 309484008 116154003 0 118170007 900000000000011006 900000000000451002 +2260880027 20040731 0 900000000000207008 309484008 116154003 0 118170007 900000000000011006 900000000000451002 +2260881028 20030731 1 900000000000207008 309485009 112881004 0 118171006 900000000000011006 900000000000451002 +2260881028 20080731 0 900000000000207008 309485009 112881004 0 118171006 900000000000011006 900000000000451002 +2260881028 20090731 1 900000000000207008 309485009 112881004 1 118171006 900000000000011006 900000000000451002 +2260882024 20030731 1 900000000000207008 309485009 116154003 0 118170007 900000000000011006 900000000000451002 +2260882024 20040731 0 900000000000207008 309485009 116154003 0 118170007 900000000000011006 900000000000451002 +2260883025 20030731 1 900000000000207008 309486005 385296007 0 118169006 900000000000011006 900000000000451002 +2260883025 20080731 0 900000000000207008 309486005 385296007 0 118169006 900000000000011006 900000000000451002 +2260883025 20090731 1 900000000000207008 309486005 385296007 1 118169006 900000000000011006 900000000000451002 +2260884020 20030731 1 900000000000207008 309486005 47227006 0 118171006 900000000000011006 900000000000451002 +2260884020 20080731 0 900000000000207008 309486005 47227006 0 118171006 900000000000011006 900000000000451002 +2260884020 20090731 1 900000000000207008 309486005 47227006 1 118171006 900000000000011006 900000000000451002 +2260885021 20030731 1 900000000000207008 309486005 116154003 0 118170007 900000000000011006 900000000000451002 +2260885021 20040731 0 900000000000207008 309486005 116154003 0 118170007 900000000000011006 900000000000451002 +2260886022 20030731 1 900000000000207008 309486005 119282003 0 118169006 900000000000011006 900000000000451002 +2260886022 20080131 0 900000000000207008 309486005 119282003 0 118169006 900000000000011006 900000000000451002 +2260887029 20030731 1 900000000000207008 309487001 116154003 0 118170007 900000000000011006 900000000000451002 +2260887029 20040731 0 900000000000207008 309487001 116154003 0 118170007 900000000000011006 900000000000451002 +2260888023 20030731 1 900000000000207008 309488006 116154003 0 118170007 900000000000011006 900000000000451002 +2260888023 20040731 0 900000000000207008 309488006 116154003 0 118170007 900000000000011006 900000000000451002 +2260889026 20030731 1 900000000000207008 309489003 116154003 0 118170007 900000000000011006 900000000000451002 +2260889026 20040731 0 900000000000207008 309489003 116154003 0 118170007 900000000000011006 900000000000451002 +2260890024 20030731 1 900000000000207008 309490007 116154003 0 118170007 900000000000011006 900000000000451002 +2260890024 20040731 0 900000000000207008 309490007 116154003 0 118170007 900000000000011006 900000000000451002 +2260891023 20030731 1 900000000000207008 309490007 14742008 0 118169006 900000000000011006 900000000000451002 +2260891023 20040731 0 900000000000207008 309490007 14742008 0 118169006 900000000000011006 900000000000451002 +2260892027 20030731 1 900000000000207008 309491006 14742008 0 118169006 900000000000011006 900000000000451002 +2260892027 20040731 0 900000000000207008 309491006 14742008 0 118169006 900000000000011006 900000000000451002 +2260893021 20030731 1 900000000000207008 309491006 116154003 0 118170007 900000000000011006 900000000000451002 +2260893021 20040731 0 900000000000207008 309491006 116154003 0 118170007 900000000000011006 900000000000451002 +2260894026 20030731 1 900000000000207008 309493009 116154003 0 118170007 900000000000011006 900000000000451002 +2260894026 20040731 0 900000000000207008 309493009 116154003 0 118170007 900000000000011006 900000000000451002 +2260895025 20030731 1 900000000000207008 309493009 14742008 0 118169006 900000000000011006 900000000000451002 +2260895025 20040731 0 900000000000207008 309493009 14742008 0 118169006 900000000000011006 900000000000451002 +2260896029 20030731 1 900000000000207008 309494003 14742008 0 118169006 900000000000011006 900000000000451002 +2260896029 20040731 0 900000000000207008 309494003 14742008 0 118169006 900000000000011006 900000000000451002 +2260897022 20030731 1 900000000000207008 309494003 116154003 0 118170007 900000000000011006 900000000000451002 +2260897022 20040731 0 900000000000207008 309494003 116154003 0 118170007 900000000000011006 900000000000451002 +2260898028 20030731 1 900000000000207008 309495002 116154003 0 118170007 900000000000011006 900000000000451002 +2260898028 20040731 0 900000000000207008 309495002 116154003 0 118170007 900000000000011006 900000000000451002 +2260899020 20030731 1 900000000000207008 309495002 14742008 0 118169006 900000000000011006 900000000000451002 +2260899020 20040731 0 900000000000207008 309495002 14742008 0 118169006 900000000000011006 900000000000451002 +2260900026 20030731 1 900000000000207008 309496001 116154003 0 118170007 900000000000011006 900000000000451002 +2260900026 20040731 0 900000000000207008 309496001 116154003 0 118170007 900000000000011006 900000000000451002 +2260901027 20030731 1 900000000000207008 309496001 14742008 0 118169006 900000000000011006 900000000000451002 +2260901027 20040731 0 900000000000207008 309496001 14742008 0 118169006 900000000000011006 900000000000451002 +2260922022 20030731 1 900000000000207008 119326000 39937001 0 118169006 900000000000011006 900000000000451002 +2260922022 20040731 0 900000000000207008 119326000 39937001 0 118169006 900000000000011006 900000000000451002 +2260923028 20030731 1 900000000000207008 119327009 39937001 0 118169006 900000000000011006 900000000000451002 +2260923028 20040731 0 900000000000207008 119327009 39937001 0 118169006 900000000000011006 900000000000451002 +2260924023 20030731 1 900000000000207008 119333000 85756007 0 118169006 900000000000011006 900000000000451002 +2260924023 20080731 0 900000000000207008 119333000 85756007 0 118169006 900000000000011006 900000000000451002 +2260925024 20030731 1 900000000000207008 119334006 33463005 0 370133003 900000000000011006 900000000000451002 +2260925024 20040731 0 900000000000207008 119334006 33463005 0 370133003 900000000000011006 900000000000451002 +2260926020 20030731 1 900000000000207008 119335007 33463005 0 370133003 900000000000011006 900000000000451002 +2260926020 20040731 0 900000000000207008 119335007 33463005 0 370133003 900000000000011006 900000000000451002 +2260934025 20030731 1 900000000000207008 119338009 74262004 0 118169006 900000000000011006 900000000000451002 +2260934025 20040731 0 900000000000207008 119338009 74262004 0 118169006 900000000000011006 900000000000451002 +2260936028 20030731 1 900000000000207008 119340004 33463005 0 370133003 900000000000011006 900000000000451002 +2260936028 20040731 0 900000000000207008 119340004 33463005 0 370133003 900000000000011006 900000000000451002 +2260937021 20030731 1 900000000000207008 119341000 33463005 0 370133003 900000000000011006 900000000000451002 +2260937021 20040731 0 900000000000207008 119341000 33463005 0 370133003 900000000000011006 900000000000451002 +2260938027 20030731 1 900000000000207008 119342007 33463005 0 370133003 900000000000011006 900000000000451002 +2260938027 20040731 0 900000000000207008 119342007 33463005 0 370133003 900000000000011006 900000000000451002 +2260939024 20030731 1 900000000000207008 119343002 33463005 0 370133003 900000000000011006 900000000000451002 +2260939024 20040731 0 900000000000207008 119343002 33463005 0 370133003 900000000000011006 900000000000451002 +2260940021 20030731 1 900000000000207008 119347001 33463005 0 370133003 900000000000011006 900000000000451002 +2260940021 20040731 0 900000000000207008 119347001 33463005 0 370133003 900000000000011006 900000000000451002 +2260941020 20030731 1 900000000000207008 119348006 33463005 0 370133003 900000000000011006 900000000000451002 +2260941020 20040731 0 900000000000207008 119348006 33463005 0 370133003 900000000000011006 900000000000451002 +2260962021 20030731 1 900000000000207008 119361006 33463005 0 370133003 900000000000011006 900000000000451002 +2260962021 20040731 0 900000000000207008 119361006 33463005 0 370133003 900000000000011006 900000000000451002 +2260963027 20030731 1 900000000000207008 119362004 33463005 0 370133003 900000000000011006 900000000000451002 +2260963027 20040731 0 900000000000207008 119362004 33463005 0 370133003 900000000000011006 900000000000451002 +2260969028 20030731 1 900000000000207008 119363009 33463005 0 370133003 900000000000011006 900000000000451002 +2260969028 20040731 0 900000000000207008 119363009 33463005 0 370133003 900000000000011006 900000000000451002 +2260972024 20030731 1 900000000000207008 119364003 33463005 0 370133003 900000000000011006 900000000000451002 +2260972024 20040731 0 900000000000207008 119364003 33463005 0 370133003 900000000000011006 900000000000451002 +2260979026 20030731 1 900000000000207008 119379005 116154003 0 118170007 900000000000011006 900000000000451002 +2260979026 20040731 0 900000000000207008 119379005 116154003 0 118170007 900000000000011006 900000000000451002 +2260982020 20030731 1 900000000000207008 119381007 116154003 0 118170007 900000000000011006 900000000000451002 +2260982020 20040731 0 900000000000207008 119381007 116154003 0 118170007 900000000000011006 900000000000451002 +2260983026 20030731 1 900000000000207008 119382000 116154003 0 118170007 900000000000011006 900000000000451002 +2260983026 20040731 0 900000000000207008 119382000 116154003 0 118170007 900000000000011006 900000000000451002 +2262885026 20030731 1 900000000000207008 122569007 39937001 0 118169006 900000000000011006 900000000000451002 +2262885026 20040731 0 900000000000207008 122569007 39937001 0 118169006 900000000000011006 900000000000451002 +2262886025 20030731 1 900000000000207008 122569007 33463005 0 370133003 900000000000011006 900000000000451002 +2262886025 20040731 0 900000000000207008 122569007 33463005 0 370133003 900000000000011006 900000000000451002 +2262888029 20030731 1 900000000000207008 122571007 33463005 0 370133003 900000000000011006 900000000000451002 +2262888029 20040731 0 900000000000207008 122571007 33463005 0 370133003 900000000000011006 900000000000451002 +2262889021 20030731 1 900000000000207008 122572000 33463005 0 370133003 900000000000011006 900000000000451002 +2262889021 20040731 0 900000000000207008 122572000 33463005 0 370133003 900000000000011006 900000000000451002 +2262890028 20030731 1 900000000000207008 122573005 33463005 0 370133003 900000000000011006 900000000000451002 +2262890028 20040731 0 900000000000207008 122573005 33463005 0 370133003 900000000000011006 900000000000451002 +2262891029 20030731 1 900000000000207008 122574004 33463005 0 370133003 900000000000011006 900000000000451002 +2262891029 20040731 0 900000000000207008 122574004 33463005 0 370133003 900000000000011006 900000000000451002 +2262892020 20030731 1 900000000000207008 122580007 117590005 0 118169006 900000000000011006 900000000000451002 +2262892020 20080731 0 900000000000207008 122580007 117590005 0 118169006 900000000000011006 900000000000451002 +2262892020 20090131 1 900000000000207008 122580007 117590005 1 118169006 900000000000011006 900000000000451002 +2262892020 20110131 0 900000000000207008 122580007 117590005 1 118169006 900000000000011006 900000000000451002 +2262892020 20110731 1 900000000000207008 122580007 117590005 1 118169006 900000000000011006 900000000000451002 +2262893026 20030731 1 900000000000207008 122587005 33463005 0 370133003 900000000000011006 900000000000451002 +2262893026 20040731 0 900000000000207008 122587005 33463005 0 370133003 900000000000011006 900000000000451002 +2262894021 20030731 1 900000000000207008 122588000 33463005 0 370133003 900000000000011006 900000000000451002 +2262894021 20040731 0 900000000000207008 122588000 33463005 0 370133003 900000000000011006 900000000000451002 +2262895022 20030731 1 900000000000207008 122589008 33463005 0 370133003 900000000000011006 900000000000451002 +2262895022 20040731 0 900000000000207008 122589008 33463005 0 370133003 900000000000011006 900000000000451002 +2262896023 20030731 1 900000000000207008 122590004 33463005 0 370133003 900000000000011006 900000000000451002 +2262896023 20040731 0 900000000000207008 122590004 33463005 0 370133003 900000000000011006 900000000000451002 +2262897025 20030731 1 900000000000207008 122591000 33463005 0 370133003 900000000000011006 900000000000451002 +2262897025 20040731 0 900000000000207008 122591000 33463005 0 370133003 900000000000011006 900000000000451002 +2262898024 20030731 1 900000000000207008 122592007 33463005 0 370133003 900000000000011006 900000000000451002 +2262898024 20040731 0 900000000000207008 122592007 33463005 0 370133003 900000000000011006 900000000000451002 +2262899027 20030731 1 900000000000207008 122601001 70871006 0 118171006 900000000000011006 900000000000451002 +2262899027 20050731 0 900000000000207008 122601001 70871006 0 118171006 900000000000011006 900000000000451002 +2262900021 20030731 1 900000000000207008 122604009 232632009 0 118171006 900000000000011006 900000000000451002 +2262900021 20080731 0 900000000000207008 122604009 232632009 0 118171006 900000000000011006 900000000000451002 +2262900021 20090131 1 900000000000207008 122604009 232632009 1 118171006 900000000000011006 900000000000451002 +2262901020 20030731 1 900000000000207008 122616003 321667001 0 118169006 900000000000011006 900000000000451002 +2262901020 20080731 0 900000000000207008 122616003 321667001 0 118169006 900000000000011006 900000000000451002 +2262902029 20030731 1 900000000000207008 122617007 321667001 0 118169006 900000000000011006 900000000000451002 +2262902029 20080731 0 900000000000207008 122617007 321667001 0 118169006 900000000000011006 900000000000451002 +2262903023 20030731 1 900000000000207008 122618002 321667001 0 118169006 900000000000011006 900000000000451002 +2262903023 20080731 0 900000000000207008 122618002 321667001 0 118169006 900000000000011006 900000000000451002 +2262904028 20030731 1 900000000000207008 122619005 321667001 0 118169006 900000000000011006 900000000000451002 +2262904028 20080731 0 900000000000207008 122619005 321667001 0 118169006 900000000000011006 900000000000451002 +2262905027 20030731 1 900000000000207008 122620004 321667001 0 118169006 900000000000011006 900000000000451002 +2262905027 20080731 0 900000000000207008 122620004 321667001 0 118169006 900000000000011006 900000000000451002 +2262908025 20030731 1 900000000000207008 122621000 321667001 0 118169006 900000000000011006 900000000000451002 +2262908025 20080731 0 900000000000207008 122621000 321667001 0 118169006 900000000000011006 900000000000451002 +2262909022 20030731 1 900000000000207008 122622007 321667001 0 118169006 900000000000011006 900000000000451002 +2262909022 20080731 0 900000000000207008 122622007 321667001 0 118169006 900000000000011006 900000000000451002 +2262910028 20030731 1 900000000000207008 122623002 386108004 0 118169006 900000000000011006 900000000000451002 +2262910028 20080731 0 900000000000207008 122623002 386108004 0 118169006 900000000000011006 900000000000451002 +2262911029 20030731 1 900000000000207008 122624008 386108004 0 118169006 900000000000011006 900000000000451002 +2262911029 20080731 0 900000000000207008 122624008 386108004 0 118169006 900000000000011006 900000000000451002 +2262912020 20030731 1 900000000000207008 122624008 116217002 0 118171006 900000000000011006 900000000000451002 +2262912020 20080731 0 900000000000207008 122624008 116217002 0 118171006 900000000000011006 900000000000451002 +2262912020 20090131 1 900000000000207008 122624008 116217002 1 118171006 900000000000011006 900000000000451002 +2262913026 20030731 1 900000000000207008 122625009 386108004 0 118169006 900000000000011006 900000000000451002 +2262913026 20080731 0 900000000000207008 122625009 386108004 0 118169006 900000000000011006 900000000000451002 +2262914021 20030731 1 900000000000207008 122626005 386108004 0 118169006 900000000000011006 900000000000451002 +2262914021 20080731 0 900000000000207008 122626005 386108004 0 118169006 900000000000011006 900000000000451002 +2262915022 20030731 1 900000000000207008 122627001 14742008 0 118169006 900000000000011006 900000000000451002 +2262915022 20040731 0 900000000000207008 122627001 14742008 0 118169006 900000000000011006 900000000000451002 +2262916023 20030731 1 900000000000207008 122627001 116154003 0 118170007 900000000000011006 900000000000451002 +2262916023 20040731 0 900000000000207008 122627001 116154003 0 118170007 900000000000011006 900000000000451002 +2262917025 20030731 1 900000000000207008 122628006 116154003 0 118170007 900000000000011006 900000000000451002 +2262917025 20040731 0 900000000000207008 122628006 116154003 0 118170007 900000000000011006 900000000000451002 +2262918024 20030731 1 900000000000207008 122628006 14742008 0 118169006 900000000000011006 900000000000451002 +2262918024 20040731 0 900000000000207008 122628006 14742008 0 118169006 900000000000011006 900000000000451002 +2262919027 20030731 1 900000000000207008 122629003 14742008 0 118169006 900000000000011006 900000000000451002 +2262919027 20040731 0 900000000000207008 122629003 14742008 0 118169006 900000000000011006 900000000000451002 +2262920022 20030731 1 900000000000207008 122629003 116154003 0 118170007 900000000000011006 900000000000451002 +2262920022 20040731 0 900000000000207008 122629003 116154003 0 118170007 900000000000011006 900000000000451002 +2262921021 20030731 1 900000000000207008 122630008 116154003 0 118170007 900000000000011006 900000000000451002 +2262921021 20040731 0 900000000000207008 122630008 116154003 0 118170007 900000000000011006 900000000000451002 +2262922025 20030731 1 900000000000207008 122630008 14742008 0 118169006 900000000000011006 900000000000451002 +2262922025 20040731 0 900000000000207008 122630008 14742008 0 118169006 900000000000011006 900000000000451002 +2262923024 20030731 1 900000000000207008 122631007 14742008 0 118169006 900000000000011006 900000000000451002 +2262923024 20040731 0 900000000000207008 122631007 14742008 0 118169006 900000000000011006 900000000000451002 +2262924029 20030731 1 900000000000207008 122631007 116154003 0 118170007 900000000000011006 900000000000451002 +2262924029 20040731 0 900000000000207008 122631007 116154003 0 118170007 900000000000011006 900000000000451002 +2262925028 20030731 1 900000000000207008 122632000 24065009 0 118169006 900000000000011006 900000000000451002 +2262925028 20080731 0 900000000000207008 122632000 24065009 0 118169006 900000000000011006 900000000000451002 +2262926027 20030731 1 900000000000207008 122632000 116154003 0 118170007 900000000000011006 900000000000451002 +2262926027 20040731 0 900000000000207008 122632000 116154003 0 118170007 900000000000011006 900000000000451002 +2262927020 20030731 1 900000000000207008 122632000 14742008 0 118169006 900000000000011006 900000000000451002 +2262927020 20040731 0 900000000000207008 122632000 14742008 0 118169006 900000000000011006 900000000000451002 +2262928026 20030731 1 900000000000207008 122633005 116154003 0 118170007 900000000000011006 900000000000451002 +2262928026 20040731 0 900000000000207008 122633005 116154003 0 118170007 900000000000011006 900000000000451002 +2262929023 20030731 1 900000000000207008 122634004 116154003 0 118170007 900000000000011006 900000000000451002 +2262929023 20040731 0 900000000000207008 122634004 116154003 0 118170007 900000000000011006 900000000000451002 +2262930029 20030731 1 900000000000207008 122635003 116154003 0 118170007 900000000000011006 900000000000451002 +2262930029 20040731 0 900000000000207008 122635003 116154003 0 118170007 900000000000011006 900000000000451002 +2262931025 20030731 1 900000000000207008 122635003 24065009 0 118169006 900000000000011006 900000000000451002 +2262931025 20080731 0 900000000000207008 122635003 24065009 0 118169006 900000000000011006 900000000000451002 +2262932021 20030731 1 900000000000207008 122636002 116154003 0 118170007 900000000000011006 900000000000451002 +2262932021 20040731 0 900000000000207008 122636002 116154003 0 118170007 900000000000011006 900000000000451002 +2262933027 20030731 1 900000000000207008 122637006 116154003 0 118170007 900000000000011006 900000000000451002 +2262933027 20040731 0 900000000000207008 122637006 116154003 0 118170007 900000000000011006 900000000000451002 +2262935023 20030731 1 900000000000207008 122643008 116154003 0 118170007 900000000000011006 900000000000451002 +2262935023 20040731 0 900000000000207008 122643008 116154003 0 118170007 900000000000011006 900000000000451002 +2262936024 20030731 1 900000000000207008 122644002 116154003 0 118170007 900000000000011006 900000000000451002 +2262936024 20040731 0 900000000000207008 122644002 116154003 0 118170007 900000000000011006 900000000000451002 +2262937026 20030731 1 900000000000207008 122645001 116154003 0 118170007 900000000000011006 900000000000451002 +2262937026 20040731 0 900000000000207008 122645001 116154003 0 118170007 900000000000011006 900000000000451002 +2262938020 20030731 1 900000000000207008 122646000 116154003 0 118170007 900000000000011006 900000000000451002 +2262938020 20040731 0 900000000000207008 122646000 116154003 0 118170007 900000000000011006 900000000000451002 +2262939028 20030731 1 900000000000207008 122647009 116154003 0 118170007 900000000000011006 900000000000451002 +2262939028 20040731 0 900000000000207008 122647009 116154003 0 118170007 900000000000011006 900000000000451002 +2262940026 20030731 1 900000000000207008 122648004 116154003 0 118170007 900000000000011006 900000000000451002 +2262940026 20040731 0 900000000000207008 122648004 116154003 0 118170007 900000000000011006 900000000000451002 +2262941027 20030731 1 900000000000207008 122649007 116154003 0 118170007 900000000000011006 900000000000451002 +2262941027 20040731 0 900000000000207008 122649007 116154003 0 118170007 900000000000011006 900000000000451002 +2262943029 20030731 1 900000000000207008 122650007 116154003 0 118170007 900000000000011006 900000000000451002 +2262943029 20040731 0 900000000000207008 122650007 116154003 0 118170007 900000000000011006 900000000000451002 +2262944024 20030731 1 900000000000207008 122651006 116154003 0 118170007 900000000000011006 900000000000451002 +2262944024 20040731 0 900000000000207008 122651006 116154003 0 118170007 900000000000011006 900000000000451002 +2262945020 20030731 1 900000000000207008 122652004 116154003 0 118170007 900000000000011006 900000000000451002 +2262945020 20040731 0 900000000000207008 122652004 116154003 0 118170007 900000000000011006 900000000000451002 +2262946021 20030731 1 900000000000207008 122653009 116154003 0 118170007 900000000000011006 900000000000451002 +2262946021 20040731 0 900000000000207008 122653009 116154003 0 118170007 900000000000011006 900000000000451002 +2262947028 20030731 1 900000000000207008 122654003 116154003 0 118170007 900000000000011006 900000000000451002 +2262947028 20040731 0 900000000000207008 122654003 116154003 0 118170007 900000000000011006 900000000000451002 +2262948022 20030731 1 900000000000207008 122655002 116154003 0 118170007 900000000000011006 900000000000451002 +2262948022 20040731 0 900000000000207008 122655002 116154003 0 118170007 900000000000011006 900000000000451002 +2262949025 20030731 1 900000000000207008 122656001 116154003 0 118170007 900000000000011006 900000000000451002 +2262949025 20040731 0 900000000000207008 122656001 116154003 0 118170007 900000000000011006 900000000000451002 +2262950025 20030731 1 900000000000207008 122656001 14742008 0 118169006 900000000000011006 900000000000451002 +2262950025 20040731 0 900000000000207008 122656001 14742008 0 118169006 900000000000011006 900000000000451002 +2262951026 20030731 1 900000000000207008 122657005 14742008 0 118169006 900000000000011006 900000000000451002 +2262951026 20040731 0 900000000000207008 122657005 14742008 0 118169006 900000000000011006 900000000000451002 +2262952022 20030731 1 900000000000207008 122657005 116154003 0 118170007 900000000000011006 900000000000451002 +2262952022 20040731 0 900000000000207008 122657005 116154003 0 118170007 900000000000011006 900000000000451002 +2262953028 20030731 1 900000000000207008 122659008 116154003 0 118170007 900000000000011006 900000000000451002 +2262953028 20040731 0 900000000000207008 122659008 116154003 0 118170007 900000000000011006 900000000000451002 +2262954023 20030731 1 900000000000207008 122659008 14742008 0 118169006 900000000000011006 900000000000451002 +2262954023 20040731 0 900000000000207008 122659008 14742008 0 118169006 900000000000011006 900000000000451002 +2262955024 20030731 1 900000000000207008 122660003 14742008 0 118169006 900000000000011006 900000000000451002 +2262955024 20040731 0 900000000000207008 122660003 14742008 0 118169006 900000000000011006 900000000000451002 +2262956020 20030731 1 900000000000207008 122660003 116154003 0 118170007 900000000000011006 900000000000451002 +2262956020 20040731 0 900000000000207008 122660003 116154003 0 118170007 900000000000011006 900000000000451002 +2262957027 20030731 1 900000000000207008 122661004 116154003 0 118170007 900000000000011006 900000000000451002 +2262957027 20040731 0 900000000000207008 122661004 116154003 0 118170007 900000000000011006 900000000000451002 +2262958021 20030731 1 900000000000207008 122661004 14742008 0 118169006 900000000000011006 900000000000451002 +2262958021 20040731 0 900000000000207008 122661004 14742008 0 118169006 900000000000011006 900000000000451002 +2262959029 20030731 1 900000000000207008 122662006 14742008 0 118169006 900000000000011006 900000000000451002 +2262959029 20040731 0 900000000000207008 122662006 14742008 0 118169006 900000000000011006 900000000000451002 +2262960023 20030731 1 900000000000207008 122662006 116154003 0 118170007 900000000000011006 900000000000451002 +2262960023 20040731 0 900000000000207008 122662006 116154003 0 118170007 900000000000011006 900000000000451002 +2262961022 20030731 1 900000000000207008 122663001 116154003 0 118170007 900000000000011006 900000000000451002 +2262961022 20040731 0 900000000000207008 122663001 116154003 0 118170007 900000000000011006 900000000000451002 +2262962026 20030731 1 900000000000207008 122663001 14742008 0 118169006 900000000000011006 900000000000451002 +2262962026 20040731 0 900000000000207008 122663001 14742008 0 118169006 900000000000011006 900000000000451002 +2262963020 20030731 1 900000000000207008 122664007 14742008 0 118169006 900000000000011006 900000000000451002 +2262963020 20040731 0 900000000000207008 122664007 14742008 0 118169006 900000000000011006 900000000000451002 +2262964025 20030731 1 900000000000207008 122664007 116154003 0 118170007 900000000000011006 900000000000451002 +2262964025 20040731 0 900000000000207008 122664007 116154003 0 118170007 900000000000011006 900000000000451002 +2262965029 20030731 1 900000000000207008 122665008 116154003 0 118170007 900000000000011006 900000000000451002 +2262965029 20040731 0 900000000000207008 122665008 116154003 0 118170007 900000000000011006 900000000000451002 +2262966028 20030731 1 900000000000207008 122665008 14742008 0 118169006 900000000000011006 900000000000451002 +2262966028 20040731 0 900000000000207008 122665008 14742008 0 118169006 900000000000011006 900000000000451002 +2262967021 20030731 1 900000000000207008 122666009 14742008 0 118169006 900000000000011006 900000000000451002 +2262967021 20040731 0 900000000000207008 122666009 14742008 0 118169006 900000000000011006 900000000000451002 +2262968027 20030731 1 900000000000207008 122666009 116154003 0 118170007 900000000000011006 900000000000451002 +2262968027 20040731 0 900000000000207008 122666009 116154003 0 118170007 900000000000011006 900000000000451002 +2262969024 20030731 1 900000000000207008 122667000 116154003 0 118170007 900000000000011006 900000000000451002 +2262969024 20040731 0 900000000000207008 122667000 116154003 0 118170007 900000000000011006 900000000000451002 +2262970020 20030731 1 900000000000207008 122667000 14742008 0 118169006 900000000000011006 900000000000451002 +2262970020 20040731 0 900000000000207008 122667000 14742008 0 118169006 900000000000011006 900000000000451002 +2262971024 20030731 1 900000000000207008 122667000 70871006 0 118171006 900000000000011006 900000000000451002 +2262971024 20050131 0 900000000000207008 122667000 70871006 0 118171006 900000000000011006 900000000000451002 +2262972028 20030731 1 900000000000207008 122669002 89837001 0 118169006 900000000000011006 900000000000451002 +2262972028 20080731 0 900000000000207008 122669002 89837001 0 118169006 900000000000011006 900000000000451002 +2262972028 20090731 1 900000000000207008 122669002 89837001 1 118169006 900000000000011006 900000000000451002 +2262973022 20030731 1 900000000000207008 122677003 35461009 0 118169006 900000000000011006 900000000000451002 +2262973022 20050131 0 900000000000207008 122677003 35461009 0 118169006 900000000000011006 900000000000451002 +2262974027 20030731 1 900000000000207008 122678008 35461009 0 118169006 900000000000011006 900000000000451002 +2262974027 20050131 0 900000000000207008 122678008 35461009 0 118169006 900000000000011006 900000000000451002 +2262975026 20030731 1 900000000000207008 122679000 35461009 0 118169006 900000000000011006 900000000000451002 +2262975026 20050131 0 900000000000207008 122679000 35461009 0 118169006 900000000000011006 900000000000451002 +2262976025 20030731 1 900000000000207008 122683000 35461009 0 118169006 900000000000011006 900000000000451002 +2262976025 20050131 0 900000000000207008 122683000 35461009 0 118169006 900000000000011006 900000000000451002 +2262977023 20030731 1 900000000000207008 122684006 35461009 0 118169006 900000000000011006 900000000000451002 +2262977023 20050131 0 900000000000207008 122684006 35461009 0 118169006 900000000000011006 900000000000451002 +2262978029 20030731 1 900000000000207008 122685007 35461009 0 118169006 900000000000011006 900000000000451002 +2262978029 20050131 0 900000000000207008 122685007 35461009 0 118169006 900000000000011006 900000000000451002 +2262979021 20030731 1 900000000000207008 122688009 89837001 0 118169006 900000000000011006 900000000000451002 +2262979021 20080731 0 900000000000207008 122688009 89837001 0 118169006 900000000000011006 900000000000451002 +2262979021 20090131 1 900000000000207008 122688009 89837001 1 118169006 900000000000011006 900000000000451002 +2262980024 20030731 1 900000000000207008 122691009 70871006 0 118171006 900000000000011006 900000000000451002 +2262980024 20050131 0 900000000000207008 122691009 70871006 0 118171006 900000000000011006 900000000000451002 +2262981023 20030731 1 900000000000207008 122697008 55853002 0 118171006 900000000000011006 900000000000451002 +2262981023 20080731 0 900000000000207008 122697008 55853002 0 118171006 900000000000011006 900000000000451002 +2262981023 20090731 1 900000000000207008 122697008 55853002 1 118171006 900000000000011006 900000000000451002 +2262981023 20230901 0 900000000000207008 122697008 55853002 1 118171006 900000000000011006 900000000000451002 +2262982027 20030731 1 900000000000207008 122699006 54535009 0 118171006 900000000000011006 900000000000451002 +2262982027 20080731 0 900000000000207008 122699006 54535009 0 118171006 900000000000011006 900000000000451002 +2262982027 20090131 1 900000000000207008 122699006 54535009 1 118171006 900000000000011006 900000000000451002 +2262982027 20150131 1 900000000000207008 122699006 54535009 2 118171006 900000000000011006 900000000000451002 +2262986029 20030731 1 900000000000207008 122703009 2739003 0 118169006 900000000000011006 900000000000451002 +2262986029 20080731 0 900000000000207008 122703009 2739003 0 118169006 900000000000011006 900000000000451002 +2262986029 20090131 1 900000000000207008 122703009 2739003 1 118169006 900000000000011006 900000000000451002 +2262987022 20030731 1 900000000000207008 122704003 2739003 0 118169006 900000000000011006 900000000000451002 +2262987022 20080731 0 900000000000207008 122704003 2739003 0 118169006 900000000000011006 900000000000451002 +2262987022 20090131 1 900000000000207008 122704003 2739003 1 118169006 900000000000011006 900000000000451002 +2262988028 20030731 1 900000000000207008 122705002 2739003 0 118169006 900000000000011006 900000000000451002 +2262988028 20080731 0 900000000000207008 122705002 2739003 0 118169006 900000000000011006 900000000000451002 +2262988028 20090131 1 900000000000207008 122705002 2739003 1 118169006 900000000000011006 900000000000451002 +2262989020 20030731 1 900000000000207008 122706001 2739003 0 118169006 900000000000011006 900000000000451002 +2262989020 20080731 0 900000000000207008 122706001 2739003 0 118169006 900000000000011006 900000000000451002 +2262989020 20090131 1 900000000000207008 122706001 2739003 1 118169006 900000000000011006 900000000000451002 +2262989020 20110731 0 900000000000207008 122706001 2739003 1 118169006 900000000000011006 900000000000451002 +2262990027 20030731 1 900000000000207008 122707005 236886002 0 118171006 900000000000011006 900000000000451002 +2262990027 20080731 0 900000000000207008 122707005 236886002 0 118171006 900000000000011006 900000000000451002 +2262991028 20030731 1 900000000000207008 122707005 2739003 0 118169006 900000000000011006 900000000000451002 +2262991028 20080731 0 900000000000207008 122707005 2739003 0 118169006 900000000000011006 900000000000451002 +2262991028 20090131 1 900000000000207008 122707005 2739003 1 118169006 900000000000011006 900000000000451002 +2262992024 20030731 1 900000000000207008 122707005 55853002 0 118171006 900000000000011006 900000000000451002 +2262992024 20080731 0 900000000000207008 122707005 55853002 0 118171006 900000000000011006 900000000000451002 +2262992024 20090131 1 900000000000207008 122707005 55853002 1 118171006 900000000000011006 900000000000451002 +2262992024 20230901 0 900000000000207008 122707005 55853002 1 118171006 900000000000011006 900000000000451002 +2262993025 20030731 1 900000000000207008 122709008 70871006 0 118171006 900000000000011006 900000000000451002 +2262993025 20050131 0 900000000000207008 122709008 70871006 0 118171006 900000000000011006 900000000000451002 +2262994020 20030731 1 900000000000207008 122714007 302376006 0 118171006 900000000000011006 900000000000451002 +2262994020 20080731 0 900000000000207008 122714007 302376006 0 118171006 900000000000011006 900000000000451002 +2262994020 20090131 1 900000000000207008 122714007 302376006 1 118171006 900000000000011006 900000000000451002 +2262995021 20030731 1 900000000000207008 122715008 176914002 0 118171006 900000000000011006 900000000000451002 +2262995021 20080731 0 900000000000207008 122715008 176914002 0 118171006 900000000000011006 900000000000451002 +2262995021 20090131 1 900000000000207008 122715008 176914002 1 118171006 900000000000011006 900000000000451002 +2262996022 20030731 1 900000000000207008 122716009 302377002 0 118171006 900000000000011006 900000000000451002 +2262996022 20080731 0 900000000000207008 122716009 302377002 0 118171006 900000000000011006 900000000000451002 +2262996022 20090131 1 900000000000207008 122716009 302377002 1 118171006 900000000000011006 900000000000451002 +2262997029 20030731 1 900000000000207008 122718005 176915001 0 118171006 900000000000011006 900000000000451002 +2262997029 20080731 0 900000000000207008 122718005 176915001 0 118171006 900000000000011006 900000000000451002 +2262997029 20090131 1 900000000000207008 122718005 176915001 1 118171006 900000000000011006 900000000000451002 +2262998023 20030731 1 900000000000207008 122722000 85756007 0 118169006 900000000000011006 900000000000451002 +2262998023 20080731 0 900000000000207008 122722000 85756007 0 118169006 900000000000011006 900000000000451002 +2262999026 20030731 1 900000000000207008 122723005 85756007 0 118169006 900000000000011006 900000000000451002 +2262999026 20080731 0 900000000000207008 122723005 85756007 0 118169006 900000000000011006 900000000000451002 +2263000025 20030731 1 900000000000207008 122724004 85756007 0 118169006 900000000000011006 900000000000451002 +2263000025 20080731 0 900000000000207008 122724004 85756007 0 118169006 900000000000011006 900000000000451002 +2263001026 20030731 1 900000000000207008 122725003 85756007 0 118169006 900000000000011006 900000000000451002 +2263001026 20080731 0 900000000000207008 122725003 85756007 0 118169006 900000000000011006 900000000000451002 +2263002022 20030731 1 900000000000207008 122726002 85756007 0 118169006 900000000000011006 900000000000451002 +2263002022 20080731 0 900000000000207008 122726002 85756007 0 118169006 900000000000011006 900000000000451002 +2263003028 20030731 1 900000000000207008 122727006 85756007 0 118169006 900000000000011006 900000000000451002 +2263003028 20080731 0 900000000000207008 122727006 85756007 0 118169006 900000000000011006 900000000000451002 +2263005024 20030731 1 900000000000207008 122737001 70871006 0 118171006 900000000000011006 900000000000451002 +2263005024 20050731 0 900000000000207008 122737001 70871006 0 118171006 900000000000011006 900000000000451002 +2263006020 20030731 1 900000000000207008 122738006 70871006 0 118171006 900000000000011006 900000000000451002 +2263006020 20050731 0 900000000000207008 122738006 70871006 0 118171006 900000000000011006 900000000000451002 +2263010023 20030731 1 900000000000207008 122879002 33463005 0 370133003 900000000000011006 900000000000451002 +2263010023 20040131 0 900000000000207008 122879002 33463005 0 370133003 900000000000011006 900000000000451002 +2264099029 20030731 1 900000000000207008 127459007 321667001 0 118169006 900000000000011006 900000000000451002 +2264099029 20080731 0 900000000000207008 127459007 321667001 0 118169006 900000000000011006 900000000000451002 +2264100021 20030731 1 900000000000207008 127460002 321667001 0 118169006 900000000000011006 900000000000451002 +2264100021 20080731 0 900000000000207008 127460002 321667001 0 118169006 900000000000011006 900000000000451002 +2264101020 20030731 1 900000000000207008 127461003 321667001 0 118169006 900000000000011006 900000000000451002 +2264101020 20080731 0 900000000000207008 127461003 321667001 0 118169006 900000000000011006 900000000000451002 +2264102029 20030731 1 900000000000207008 127463000 116154003 0 118170007 900000000000011006 900000000000451002 +2264102029 20040731 0 900000000000207008 127463000 116154003 0 118170007 900000000000011006 900000000000451002 +2264103023 20030731 1 900000000000207008 127464006 116154003 0 118170007 900000000000011006 900000000000451002 +2264103023 20040731 0 900000000000207008 127464006 116154003 0 118170007 900000000000011006 900000000000451002 +2264104028 20030731 1 900000000000207008 127464006 14742008 0 118169006 900000000000011006 900000000000451002 +2264104028 20040731 0 900000000000207008 127464006 14742008 0 118169006 900000000000011006 900000000000451002 +2264105027 20030731 1 900000000000207008 127465007 116154003 0 118170007 900000000000011006 900000000000451002 +2264105027 20040731 0 900000000000207008 127465007 116154003 0 118170007 900000000000011006 900000000000451002 +2264106026 20030731 1 900000000000207008 127466008 116154003 0 118170007 900000000000011006 900000000000451002 +2264106026 20040731 0 900000000000207008 127466008 116154003 0 118170007 900000000000011006 900000000000451002 +2264107024 20030731 1 900000000000207008 127466008 14742008 0 118169006 900000000000011006 900000000000451002 +2264107024 20040731 0 900000000000207008 127466008 14742008 0 118169006 900000000000011006 900000000000451002 +2264108025 20030731 1 900000000000207008 127470000 14742008 0 118169006 900000000000011006 900000000000451002 +2264108025 20040731 0 900000000000207008 127470000 14742008 0 118169006 900000000000011006 900000000000451002 +2264109022 20030731 1 900000000000207008 127470000 116154003 0 118170007 900000000000011006 900000000000451002 +2264109022 20040731 0 900000000000207008 127470000 116154003 0 118170007 900000000000011006 900000000000451002 +2264165029 20030731 1 900000000000207008 128159001 116154003 0 118170007 900000000000011006 900000000000451002 +2264165029 20040731 0 900000000000207008 128159001 116154003 0 118170007 900000000000011006 900000000000451002 +2264166028 20030731 1 900000000000207008 128168004 14742008 0 118169006 900000000000011006 900000000000451002 +2264166028 20040731 0 900000000000207008 128168004 14742008 0 118169006 900000000000011006 900000000000451002 +2264167021 20030731 1 900000000000207008 128168004 116154003 0 118170007 900000000000011006 900000000000451002 +2264167021 20040731 0 900000000000207008 128168004 116154003 0 118170007 900000000000011006 900000000000451002 +2264168027 20030731 1 900000000000207008 128171007 116154003 0 118170007 900000000000011006 900000000000451002 +2264168027 20040731 0 900000000000207008 128171007 116154003 0 118170007 900000000000011006 900000000000451002 +2272184029 20030731 1 900000000000207008 363311008 116154003 0 118170007 900000000000011006 900000000000451002 +2272184029 20040731 0 900000000000207008 363311008 116154003 0 118170007 900000000000011006 900000000000451002 +2272186027 20030731 1 900000000000207008 363328006 116154003 0 118170007 900000000000011006 900000000000451002 +2272186027 20040731 0 900000000000207008 363328006 116154003 0 118170007 900000000000011006 900000000000451002 +2277923029 20030731 1 900000000000207008 369611008 116154003 0 118170007 900000000000011006 900000000000451002 +2277923029 20040731 0 900000000000207008 369611008 116154003 0 118170007 900000000000011006 900000000000451002 +2277925020 20030731 1 900000000000207008 369614000 116154003 0 118170007 900000000000011006 900000000000451002 +2277925020 20040731 0 900000000000207008 369614000 116154003 0 118170007 900000000000011006 900000000000451002 +2277926021 20030731 1 900000000000207008 369614000 14742008 0 118169006 900000000000011006 900000000000451002 +2277926021 20040731 0 900000000000207008 369614000 14742008 0 118169006 900000000000011006 900000000000451002 +2277927028 20030731 1 900000000000207008 369615004 116154003 0 118170007 900000000000011006 900000000000451002 +2277927028 20040731 0 900000000000207008 369615004 116154003 0 118170007 900000000000011006 900000000000451002 +2277928022 20030731 1 900000000000207008 369616003 116154003 0 118170007 900000000000011006 900000000000451002 +2277928022 20040731 0 900000000000207008 369616003 116154003 0 118170007 900000000000011006 900000000000451002 +2277929025 20030731 1 900000000000207008 369616003 14742008 0 118169006 900000000000011006 900000000000451002 +2277929025 20040731 0 900000000000207008 369616003 14742008 0 118169006 900000000000011006 900000000000451002 +2277930024 20030731 1 900000000000207008 369617007 14742008 0 118169006 900000000000011006 900000000000451002 +2277930024 20040731 0 900000000000207008 369617007 14742008 0 118169006 900000000000011006 900000000000451002 +2277931023 20030731 1 900000000000207008 369617007 116154003 0 118170007 900000000000011006 900000000000451002 +2277931023 20040731 0 900000000000207008 369617007 116154003 0 118170007 900000000000011006 900000000000451002 +2277940022 20030731 1 900000000000207008 370108001 116154003 0 118170007 900000000000011006 900000000000451002 +2277940022 20040731 0 900000000000207008 370108001 116154003 0 118170007 900000000000011006 900000000000451002 +2277941021 20030731 1 900000000000207008 370108001 122865005 0 118169006 900000000000011006 900000000000451002 +2277941021 20080731 0 900000000000207008 370108001 122865005 0 118169006 900000000000011006 900000000000451002 +2279541023 20030731 1 900000000000207008 373826004 65801008 0 118171006 900000000000011006 900000000000451002 +2279541023 20190731 1 900000000000207008 373826004 65801008 1 118171006 900000000000011006 900000000000451002 +2279929021 20030731 1 900000000000207008 384819001 85756007 0 118169006 900000000000011006 900000000000451002 +2279929021 20080731 0 900000000000207008 384819001 85756007 0 118169006 900000000000011006 900000000000451002 +2279930027 20030731 1 900000000000207008 384820007 85756007 0 118169006 900000000000011006 900000000000451002 +2279930027 20080731 0 900000000000207008 384820007 85756007 0 118169006 900000000000011006 900000000000451002 +2279982025 20030731 1 900000000000207008 385338007 119894003 0 118171006 900000000000011006 900000000000451002 +2279982025 20080731 0 900000000000207008 385338007 119894003 0 118171006 900000000000011006 900000000000451002 +2279982025 20090131 1 900000000000207008 385338007 119894003 1 118171006 900000000000011006 900000000000451002 +2279983024 20030731 1 900000000000207008 385338007 85756007 0 118169006 900000000000011006 900000000000451002 +2279983024 20080731 0 900000000000207008 385338007 85756007 0 118169006 900000000000011006 900000000000451002 +2279984029 20030731 1 900000000000207008 385339004 119894003 0 118171006 900000000000011006 900000000000451002 +2279984029 20080731 0 900000000000207008 385339004 119894003 0 118171006 900000000000011006 900000000000451002 +2279984029 20090131 1 900000000000207008 385339004 119894003 1 118171006 900000000000011006 900000000000451002 +2279985028 20030731 1 900000000000207008 385339004 85756007 0 118169006 900000000000011006 900000000000451002 +2279985028 20080731 0 900000000000207008 385339004 85756007 0 118169006 900000000000011006 900000000000451002 +2279986027 20030731 1 900000000000207008 385340002 85756007 0 118169006 900000000000011006 900000000000451002 +2279986027 20080731 0 900000000000207008 385340002 85756007 0 118169006 900000000000011006 900000000000451002 +2279987020 20030731 1 900000000000207008 385340002 119894003 0 118171006 900000000000011006 900000000000451002 +2279987020 20080731 0 900000000000207008 385340002 119894003 0 118171006 900000000000011006 900000000000451002 +2279987020 20090131 1 900000000000207008 385340002 119894003 1 118171006 900000000000011006 900000000000451002 +2280091029 20030731 1 900000000000207008 396273004 71252005 0 118169006 900000000000011006 900000000000451002 +2280091029 20080731 0 900000000000207008 396273004 71252005 0 118169006 900000000000011006 900000000000451002 +2280091029 20090131 1 900000000000207008 396273004 71252005 1 118169006 900000000000011006 900000000000451002 +2280092020 20030731 1 900000000000207008 396273004 85756007 0 118169006 900000000000011006 900000000000451002 +2280092020 20080731 0 900000000000207008 396273004 85756007 0 118169006 900000000000011006 900000000000451002 +2280093026 20030731 1 900000000000207008 396273004 120038005 0 118171006 900000000000011006 900000000000451002 +2280093026 20080731 0 900000000000207008 396273004 120038005 0 118171006 900000000000011006 900000000000451002 +2280093026 20090131 1 900000000000207008 396273004 120038005 1 118171006 900000000000011006 900000000000451002 +2280146024 20030731 1 900000000000207008 396353007 39937001 0 118169006 900000000000011006 900000000000451002 +2280146024 20040731 0 900000000000207008 396353007 39937001 0 118169006 900000000000011006 900000000000451002 +2280147026 20030731 1 900000000000207008 396353007 25662004 0 118171006 900000000000011006 900000000000451002 +2280147026 20080731 0 900000000000207008 396353007 25662004 0 118171006 900000000000011006 900000000000451002 +2280148020 20030731 1 900000000000207008 396353007 314818000 0 118169006 900000000000011006 900000000000451002 +2280148020 20080731 0 900000000000207008 396353007 314818000 0 118169006 900000000000011006 900000000000451002 +2280149028 20030731 1 900000000000207008 396354001 314818000 0 118169006 900000000000011006 900000000000451002 +2280149028 20080731 0 900000000000207008 396354001 314818000 0 118169006 900000000000011006 900000000000451002 +2280150028 20030731 1 900000000000207008 396354001 177302005 0 118171006 900000000000011006 900000000000451002 +2280150028 20080731 0 900000000000207008 396354001 177302005 0 118171006 900000000000011006 900000000000451002 +2280151029 20030731 1 900000000000207008 396354001 39937001 0 118169006 900000000000011006 900000000000451002 +2280151029 20040731 0 900000000000207008 396354001 39937001 0 118169006 900000000000011006 900000000000451002 +2280152020 20030731 1 900000000000207008 396355000 39937001 0 118169006 900000000000011006 900000000000451002 +2280152020 20040731 0 900000000000207008 396355000 39937001 0 118169006 900000000000011006 900000000000451002 +2280153026 20030731 1 900000000000207008 396355000 35646002 0 118171006 900000000000011006 900000000000451002 +2280153026 20080731 0 900000000000207008 396355000 35646002 0 118171006 900000000000011006 900000000000451002 +2280154021 20030731 1 900000000000207008 396355000 314818000 0 118169006 900000000000011006 900000000000451002 +2280154021 20080731 0 900000000000207008 396355000 314818000 0 118169006 900000000000011006 900000000000451002 +2280155022 20030731 1 900000000000207008 396356004 314818000 0 118169006 900000000000011006 900000000000451002 +2280155022 20080731 0 900000000000207008 396356004 314818000 0 118169006 900000000000011006 900000000000451002 +2280156023 20030731 1 900000000000207008 396356004 39937001 0 118169006 900000000000011006 900000000000451002 +2280156023 20040731 0 900000000000207008 396356004 39937001 0 118169006 900000000000011006 900000000000451002 +2280157025 20030731 1 900000000000207008 396357008 39937001 0 118169006 900000000000011006 900000000000451002 +2280157025 20040731 0 900000000000207008 396357008 39937001 0 118169006 900000000000011006 900000000000451002 +2280158024 20030731 1 900000000000207008 396357008 314818000 0 118169006 900000000000011006 900000000000451002 +2280158024 20080731 0 900000000000207008 396357008 314818000 0 118169006 900000000000011006 900000000000451002 +2280159027 20030731 1 900000000000207008 396358003 314818000 0 118169006 900000000000011006 900000000000451002 +2280159027 20080731 0 900000000000207008 396358003 314818000 0 118169006 900000000000011006 900000000000451002 +2280160021 20030731 1 900000000000207008 396358003 39937001 0 118169006 900000000000011006 900000000000451002 +2280160021 20040731 0 900000000000207008 396358003 39937001 0 118169006 900000000000011006 900000000000451002 +2280161020 20030731 1 900000000000207008 396359006 122459003 0 118171006 900000000000011006 900000000000451002 +2280161020 20080731 0 900000000000207008 396359006 122459003 0 118171006 900000000000011006 900000000000451002 +2280162029 20030731 1 900000000000207008 396359006 87612001 0 370133003 900000000000011006 900000000000451002 +2280162029 20040731 0 900000000000207008 396359006 87612001 0 370133003 900000000000011006 900000000000451002 +2280163023 20030731 1 900000000000207008 396359006 165369002 0 118171006 900000000000011006 900000000000451002 +2280163023 20040731 0 900000000000207008 396359006 165369002 0 118171006 900000000000011006 900000000000451002 +2280164028 20030731 1 900000000000207008 396359006 312500006 0 118169006 900000000000011006 900000000000451002 +2280164028 20080731 0 900000000000207008 396359006 312500006 0 118169006 900000000000011006 900000000000451002 +2280164028 20090131 1 900000000000207008 396359006 312500006 1 118169006 900000000000011006 900000000000451002 +2280200026 20030731 1 900000000000207008 396476009 85756007 0 118169006 900000000000011006 900000000000451002 +2280200026 20080731 0 900000000000207008 396476009 85756007 0 118169006 900000000000011006 900000000000451002 +2280201027 20030731 1 900000000000207008 396476009 116154003 0 118170007 900000000000011006 900000000000451002 +2280201027 20040731 0 900000000000207008 396476009 116154003 0 118170007 900000000000011006 900000000000451002 +2280202023 20030731 1 900000000000207008 396476009 14742008 0 118169006 900000000000011006 900000000000451002 +2280202023 20040731 0 900000000000207008 396476009 14742008 0 118169006 900000000000011006 900000000000451002 +2280203029 20030731 1 900000000000207008 396476009 85946004 0 118171006 900000000000011006 900000000000451002 +2280203029 20080731 0 900000000000207008 396476009 85946004 0 118171006 900000000000011006 900000000000451002 +2280203029 20090731 1 900000000000207008 396476009 85946004 1 118171006 900000000000011006 900000000000451002 +2280204024 20030731 1 900000000000207008 396476009 48521005 0 118169006 900000000000011006 900000000000451002 +2280204024 20080731 0 900000000000207008 396476009 48521005 0 118169006 900000000000011006 900000000000451002 +2280204024 20090731 1 900000000000207008 396476009 48521005 1 118169006 900000000000011006 900000000000451002 +2280205020 20030731 1 900000000000207008 396477000 48521005 0 118169006 900000000000011006 900000000000451002 +2280205020 20080731 0 900000000000207008 396477000 48521005 0 118169006 900000000000011006 900000000000451002 +2280205020 20090131 1 900000000000207008 396477000 48521005 1 118169006 900000000000011006 900000000000451002 +2280206021 20030731 1 900000000000207008 396477000 14742008 0 118169006 900000000000011006 900000000000451002 +2280206021 20040731 0 900000000000207008 396477000 14742008 0 118169006 900000000000011006 900000000000451002 +2280207028 20030731 1 900000000000207008 396477000 116154003 0 118170007 900000000000011006 900000000000451002 +2280207028 20040731 0 900000000000207008 396477000 116154003 0 118170007 900000000000011006 900000000000451002 +2280208022 20030731 1 900000000000207008 396477000 307010009 0 118171006 900000000000011006 900000000000451002 +2280208022 20080731 0 900000000000207008 396477000 307010009 0 118171006 900000000000011006 900000000000451002 +2280208022 20090131 1 900000000000207008 396477000 307010009 1 118171006 900000000000011006 900000000000451002 +2280209025 20030731 1 900000000000207008 396477000 85756007 0 118169006 900000000000011006 900000000000451002 +2280209025 20080731 0 900000000000207008 396477000 85756007 0 118169006 900000000000011006 900000000000451002 +2280210024 20030731 1 900000000000207008 396478005 85756007 0 118169006 900000000000011006 900000000000451002 +2280210024 20080731 0 900000000000207008 396478005 85756007 0 118169006 900000000000011006 900000000000451002 +2280211023 20030731 1 900000000000207008 396478005 116154003 0 118170007 900000000000011006 900000000000451002 +2280211023 20040731 0 900000000000207008 396478005 116154003 0 118170007 900000000000011006 900000000000451002 +2280212027 20030731 1 900000000000207008 396478005 16777006 0 118169006 900000000000011006 900000000000451002 +2280212027 20080731 0 900000000000207008 396478005 16777006 0 118169006 900000000000011006 900000000000451002 +2280212027 20090731 1 900000000000207008 396478005 16777006 1 118169006 900000000000011006 900000000000451002 +2280213021 20030731 1 900000000000207008 396478005 14742008 0 118169006 900000000000011006 900000000000451002 +2280213021 20040731 0 900000000000207008 396478005 14742008 0 118169006 900000000000011006 900000000000451002 +2280214026 20030731 1 900000000000207008 396478005 174430004 0 118171006 900000000000011006 900000000000451002 +2280214026 20080731 0 900000000000207008 396478005 174430004 0 118171006 900000000000011006 900000000000451002 +2280214026 20090731 1 900000000000207008 396478005 174430004 1 118171006 900000000000011006 900000000000451002 +2280215025 20030731 1 900000000000207008 396479002 174430004 0 118171006 900000000000011006 900000000000451002 +2280215025 20080731 0 900000000000207008 396479002 174430004 0 118171006 900000000000011006 900000000000451002 +2280215025 20090731 1 900000000000207008 396479002 174430004 1 118171006 900000000000011006 900000000000451002 +2280216029 20030731 1 900000000000207008 396479002 14742008 0 118169006 900000000000011006 900000000000451002 +2280216029 20040731 0 900000000000207008 396479002 14742008 0 118169006 900000000000011006 900000000000451002 +2280217022 20030731 1 900000000000207008 396479002 116154003 0 118170007 900000000000011006 900000000000451002 +2280217022 20040731 0 900000000000207008 396479002 116154003 0 118170007 900000000000011006 900000000000451002 +2280218028 20030731 1 900000000000207008 396479002 85756007 0 118169006 900000000000011006 900000000000451002 +2280218028 20080731 0 900000000000207008 396479002 85756007 0 118169006 900000000000011006 900000000000451002 +2280219020 20030731 1 900000000000207008 396479002 80303005 0 118169006 900000000000011006 900000000000451002 +2280219020 20080731 0 900000000000207008 396479002 80303005 0 118169006 900000000000011006 900000000000451002 +2280219020 20090731 1 900000000000207008 396479002 80303005 1 118169006 900000000000011006 900000000000451002 +2280220025 20030731 1 900000000000207008 396480004 85756007 0 118169006 900000000000011006 900000000000451002 +2280220025 20080731 0 900000000000207008 396480004 85756007 0 118169006 900000000000011006 900000000000451002 +2280221026 20030731 1 900000000000207008 396480004 63816008 0 118171006 900000000000011006 900000000000451002 +2280221026 20080731 0 900000000000207008 396480004 63816008 0 118171006 900000000000011006 900000000000451002 +2280221026 20090731 1 900000000000207008 396480004 63816008 1 118171006 900000000000011006 900000000000451002 +2280222022 20030731 1 900000000000207008 396480004 116154003 0 118170007 900000000000011006 900000000000451002 +2280222022 20040731 0 900000000000207008 396480004 116154003 0 118170007 900000000000011006 900000000000451002 +2280223028 20030731 1 900000000000207008 396480004 69842003 0 118169006 900000000000011006 900000000000451002 +2280223028 20080731 0 900000000000207008 396480004 69842003 0 118169006 900000000000011006 900000000000451002 +2280223028 20090731 1 900000000000207008 396480004 69842003 1 118169006 900000000000011006 900000000000451002 +2280224023 20030731 1 900000000000207008 396480004 14742008 0 118169006 900000000000011006 900000000000451002 +2280224023 20040731 0 900000000000207008 396480004 14742008 0 118169006 900000000000011006 900000000000451002 +2280225024 20030731 1 900000000000207008 396481000 14742008 0 118169006 900000000000011006 900000000000451002 +2280225024 20040731 0 900000000000207008 396481000 14742008 0 118169006 900000000000011006 900000000000451002 +2280226020 20030731 1 900000000000207008 396481000 10200004 0 118169006 900000000000011006 900000000000451002 +2280226020 20080731 0 900000000000207008 396481000 10200004 0 118169006 900000000000011006 900000000000451002 +2280226020 20090131 1 900000000000207008 396481000 10200004 1 118169006 900000000000011006 900000000000451002 +2280227027 20030731 1 900000000000207008 396481000 116154003 0 118170007 900000000000011006 900000000000451002 +2280227027 20040731 0 900000000000207008 396481000 116154003 0 118170007 900000000000011006 900000000000451002 +2280228021 20030731 1 900000000000207008 396481000 85756007 0 118169006 900000000000011006 900000000000451002 +2280228021 20080731 0 900000000000207008 396481000 85756007 0 118169006 900000000000011006 900000000000451002 +2280231022 20030731 1 900000000000207008 396483002 39937001 0 118169006 900000000000011006 900000000000451002 +2280231022 20040731 0 900000000000207008 396483002 39937001 0 118169006 900000000000011006 900000000000451002 +2280232026 20030731 1 900000000000207008 396483002 302390009 0 118171006 900000000000011006 900000000000451002 +2280232026 20080731 0 900000000000207008 396483002 302390009 0 118171006 900000000000011006 900000000000451002 +2280233020 20030731 1 900000000000207008 396483002 314818000 0 118169006 900000000000011006 900000000000451002 +2280233020 20080731 0 900000000000207008 396483002 314818000 0 118169006 900000000000011006 900000000000451002 +2280290020 20030731 1 900000000000207008 396525008 85756007 0 118169006 900000000000011006 900000000000451002 +2280290020 20080731 0 900000000000207008 396525008 85756007 0 118169006 900000000000011006 900000000000451002 +2280291024 20030731 1 900000000000207008 396525008 274371008 0 118171006 900000000000011006 900000000000451002 +2280291024 20080731 0 900000000000207008 396525008 274371008 0 118171006 900000000000011006 900000000000451002 +2280292028 20030731 1 900000000000207008 396525008 23451007 0 118169006 900000000000011006 900000000000451002 +2280292028 20080731 0 900000000000207008 396525008 23451007 0 118169006 900000000000011006 900000000000451002 +2280292028 20090131 1 900000000000207008 396525008 23451007 1 118169006 900000000000011006 900000000000451002 +2280293022 20030731 1 900000000000207008 396525008 129249002 0 118171006 900000000000011006 900000000000451002 +2280293022 20080731 0 900000000000207008 396525008 129249002 0 118171006 900000000000011006 900000000000451002 +2280293022 20090131 1 900000000000207008 396525008 129249002 1 118171006 900000000000011006 900000000000451002 +2280294027 20030731 1 900000000000207008 396526009 23451007 0 118169006 900000000000011006 900000000000451002 +2280294027 20080731 0 900000000000207008 396526009 23451007 0 118169006 900000000000011006 900000000000451002 +2280294027 20090131 1 900000000000207008 396526009 23451007 1 118169006 900000000000011006 900000000000451002 +2280295026 20030731 1 900000000000207008 396526009 85756007 0 118169006 900000000000011006 900000000000451002 +2280295026 20080731 0 900000000000207008 396526009 85756007 0 118169006 900000000000011006 900000000000451002 +2280296025 20030731 1 900000000000207008 396526009 33756006 0 118171006 900000000000011006 900000000000451002 +2280296025 20080731 0 900000000000207008 396526009 33756006 0 118171006 900000000000011006 900000000000451002 +2280296025 20090131 1 900000000000207008 396526009 33756006 1 118171006 900000000000011006 900000000000451002 +2280297023 20030731 1 900000000000207008 396527000 367531007 0 118171006 900000000000011006 900000000000451002 +2280297023 20080731 0 900000000000207008 396527000 367531007 0 118171006 900000000000011006 900000000000451002 +2280297023 20090131 1 900000000000207008 396527000 367531007 1 118171006 900000000000011006 900000000000451002 +2280298029 20030731 1 900000000000207008 396527000 85756007 0 118169006 900000000000011006 900000000000451002 +2280298029 20080731 0 900000000000207008 396527000 85756007 0 118169006 900000000000011006 900000000000451002 +2280299021 20030731 1 900000000000207008 396527000 23451007 0 118169006 900000000000011006 900000000000451002 +2280299021 20080731 0 900000000000207008 396527000 23451007 0 118169006 900000000000011006 900000000000451002 +2280299021 20090131 1 900000000000207008 396527000 23451007 1 118169006 900000000000011006 900000000000451002 +2280340024 20030731 1 900000000000207008 396685001 64063003 0 118171006 900000000000011006 900000000000451002 +2280340024 20080731 0 900000000000207008 396685001 64063003 0 118171006 900000000000011006 900000000000451002 +2280340024 20090131 1 900000000000207008 396685001 64063003 1 118171006 900000000000011006 900000000000451002 +2280341023 20030731 1 900000000000207008 396685001 85756007 0 118169006 900000000000011006 900000000000451002 +2280341023 20080731 0 900000000000207008 396685001 85756007 0 118169006 900000000000011006 900000000000451002 +2280342027 20030731 1 900000000000207008 396685001 89837001 0 118169006 900000000000011006 900000000000451002 +2280342027 20080731 0 900000000000207008 396685001 89837001 0 118169006 900000000000011006 900000000000451002 +2280342027 20090131 1 900000000000207008 396685001 89837001 1 118169006 900000000000011006 900000000000451002 +2280359021 20030731 1 900000000000207008 396804002 15776009 0 118169006 900000000000011006 900000000000451002 +2280359021 20080731 0 900000000000207008 396804002 15776009 0 118169006 900000000000011006 900000000000451002 +2280359021 20090131 1 900000000000207008 396804002 15776009 1 118169006 900000000000011006 900000000000451002 +2280360027 20030731 1 900000000000207008 396804002 116242006 0 118171006 900000000000011006 900000000000451002 +2280360027 20080731 0 900000000000207008 396804002 116242006 0 118171006 900000000000011006 900000000000451002 +2280360027 20090131 1 900000000000207008 396804002 116242006 1 118171006 900000000000011006 900000000000451002 +2280361028 20030731 1 900000000000207008 396804002 85756007 0 118169006 900000000000011006 900000000000451002 +2280361028 20080731 0 900000000000207008 396804002 85756007 0 118169006 900000000000011006 900000000000451002 +2280362024 20030731 1 900000000000207008 396804002 287847009 0 118171006 900000000000011006 900000000000451002 +2280362024 20080731 0 900000000000207008 396804002 287847009 0 118171006 900000000000011006 900000000000451002 +2280363025 20030731 1 900000000000207008 396804002 116154003 0 118170007 900000000000011006 900000000000451002 +2280363025 20040731 0 900000000000207008 396804002 116154003 0 118170007 900000000000011006 900000000000451002 +2280364020 20030731 1 900000000000207008 396804002 14742008 0 118169006 900000000000011006 900000000000451002 +2280364020 20040731 0 900000000000207008 396804002 14742008 0 118169006 900000000000011006 900000000000451002 +2280365021 20030731 1 900000000000207008 396805001 14742008 0 118169006 900000000000011006 900000000000451002 +2280365021 20040731 0 900000000000207008 396805001 14742008 0 118169006 900000000000011006 900000000000451002 +2280366022 20030731 1 900000000000207008 396805001 116154003 0 118170007 900000000000011006 900000000000451002 +2280366022 20040731 0 900000000000207008 396805001 116154003 0 118170007 900000000000011006 900000000000451002 +2280367029 20030731 1 900000000000207008 396805001 9524002 0 118171006 900000000000011006 900000000000451002 +2280367029 20080731 0 900000000000207008 396805001 9524002 0 118171006 900000000000011006 900000000000451002 +2280368023 20030731 1 900000000000207008 396805001 85756007 0 118169006 900000000000011006 900000000000451002 +2280368023 20080731 0 900000000000207008 396805001 85756007 0 118169006 900000000000011006 900000000000451002 +2280369026 20030731 1 900000000000207008 396805001 116242006 0 118171006 900000000000011006 900000000000451002 +2280369026 20080731 0 900000000000207008 396805001 116242006 0 118171006 900000000000011006 900000000000451002 +2280369026 20090131 1 900000000000207008 396805001 116242006 1 118171006 900000000000011006 900000000000451002 +2280370025 20030731 1 900000000000207008 396805001 15776009 0 118169006 900000000000011006 900000000000451002 +2280370025 20080731 0 900000000000207008 396805001 15776009 0 118169006 900000000000011006 900000000000451002 +2280370025 20090131 1 900000000000207008 396805001 15776009 1 118169006 900000000000011006 900000000000451002 +2280371026 20030731 1 900000000000207008 396806000 15776009 0 118169006 900000000000011006 900000000000451002 +2280371026 20080731 0 900000000000207008 396806000 15776009 0 118169006 900000000000011006 900000000000451002 +2280371026 20090131 1 900000000000207008 396806000 15776009 1 118169006 900000000000011006 900000000000451002 +2280372022 20030731 1 900000000000207008 396806000 116241004 0 118171006 900000000000011006 900000000000451002 +2280372022 20080731 0 900000000000207008 396806000 116241004 0 118171006 900000000000011006 900000000000451002 +2280372022 20090131 1 900000000000207008 396806000 116241004 1 118171006 900000000000011006 900000000000451002 +2280373028 20030731 1 900000000000207008 396806000 85756007 0 118169006 900000000000011006 900000000000451002 +2280373028 20080731 0 900000000000207008 396806000 85756007 0 118169006 900000000000011006 900000000000451002 +2280374023 20030731 1 900000000000207008 396806000 116154003 0 118170007 900000000000011006 900000000000451002 +2280374023 20040731 0 900000000000207008 396806000 116154003 0 118170007 900000000000011006 900000000000451002 +2280375024 20030731 1 900000000000207008 396806000 287847009 0 118171006 900000000000011006 900000000000451002 +2280375024 20080731 0 900000000000207008 396806000 287847009 0 118171006 900000000000011006 900000000000451002 +2280376020 20030731 1 900000000000207008 396806000 14742008 0 118169006 900000000000011006 900000000000451002 +2280376020 20040731 0 900000000000207008 396806000 14742008 0 118169006 900000000000011006 900000000000451002 +2280377027 20030731 1 900000000000207008 396807009 14742008 0 118169006 900000000000011006 900000000000451002 +2280377027 20040731 0 900000000000207008 396807009 14742008 0 118169006 900000000000011006 900000000000451002 +2280378021 20030731 1 900000000000207008 396807009 116154003 0 118170007 900000000000011006 900000000000451002 +2280378021 20040731 0 900000000000207008 396807009 116154003 0 118170007 900000000000011006 900000000000451002 +2280379029 20030731 1 900000000000207008 396807009 9524002 0 118171006 900000000000011006 900000000000451002 +2280379029 20080731 0 900000000000207008 396807009 9524002 0 118171006 900000000000011006 900000000000451002 +2280380026 20030731 1 900000000000207008 396807009 85756007 0 118169006 900000000000011006 900000000000451002 +2280380026 20080731 0 900000000000207008 396807009 85756007 0 118169006 900000000000011006 900000000000451002 +2280381027 20030731 1 900000000000207008 396807009 116241004 0 118171006 900000000000011006 900000000000451002 +2280381027 20080731 0 900000000000207008 396807009 116241004 0 118171006 900000000000011006 900000000000451002 +2280381027 20090131 1 900000000000207008 396807009 116241004 1 118171006 900000000000011006 900000000000451002 +2280382023 20030731 1 900000000000207008 396807009 15776009 0 118169006 900000000000011006 900000000000451002 +2280382023 20080731 0 900000000000207008 396807009 15776009 0 118169006 900000000000011006 900000000000451002 +2280382023 20090131 1 900000000000207008 396807009 15776009 1 118169006 900000000000011006 900000000000451002 +2280383029 20030731 1 900000000000207008 396896007 9875009 0 118169006 900000000000011006 900000000000451002 +2280383029 20190731 1 900000000000207008 396896007 9875009 1 118169006 900000000000011006 900000000000451002 +2280384024 20030731 1 900000000000207008 396897003 9875009 0 118169006 900000000000011006 900000000000451002 +2280384024 20080731 1 900000000000207008 396897003 9875009 1 118169006 900000000000011006 900000000000451002 +2280385020 20030731 1 900000000000207008 396897003 69748006 0 118169006 900000000000011006 900000000000451002 +2280385020 20080731 0 900000000000207008 396897003 69748006 0 118169006 900000000000011006 900000000000451002 +2280386021 20030731 1 900000000000207008 396897003 85756007 0 118169006 900000000000011006 900000000000451002 +2280386021 20080731 0 900000000000207008 396897003 85756007 0 118169006 900000000000011006 900000000000451002 +2280387028 20030731 1 900000000000207008 396897003 172012004 0 118171006 900000000000011006 900000000000451002 +2280387028 20080731 1 900000000000207008 396897003 172012004 1 118171006 900000000000011006 900000000000451002 +2280388022 20030731 1 900000000000207008 396898008 177765008 0 118171006 900000000000011006 900000000000451002 +2280388022 20080731 0 900000000000207008 396898008 177765008 0 118171006 900000000000011006 900000000000451002 +2280388022 20090131 1 900000000000207008 396898008 177765008 1 118171006 900000000000011006 900000000000451002 +2280388022 20100731 0 900000000000207008 396898008 177765008 1 118171006 900000000000011006 900000000000451002 +2280388022 20110131 1 900000000000207008 396898008 177765008 1 118171006 900000000000011006 900000000000451002 +2280389025 20030731 1 900000000000207008 396898008 85756007 0 118169006 900000000000011006 900000000000451002 +2280389025 20080731 0 900000000000207008 396898008 85756007 0 118169006 900000000000011006 900000000000451002 +2280390023 20030731 1 900000000000207008 396898008 9875009 0 118169006 900000000000011006 900000000000451002 +2280390023 20080731 0 900000000000207008 396898008 9875009 0 118169006 900000000000011006 900000000000451002 +2280390023 20090131 1 900000000000207008 396898008 9875009 1 118169006 900000000000011006 900000000000451002 +2280390023 20100731 0 900000000000207008 396898008 9875009 1 118169006 900000000000011006 900000000000451002 +2280390023 20110131 1 900000000000207008 396898008 9875009 1 118169006 900000000000011006 900000000000451002 +2280391022 20030731 1 900000000000207008 396899000 9875009 0 118169006 900000000000011006 900000000000451002 +2280391022 20080731 0 900000000000207008 396899000 9875009 0 118169006 900000000000011006 900000000000451002 +2280391022 20090131 1 900000000000207008 396899000 9875009 1 118169006 900000000000011006 900000000000451002 +2280392026 20030731 1 900000000000207008 396899000 85756007 0 118169006 900000000000011006 900000000000451002 +2280392026 20080731 0 900000000000207008 396899000 85756007 0 118169006 900000000000011006 900000000000451002 +2280393020 20030731 1 900000000000207008 396899000 722009 0 118171006 900000000000011006 900000000000451002 +2280393020 20080731 0 900000000000207008 396899000 722009 0 118171006 900000000000011006 900000000000451002 +2280393020 20090131 1 900000000000207008 396899000 722009 1 118171006 900000000000011006 900000000000451002 +2280394025 20030731 1 900000000000207008 396900005 14211004 0 118171006 900000000000011006 900000000000451002 +2280394025 20080731 0 900000000000207008 396900005 14211004 0 118171006 900000000000011006 900000000000451002 +2280395029 20030731 1 900000000000207008 396900005 66300009 0 118171006 900000000000011006 900000000000451002 +2280395029 20080731 1 900000000000207008 396900005 66300009 1 118171006 900000000000011006 900000000000451002 +2280396028 20030731 1 900000000000207008 396900005 85756007 0 118169006 900000000000011006 900000000000451002 +2280396028 20080731 0 900000000000207008 396900005 85756007 0 118169006 900000000000011006 900000000000451002 +2280397021 20030731 1 900000000000207008 396900005 9875009 0 118169006 900000000000011006 900000000000451002 +2280397021 20080731 1 900000000000207008 396900005 9875009 1 118169006 900000000000011006 900000000000451002 +2280401029 20030731 1 900000000000207008 396902002 85756007 0 118169006 900000000000011006 900000000000451002 +2280401029 20080731 0 900000000000207008 396902002 85756007 0 118169006 900000000000011006 900000000000451002 +2280402020 20030731 1 900000000000207008 396902002 396901009 0 118171006 900000000000011006 900000000000451002 +2280402020 20080731 0 900000000000207008 396902002 396901009 0 118171006 900000000000011006 900000000000451002 +2280403026 20030731 1 900000000000207008 396902002 9875009 0 118169006 900000000000011006 900000000000451002 +2280403026 20080731 1 900000000000207008 396902002 9875009 1 118169006 900000000000011006 900000000000451002 +2280404021 20030731 1 900000000000207008 396902002 66300009 0 118171006 900000000000011006 900000000000451002 +2280404021 20080731 1 900000000000207008 396902002 66300009 1 118171006 900000000000011006 900000000000451002 +2280404021 20220228 0 900000000000207008 396902002 66300009 1 118171006 900000000000011006 900000000000451002 +2280407025 20030731 1 900000000000207008 396904001 85756007 0 118169006 900000000000011006 900000000000451002 +2280407025 20080731 0 900000000000207008 396904001 85756007 0 118169006 900000000000011006 900000000000451002 +2280408024 20030731 1 900000000000207008 396904001 9875009 0 118169006 900000000000011006 900000000000451002 +2280408024 20080731 1 900000000000207008 396904001 9875009 1 118169006 900000000000011006 900000000000451002 +2280408024 20100131 0 900000000000207008 396904001 9875009 1 118169006 900000000000011006 900000000000451002 +2280408024 20100731 1 900000000000207008 396904001 9875009 1 118169006 900000000000011006 900000000000451002 +2280409027 20030731 1 900000000000207008 396904001 396903007 0 118171006 900000000000011006 900000000000451002 +2280409027 20080731 1 900000000000207008 396904001 396903007 1 118171006 900000000000011006 900000000000451002 +2280409027 20100131 0 900000000000207008 396904001 396903007 1 118171006 900000000000011006 900000000000451002 +2280412029 20030731 1 900000000000207008 396906004 85756007 0 118169006 900000000000011006 900000000000451002 +2280412029 20080731 0 900000000000207008 396906004 85756007 0 118169006 900000000000011006 900000000000451002 +2280413023 20030731 1 900000000000207008 396906004 396905000 0 118171006 900000000000011006 900000000000451002 +2280413023 20080731 1 900000000000207008 396906004 396905000 1 118171006 900000000000011006 900000000000451002 +2280413023 20240601 0 900000000000207008 396906004 396905000 1 118171006 900000000000011006 900000000000451002 +2280414028 20030731 1 900000000000207008 396906004 9875009 0 118169006 900000000000011006 900000000000451002 +2280414028 20080731 1 900000000000207008 396906004 9875009 1 118169006 900000000000011006 900000000000451002 +2280417024 20030731 1 900000000000207008 396928004 172132001 0 118171006 900000000000011006 900000000000451002 +2280417024 20080731 0 900000000000207008 396928004 172132001 0 118171006 900000000000011006 900000000000451002 +2280417024 20090131 1 900000000000207008 396928004 172132001 1 118171006 900000000000011006 900000000000451002 +2280417024 20100731 0 900000000000207008 396928004 172132001 1 118171006 900000000000011006 900000000000451002 +2280417024 20110131 1 900000000000207008 396928004 172132001 1 118171006 900000000000011006 900000000000451002 +2280418025 20030731 1 900000000000207008 396928004 85756007 0 118169006 900000000000011006 900000000000451002 +2280418025 20080731 0 900000000000207008 396928004 85756007 0 118169006 900000000000011006 900000000000451002 +2280419022 20030731 1 900000000000207008 396928004 244486005 0 118169006 900000000000011006 900000000000451002 +2280419022 20080731 0 900000000000207008 396928004 244486005 0 118169006 900000000000011006 900000000000451002 +2280426022 20030731 1 900000000000207008 396997002 87612001 0 370133003 900000000000011006 900000000000451002 +2280426022 20040731 0 900000000000207008 396997002 87612001 0 370133003 900000000000011006 900000000000451002 +2280427029 20030731 1 900000000000207008 396997002 279729006 0 118169006 900000000000011006 900000000000451002 +2280427029 20060731 0 900000000000207008 396997002 279729006 0 118169006 900000000000011006 900000000000451002 +2280428023 20030731 1 900000000000207008 396997002 165369002 0 118171006 900000000000011006 900000000000451002 +2280428023 20040731 0 900000000000207008 396997002 165369002 0 118171006 900000000000011006 900000000000451002 +2280429026 20030731 1 900000000000207008 396997002 49401003 0 118171006 900000000000011006 900000000000451002 +2280429026 20080731 1 900000000000207008 396997002 49401003 1 118171006 900000000000011006 900000000000451002 +2280430020 20030731 1 900000000000207008 396997002 85756007 0 118169006 900000000000011006 900000000000451002 +2280430020 20040731 0 900000000000207008 396997002 85756007 0 118169006 900000000000011006 900000000000451002 +2280431024 20030731 1 900000000000207008 396998007 13861005 0 118171006 900000000000011006 900000000000451002 +2280431024 20080731 0 900000000000207008 396998007 13861005 0 118171006 900000000000011006 900000000000451002 +2280432028 20030731 1 900000000000207008 396998007 49401003 0 118171006 900000000000011006 900000000000451002 +2280432028 20080731 0 900000000000207008 396998007 49401003 0 118171006 900000000000011006 900000000000451002 +2280433022 20030731 1 900000000000207008 396998007 165369002 0 118171006 900000000000011006 900000000000451002 +2280433022 20040731 0 900000000000207008 396998007 165369002 0 118171006 900000000000011006 900000000000451002 +2280434027 20030731 1 900000000000207008 396998007 134359009 0 118169006 900000000000011006 900000000000451002 +2280434027 20070731 0 900000000000207008 396998007 134359009 0 118169006 900000000000011006 900000000000451002 +2280435026 20030731 1 900000000000207008 396998007 279729006 0 118169006 900000000000011006 900000000000451002 +2280435026 20060731 0 900000000000207008 396998007 279729006 0 118169006 900000000000011006 900000000000451002 +2280436025 20030731 1 900000000000207008 396998007 87612001 0 370133003 900000000000011006 900000000000451002 +2280436025 20040731 0 900000000000207008 396998007 87612001 0 370133003 900000000000011006 900000000000451002 +2280437023 20030731 1 900000000000207008 396998007 39352004 0 118169006 900000000000011006 900000000000451002 +2280437023 20040731 0 900000000000207008 396998007 39352004 0 118169006 900000000000011006 900000000000451002 +2280438029 20030731 1 900000000000207008 396999004 39352004 0 118169006 900000000000011006 900000000000451002 +2280438029 20040731 0 900000000000207008 396999004 39352004 0 118169006 900000000000011006 900000000000451002 +2280439021 20030731 1 900000000000207008 396999004 87612001 0 370133003 900000000000011006 900000000000451002 +2280439021 20040731 0 900000000000207008 396999004 87612001 0 370133003 900000000000011006 900000000000451002 +2280440023 20030731 1 900000000000207008 396999004 279729006 0 118169006 900000000000011006 900000000000451002 +2280440023 20060731 0 900000000000207008 396999004 279729006 0 118169006 900000000000011006 900000000000451002 +2280441022 20030731 1 900000000000207008 396999004 134359009 0 118169006 900000000000011006 900000000000451002 +2280441022 20070731 0 900000000000207008 396999004 134359009 0 118169006 900000000000011006 900000000000451002 +2280442026 20030731 1 900000000000207008 396999004 165369002 0 118171006 900000000000011006 900000000000451002 +2280442026 20040731 0 900000000000207008 396999004 165369002 0 118171006 900000000000011006 900000000000451002 +2280443020 20030731 1 900000000000207008 396999004 13861005 0 118171006 900000000000011006 900000000000451002 +2280443020 20080731 0 900000000000207008 396999004 13861005 0 118171006 900000000000011006 900000000000451002 +2280444025 20030731 1 900000000000207008 396999004 234326005 0 118171006 900000000000011006 900000000000451002 +2280444025 20080731 1 900000000000207008 396999004 234326005 1 118171006 900000000000011006 900000000000451002 +2280525023 20030731 1 900000000000207008 397053005 85756007 0 118169006 900000000000011006 900000000000451002 +2280525023 20080731 0 900000000000207008 397053005 85756007 0 118169006 900000000000011006 900000000000451002 +2280526024 20030731 1 900000000000207008 397053005 235298005 0 118171006 900000000000011006 900000000000451002 +2280526024 20080731 0 900000000000207008 397053005 235298005 0 118171006 900000000000011006 900000000000451002 +2280526024 20090131 1 900000000000207008 397053005 235298005 1 118171006 900000000000011006 900000000000451002 +2280527026 20030731 1 900000000000207008 397053005 30315005 0 118169006 900000000000011006 900000000000451002 +2280527026 20080731 0 900000000000207008 397053005 30315005 0 118169006 900000000000011006 900000000000451002 +2280527026 20090131 1 900000000000207008 397053005 30315005 1 118169006 900000000000011006 900000000000451002 +2280528020 20030731 1 900000000000207008 397053005 116154003 0 118170007 900000000000011006 900000000000451002 +2280528020 20040731 0 900000000000207008 397053005 116154003 0 118170007 900000000000011006 900000000000451002 +2280532025 20030731 1 900000000000207008 397055003 85756007 0 118169006 900000000000011006 900000000000451002 +2280532025 20080731 0 900000000000207008 397055003 85756007 0 118169006 900000000000011006 900000000000451002 +2280533024 20030731 1 900000000000207008 397055003 30315005 0 118169006 900000000000011006 900000000000451002 +2280533024 20080731 0 900000000000207008 397055003 30315005 0 118169006 900000000000011006 900000000000451002 +2280533024 20090131 1 900000000000207008 397055003 30315005 1 118169006 900000000000011006 900000000000451002 +2280534029 20030731 1 900000000000207008 397055003 116154003 0 118170007 900000000000011006 900000000000451002 +2280534029 20040731 0 900000000000207008 397055003 116154003 0 118170007 900000000000011006 900000000000451002 +2280535028 20030731 1 900000000000207008 397055003 54357003 0 118171006 900000000000011006 900000000000451002 +2280535028 20080731 0 900000000000207008 397055003 54357003 0 118171006 900000000000011006 900000000000451002 +2280535028 20090131 1 900000000000207008 397055003 54357003 1 118171006 900000000000011006 900000000000451002 +2280536027 20030731 1 900000000000207008 397056002 116154003 0 118170007 900000000000011006 900000000000451002 +2280536027 20040731 0 900000000000207008 397056002 116154003 0 118170007 900000000000011006 900000000000451002 +2280537020 20030731 1 900000000000207008 397056002 30315005 0 118169006 900000000000011006 900000000000451002 +2280537020 20080731 0 900000000000207008 397056002 30315005 0 118169006 900000000000011006 900000000000451002 +2280537020 20090131 1 900000000000207008 397056002 30315005 1 118169006 900000000000011006 900000000000451002 +2280538026 20030731 1 900000000000207008 397056002 85756007 0 118169006 900000000000011006 900000000000451002 +2280538026 20080731 0 900000000000207008 397056002 85756007 0 118169006 900000000000011006 900000000000451002 +2280539023 20030731 1 900000000000207008 397056002 116241004 0 118171006 900000000000011006 900000000000451002 +2280539023 20080731 0 900000000000207008 397056002 116241004 0 118171006 900000000000011006 900000000000451002 +2280539023 20090131 1 900000000000207008 397056002 116241004 1 118171006 900000000000011006 900000000000451002 +2280567025 20030731 1 900000000000207008 397077004 70871006 0 118171006 900000000000011006 900000000000451002 +2280567025 20080731 0 900000000000207008 397077004 70871006 0 118171006 900000000000011006 900000000000451002 +2280567025 20090731 1 900000000000207008 397077004 70871006 1 118171006 900000000000011006 900000000000451002 +2280568024 20030731 1 900000000000207008 397078009 8889005 0 118171006 900000000000011006 900000000000451002 +2280568024 20080731 0 900000000000207008 397078009 8889005 0 118171006 900000000000011006 900000000000451002 +2280568024 20090731 1 900000000000207008 397078009 8889005 1 118171006 900000000000011006 900000000000451002 +2280578022 20030731 1 900000000000207008 397111007 25473003 0 118171006 900000000000011006 900000000000451002 +2280578022 20080731 0 900000000000207008 397111007 25473003 0 118171006 900000000000011006 900000000000451002 +2280578022 20090131 1 900000000000207008 397111007 25473003 1 118171006 900000000000011006 900000000000451002 +2280579025 20030731 1 900000000000207008 397111007 76784001 0 118169006 900000000000011006 900000000000451002 +2280579025 20080731 0 900000000000207008 397111007 76784001 0 118169006 900000000000011006 900000000000451002 +2280579025 20090131 1 900000000000207008 397111007 76784001 1 118169006 900000000000011006 900000000000451002 +2280580027 20030731 1 900000000000207008 397111007 85756007 0 118169006 900000000000011006 900000000000451002 +2280580027 20080731 0 900000000000207008 397111007 85756007 0 118169006 900000000000011006 900000000000451002 +2280597022 20030731 1 900000000000207008 397129002 45292006 0 118169006 900000000000011006 900000000000451002 +2280597022 20190731 1 900000000000207008 397129002 45292006 1 118169006 900000000000011006 900000000000451002 +2280598028 20030731 1 900000000000207008 397130007 45292006 0 118169006 900000000000011006 900000000000451002 +2280598028 20080731 0 900000000000207008 397130007 45292006 0 118169006 900000000000011006 900000000000451002 +2280598028 20090731 1 900000000000207008 397130007 45292006 1 118169006 900000000000011006 900000000000451002 +2280599020 20030731 1 900000000000207008 397130007 86743009 0 118171006 900000000000011006 900000000000451002 +2280599020 20080731 0 900000000000207008 397130007 86743009 0 118171006 900000000000011006 900000000000451002 +2280599020 20090731 1 900000000000207008 397130007 86743009 1 118171006 900000000000011006 900000000000451002 +2280600023 20030731 1 900000000000207008 397130007 85756007 0 118169006 900000000000011006 900000000000451002 +2280600023 20080731 0 900000000000207008 397130007 85756007 0 118169006 900000000000011006 900000000000451002 +2280601022 20030731 1 900000000000207008 397131006 85756007 0 118169006 900000000000011006 900000000000451002 +2280601022 20080731 0 900000000000207008 397131006 85756007 0 118169006 900000000000011006 900000000000451002 +2280602026 20030731 1 900000000000207008 397131006 65801008 0 118171006 900000000000011006 900000000000451002 +2280602026 20080731 0 900000000000207008 397131006 65801008 0 118171006 900000000000011006 900000000000451002 +2280603020 20030731 1 900000000000207008 397131006 45292006 0 118169006 900000000000011006 900000000000451002 +2280603020 20080731 0 900000000000207008 397131006 45292006 0 118169006 900000000000011006 900000000000451002 +2280603020 20090731 1 900000000000207008 397131006 45292006 1 118169006 900000000000011006 900000000000451002 +2280604025 20030731 1 900000000000207008 397132004 45292006 0 118169006 900000000000011006 900000000000451002 +2280604025 20080731 0 900000000000207008 397132004 45292006 0 118169006 900000000000011006 900000000000451002 +2280604025 20090731 1 900000000000207008 397132004 45292006 1 118169006 900000000000011006 900000000000451002 +2280605029 20030731 1 900000000000207008 397132004 176599002 0 118171006 900000000000011006 900000000000451002 +2280605029 20080731 0 900000000000207008 397132004 176599002 0 118171006 900000000000011006 900000000000451002 +2280605029 20090731 1 900000000000207008 397132004 176599002 1 118171006 900000000000011006 900000000000451002 +2280606028 20030731 1 900000000000207008 397132004 85756007 0 118169006 900000000000011006 900000000000451002 +2280606028 20080731 0 900000000000207008 397132004 85756007 0 118169006 900000000000011006 900000000000451002 +2280607021 20030731 1 900000000000207008 397133009 85756007 0 118169006 900000000000011006 900000000000451002 +2280607021 20080731 0 900000000000207008 397133009 85756007 0 118169006 900000000000011006 900000000000451002 +2280608027 20030731 1 900000000000207008 397133009 176597000 0 118171006 900000000000011006 900000000000451002 +2280608027 20080731 0 900000000000207008 397133009 176597000 0 118171006 900000000000011006 900000000000451002 +2280608027 20090731 1 900000000000207008 397133009 176597000 1 118171006 900000000000011006 900000000000451002 +2280609024 20030731 1 900000000000207008 397133009 45292006 0 118169006 900000000000011006 900000000000451002 +2280609024 20080731 0 900000000000207008 397133009 45292006 0 118169006 900000000000011006 900000000000451002 +2280609024 20090731 1 900000000000207008 397133009 45292006 1 118169006 900000000000011006 900000000000451002 +2280610025 20030731 1 900000000000207008 397134003 45292006 0 118169006 900000000000011006 900000000000451002 +2280610025 20080731 0 900000000000207008 397134003 45292006 0 118169006 900000000000011006 900000000000451002 +2280610025 20090131 1 900000000000207008 397134003 45292006 1 118169006 900000000000011006 900000000000451002 +2280611026 20030731 1 900000000000207008 397134003 85756007 0 118169006 900000000000011006 900000000000451002 +2280611026 20080731 0 900000000000207008 397134003 85756007 0 118169006 900000000000011006 900000000000451002 +2280612022 20030731 1 900000000000207008 397134003 287966005 0 118171006 900000000000011006 900000000000451002 +2280612022 20080731 0 900000000000207008 397134003 287966005 0 118171006 900000000000011006 900000000000451002 +2280612022 20090131 1 900000000000207008 397134003 287966005 1 118171006 900000000000011006 900000000000451002 +2280613028 20030731 1 900000000000207008 397135002 165369002 0 118171006 900000000000011006 900000000000451002 +2280613028 20040731 0 900000000000207008 397135002 165369002 0 118171006 900000000000011006 900000000000451002 +2280614023 20030731 1 900000000000207008 397135002 54268001 0 118169006 900000000000011006 900000000000451002 +2280614023 20190731 1 900000000000207008 397135002 54268001 1 118169006 900000000000011006 900000000000451002 +2280615024 20030731 1 900000000000207008 397135002 87612001 0 370133003 900000000000011006 900000000000451002 +2280615024 20040731 0 900000000000207008 397135002 87612001 0 370133003 900000000000011006 900000000000451002 +2280616020 20030731 1 900000000000207008 397136001 87612001 0 370133003 900000000000011006 900000000000451002 +2280616020 20040731 0 900000000000207008 397136001 87612001 0 370133003 900000000000011006 900000000000451002 +2280617027 20030731 1 900000000000207008 397136001 279763008 0 118169006 900000000000011006 900000000000451002 +2280617027 20080731 0 900000000000207008 397136001 279763008 0 118169006 900000000000011006 900000000000451002 +2280617027 20090131 1 900000000000207008 397136001 279763008 1 118169006 900000000000011006 900000000000451002 +2280618021 20030731 1 900000000000207008 397136001 165369002 0 118171006 900000000000011006 900000000000451002 +2280618021 20040731 0 900000000000207008 397136001 165369002 0 118171006 900000000000011006 900000000000451002 +2280619029 20030731 1 900000000000207008 397136001 234252001 0 118171006 900000000000011006 900000000000451002 +2280619029 20080731 0 900000000000207008 397136001 234252001 0 118171006 900000000000011006 900000000000451002 +2280619029 20090131 1 900000000000207008 397136001 234252001 1 118171006 900000000000011006 900000000000451002 +2280743024 20030731 1 900000000000207008 397199005 76752008 0 118169006 900000000000011006 900000000000451002 +2280743024 20080731 0 900000000000207008 397199005 76752008 0 118169006 900000000000011006 900000000000451002 +2280744029 20030731 1 900000000000207008 397199005 85756007 0 118169006 900000000000011006 900000000000451002 +2280744029 20080731 0 900000000000207008 397199005 85756007 0 118169006 900000000000011006 900000000000451002 +2280745028 20030731 1 900000000000207008 397199005 5884001 0 118171006 900000000000011006 900000000000451002 +2280745028 20080731 0 900000000000207008 397199005 5884001 0 118171006 900000000000011006 900000000000451002 +2280767027 20030731 1 900000000000207008 397221008 25990002 0 118169006 900000000000011006 900000000000451002 +2280767027 20080731 0 900000000000207008 397221008 25990002 0 118169006 900000000000011006 900000000000451002 +2280767027 20090131 1 900000000000207008 397221008 25990002 1 118169006 900000000000011006 900000000000451002 +2280768021 20030731 1 900000000000207008 397221008 85756007 0 118169006 900000000000011006 900000000000451002 +2280768021 20080731 0 900000000000207008 397221008 85756007 0 118169006 900000000000011006 900000000000451002 +2280769029 20030731 1 900000000000207008 397221008 7246002 0 118171006 900000000000011006 900000000000451002 +2280769029 20080731 0 900000000000207008 397221008 7246002 0 118171006 900000000000011006 900000000000451002 +2280769029 20090131 1 900000000000207008 397221008 7246002 1 118171006 900000000000011006 900000000000451002 +2280778024 20030731 1 900000000000207008 397232008 175907006 0 118171006 900000000000011006 900000000000451002 +2280778024 20080731 0 900000000000207008 397232008 175907006 0 118171006 900000000000011006 900000000000451002 +2280778024 20090131 1 900000000000207008 397232008 175907006 1 118171006 900000000000011006 900000000000451002 +2280779027 20030731 1 900000000000207008 397232008 25990002 0 118169006 900000000000011006 900000000000451002 +2280779027 20080731 0 900000000000207008 397232008 25990002 0 118169006 900000000000011006 900000000000451002 +2280779027 20090131 1 900000000000207008 397232008 25990002 1 118169006 900000000000011006 900000000000451002 +2280780029 20030731 1 900000000000207008 397232008 85756007 0 118169006 900000000000011006 900000000000451002 +2280780029 20080731 0 900000000000207008 397232008 85756007 0 118169006 900000000000011006 900000000000451002 +2280781025 20030731 1 900000000000207008 397233003 25990002 0 118169006 900000000000011006 900000000000451002 +2280781025 20190731 1 900000000000207008 397233003 25990002 1 118169006 900000000000011006 900000000000451002 +2280782021 20030731 1 900000000000207008 397234009 25990002 0 118169006 900000000000011006 900000000000451002 +2280782021 20080731 0 900000000000207008 397234009 25990002 0 118169006 900000000000011006 900000000000451002 +2280782021 20090131 1 900000000000207008 397234009 25990002 1 118169006 900000000000011006 900000000000451002 +2280783027 20030731 1 900000000000207008 397234009 85756007 0 118169006 900000000000011006 900000000000451002 +2280783027 20080731 0 900000000000207008 397234009 85756007 0 118169006 900000000000011006 900000000000451002 +2280784022 20030731 1 900000000000207008 397234009 175907006 0 118171006 900000000000011006 900000000000451002 +2280784022 20080731 0 900000000000207008 397234009 175907006 0 118171006 900000000000011006 900000000000451002 +2280784022 20090131 1 900000000000207008 397234009 175907006 1 118171006 900000000000011006 900000000000451002 +2280785023 20030731 1 900000000000207008 397235005 175907006 0 118171006 900000000000011006 900000000000451002 +2280785023 20080731 0 900000000000207008 397235005 175907006 0 118171006 900000000000011006 900000000000451002 +2280785023 20090131 1 900000000000207008 397235005 175907006 1 118171006 900000000000011006 900000000000451002 +2280786024 20030731 1 900000000000207008 397235005 85756007 0 118169006 900000000000011006 900000000000451002 +2280786024 20080731 0 900000000000207008 397235005 85756007 0 118169006 900000000000011006 900000000000451002 +2280787026 20030731 1 900000000000207008 397235005 25990002 0 118169006 900000000000011006 900000000000451002 +2280787026 20080731 0 900000000000207008 397235005 25990002 0 118169006 900000000000011006 900000000000451002 +2280787026 20090131 1 900000000000207008 397235005 25990002 1 118169006 900000000000011006 900000000000451002 +2280812020 20030731 1 900000000000207008 397245007 15497006 0 118169006 900000000000011006 900000000000451002 +2280812020 20080731 0 900000000000207008 397245007 15497006 0 118169006 900000000000011006 900000000000451002 +2280812020 20090131 1 900000000000207008 397245007 15497006 1 118169006 900000000000011006 900000000000451002 +2280812020 20110731 0 900000000000207008 397245007 15497006 1 118169006 900000000000011006 900000000000451002 +2280813026 20030731 1 900000000000207008 397245007 236886002 0 118171006 900000000000011006 900000000000451002 +2280813026 20080731 0 900000000000207008 397245007 236886002 0 118171006 900000000000011006 900000000000451002 +2280814021 20030731 1 900000000000207008 397245007 85756007 0 118169006 900000000000011006 900000000000451002 +2280814021 20080731 0 900000000000207008 397245007 85756007 0 118169006 900000000000011006 900000000000451002 +2280815022 20030731 1 900000000000207008 397245007 176914002 0 118171006 900000000000011006 900000000000451002 +2280815022 20110731 0 900000000000207008 397245007 176914002 0 118171006 900000000000011006 900000000000451002 +2280816023 20030731 1 900000000000207008 397246008 176915001 0 118171006 900000000000011006 900000000000451002 +2280816023 20110731 0 900000000000207008 397246008 176915001 0 118171006 900000000000011006 900000000000451002 +2280817025 20030731 1 900000000000207008 397246008 85756007 0 118169006 900000000000011006 900000000000451002 +2280817025 20080731 0 900000000000207008 397246008 85756007 0 118169006 900000000000011006 900000000000451002 +2280818024 20030731 1 900000000000207008 397246008 236886002 0 118171006 900000000000011006 900000000000451002 +2280818024 20080731 0 900000000000207008 397246008 236886002 0 118171006 900000000000011006 900000000000451002 +2280819027 20030731 1 900000000000207008 397246008 15497006 0 118169006 900000000000011006 900000000000451002 +2280819027 20080731 0 900000000000207008 397246008 15497006 0 118169006 900000000000011006 900000000000451002 +2280819027 20090131 1 900000000000207008 397246008 15497006 1 118169006 900000000000011006 900000000000451002 +2280819027 20110731 0 900000000000207008 397246008 15497006 1 118169006 900000000000011006 900000000000451002 +2280840026 20030731 1 900000000000207008 397326000 2033006 0 118169006 900000000000011006 900000000000451002 +2280840026 20080731 0 900000000000207008 397326000 2033006 0 118169006 900000000000011006 900000000000451002 +2280840026 20090131 1 900000000000207008 397326000 2033006 1 118169006 900000000000011006 900000000000451002 +2280841027 20030731 1 900000000000207008 397326000 236886002 0 118171006 900000000000011006 900000000000451002 +2280841027 20080731 0 900000000000207008 397326000 236886002 0 118171006 900000000000011006 900000000000451002 +2280842023 20030731 1 900000000000207008 397326000 85756007 0 118169006 900000000000011006 900000000000451002 +2280842023 20080731 0 900000000000207008 397326000 85756007 0 118169006 900000000000011006 900000000000451002 +2280843029 20030731 1 900000000000207008 397326000 116028008 0 118171006 900000000000011006 900000000000451002 +2280843029 20080731 0 900000000000207008 397326000 116028008 0 118171006 900000000000011006 900000000000451002 +2280844024 20030731 1 900000000000207008 397333000 176916000 0 118171006 900000000000011006 900000000000451002 +2280844024 20080731 0 900000000000207008 397333000 176916000 0 118171006 900000000000011006 900000000000451002 +2280844024 20090731 1 900000000000207008 397333000 176916000 1 118171006 900000000000011006 900000000000451002 +2280845020 20030731 1 900000000000207008 397333000 85756007 0 118169006 900000000000011006 900000000000451002 +2280845020 20080731 0 900000000000207008 397333000 85756007 0 118169006 900000000000011006 900000000000451002 +2280846021 20030731 1 900000000000207008 397333000 2033006 0 118169006 900000000000011006 900000000000451002 +2280846021 20080731 0 900000000000207008 397333000 2033006 0 118169006 900000000000011006 900000000000451002 +2280846021 20090731 1 900000000000207008 397333000 2033006 1 118169006 900000000000011006 900000000000451002 +2280847028 20030731 1 900000000000207008 397334006 85756007 0 118169006 900000000000011006 900000000000451002 +2280847028 20080731 0 900000000000207008 397334006 85756007 0 118169006 900000000000011006 900000000000451002 +2280848022 20030731 1 900000000000207008 397334006 113293009 0 118169006 900000000000011006 900000000000451002 +2280848022 20080731 0 900000000000207008 397334006 113293009 0 118169006 900000000000011006 900000000000451002 +2280848022 20090731 1 900000000000207008 397334006 113293009 1 118169006 900000000000011006 900000000000451002 +2280849025 20030731 1 900000000000207008 397334006 176917009 0 118171006 900000000000011006 900000000000451002 +2280849025 20080731 0 900000000000207008 397334006 176917009 0 118171006 900000000000011006 900000000000451002 +2280849025 20090731 1 900000000000207008 397334006 176917009 1 118171006 900000000000011006 900000000000451002 +2280962025 20030731 1 900000000000207008 397436009 58347006 0 118171006 900000000000011006 900000000000451002 +2280962025 20080731 0 900000000000207008 397436009 58347006 0 118171006 900000000000011006 900000000000451002 +2280962025 20090731 1 900000000000207008 397436009 58347006 1 118171006 900000000000011006 900000000000451002 +2280963024 20030731 1 900000000000207008 397436009 87612001 0 370133003 900000000000011006 900000000000451002 +2280963024 20040731 0 900000000000207008 397436009 87612001 0 370133003 900000000000011006 900000000000451002 +2280964029 20030731 1 900000000000207008 397436009 59441001 0 118169006 900000000000011006 900000000000451002 +2280964029 20080731 0 900000000000207008 397436009 59441001 0 118169006 900000000000011006 900000000000451002 +2280964029 20090731 1 900000000000207008 397436009 59441001 1 118169006 900000000000011006 900000000000451002 +2280965028 20030731 1 900000000000207008 397436009 165369002 0 118171006 900000000000011006 900000000000451002 +2280965028 20040731 0 900000000000207008 397436009 165369002 0 118171006 900000000000011006 900000000000451002 +2280967020 20030731 1 900000000000207008 397438005 87612001 0 370133003 900000000000011006 900000000000451002 +2280967020 20040731 0 900000000000207008 397438005 87612001 0 370133003 900000000000011006 900000000000451002 +2280968026 20030731 1 900000000000207008 397438005 165369002 0 118171006 900000000000011006 900000000000451002 +2280968026 20040731 0 900000000000207008 397438005 165369002 0 118171006 900000000000011006 900000000000451002 +2280969023 20030731 1 900000000000207008 397438005 59441001 0 118169006 900000000000011006 900000000000451002 +2280969023 20190731 1 900000000000207008 397438005 59441001 1 118169006 900000000000011006 900000000000451002 +2280974026 20030731 1 900000000000207008 397455009 397384004 0 118169006 900000000000011006 900000000000451002 +2280974026 20080731 0 900000000000207008 397455009 397384004 0 118169006 900000000000011006 900000000000451002 +2280974026 20090131 1 900000000000207008 397455009 397384004 1 118169006 900000000000011006 900000000000451002 +2280975025 20030731 1 900000000000207008 397455009 274314005 0 118171006 900000000000011006 900000000000451002 +2280975025 20080731 0 900000000000207008 397455009 274314005 0 118171006 900000000000011006 900000000000451002 +2280975025 20090131 1 900000000000207008 397455009 274314005 1 118171006 900000000000011006 900000000000451002 +2280976029 20030731 1 900000000000207008 397456005 397384004 0 118169006 900000000000011006 900000000000451002 +2280976029 20080731 0 900000000000207008 397456005 397384004 0 118169006 900000000000011006 900000000000451002 +2280976029 20090131 1 900000000000207008 397456005 397384004 1 118169006 900000000000011006 900000000000451002 +2280977022 20030731 1 900000000000207008 397456005 26058004 0 118171006 900000000000011006 900000000000451002 +2280977022 20080731 0 900000000000207008 397456005 26058004 0 118171006 900000000000011006 900000000000451002 +2280977022 20090131 1 900000000000207008 397456005 26058004 1 118171006 900000000000011006 900000000000451002 +2280978028 20030731 1 900000000000207008 397457001 397384004 0 118169006 900000000000011006 900000000000451002 +2280978028 20190731 1 900000000000207008 397457001 397384004 1 118169006 900000000000011006 900000000000451002 +2280979020 20030731 1 900000000000207008 397458006 397384004 0 118169006 900000000000011006 900000000000451002 +2280979020 20080731 0 900000000000207008 397458006 397384004 0 118169006 900000000000011006 900000000000451002 +2280979020 20090131 1 900000000000207008 397458006 397384004 1 118169006 900000000000011006 900000000000451002 +2280979020 20100731 0 900000000000207008 397458006 397384004 1 118169006 900000000000011006 900000000000451002 +2280979020 20110131 1 900000000000207008 397458006 397384004 1 118169006 900000000000011006 900000000000451002 +2280980023 20030731 1 900000000000207008 397458006 177765008 0 118171006 900000000000011006 900000000000451002 +2280980023 20080731 0 900000000000207008 397458006 177765008 0 118171006 900000000000011006 900000000000451002 +2280980023 20090131 1 900000000000207008 397458006 177765008 1 118171006 900000000000011006 900000000000451002 +2280980023 20100731 0 900000000000207008 397458006 177765008 1 118171006 900000000000011006 900000000000451002 +2280980023 20110131 1 900000000000207008 397458006 177765008 1 118171006 900000000000011006 900000000000451002 +2280981022 20030731 1 900000000000207008 397462000 76848001 0 118169006 900000000000011006 900000000000451002 +2280981022 20080731 0 900000000000207008 397462000 76848001 0 118169006 900000000000011006 900000000000451002 +2280981022 20090731 1 900000000000207008 397462000 76848001 1 118169006 900000000000011006 900000000000451002 +2280982026 20030731 1 900000000000207008 397462000 34646007 0 118171006 900000000000011006 900000000000451002 +2280982026 20080731 0 900000000000207008 397462000 34646007 0 118171006 900000000000011006 900000000000451002 +2280982026 20090731 1 900000000000207008 397462000 34646007 1 118171006 900000000000011006 900000000000451002 +2280983020 20030731 1 900000000000207008 397462000 85756007 0 118169006 900000000000011006 900000000000451002 +2280983020 20080731 0 900000000000207008 397462000 85756007 0 118169006 900000000000011006 900000000000451002 +2280989024 20030731 1 900000000000207008 397482001 122865005 0 118169006 900000000000011006 900000000000451002 +2280989024 20080731 0 900000000000207008 397482001 122865005 0 118169006 900000000000011006 900000000000451002 +2280990026 20030731 1 900000000000207008 397482001 116154003 0 118170007 900000000000011006 900000000000451002 +2280990026 20040731 0 900000000000207008 397482001 116154003 0 118170007 900000000000011006 900000000000451002 +2280991027 20030731 1 900000000000207008 397482001 16014003 0 118169006 900000000000011006 900000000000451002 +2280991027 20080731 0 900000000000207008 397482001 16014003 0 118169006 900000000000011006 900000000000451002 +2280991027 20090731 1 900000000000207008 397482001 16014003 1 118169006 900000000000011006 900000000000451002 +2280992023 20030731 1 900000000000207008 397482001 116241004 0 118171006 900000000000011006 900000000000451002 +2280992023 20080731 0 900000000000207008 397482001 116241004 0 118171006 900000000000011006 900000000000451002 +2280992023 20090731 1 900000000000207008 397482001 116241004 1 118171006 900000000000011006 900000000000451002 +2280993029 20030731 1 900000000000207008 397482001 85756007 0 118169006 900000000000011006 900000000000451002 +2280993029 20080731 0 900000000000207008 397482001 85756007 0 118169006 900000000000011006 900000000000451002 +2280994024 20030731 1 900000000000207008 397483006 85756007 0 118169006 900000000000011006 900000000000451002 +2280994024 20080731 0 900000000000207008 397483006 85756007 0 118169006 900000000000011006 900000000000451002 +2280995020 20030731 1 900000000000207008 397483006 16014003 0 118169006 900000000000011006 900000000000451002 +2280995020 20080731 0 900000000000207008 397483006 16014003 0 118169006 900000000000011006 900000000000451002 +2280995020 20090731 1 900000000000207008 397483006 16014003 1 118169006 900000000000011006 900000000000451002 +2280996021 20030731 1 900000000000207008 397483006 116154003 0 118170007 900000000000011006 900000000000451002 +2280996021 20040731 0 900000000000207008 397483006 116154003 0 118170007 900000000000011006 900000000000451002 +2280997028 20030731 1 900000000000207008 397483006 122865005 0 118169006 900000000000011006 900000000000451002 +2280997028 20080731 0 900000000000207008 397483006 122865005 0 118169006 900000000000011006 900000000000451002 +2283527025 20030731 1 900000000000207008 399388008 85756007 0 118169006 900000000000011006 900000000000451002 +2283527025 20080731 0 900000000000207008 399388008 85756007 0 118169006 900000000000011006 900000000000451002 +2283528024 20030731 1 900000000000207008 399388008 236886002 0 118171006 900000000000011006 900000000000451002 +2283528024 20080731 0 900000000000207008 399388008 236886002 0 118171006 900000000000011006 900000000000451002 +2283529027 20030731 1 900000000000207008 399388008 113293009 0 118169006 900000000000011006 900000000000451002 +2283529027 20080731 0 900000000000207008 399388008 113293009 0 118169006 900000000000011006 900000000000451002 +2283529027 20090131 1 900000000000207008 399388008 113293009 1 118169006 900000000000011006 900000000000451002 +2283530021 20030731 1 900000000000207008 399388008 116028008 0 118171006 900000000000011006 900000000000451002 +2283530021 20080731 0 900000000000207008 399388008 116028008 0 118171006 900000000000011006 900000000000451002 +2283534028 20030731 1 900000000000207008 399396003 25149004 0 118169006 900000000000011006 900000000000451002 +2283534028 20080731 0 900000000000207008 399396003 25149004 0 118169006 900000000000011006 900000000000451002 +2283534028 20090131 1 900000000000207008 399396003 25149004 1 118169006 900000000000011006 900000000000451002 +2283535027 20030731 1 900000000000207008 399396003 85756007 0 118169006 900000000000011006 900000000000451002 +2283535027 20080731 0 900000000000207008 399396003 85756007 0 118169006 900000000000011006 900000000000451002 +2283536026 20030731 1 900000000000207008 399396003 11401008 0 118171006 900000000000011006 900000000000451002 +2283536026 20080731 0 900000000000207008 399396003 11401008 0 118171006 900000000000011006 900000000000451002 +2283536026 20090131 1 900000000000207008 399396003 11401008 1 118171006 900000000000011006 900000000000451002 +2283537024 20030731 1 900000000000207008 399402006 87953007 0 118169006 900000000000011006 900000000000451002 +2283537024 20190731 1 900000000000207008 399402006 87953007 1 118169006 900000000000011006 900000000000451002 +2283538025 20030731 1 900000000000207008 399407000 87953007 0 118169006 900000000000011006 900000000000451002 +2283538025 20080731 0 900000000000207008 399407000 87953007 0 118169006 900000000000011006 900000000000451002 +2283538025 20090731 1 900000000000207008 399407000 87953007 1 118169006 900000000000011006 900000000000451002 +2283539022 20030731 1 900000000000207008 399407000 108028005 0 118171006 900000000000011006 900000000000451002 +2283539022 20080731 0 900000000000207008 399407000 108028005 0 118171006 900000000000011006 900000000000451002 +2283539022 20090731 1 900000000000207008 399407000 108028005 1 118171006 900000000000011006 900000000000451002 +2283540024 20030731 1 900000000000207008 399407000 85756007 0 118169006 900000000000011006 900000000000451002 +2283540024 20080731 0 900000000000207008 399407000 85756007 0 118169006 900000000000011006 900000000000451002 +2283541023 20030731 1 900000000000207008 399411006 25149004 0 118169006 900000000000011006 900000000000451002 +2283541023 20190731 1 900000000000207008 399411006 25149004 1 118169006 900000000000011006 900000000000451002 +2283548028 20030731 1 900000000000207008 399436000 21483005 0 118169006 900000000000011006 900000000000451002 +2283548028 20190731 1 900000000000207008 399436000 21483005 1 118169006 900000000000011006 900000000000451002 +2283549020 20030731 1 900000000000207008 399440009 87953007 0 118169006 900000000000011006 900000000000451002 +2283549020 20080731 0 900000000000207008 399440009 87953007 0 118169006 900000000000011006 900000000000451002 +2283549020 20090131 1 900000000000207008 399440009 87953007 1 118169006 900000000000011006 900000000000451002 +2283550020 20030731 1 900000000000207008 399440009 85756007 0 118169006 900000000000011006 900000000000451002 +2283550020 20080731 0 900000000000207008 399440009 85756007 0 118169006 900000000000011006 900000000000451002 +2283551024 20030731 1 900000000000207008 399440009 175907006 0 118171006 900000000000011006 900000000000451002 +2283551024 20080731 0 900000000000207008 399440009 175907006 0 118171006 900000000000011006 900000000000451002 +2283551024 20090131 1 900000000000207008 399440009 175907006 1 118171006 900000000000011006 900000000000451002 +2283552028 20030731 1 900000000000207008 399443006 85756007 0 118169006 900000000000011006 900000000000451002 +2283552028 20080731 0 900000000000207008 399443006 85756007 0 118169006 900000000000011006 900000000000451002 +2283553022 20030731 1 900000000000207008 399443006 81745001 0 118169006 900000000000011006 900000000000451002 +2283553022 20080731 0 900000000000207008 399443006 81745001 0 118169006 900000000000011006 900000000000451002 +2283553022 20090731 1 900000000000207008 399443006 81745001 1 118169006 900000000000011006 900000000000451002 +2283555026 20030731 1 900000000000207008 399447007 116142003 0 118171006 900000000000011006 900000000000451002 +2283555026 20080731 0 900000000000207008 399447007 116142003 0 118171006 900000000000011006 900000000000451002 +2283555026 20090131 1 900000000000207008 399447007 116142003 1 118171006 900000000000011006 900000000000451002 +2283556025 20030731 1 900000000000207008 399447007 25149004 0 118169006 900000000000011006 900000000000451002 +2283556025 20080731 0 900000000000207008 399447007 25149004 0 118169006 900000000000011006 900000000000451002 +2283556025 20090131 1 900000000000207008 399447007 25149004 1 118169006 900000000000011006 900000000000451002 +2283557023 20030731 1 900000000000207008 399447007 85756007 0 118169006 900000000000011006 900000000000451002 +2283557023 20080731 0 900000000000207008 399447007 85756007 0 118169006 900000000000011006 900000000000451002 +2283558029 20030731 1 900000000000207008 399451009 85756007 0 118169006 900000000000011006 900000000000451002 +2283558029 20080731 0 900000000000207008 399451009 85756007 0 118169006 900000000000011006 900000000000451002 +2283559021 20030731 1 900000000000207008 399451009 5665001 0 118169006 900000000000011006 900000000000451002 +2283559021 20080731 0 900000000000207008 399451009 5665001 0 118169006 900000000000011006 900000000000451002 +2283559021 20090131 1 900000000000207008 399451009 5665001 1 118169006 900000000000011006 900000000000451002 +2283562024 20030731 1 900000000000207008 399460001 122865005 0 118169006 900000000000011006 900000000000451002 +2283562024 20080731 0 900000000000207008 399460001 122865005 0 118169006 900000000000011006 900000000000451002 +2283563025 20030731 1 900000000000207008 399460001 116154003 0 118170007 900000000000011006 900000000000451002 +2283563025 20040731 0 900000000000207008 399460001 116154003 0 118170007 900000000000011006 900000000000451002 +2283564020 20030731 1 900000000000207008 399460001 16014003 0 118169006 900000000000011006 900000000000451002 +2283564020 20190731 1 900000000000207008 399460001 16014003 1 118169006 900000000000011006 900000000000451002 +2283568023 20030731 1 900000000000207008 399467003 74862005 0 118169006 900000000000011006 900000000000451002 +2283568023 20080731 0 900000000000207008 399467003 74862005 0 118169006 900000000000011006 900000000000451002 +2283568023 20090131 1 900000000000207008 399467003 74862005 1 118169006 900000000000011006 900000000000451002 +2283569026 20030731 1 900000000000207008 399467003 85756007 0 118169006 900000000000011006 900000000000451002 +2283569026 20080731 0 900000000000207008 399467003 85756007 0 118169006 900000000000011006 900000000000451002 +2283580026 20030731 1 900000000000207008 399484009 116154003 0 118170007 900000000000011006 900000000000451002 +2283580026 20040731 0 900000000000207008 399484009 116154003 0 118170007 900000000000011006 900000000000451002 +2283581027 20030731 1 900000000000207008 399484009 74262004 0 118169006 900000000000011006 900000000000451002 +2283581027 20080731 0 900000000000207008 399484009 74262004 0 118169006 900000000000011006 900000000000451002 +2283582023 20030731 1 900000000000207008 399484009 44989006 0 118169006 900000000000011006 900000000000451002 +2283582023 20080731 0 900000000000207008 399484009 44989006 0 118169006 900000000000011006 900000000000451002 +2283582023 20090131 1 900000000000207008 399484009 44989006 1 118169006 900000000000011006 900000000000451002 +2283583029 20030731 1 900000000000207008 399484009 85756007 0 118169006 900000000000011006 900000000000451002 +2283583029 20080731 0 900000000000207008 399484009 85756007 0 118169006 900000000000011006 900000000000451002 +2283584024 20030731 1 900000000000207008 399484009 275006003 0 118171006 900000000000011006 900000000000451002 +2283584024 20080731 0 900000000000207008 399484009 275006003 0 118171006 900000000000011006 900000000000451002 +2283584024 20090131 1 900000000000207008 399484009 275006003 1 118171006 900000000000011006 900000000000451002 +2283585020 20030731 1 900000000000207008 399486006 45292006 0 118169006 900000000000011006 900000000000451002 +2283585020 20080731 0 900000000000207008 399486006 45292006 0 118169006 900000000000011006 900000000000451002 +2283585020 20090131 1 900000000000207008 399486006 45292006 1 118169006 900000000000011006 900000000000451002 +2283586021 20030731 1 900000000000207008 399486006 85756007 0 118169006 900000000000011006 900000000000451002 +2283586021 20080731 0 900000000000207008 399486006 85756007 0 118169006 900000000000011006 900000000000451002 +2283592026 20030731 1 900000000000207008 399492000 39607008 0 118169006 900000000000011006 900000000000451002 +2283592026 20080731 0 900000000000207008 399492000 39607008 0 118169006 900000000000011006 900000000000451002 +2283592026 20090131 1 900000000000207008 399492000 39607008 1 118169006 900000000000011006 900000000000451002 +2283593020 20030731 1 900000000000207008 399492000 85756007 0 118169006 900000000000011006 900000000000451002 +2283593020 20080731 0 900000000000207008 399492000 85756007 0 118169006 900000000000011006 900000000000451002 +2283596028 20030731 1 900000000000207008 399499009 74862005 0 118169006 900000000000011006 900000000000451002 +2283596028 20080731 0 900000000000207008 399499009 74862005 0 118169006 900000000000011006 900000000000451002 +2283596028 20090131 1 900000000000207008 399499009 74862005 1 118169006 900000000000011006 900000000000451002 +2283597021 20030731 1 900000000000207008 399499009 85756007 0 118169006 900000000000011006 900000000000451002 +2283597021 20080731 0 900000000000207008 399499009 85756007 0 118169006 900000000000011006 900000000000451002 +2283598027 20030731 1 900000000000207008 399502008 85756007 0 118169006 900000000000011006 900000000000451002 +2283598027 20080731 0 900000000000207008 399502008 85756007 0 118169006 900000000000011006 900000000000451002 +2283599024 20030731 1 900000000000207008 399502008 55853002 0 118171006 900000000000011006 900000000000451002 +2283599024 20080731 0 900000000000207008 399502008 55853002 0 118171006 900000000000011006 900000000000451002 +2283599024 20090731 1 900000000000207008 399502008 55853002 1 118171006 900000000000011006 900000000000451002 +2283599024 20230901 0 900000000000207008 399502008 55853002 1 118171006 900000000000011006 900000000000451002 +2283600022 20030731 1 900000000000207008 399502008 25149004 0 118169006 900000000000011006 900000000000451002 +2283600022 20080731 0 900000000000207008 399502008 25149004 0 118169006 900000000000011006 900000000000451002 +2283600022 20090731 1 900000000000207008 399502008 25149004 1 118169006 900000000000011006 900000000000451002 +2283603024 20030731 1 900000000000207008 399512001 172132001 0 118171006 900000000000011006 900000000000451002 +2283603024 20080731 0 900000000000207008 399512001 172132001 0 118171006 900000000000011006 900000000000451002 +2283603024 20090131 1 900000000000207008 399512001 172132001 1 118171006 900000000000011006 900000000000451002 +2283604029 20030731 1 900000000000207008 399512001 85756007 0 118169006 900000000000011006 900000000000451002 +2283604029 20080731 0 900000000000207008 399512001 85756007 0 118169006 900000000000011006 900000000000451002 +2283605028 20030731 1 900000000000207008 399512001 244486005 0 118169006 900000000000011006 900000000000451002 +2283605028 20080731 0 900000000000207008 399512001 244486005 0 118169006 900000000000011006 900000000000451002 +2283606027 20030731 1 900000000000207008 399512001 5665001 0 118169006 900000000000011006 900000000000451002 +2283606027 20080731 0 900000000000207008 399512001 5665001 0 118169006 900000000000011006 900000000000451002 +2283606027 20090131 1 900000000000207008 399512001 5665001 1 118169006 900000000000011006 900000000000451002 +2283612021 20030731 1 900000000000207008 399526005 116154003 0 118170007 900000000000011006 900000000000451002 +2283612021 20040731 0 900000000000207008 399526005 116154003 0 118170007 900000000000011006 900000000000451002 +2283613027 20030731 1 900000000000207008 399526005 119282003 0 118169006 900000000000011006 900000000000451002 +2283613027 20190731 1 900000000000207008 399526005 119282003 1 118169006 900000000000011006 900000000000451002 +2283614022 20030731 1 900000000000207008 399532000 25990002 0 118169006 900000000000011006 900000000000451002 +2283614022 20080731 0 900000000000207008 399532000 25990002 0 118169006 900000000000011006 900000000000451002 +2283614022 20090731 1 900000000000207008 399532000 25990002 1 118169006 900000000000011006 900000000000451002 +2283615023 20030731 1 900000000000207008 399532000 85756007 0 118169006 900000000000011006 900000000000451002 +2283615023 20080731 0 900000000000207008 399532000 85756007 0 118169006 900000000000011006 900000000000451002 +2283619028 20030731 1 900000000000207008 399541005 16014003 0 118169006 900000000000011006 900000000000451002 +2283619028 20080731 0 900000000000207008 399541005 16014003 0 118169006 900000000000011006 900000000000451002 +2283619028 20090131 1 900000000000207008 399541005 16014003 1 118169006 900000000000011006 900000000000451002 +2283620023 20030731 1 900000000000207008 399541005 85756007 0 118169006 900000000000011006 900000000000451002 +2283620023 20080731 0 900000000000207008 399541005 85756007 0 118169006 900000000000011006 900000000000451002 +2283621022 20030731 1 900000000000207008 399541005 116154003 0 118170007 900000000000011006 900000000000451002 +2283621022 20040731 0 900000000000207008 399541005 116154003 0 118170007 900000000000011006 900000000000451002 +2283622026 20030731 1 900000000000207008 399541005 122865005 0 118169006 900000000000011006 900000000000451002 +2283622026 20080731 0 900000000000207008 399541005 122865005 0 118169006 900000000000011006 900000000000451002 +2283623020 20030731 1 900000000000207008 399542003 85756007 0 118169006 900000000000011006 900000000000451002 +2283623020 20080731 0 900000000000207008 399542003 85756007 0 118169006 900000000000011006 900000000000451002 +2283624025 20030731 1 900000000000207008 399542003 21483005 0 118169006 900000000000011006 900000000000451002 +2283624025 20080731 0 900000000000207008 399542003 21483005 0 118169006 900000000000011006 900000000000451002 +2283624025 20090131 1 900000000000207008 399542003 21483005 1 118169006 900000000000011006 900000000000451002 +2283626028 20030731 1 900000000000207008 399551006 21483005 0 118169006 900000000000011006 900000000000451002 +2283626028 20080731 0 900000000000207008 399551006 21483005 0 118169006 900000000000011006 900000000000451002 +2283626028 20090131 1 900000000000207008 399551006 21483005 1 118169006 900000000000011006 900000000000451002 +2283626028 20100731 0 900000000000207008 399551006 21483005 1 118169006 900000000000011006 900000000000451002 +2283626028 20110131 1 900000000000207008 399551006 21483005 1 118169006 900000000000011006 900000000000451002 +2283627021 20030731 1 900000000000207008 399551006 119283008 0 118171006 900000000000011006 900000000000451002 +2283627021 20080731 0 900000000000207008 399551006 119283008 0 118171006 900000000000011006 900000000000451002 +2283627021 20090131 1 900000000000207008 399551006 119283008 1 118171006 900000000000011006 900000000000451002 +2283627021 20100731 0 900000000000207008 399551006 119283008 1 118171006 900000000000011006 900000000000451002 +2283627021 20110131 1 900000000000207008 399551006 119283008 1 118171006 900000000000011006 900000000000451002 +2283628027 20030731 1 900000000000207008 399551006 85756007 0 118169006 900000000000011006 900000000000451002 +2283628027 20080731 0 900000000000207008 399551006 85756007 0 118169006 900000000000011006 900000000000451002 +2283631026 20030731 1 900000000000207008 399559008 85756007 0 118169006 900000000000011006 900000000000451002 +2283631026 20080731 0 900000000000207008 399559008 85756007 0 118169006 900000000000011006 900000000000451002 +2283632022 20030731 1 900000000000207008 399559008 172132001 0 118171006 900000000000011006 900000000000451002 +2283632022 20080731 0 900000000000207008 399559008 172132001 0 118171006 900000000000011006 900000000000451002 +2283632022 20090131 1 900000000000207008 399559008 172132001 1 118171006 900000000000011006 900000000000451002 +2283633028 20030731 1 900000000000207008 399559008 244486005 0 118169006 900000000000011006 900000000000451002 +2283633028 20080731 0 900000000000207008 399559008 244486005 0 118169006 900000000000011006 900000000000451002 +2283634023 20030731 1 900000000000207008 399559008 74862005 0 118169006 900000000000011006 900000000000451002 +2283634023 20080731 0 900000000000207008 399559008 74862005 0 118169006 900000000000011006 900000000000451002 +2283634023 20090131 1 900000000000207008 399559008 74862005 1 118169006 900000000000011006 900000000000451002 +2283641028 20030731 1 900000000000207008 399572009 85756007 0 118169006 900000000000011006 900000000000451002 +2283641028 20080731 0 900000000000207008 399572009 85756007 0 118169006 900000000000011006 900000000000451002 +2283642024 20030731 1 900000000000207008 399572009 9875009 0 118169006 900000000000011006 900000000000451002 +2283642024 20080731 0 900000000000207008 399572009 9875009 0 118169006 900000000000011006 900000000000451002 +2283642024 20090131 1 900000000000207008 399572009 9875009 1 118169006 900000000000011006 900000000000451002 +2283660024 20030731 1 900000000000207008 399603006 85756007 0 118169006 900000000000011006 900000000000451002 +2283660024 20080731 0 900000000000207008 399603006 85756007 0 118169006 900000000000011006 900000000000451002 +2283661023 20030731 1 900000000000207008 399603006 5665001 0 118169006 900000000000011006 900000000000451002 +2283661023 20080731 0 900000000000207008 399603006 5665001 0 118169006 900000000000011006 900000000000451002 +2283661023 20090131 1 900000000000207008 399603006 5665001 1 118169006 900000000000011006 900000000000451002 +2283662027 20030731 1 900000000000207008 399614009 21483005 0 118169006 900000000000011006 900000000000451002 +2283662027 20080731 0 900000000000207008 399614009 21483005 0 118169006 900000000000011006 900000000000451002 +2283662027 20090731 1 900000000000207008 399614009 21483005 1 118169006 900000000000011006 900000000000451002 +2283663021 20030731 1 900000000000207008 399614009 85756007 0 118169006 900000000000011006 900000000000451002 +2283663021 20080731 0 900000000000207008 399614009 85756007 0 118169006 900000000000011006 900000000000451002 +2283664026 20030731 1 900000000000207008 399614009 65801008 0 118171006 900000000000011006 900000000000451002 +2283664026 20080731 0 900000000000207008 399614009 65801008 0 118171006 900000000000011006 900000000000451002 +2283665025 20030731 1 900000000000207008 399614009 108369006 0 118168003 900000000000011006 900000000000451002 +2283665025 20080731 0 900000000000207008 399614009 108369006 0 118168003 900000000000011006 900000000000451002 +2283665025 20090731 1 900000000000207008 399614009 108369006 1 118168003 900000000000011006 900000000000451002 +2283668028 20030731 1 900000000000207008 399619004 85756007 0 118169006 900000000000011006 900000000000451002 +2283668028 20080731 0 900000000000207008 399619004 85756007 0 118169006 900000000000011006 900000000000451002 +2283669020 20030731 1 900000000000207008 399619004 74862005 0 118169006 900000000000011006 900000000000451002 +2283669020 20080731 0 900000000000207008 399619004 74862005 0 118169006 900000000000011006 900000000000451002 +2283669020 20090131 1 900000000000207008 399619004 74862005 1 118169006 900000000000011006 900000000000451002 +2283670021 20030731 1 900000000000207008 399622002 24443003 0 118171006 900000000000011006 900000000000451002 +2283670021 20080731 0 900000000000207008 399622002 24443003 0 118171006 900000000000011006 900000000000451002 +2283670021 20090131 1 900000000000207008 399622002 24443003 1 118171006 900000000000011006 900000000000451002 +2283671020 20030731 1 900000000000207008 399622002 85756007 0 118169006 900000000000011006 900000000000451002 +2283671020 20080731 0 900000000000207008 399622002 85756007 0 118169006 900000000000011006 900000000000451002 +2283672029 20030731 1 900000000000207008 399622002 69748006 0 118169006 900000000000011006 900000000000451002 +2283672029 20080731 0 900000000000207008 399622002 69748006 0 118169006 900000000000011006 900000000000451002 +2283672029 20090131 1 900000000000207008 399622002 69748006 1 118169006 900000000000011006 900000000000451002 +2283673023 20030731 1 900000000000207008 399624001 85756007 0 118169006 900000000000011006 900000000000451002 +2283673023 20080731 0 900000000000207008 399624001 85756007 0 118169006 900000000000011006 900000000000451002 +2283674028 20030731 1 900000000000207008 399624001 87953007 0 118169006 900000000000011006 900000000000451002 +2283674028 20080731 0 900000000000207008 399624001 87953007 0 118169006 900000000000011006 900000000000451002 +2283674028 20090131 1 900000000000207008 399624001 87953007 1 118169006 900000000000011006 900000000000451002 +2283676026 20030731 1 900000000000207008 399629006 116154003 0 118170007 900000000000011006 900000000000451002 +2283676026 20040731 0 900000000000207008 399629006 116154003 0 118170007 900000000000011006 900000000000451002 +2283677024 20030731 1 900000000000207008 399629006 24065009 0 118169006 900000000000011006 900000000000451002 +2283677024 20080731 0 900000000000207008 399629006 24065009 0 118169006 900000000000011006 900000000000451002 +2283678025 20030731 1 900000000000207008 399629006 53442002 0 118171006 900000000000011006 900000000000451002 +2283678025 20080731 0 900000000000207008 399629006 53442002 0 118171006 900000000000011006 900000000000451002 +2283678025 20090731 1 900000000000207008 399629006 53442002 1 118171006 900000000000011006 900000000000451002 +2283679022 20030731 1 900000000000207008 399633004 85756007 0 118169006 900000000000011006 900000000000451002 +2283679022 20080731 0 900000000000207008 399633004 85756007 0 118169006 900000000000011006 900000000000451002 +2283680020 20030731 1 900000000000207008 399633004 9875009 0 118169006 900000000000011006 900000000000451002 +2283680020 20080731 0 900000000000207008 399633004 9875009 0 118169006 900000000000011006 900000000000451002 +2283680020 20090131 1 900000000000207008 399633004 9875009 1 118169006 900000000000011006 900000000000451002 +2283681024 20030731 1 900000000000207008 399633004 66300009 0 118171006 900000000000011006 900000000000451002 +2283681024 20080731 0 900000000000207008 399633004 66300009 0 118171006 900000000000011006 900000000000451002 +2283681024 20090131 1 900000000000207008 399633004 66300009 1 118171006 900000000000011006 900000000000451002 +2283682028 20030731 1 900000000000207008 399640003 5665001 0 118169006 900000000000011006 900000000000451002 +2283682028 20080731 0 900000000000207008 399640003 5665001 0 118169006 900000000000011006 900000000000451002 +2283682028 20090131 1 900000000000207008 399640003 5665001 1 118169006 900000000000011006 900000000000451002 +2283683022 20030731 1 900000000000207008 399640003 85756007 0 118169006 900000000000011006 900000000000451002 +2283683022 20080731 0 900000000000207008 399640003 85756007 0 118169006 900000000000011006 900000000000451002 +2283684027 20030731 1 900000000000207008 399645008 116154003 0 118170007 900000000000011006 900000000000451002 +2283684027 20040731 0 900000000000207008 399645008 116154003 0 118170007 900000000000011006 900000000000451002 +2283685026 20030731 1 900000000000207008 399645008 119282003 0 118169006 900000000000011006 900000000000451002 +2283685026 20080731 0 900000000000207008 399645008 119282003 0 118169006 900000000000011006 900000000000451002 +2283685026 20090131 1 900000000000207008 399645008 119282003 1 118169006 900000000000011006 900000000000451002 +2283687023 20030731 1 900000000000207008 399649002 312500006 0 118169006 900000000000011006 900000000000451002 +2283687023 20080731 0 900000000000207008 399649002 312500006 0 118169006 900000000000011006 900000000000451002 +2283687023 20090131 1 900000000000207008 399649002 312500006 1 118169006 900000000000011006 900000000000451002 +2283688029 20030731 1 900000000000207008 399649002 165369002 0 118171006 900000000000011006 900000000000451002 +2283688029 20040731 0 900000000000207008 399649002 165369002 0 118171006 900000000000011006 900000000000451002 +2283689021 20030731 1 900000000000207008 399649002 87612001 0 370133003 900000000000011006 900000000000451002 +2283689021 20040731 0 900000000000207008 399649002 87612001 0 370133003 900000000000011006 900000000000451002 +2283690028 20030731 1 900000000000207008 399649002 58347006 0 118171006 900000000000011006 900000000000451002 +2283690028 20080731 0 900000000000207008 399649002 58347006 0 118171006 900000000000011006 900000000000451002 +2283690028 20090131 1 900000000000207008 399649002 58347006 1 118171006 900000000000011006 900000000000451002 +2283692020 20030731 1 900000000000207008 399657004 85756007 0 118169006 900000000000011006 900000000000451002 +2283692020 20080731 0 900000000000207008 399657004 85756007 0 118169006 900000000000011006 900000000000451002 +2283693026 20030731 1 900000000000207008 399657004 25149004 0 118169006 900000000000011006 900000000000451002 +2283693026 20080731 0 900000000000207008 399657004 25149004 0 118169006 900000000000011006 900000000000451002 +2283693026 20090131 1 900000000000207008 399657004 25149004 1 118169006 900000000000011006 900000000000451002 +2283694021 20030731 1 900000000000207008 399658009 25149004 0 118169006 900000000000011006 900000000000451002 +2283694021 20080731 0 900000000000207008 399658009 25149004 0 118169006 900000000000011006 900000000000451002 +2283694021 20090731 1 900000000000207008 399658009 25149004 1 118169006 900000000000011006 900000000000451002 +2283695022 20030731 1 900000000000207008 399658009 85756007 0 118169006 900000000000011006 900000000000451002 +2283695022 20080731 0 900000000000207008 399658009 85756007 0 118169006 900000000000011006 900000000000451002 +2283696023 20030731 1 900000000000207008 399658009 236886002 0 118171006 900000000000011006 900000000000451002 +2283696023 20080731 0 900000000000207008 399658009 236886002 0 118171006 900000000000011006 900000000000451002 +2283696023 20090731 1 900000000000207008 399658009 236886002 1 118171006 900000000000011006 900000000000451002 +2283699027 20030731 1 900000000000207008 399661005 87612001 0 370133003 900000000000011006 900000000000451002 +2283699027 20040731 0 900000000000207008 399661005 87612001 0 370133003 900000000000011006 900000000000451002 +2283700026 20030731 1 900000000000207008 399661005 14059008 0 118171006 900000000000011006 900000000000451002 +2283700026 20080731 0 900000000000207008 399661005 14059008 0 118171006 900000000000011006 900000000000451002 +2283700026 20090131 1 900000000000207008 399661005 14059008 1 118171006 900000000000011006 900000000000451002 +2283701027 20030731 1 900000000000207008 399661005 165369002 0 118171006 900000000000011006 900000000000451002 +2283701027 20040731 0 900000000000207008 399661005 165369002 0 118171006 900000000000011006 900000000000451002 +2283702023 20030731 1 900000000000207008 399661005 54268001 0 118169006 900000000000011006 900000000000451002 +2283702023 20080731 0 900000000000207008 399661005 54268001 0 118169006 900000000000011006 900000000000451002 +2283702023 20090131 1 900000000000207008 399661005 54268001 1 118169006 900000000000011006 900000000000451002 +2283704024 20030731 1 900000000000207008 399672000 397384004 0 118169006 900000000000011006 900000000000451002 +2283704024 20080731 0 900000000000207008 399672000 397384004 0 118169006 900000000000011006 900000000000451002 +2283704024 20090131 1 900000000000207008 399672000 397384004 1 118169006 900000000000011006 900000000000451002 +2283705020 20030731 1 900000000000207008 399680007 69748006 0 118169006 900000000000011006 900000000000451002 +2283705020 20190731 1 900000000000207008 399680007 69748006 1 118169006 900000000000011006 900000000000451002 +2283711023 20030731 1 900000000000207008 399689008 13619001 0 118171006 900000000000011006 900000000000451002 +2283711023 20080731 0 900000000000207008 399689008 13619001 0 118171006 900000000000011006 900000000000451002 +2283711023 20090731 1 900000000000207008 399689008 13619001 1 118171006 900000000000011006 900000000000451002 +2283712027 20030731 1 900000000000207008 399689008 85756007 0 118169006 900000000000011006 900000000000451002 +2283712027 20080731 0 900000000000207008 399689008 85756007 0 118169006 900000000000011006 900000000000451002 +2283713021 20030731 1 900000000000207008 399689008 69748006 0 118169006 900000000000011006 900000000000451002 +2283713021 20080731 0 900000000000207008 399689008 69748006 0 118169006 900000000000011006 900000000000451002 +2283713021 20090731 1 900000000000207008 399689008 69748006 1 118169006 900000000000011006 900000000000451002 +2283717022 20030731 1 900000000000207008 399693002 13358001 0 118171006 900000000000011006 900000000000451002 +2283717022 20080731 0 900000000000207008 399693002 13358001 0 118171006 900000000000011006 900000000000451002 +2283717022 20090131 1 900000000000207008 399693002 13358001 1 118171006 900000000000011006 900000000000451002 +2283718028 20030731 1 900000000000207008 399693002 181234002 0 118169006 900000000000011006 900000000000451002 +2283718028 20080731 0 900000000000207008 399693002 181234002 0 118169006 900000000000011006 900000000000451002 +2283719020 20030731 1 900000000000207008 399693002 74262004 0 118169006 900000000000011006 900000000000451002 +2283719020 20080731 0 900000000000207008 399693002 74262004 0 118169006 900000000000011006 900000000000451002 +2283720025 20030731 1 900000000000207008 399693002 85756007 0 118169006 900000000000011006 900000000000451002 +2283720025 20080731 0 900000000000207008 399693002 85756007 0 118169006 900000000000011006 900000000000451002 +2283721026 20030731 1 900000000000207008 399693002 116154003 0 118170007 900000000000011006 900000000000451002 +2283721026 20040731 0 900000000000207008 399693002 116154003 0 118170007 900000000000011006 900000000000451002 +2283727027 20030731 1 900000000000207008 399713008 71252005 0 118169006 900000000000011006 900000000000451002 +2283727027 20080731 0 900000000000207008 399713008 71252005 0 118169006 900000000000011006 900000000000451002 +2283727027 20090131 1 900000000000207008 399713008 71252005 1 118169006 900000000000011006 900000000000451002 +2283728021 20030731 1 900000000000207008 399713008 85756007 0 118169006 900000000000011006 900000000000451002 +2283728021 20080731 0 900000000000207008 399713008 85756007 0 118169006 900000000000011006 900000000000451002 +2283729029 20030731 1 900000000000207008 399713008 54535009 0 118171006 900000000000011006 900000000000451002 +2283729029 20080731 0 900000000000207008 399713008 54535009 0 118171006 900000000000011006 900000000000451002 +2283729029 20090131 1 900000000000207008 399713008 54535009 1 118171006 900000000000011006 900000000000451002 +2283736028 20030731 1 900000000000207008 399728008 21483005 0 118169006 900000000000011006 900000000000451002 +2283736028 20080731 0 900000000000207008 399728008 21483005 0 118169006 900000000000011006 900000000000451002 +2283736028 20090131 1 900000000000207008 399728008 21483005 1 118169006 900000000000011006 900000000000451002 +2283737021 20030731 1 900000000000207008 399728008 399710006 0 118171006 900000000000011006 900000000000451002 +2283737021 20080731 0 900000000000207008 399728008 399710006 0 118171006 900000000000011006 900000000000451002 +2283737021 20090131 1 900000000000207008 399728008 399710006 1 118171006 900000000000011006 900000000000451002 +2283738027 20030731 1 900000000000207008 399728008 85756007 0 118169006 900000000000011006 900000000000451002 +2283738027 20080731 0 900000000000207008 399728008 85756007 0 118169006 900000000000011006 900000000000451002 +2283741020 20030731 1 900000000000207008 399731009 174334007 0 118171006 900000000000011006 900000000000451002 +2283741020 20080731 0 900000000000207008 399731009 174334007 0 118171006 900000000000011006 900000000000451002 +2283741020 20090131 1 900000000000207008 399731009 174334007 1 118171006 900000000000011006 900000000000451002 +2283742029 20030731 1 900000000000207008 399731009 85756007 0 118169006 900000000000011006 900000000000451002 +2283742029 20080731 0 900000000000207008 399731009 85756007 0 118169006 900000000000011006 900000000000451002 +2283743023 20030731 1 900000000000207008 399731009 53505006 0 118169006 900000000000011006 900000000000451002 +2283743023 20080731 0 900000000000207008 399731009 53505006 0 118169006 900000000000011006 900000000000451002 +2283743023 20090131 1 900000000000207008 399731009 53505006 1 118169006 900000000000011006 900000000000451002 +2283744028 20030731 1 900000000000207008 399732002 21483005 0 118169006 900000000000011006 900000000000451002 +2283744028 20080731 0 900000000000207008 399732002 21483005 0 118169006 900000000000011006 900000000000451002 +2283744028 20090731 1 900000000000207008 399732002 21483005 1 118169006 900000000000011006 900000000000451002 +2283745027 20030731 1 900000000000207008 399732002 85756007 0 118169006 900000000000011006 900000000000451002 +2283745027 20080731 0 900000000000207008 399732002 85756007 0 118169006 900000000000011006 900000000000451002 +2283746026 20030731 1 900000000000207008 399732002 38829003 0 118171006 900000000000011006 900000000000451002 +2283746026 20080731 0 900000000000207008 399732002 38829003 0 118171006 900000000000011006 900000000000451002 +2283746026 20090731 1 900000000000207008 399732002 38829003 1 118171006 900000000000011006 900000000000451002 +2283747024 20030731 1 900000000000207008 399732002 108369006 0 118168003 900000000000011006 900000000000451002 +2283747024 20080731 0 900000000000207008 399732002 108369006 0 118168003 900000000000011006 900000000000451002 +2283747024 20090731 1 900000000000207008 399732002 108369006 1 118168003 900000000000011006 900000000000451002 +2283750022 20030731 1 900000000000207008 399735000 85756007 0 118169006 900000000000011006 900000000000451002 +2283750022 20080731 0 900000000000207008 399735000 85756007 0 118169006 900000000000011006 900000000000451002 +2283751021 20030731 1 900000000000207008 399735000 81745001 0 118169006 900000000000011006 900000000000451002 +2283751021 20080731 0 900000000000207008 399735000 81745001 0 118169006 900000000000011006 900000000000451002 +2283751021 20090131 1 900000000000207008 399735000 81745001 1 118169006 900000000000011006 900000000000451002 +2283752025 20030731 1 900000000000207008 399741007 35461009 0 118169006 900000000000011006 900000000000451002 +2283752025 20050131 0 900000000000207008 399741007 35461009 0 118169006 900000000000011006 900000000000451002 +2283753024 20030731 1 900000000000207008 399741007 116033007 0 118171006 900000000000011006 900000000000451002 +2283753024 20080731 0 900000000000207008 399741007 116033007 0 118171006 900000000000011006 900000000000451002 +2283753024 20090131 1 900000000000207008 399741007 116033007 1 118171006 900000000000011006 900000000000451002 +2283754029 20030731 1 900000000000207008 399741007 85756007 0 118169006 900000000000011006 900000000000451002 +2283754029 20050131 0 900000000000207008 399741007 85756007 0 118169006 900000000000011006 900000000000451002 +2283755028 20030731 1 900000000000207008 399741007 64033007 0 118169006 900000000000011006 900000000000451002 +2283755028 20080731 0 900000000000207008 399741007 64033007 0 118169006 900000000000011006 900000000000451002 +2283755028 20090131 1 900000000000207008 399741007 64033007 1 118169006 900000000000011006 900000000000451002 +2283759023 20030731 1 900000000000207008 399747006 116154003 0 118170007 900000000000011006 900000000000451002 +2283759023 20040731 0 900000000000207008 399747006 116154003 0 118170007 900000000000011006 900000000000451002 +2283760029 20030731 1 900000000000207008 399747006 385294005 0 118169006 900000000000011006 900000000000451002 +2283760029 20190731 1 900000000000207008 399747006 385294005 1 118169006 900000000000011006 900000000000451002 +2283765023 20030731 1 900000000000207008 399751008 11401008 0 118171006 900000000000011006 900000000000451002 +2283765023 20080731 0 900000000000207008 399751008 11401008 0 118171006 900000000000011006 900000000000451002 +2283765023 20090131 1 900000000000207008 399751008 11401008 1 118171006 900000000000011006 900000000000451002 +2283765023 20110131 0 900000000000207008 399751008 11401008 1 118171006 900000000000011006 900000000000451002 +2283765023 20110731 1 900000000000207008 399751008 11401008 1 118171006 900000000000011006 900000000000451002 +2283766024 20030731 1 900000000000207008 399751008 35039007 0 118169006 900000000000011006 900000000000451002 +2283766024 20080731 0 900000000000207008 399751008 35039007 0 118169006 900000000000011006 900000000000451002 +2283766024 20090131 1 900000000000207008 399751008 35039007 1 118169006 900000000000011006 900000000000451002 +2283766024 20110131 0 900000000000207008 399751008 35039007 1 118169006 900000000000011006 900000000000451002 +2283766024 20110731 1 900000000000207008 399751008 35039007 1 118169006 900000000000011006 900000000000451002 +2283767026 20030731 1 900000000000207008 399752001 385341003 0 118171006 900000000000011006 900000000000451002 +2283767026 20080731 0 900000000000207008 399752001 385341003 0 118171006 900000000000011006 900000000000451002 +2283767026 20090131 1 900000000000207008 399752001 385341003 1 118171006 900000000000011006 900000000000451002 +2283768020 20030731 1 900000000000207008 399752001 85756007 0 118169006 900000000000011006 900000000000451002 +2283768020 20080731 0 900000000000207008 399752001 85756007 0 118169006 900000000000011006 900000000000451002 +2283769028 20030731 1 900000000000207008 399752001 53505006 0 118169006 900000000000011006 900000000000451002 +2283769028 20080731 0 900000000000207008 399752001 53505006 0 118169006 900000000000011006 900000000000451002 +2283769028 20090131 1 900000000000207008 399752001 53505006 1 118169006 900000000000011006 900000000000451002 +2455888021 20040131 1 900000000000207008 408654003 123038009 0 116680003 900000000000011006 900000000000451002 +2455888021 20040731 0 900000000000207008 408654003 123038009 0 116680003 900000000000011006 900000000000451002 +2455893024 20040131 1 900000000000207008 168139001 119372001 0 116680003 900000000000011006 900000000000451002 +2455893024 20040731 0 900000000000207008 168139001 119372001 0 116680003 900000000000011006 900000000000451002 +2460239029 20040131 1 900000000000207008 404643001 119334006 0 116680003 900000000000011006 900000000000451002 +2460240027 20040131 1 900000000000207008 404643001 258433009 0 116680003 900000000000011006 900000000000451002 +2460240027 20230630 0 900000000000207008 404643001 258433009 0 116680003 900000000000011006 900000000000451002 +2460241028 20040131 1 900000000000207008 122879002 258550008 0 116680003 900000000000011006 900000000000451002 +2460241028 20050131 0 900000000000207008 122879002 258550008 0 116680003 900000000000011006 900000000000451002 +2467483022 20040131 1 900000000000207008 405902005 373826004 0 116680003 900000000000011006 900000000000451002 +2467970026 20040131 1 900000000000207008 406101006 119376003 0 116680003 900000000000011006 900000000000451002 +2472718026 20040131 1 900000000000207008 408654003 81723002 0 118171006 900000000000011006 900000000000451002 +2472718026 20190731 1 900000000000207008 408654003 81723002 1 118171006 900000000000011006 900000000000451002 +2478590027 20040131 1 900000000000207008 258465007 40431001 0 370133003 900000000000011006 900000000000451002 +2478590027 20080731 0 900000000000207008 258465007 40431001 0 370133003 900000000000011006 900000000000451002 +2483183020 20040131 1 900000000000207008 122600000 406505007 0 118171006 900000000000011006 900000000000451002 +2483183020 20080731 0 900000000000207008 122600000 406505007 0 118171006 900000000000011006 900000000000451002 +2483183020 20090131 1 900000000000207008 122600000 406505007 1 118171006 900000000000011006 900000000000451002 +2483230024 20040131 1 900000000000207008 404643001 33463005 0 370133003 900000000000011006 900000000000451002 +2483230024 20040731 0 900000000000207008 404643001 33463005 0 370133003 900000000000011006 900000000000451002 +2483231023 20040131 1 900000000000207008 404643001 58675001 0 118169006 900000000000011006 900000000000451002 +2483231023 20040731 0 900000000000207008 404643001 58675001 0 118169006 900000000000011006 900000000000451002 +2483232027 20040131 1 900000000000207008 404643001 45710003 0 370133003 900000000000011006 900000000000451002 +2483232027 20080731 1 900000000000207008 404643001 45710003 1 370133003 900000000000011006 900000000000451002 +2483232027 20110731 0 900000000000207008 404643001 45710003 1 370133003 900000000000011006 900000000000451002 +2483233021 20040131 1 900000000000207008 404643001 72869002 0 370133003 900000000000011006 900000000000451002 +2483233021 20040731 0 900000000000207008 404643001 72869002 0 370133003 900000000000011006 900000000000451002 +2483234026 20040131 1 900000000000207008 404643001 82094008 0 118169006 900000000000011006 900000000000451002 +2483234026 20080731 1 900000000000207008 404643001 82094008 1 118169006 900000000000011006 900000000000451002 +2483234026 20110731 0 900000000000207008 404643001 82094008 1 118169006 900000000000011006 900000000000451002 +2496003027 20040131 1 900000000000207008 405902005 62141006 0 118171006 900000000000011006 900000000000451002 +2496003027 20190731 1 900000000000207008 405902005 62141006 1 118171006 900000000000011006 900000000000451002 +2498185028 20040131 1 900000000000207008 406101006 364715006 0 118169006 900000000000011006 900000000000451002 +2498185028 20050131 0 900000000000207008 406101006 364715006 0 118169006 900000000000011006 900000000000451002 +2498186027 20040131 1 900000000000207008 406101006 85756007 0 118169006 900000000000011006 900000000000451002 +2498186027 20080731 0 900000000000207008 406101006 85756007 0 118169006 900000000000011006 900000000000451002 +2501615024 20040131 1 900000000000207008 396356004 396401003 0 118171006 900000000000011006 900000000000451002 +2501615024 20080731 0 900000000000207008 396356004 396401003 0 118171006 900000000000011006 900000000000451002 +2501616020 20040131 1 900000000000207008 396357008 396401003 0 118171006 900000000000011006 900000000000451002 +2501616020 20080731 0 900000000000207008 396357008 396401003 0 118171006 900000000000011006 900000000000451002 +2501617027 20040131 1 900000000000207008 396358003 396401003 0 118171006 900000000000011006 900000000000451002 +2501617027 20080731 0 900000000000207008 396358003 396401003 0 118171006 900000000000011006 900000000000451002 +2529066021 20040731 1 900000000000207008 408654003 373826004 0 116680003 900000000000011006 900000000000451002 +2529066021 20070731 0 900000000000207008 408654003 373826004 0 116680003 900000000000011006 900000000000451002 +2529066021 20090731 1 900000000000207008 408654003 373826004 0 116680003 900000000000011006 900000000000451002 +2529083028 20040731 1 900000000000207008 168137004 119295008 0 116680003 900000000000011006 900000000000451002 +2529084023 20040731 1 900000000000207008 168139001 309051001 0 116680003 900000000000011006 900000000000451002 +2529084023 20220228 0 900000000000207008 168139001 309051001 0 116680003 900000000000011006 900000000000451002 +2529085024 20040731 1 900000000000207008 168141000 410580001 0 116680003 900000000000011006 900000000000451002 +2529085024 20050131 0 900000000000207008 168141000 410580001 0 116680003 900000000000011006 900000000000451002 +2533529020 20040731 1 900000000000207008 110893002 309072003 0 116680003 900000000000011006 900000000000451002 +2533529020 20080731 0 900000000000207008 110893002 309072003 0 116680003 900000000000011006 900000000000451002 +2533533029 20040731 1 900000000000207008 110898006 258589002 0 116680003 900000000000011006 900000000000451002 +2533534024 20040731 1 900000000000207008 110900008 309104000 0 116680003 900000000000011006 900000000000451002 +2533534024 20080731 0 900000000000207008 110900008 309104000 0 116680003 900000000000011006 900000000000451002 +2533535020 20040731 1 900000000000207008 110901007 119330002 0 116680003 900000000000011006 900000000000451002 +2533535020 20080731 0 900000000000207008 110901007 119330002 0 116680003 900000000000011006 900000000000451002 +2533536021 20040731 1 900000000000207008 110902000 258603007 0 116680003 900000000000011006 900000000000451002 +2533536021 20050131 0 900000000000207008 110902000 258603007 0 116680003 900000000000011006 900000000000451002 +2533544021 20040731 1 900000000000207008 110904004 258603007 0 116680003 900000000000011006 900000000000451002 +2533544021 20050131 0 900000000000207008 110904004 258603007 0 116680003 900000000000011006 900000000000451002 +2533545022 20040731 1 900000000000207008 110905003 119389009 0 116680003 900000000000011006 900000000000451002 +2533545022 20080731 0 900000000000207008 110905003 119389009 0 116680003 900000000000011006 900000000000451002 +2533546023 20040731 1 900000000000207008 110906002 258603007 0 116680003 900000000000011006 900000000000451002 +2533546023 20080731 0 900000000000207008 110906002 258603007 0 116680003 900000000000011006 900000000000451002 +2533548024 20040731 1 900000000000207008 110907006 258603007 0 116680003 900000000000011006 900000000000451002 +2533548024 20050131 0 900000000000207008 110907006 258603007 0 116680003 900000000000011006 900000000000451002 +2533550027 20040731 1 900000000000207008 110908001 258603007 0 116680003 900000000000011006 900000000000451002 +2533550027 20050131 0 900000000000207008 110908001 258603007 0 116680003 900000000000011006 900000000000451002 +2533551028 20040731 1 900000000000207008 110909009 258603007 0 116680003 900000000000011006 900000000000451002 +2533551028 20050131 0 900000000000207008 110909009 258603007 0 116680003 900000000000011006 900000000000451002 +2533552024 20040731 1 900000000000207008 110910004 258603007 0 116680003 900000000000011006 900000000000451002 +2533552024 20080731 0 900000000000207008 110910004 258603007 0 116680003 900000000000011006 900000000000451002 +2533554020 20040731 1 900000000000207008 110912007 258603007 0 116680003 900000000000011006 900000000000451002 +2533554020 20080731 0 900000000000207008 110912007 258603007 0 116680003 900000000000011006 900000000000451002 +2533556022 20040731 1 900000000000207008 110914008 258603007 0 116680003 900000000000011006 900000000000451002 +2533556022 20080731 0 900000000000207008 110914008 258603007 0 116680003 900000000000011006 900000000000451002 +2533557029 20040731 1 900000000000207008 110916005 258603007 0 116680003 900000000000011006 900000000000451002 +2533557029 20080731 0 900000000000207008 110916005 258603007 0 116680003 900000000000011006 900000000000451002 +2533559026 20040731 1 900000000000207008 110918006 258603007 0 116680003 900000000000011006 900000000000451002 +2533559026 20080731 0 900000000000207008 110918006 258603007 0 116680003 900000000000011006 900000000000451002 +2533560020 20040731 1 900000000000207008 110919003 258541006 0 116680003 900000000000011006 900000000000451002 +2533560020 20080731 0 900000000000207008 110919003 258541006 0 116680003 900000000000011006 900000000000451002 +2533561024 20040731 1 900000000000207008 110921008 258603007 0 116680003 900000000000011006 900000000000451002 +2533561024 20080731 0 900000000000207008 110921008 258603007 0 116680003 900000000000011006 900000000000451002 +2533562028 20040731 1 900000000000207008 110922001 258603007 0 116680003 900000000000011006 900000000000451002 +2533562028 20080731 0 900000000000207008 110922001 258603007 0 116680003 900000000000011006 900000000000451002 +2533563022 20040731 1 900000000000207008 110923006 258603007 0 116680003 900000000000011006 900000000000451002 +2533563022 20080731 0 900000000000207008 110923006 258603007 0 116680003 900000000000011006 900000000000451002 +2533564027 20040731 1 900000000000207008 110924000 258603007 0 116680003 900000000000011006 900000000000451002 +2533564027 20080731 0 900000000000207008 110924000 258603007 0 116680003 900000000000011006 900000000000451002 +2533565026 20040731 1 900000000000207008 110926003 363311008 0 116680003 900000000000011006 900000000000451002 +2533565026 20110731 0 900000000000207008 110926003 363311008 0 116680003 900000000000011006 900000000000451002 +2533566025 20040731 1 900000000000207008 110927007 119383005 0 116680003 900000000000011006 900000000000451002 +2533569021 20040731 1 900000000000207008 110928002 363311008 0 116680003 900000000000011006 900000000000451002 +2533569021 20110731 0 900000000000207008 110928002 363311008 0 116680003 900000000000011006 900000000000451002 +2533571021 20040731 1 900000000000207008 110929005 127469001 0 116680003 900000000000011006 900000000000451002 +2533572025 20040731 1 900000000000207008 110930000 363311008 0 116680003 900000000000011006 900000000000451002 +2533572025 20080731 0 900000000000207008 110930000 363311008 0 116680003 900000000000011006 900000000000451002 +2533573024 20040731 1 900000000000207008 110931001 119397002 0 116680003 900000000000011006 900000000000451002 +2533574029 20040731 1 900000000000207008 110932008 363311008 0 116680003 900000000000011006 900000000000451002 +2533574029 20080731 0 900000000000207008 110932008 363311008 0 116680003 900000000000011006 900000000000451002 +2533576027 20040731 1 900000000000207008 110933003 309052008 0 116680003 900000000000011006 900000000000451002 +2533576027 20080731 0 900000000000207008 110933003 309052008 0 116680003 900000000000011006 900000000000451002 +2533577020 20040731 1 900000000000207008 110933003 127471001 0 116680003 900000000000011006 900000000000451002 +2533577020 20080731 0 900000000000207008 110933003 127471001 0 116680003 900000000000011006 900000000000451002 +2533578026 20040731 1 900000000000207008 110934009 119389009 0 116680003 900000000000011006 900000000000451002 +2533578026 20170731 0 900000000000207008 110934009 119389009 0 116680003 900000000000011006 900000000000451002 +2533580021 20040731 1 900000000000207008 110935005 128154006 0 116680003 900000000000011006 900000000000451002 +2533581020 20040731 1 900000000000207008 110936006 258550008 0 116680003 900000000000011006 900000000000451002 +2533581020 20050131 0 900000000000207008 110936006 258550008 0 116680003 900000000000011006 900000000000451002 +2533582029 20040731 1 900000000000207008 110937002 309052008 0 116680003 900000000000011006 900000000000451002 +2533582029 20080731 0 900000000000207008 110937002 309052008 0 116680003 900000000000011006 900000000000451002 +2533583023 20040731 1 900000000000207008 110938007 258550008 0 116680003 900000000000011006 900000000000451002 +2533583023 20050131 0 900000000000207008 110938007 258550008 0 116680003 900000000000011006 900000000000451002 +2533585027 20040731 1 900000000000207008 110939004 309052008 0 116680003 900000000000011006 900000000000451002 +2533585027 20080731 0 900000000000207008 110939004 309052008 0 116680003 900000000000011006 900000000000451002 +2533587024 20040731 1 900000000000207008 110940002 258550008 0 116680003 900000000000011006 900000000000451002 +2533587024 20050131 0 900000000000207008 110940002 258550008 0 116680003 900000000000011006 900000000000451002 +2533588025 20040731 1 900000000000207008 110941003 128154006 0 116680003 900000000000011006 900000000000451002 +2533588025 20080731 0 900000000000207008 110941003 128154006 0 116680003 900000000000011006 900000000000451002 +2533589022 20040731 1 900000000000207008 110942005 258550008 0 116680003 900000000000011006 900000000000451002 +2533589022 20050131 0 900000000000207008 110942005 258550008 0 116680003 900000000000011006 900000000000451002 +2533590029 20040731 1 900000000000207008 110946008 127471001 0 116680003 900000000000011006 900000000000451002 +2533590029 20080731 0 900000000000207008 110946008 127471001 0 116680003 900000000000011006 900000000000451002 +2533592021 20040731 1 900000000000207008 110947004 119394009 0 116680003 900000000000011006 900000000000451002 +2533593027 20040731 1 900000000000207008 110948009 127473003 0 116680003 900000000000011006 900000000000451002 +2533594022 20040731 1 900000000000207008 110949001 119395005 0 116680003 900000000000011006 900000000000451002 +2533596024 20040731 1 900000000000207008 110950001 127471001 0 116680003 900000000000011006 900000000000451002 +2533596024 20080731 0 900000000000207008 110950001 127471001 0 116680003 900000000000011006 900000000000451002 +2533597026 20040731 1 900000000000207008 110951002 119395005 0 116680003 900000000000011006 900000000000451002 +2533597026 20080731 0 900000000000207008 110951002 119395005 0 116680003 900000000000011006 900000000000451002 +2533598020 20040731 1 900000000000207008 110952009 363311008 0 116680003 900000000000011006 900000000000451002 +2533598020 20080731 0 900000000000207008 110952009 363311008 0 116680003 900000000000011006 900000000000451002 +2533599028 20040731 1 900000000000207008 110954005 258550008 0 116680003 900000000000011006 900000000000451002 +2533599028 20050131 0 900000000000207008 110954005 258550008 0 116680003 900000000000011006 900000000000451002 +2533600025 20040731 1 900000000000207008 110955006 309053003 0 116680003 900000000000011006 900000000000451002 +2533600025 20080731 0 900000000000207008 110955006 309053003 0 116680003 900000000000011006 900000000000451002 +2533601026 20040731 1 900000000000207008 110956007 258550008 0 116680003 900000000000011006 900000000000451002 +2533601026 20050131 0 900000000000207008 110956007 258550008 0 116680003 900000000000011006 900000000000451002 +2533602022 20040731 1 900000000000207008 110957003 127476006 0 116680003 900000000000011006 900000000000451002 +2533603028 20040731 1 900000000000207008 110958008 127471001 0 116680003 900000000000011006 900000000000451002 +2533604023 20040731 1 900000000000207008 110959000 119403008 0 116680003 900000000000011006 900000000000451002 +2533605024 20040731 1 900000000000207008 110960005 127471001 0 116680003 900000000000011006 900000000000451002 +2533605024 20080731 0 900000000000207008 110960005 127471001 0 116680003 900000000000011006 900000000000451002 +2533607027 20040731 1 900000000000207008 110961009 258428005 0 116680003 900000000000011006 900000000000451002 +2533607027 20080731 0 900000000000207008 110961009 258428005 0 116680003 900000000000011006 900000000000451002 +2533608021 20040731 1 900000000000207008 110962002 258550008 0 116680003 900000000000011006 900000000000451002 +2533608021 20050131 0 900000000000207008 110962002 258550008 0 116680003 900000000000011006 900000000000451002 +2533609029 20040731 1 900000000000207008 110963007 119392008 0 116680003 900000000000011006 900000000000451002 +2533610023 20040731 1 900000000000207008 110964001 127471001 0 116680003 900000000000011006 900000000000451002 +2533610023 20080731 0 900000000000207008 110964001 127471001 0 116680003 900000000000011006 900000000000451002 +2533611022 20040731 1 900000000000207008 110965000 127471001 0 116680003 900000000000011006 900000000000451002 +2533611022 20050131 0 900000000000207008 110965000 127471001 0 116680003 900000000000011006 900000000000451002 +2533612026 20040731 1 900000000000207008 110966004 258550008 0 116680003 900000000000011006 900000000000451002 +2533612026 20050131 0 900000000000207008 110966004 258550008 0 116680003 900000000000011006 900000000000451002 +2533613020 20040731 1 900000000000207008 110967008 258428005 0 116680003 900000000000011006 900000000000451002 +2533613020 20080731 0 900000000000207008 110967008 258428005 0 116680003 900000000000011006 900000000000451002 +2533614025 20040731 1 900000000000207008 110968003 309502007 0 116680003 900000000000011006 900000000000451002 +2533615029 20040731 1 900000000000207008 110970007 258450006 0 116680003 900000000000011006 900000000000451002 +2533615029 20080731 0 900000000000207008 110970007 258450006 0 116680003 900000000000011006 900000000000451002 +2535347028 20040731 1 900000000000207008 256889002 119368000 0 116680003 900000000000011006 900000000000451002 +2535347028 20080731 0 900000000000207008 256889002 119368000 0 116680003 900000000000011006 900000000000451002 +2535353028 20040731 1 900000000000207008 257261003 123038009 0 116680003 900000000000011006 900000000000451002 +2535410029 20040731 1 900000000000207008 258407001 119371008 0 116680003 900000000000011006 900000000000451002 +2535412021 20040731 1 900000000000207008 258411007 119389009 0 116680003 900000000000011006 900000000000451002 +2535412021 20080731 0 900000000000207008 258411007 119389009 0 116680003 900000000000011006 900000000000451002 +2535413027 20040731 1 900000000000207008 258411007 410580001 0 116680003 900000000000011006 900000000000451002 +2535414022 20040731 1 900000000000207008 258411007 119295008 0 116680003 900000000000011006 900000000000451002 +2535414022 20070731 0 900000000000207008 258411007 119295008 0 116680003 900000000000011006 900000000000451002 +2535415023 20040731 1 900000000000207008 258412000 410580001 0 116680003 900000000000011006 900000000000451002 +2535415023 20080731 0 900000000000207008 258412000 410580001 0 116680003 900000000000011006 900000000000451002 +2535415023 20110131 1 900000000000207008 258412000 410580001 0 116680003 900000000000011006 900000000000451002 +2535416024 20040731 1 900000000000207008 258412000 119389009 0 116680003 900000000000011006 900000000000451002 +2535418020 20040731 1 900000000000207008 258415003 123038009 0 116680003 900000000000011006 900000000000451002 +2535419028 20040731 1 900000000000207008 258418001 119367005 0 116680003 900000000000011006 900000000000451002 +2535420023 20040731 1 900000000000207008 258419009 258431006 0 116680003 900000000000011006 900000000000451002 +2535421022 20040731 1 900000000000207008 258420003 119368000 0 116680003 900000000000011006 900000000000451002 +2535422026 20040731 1 900000000000207008 258421004 258415003 0 116680003 900000000000011006 900000000000451002 +2535423020 20040731 1 900000000000207008 258423001 119326000 0 116680003 900000000000011006 900000000000451002 +2535424025 20040731 1 900000000000207008 258428005 123038009 0 116680003 900000000000011006 900000000000451002 +2535424025 20080731 0 900000000000207008 258428005 123038009 0 116680003 900000000000011006 900000000000451002 +2535425029 20040731 1 900000000000207008 258429002 258431006 0 116680003 900000000000011006 900000000000451002 +2535426028 20040731 1 900000000000207008 258431006 123038009 0 116680003 900000000000011006 900000000000451002 +2535426028 20100731 0 900000000000207008 258431006 123038009 0 116680003 900000000000011006 900000000000451002 +2535427021 20040731 1 900000000000207008 258432004 309051001 0 116680003 900000000000011006 900000000000451002 +2535428027 20040731 1 900000000000207008 258433009 123038009 0 116680003 900000000000011006 900000000000451002 +2535429024 20040731 1 900000000000207008 258436001 258428005 0 116680003 900000000000011006 900000000000451002 +2535430025 20040731 1 900000000000207008 258438000 309050000 0 116680003 900000000000011006 900000000000451002 +2535430025 20070731 0 900000000000207008 258438000 309050000 0 116680003 900000000000011006 900000000000451002 +2535431026 20040731 1 900000000000207008 258440005 309049000 0 116680003 900000000000011006 900000000000451002 +2535431026 20080731 0 900000000000207008 258440005 309049000 0 116680003 900000000000011006 900000000000451002 +2535432022 20040731 1 900000000000207008 258442002 123038009 0 116680003 900000000000011006 900000000000451002 +2535435024 20040731 1 900000000000207008 258448003 309072003 0 116680003 900000000000011006 900000000000451002 +2535435024 20080731 0 900000000000207008 258448003 309072003 0 116680003 900000000000011006 900000000000451002 +2535437027 20040731 1 900000000000207008 258450006 309051001 0 116680003 900000000000011006 900000000000451002 +2535440027 20040731 1 900000000000207008 258452003 309051001 0 116680003 900000000000011006 900000000000451002 +2535440027 20070731 0 900000000000207008 258452003 309051001 0 116680003 900000000000011006 900000000000451002 +2535441028 20040731 1 900000000000207008 258453008 119368000 0 116680003 900000000000011006 900000000000451002 +2535442024 20040731 1 900000000000207008 258455001 309049000 0 116680003 900000000000011006 900000000000451002 +2535442024 20080731 0 900000000000207008 258455001 309049000 0 116680003 900000000000011006 900000000000451002 +2535443025 20040731 1 900000000000207008 258456000 309049000 0 116680003 900000000000011006 900000000000451002 +2535443025 20110731 0 900000000000207008 258456000 309049000 0 116680003 900000000000011006 900000000000451002 +2535444020 20040731 1 900000000000207008 258458004 119370009 0 116680003 900000000000011006 900000000000451002 +2535445021 20040731 1 900000000000207008 258459007 309051001 0 116680003 900000000000011006 900000000000451002 +2535445021 20070731 0 900000000000207008 258459007 309051001 0 116680003 900000000000011006 900000000000451002 +2535446022 20040731 1 900000000000207008 258461003 128154006 0 116680003 900000000000011006 900000000000451002 +2535446022 20080731 0 900000000000207008 258461003 128154006 0 116680003 900000000000011006 900000000000451002 +2535447029 20040731 1 900000000000207008 258465007 309051001 0 116680003 900000000000011006 900000000000451002 +2535447029 20070731 0 900000000000207008 258465007 309051001 0 116680003 900000000000011006 900000000000451002 +2535448023 20040731 1 900000000000207008 258466008 309051001 0 116680003 900000000000011006 900000000000451002 +2535448023 20080731 0 900000000000207008 258466008 309051001 0 116680003 900000000000011006 900000000000451002 +2535449026 20040731 1 900000000000207008 258467004 410580001 0 116680003 900000000000011006 900000000000451002 +2535449026 20080731 0 900000000000207008 258467004 410580001 0 116680003 900000000000011006 900000000000451002 +2535450026 20040731 1 900000000000207008 258467004 119389009 0 116680003 900000000000011006 900000000000451002 +2535450026 20080731 0 900000000000207008 258467004 119389009 0 116680003 900000000000011006 900000000000451002 +2535451027 20040731 1 900000000000207008 258468009 309049000 0 116680003 900000000000011006 900000000000451002 +2535451027 20090131 0 900000000000207008 258468009 309049000 0 116680003 900000000000011006 900000000000451002 +2535452023 20040731 1 900000000000207008 258469001 119389009 0 116680003 900000000000011006 900000000000451002 +2535452023 20170731 0 900000000000207008 258469001 119389009 0 116680003 900000000000011006 900000000000451002 +2535453029 20040731 1 900000000000207008 258469001 410580001 0 116680003 900000000000011006 900000000000451002 +2535453029 20070731 0 900000000000207008 258469001 410580001 0 116680003 900000000000011006 900000000000451002 +2535454024 20040731 1 900000000000207008 258470000 127471001 0 116680003 900000000000011006 900000000000451002 +2535454024 20080731 0 900000000000207008 258470000 127471001 0 116680003 900000000000011006 900000000000451002 +2535455020 20040731 1 900000000000207008 258470000 309051001 0 116680003 900000000000011006 900000000000451002 +2535455020 20080731 0 900000000000207008 258470000 309051001 0 116680003 900000000000011006 900000000000451002 +2535455020 20110131 1 900000000000207008 258470000 309051001 0 116680003 900000000000011006 900000000000451002 +2535456021 20040731 1 900000000000207008 258470000 309052008 0 116680003 900000000000011006 900000000000451002 +2535456021 20080731 0 900000000000207008 258470000 309052008 0 116680003 900000000000011006 900000000000451002 +2535457028 20040731 1 900000000000207008 258474009 410580001 0 116680003 900000000000011006 900000000000451002 +2535457028 20050131 0 900000000000207008 258474009 410580001 0 116680003 900000000000011006 900000000000451002 +2535458022 20040731 1 900000000000207008 258475005 410580001 0 116680003 900000000000011006 900000000000451002 +2535458022 20080731 0 900000000000207008 258475005 410580001 0 116680003 900000000000011006 900000000000451002 +2535461023 20040731 1 900000000000207008 258480001 410580001 0 116680003 900000000000011006 900000000000451002 +2535461023 20220630 0 900000000000207008 258480001 410580001 0 116680003 900000000000011006 900000000000451002 +2535462027 20040731 1 900000000000207008 258480001 119295008 0 116680003 900000000000011006 900000000000451002 +2535463021 20040731 1 900000000000207008 258481002 119394009 0 116680003 900000000000011006 900000000000451002 +2535464026 20040731 1 900000000000207008 258484005 119376003 0 116680003 900000000000011006 900000000000451002 +2535465025 20040731 1 900000000000207008 258485006 119400006 0 116680003 900000000000011006 900000000000451002 +2535466029 20040731 1 900000000000207008 258485006 258431006 0 116680003 900000000000011006 900000000000451002 +2535467022 20040731 1 900000000000207008 258489000 309072003 0 116680003 900000000000011006 900000000000451002 +2535467022 20080731 0 900000000000207008 258489000 309072003 0 116680003 900000000000011006 900000000000451002 +2535468028 20040731 1 900000000000207008 258497007 119371008 0 116680003 900000000000011006 900000000000451002 +2535469020 20040731 1 900000000000207008 258498002 119401005 0 116680003 900000000000011006 900000000000451002 +2535470021 20040731 1 900000000000207008 258500001 119389009 0 116680003 900000000000011006 900000000000451002 +2535470021 20080731 0 900000000000207008 258500001 119389009 0 116680003 900000000000011006 900000000000451002 +2535471020 20040731 1 900000000000207008 258502009 119323008 0 116680003 900000000000011006 900000000000451002 +2535472029 20040731 1 900000000000207008 258502009 309049000 0 116680003 900000000000011006 900000000000451002 +2535472029 20080731 0 900000000000207008 258502009 309049000 0 116680003 900000000000011006 900000000000451002 +2535473023 20040731 1 900000000000207008 258503004 309072003 0 116680003 900000000000011006 900000000000451002 +2535473023 20080731 0 900000000000207008 258503004 309072003 0 116680003 900000000000011006 900000000000451002 +2535474028 20040731 1 900000000000207008 258505006 119369008 0 116680003 900000000000011006 900000000000451002 +2535474028 20130131 0 900000000000207008 258505006 119369008 0 116680003 900000000000011006 900000000000451002 +2535475027 20040731 1 900000000000207008 258506007 119365002 0 116680003 900000000000011006 900000000000451002 +2535475027 20080731 0 900000000000207008 258506007 119365002 0 116680003 900000000000011006 900000000000451002 +2535476026 20040731 1 900000000000207008 258507003 119365002 0 116680003 900000000000011006 900000000000451002 +2535476026 20080731 0 900000000000207008 258507003 119365002 0 116680003 900000000000011006 900000000000451002 +2535477024 20040731 1 900000000000207008 258508008 119344008 0 116680003 900000000000011006 900000000000451002 +2535478025 20040731 1 900000000000207008 258509000 309052008 0 116680003 900000000000011006 900000000000451002 +2535479022 20040731 1 900000000000207008 258510005 119397002 0 116680003 900000000000011006 900000000000451002 +2535480020 20040731 1 900000000000207008 258511009 127471001 0 116680003 900000000000011006 900000000000451002 +2535480020 20050131 0 900000000000207008 258511009 127471001 0 116680003 900000000000011006 900000000000451002 +2535481024 20040731 1 900000000000207008 258513007 258548000 0 116680003 900000000000011006 900000000000451002 +2535481024 20110731 0 900000000000207008 258513007 258548000 0 116680003 900000000000011006 900000000000451002 +2535482028 20040731 1 900000000000207008 258513007 309072003 0 116680003 900000000000011006 900000000000451002 +2535482028 20120131 0 900000000000207008 258513007 309072003 0 116680003 900000000000011006 900000000000451002 +2535483022 20040731 1 900000000000207008 258514001 309072003 0 116680003 900000000000011006 900000000000451002 +2535483022 20080731 0 900000000000207008 258514001 309072003 0 116680003 900000000000011006 900000000000451002 +2535484027 20040731 1 900000000000207008 258514001 258548000 0 116680003 900000000000011006 900000000000451002 +2535484027 20080731 0 900000000000207008 258514001 258548000 0 116680003 900000000000011006 900000000000451002 +2535485026 20040731 1 900000000000207008 258516004 258548000 0 116680003 900000000000011006 900000000000451002 +2535485026 20080731 0 900000000000207008 258516004 258548000 0 116680003 900000000000011006 900000000000451002 +2535485026 20110731 1 900000000000207008 258516004 258548000 0 116680003 900000000000011006 900000000000451002 +2535485026 20130131 0 900000000000207008 258516004 258548000 0 116680003 900000000000011006 900000000000451002 +2535486025 20040731 1 900000000000207008 258516004 309072003 0 116680003 900000000000011006 900000000000451002 +2535486025 20080731 0 900000000000207008 258516004 309072003 0 116680003 900000000000011006 900000000000451002 +2535486025 20110731 1 900000000000207008 258516004 309072003 0 116680003 900000000000011006 900000000000451002 +2535486025 20130131 0 900000000000207008 258516004 309072003 0 116680003 900000000000011006 900000000000451002 +2535487023 20040731 1 900000000000207008 258519006 309053003 0 116680003 900000000000011006 900000000000451002 +2535488029 20040731 1 900000000000207008 258520000 119394009 0 116680003 900000000000011006 900000000000451002 +2535489021 20040731 1 900000000000207008 258524009 119395005 0 116680003 900000000000011006 900000000000451002 +2535490028 20040731 1 900000000000207008 258526006 258548000 0 116680003 900000000000011006 900000000000451002 +2535490028 20080731 0 900000000000207008 258526006 258548000 0 116680003 900000000000011006 900000000000451002 +2535491029 20040731 1 900000000000207008 258526006 309072003 0 116680003 900000000000011006 900000000000451002 +2535491029 20080731 0 900000000000207008 258526006 309072003 0 116680003 900000000000011006 900000000000451002 +2535492020 20040731 1 900000000000207008 258527002 119392008 0 116680003 900000000000011006 900000000000451002 +2535493026 20040731 1 900000000000207008 258528007 258550008 0 116680003 900000000000011006 900000000000451002 +2535493026 20050131 0 900000000000207008 258528007 258550008 0 116680003 900000000000011006 900000000000451002 +2535494021 20040731 1 900000000000207008 258529004 119389009 0 116680003 900000000000011006 900000000000451002 +2535494021 20130131 0 900000000000207008 258529004 119389009 0 116680003 900000000000011006 900000000000451002 +2535495022 20040731 1 900000000000207008 258531008 119365002 0 116680003 900000000000011006 900000000000451002 +2535497025 20040731 1 900000000000207008 258536003 127454002 0 116680003 900000000000011006 900000000000451002 +2535497025 20210131 0 900000000000207008 258536003 127454002 0 116680003 900000000000011006 900000000000451002 +2535498024 20040731 1 900000000000207008 258538002 309049000 0 116680003 900000000000011006 900000000000451002 +2535498024 20080731 0 900000000000207008 258538002 309049000 0 116680003 900000000000011006 900000000000451002 +2535499027 20040731 1 900000000000207008 258539005 119330002 0 116680003 900000000000011006 900000000000451002 +2535499027 20080731 0 900000000000207008 258539005 119330002 0 116680003 900000000000011006 900000000000451002 +2535502028 20040731 1 900000000000207008 258541006 123038009 0 116680003 900000000000011006 900000000000451002 +2535503022 20040731 1 900000000000207008 258542004 127462005 0 116680003 900000000000011006 900000000000451002 +2535505026 20040731 1 900000000000207008 258545002 127454002 0 116680003 900000000000011006 900000000000451002 +2535505026 20090131 0 900000000000207008 258545002 127454002 0 116680003 900000000000011006 900000000000451002 +2535506025 20040731 1 900000000000207008 258547005 258442002 0 116680003 900000000000011006 900000000000451002 +2535507023 20040731 1 900000000000207008 258548000 123038009 0 116680003 900000000000011006 900000000000451002 +2535508029 20040731 1 900000000000207008 258549008 309072003 0 116680003 900000000000011006 900000000000451002 +2535508029 20080731 0 900000000000207008 258549008 309072003 0 116680003 900000000000011006 900000000000451002 +2535510027 20040731 1 900000000000207008 258559009 309072003 0 116680003 900000000000011006 900000000000451002 +2535510027 20210131 0 900000000000207008 258559009 309072003 0 116680003 900000000000011006 900000000000451002 +2535511028 20040731 1 900000000000207008 258559009 309185002 0 116680003 900000000000011006 900000000000451002 +2535511028 20090731 0 900000000000207008 258559009 309185002 0 116680003 900000000000011006 900000000000451002 +2535512024 20040731 1 900000000000207008 258562007 123038009 0 116680003 900000000000011006 900000000000451002 +2535513025 20040731 1 900000000000207008 258563002 258428005 0 116680003 900000000000011006 900000000000451002 +2535513025 20080731 0 900000000000207008 258563002 258428005 0 116680003 900000000000011006 900000000000451002 +2535514020 20040731 1 900000000000207008 258564008 258415003 0 116680003 900000000000011006 900000000000451002 +2535514020 20080731 0 900000000000207008 258564008 258415003 0 116680003 900000000000011006 900000000000451002 +2535515021 20040731 1 900000000000207008 258565009 119403008 0 116680003 900000000000011006 900000000000451002 +2535516022 20040731 1 900000000000207008 258570002 123038009 0 116680003 900000000000011006 900000000000451002 +2535516022 20080731 0 900000000000207008 258570002 123038009 0 116680003 900000000000011006 900000000000451002 +2535517029 20040731 1 900000000000207008 258571003 309051001 0 116680003 900000000000011006 900000000000451002 +2535517029 20060131 0 900000000000207008 258571003 309051001 0 116680003 900000000000011006 900000000000451002 +2535519026 20040731 1 900000000000207008 258581004 309049000 0 116680003 900000000000011006 900000000000451002 +2535519026 20080731 0 900000000000207008 258581004 309049000 0 116680003 900000000000011006 900000000000451002 +2535520021 20040731 1 900000000000207008 258582006 309049000 0 116680003 900000000000011006 900000000000451002 +2535521020 20040731 1 900000000000207008 258585008 373826004 0 116680003 900000000000011006 900000000000451002 +2535521020 20090131 0 900000000000207008 258585008 373826004 0 116680003 900000000000011006 900000000000451002 +2535522029 20040731 1 900000000000207008 258587000 119354007 0 116680003 900000000000011006 900000000000451002 +2535522029 20080731 0 900000000000207008 258587000 119354007 0 116680003 900000000000011006 900000000000451002 +2535523023 20040731 1 900000000000207008 258589002 123038009 0 116680003 900000000000011006 900000000000451002 +2535524028 20040731 1 900000000000207008 258591005 123038009 0 116680003 900000000000011006 900000000000451002 +2535527024 20040731 1 900000000000207008 258599007 258442002 0 116680003 900000000000011006 900000000000451002 +2535528025 20040731 1 900000000000207008 258603007 123038009 0 116680003 900000000000011006 900000000000451002 +2535529022 20040731 1 900000000000207008 258608003 119295008 0 116680003 900000000000011006 900000000000451002 +2535529022 20050731 0 900000000000207008 258608003 119295008 0 116680003 900000000000011006 900000000000451002 +2535530028 20040731 1 900000000000207008 258613004 123038009 0 116680003 900000000000011006 900000000000451002 +2535534021 20040731 1 900000000000207008 258649003 123038009 0 116680003 900000000000011006 900000000000451002 +2535534021 20080731 0 900000000000207008 258649003 123038009 0 116680003 900000000000011006 900000000000451002 +2535535022 20040731 1 900000000000207008 258652006 119320006 0 116680003 900000000000011006 900000000000451002 +2536253024 20040731 1 900000000000207008 276446009 119395005 0 116680003 900000000000011006 900000000000451002 +2536632023 20040731 1 900000000000207008 116155002 258550008 0 116680003 900000000000011006 900000000000451002 +2536632023 20050131 0 900000000000207008 116155002 258550008 0 116680003 900000000000011006 900000000000451002 +2536633029 20040731 1 900000000000207008 116155002 127469001 0 116680003 900000000000011006 900000000000451002 +2536633029 20080731 0 900000000000207008 116155002 127469001 0 116680003 900000000000011006 900000000000451002 +2536634024 20040731 1 900000000000207008 116156001 258550008 0 116680003 900000000000011006 900000000000451002 +2536634024 20050131 0 900000000000207008 116156001 258550008 0 116680003 900000000000011006 900000000000451002 +2536636021 20040731 1 900000000000207008 116157005 127462005 0 116680003 900000000000011006 900000000000451002 +2536637028 20040731 1 900000000000207008 116158000 258550008 0 116680003 900000000000011006 900000000000451002 +2536637028 20050131 0 900000000000207008 116158000 258550008 0 116680003 900000000000011006 900000000000451002 +2536638022 20040731 1 900000000000207008 116161004 309146009 0 116680003 900000000000011006 900000000000451002 +2536672025 20040731 1 900000000000207008 116213003 128155007 0 116680003 900000000000011006 900000000000451002 +2538923028 20040731 1 900000000000207008 302795002 119295008 0 116680003 900000000000011006 900000000000451002 +2538991024 20040731 1 900000000000207008 303248007 119297000 0 116680003 900000000000011006 900000000000451002 +2539341024 20040731 1 900000000000207008 309048008 123038009 0 116680003 900000000000011006 900000000000451002 +2539342028 20040731 1 900000000000207008 309049000 123038009 0 116680003 900000000000011006 900000000000451002 +2539343022 20040731 1 900000000000207008 309050000 123038009 0 116680003 900000000000011006 900000000000451002 +2539344027 20040731 1 900000000000207008 309051001 258442002 0 116680003 900000000000011006 900000000000451002 +2539345026 20040731 1 900000000000207008 309055005 258442002 0 116680003 900000000000011006 900000000000451002 +2539345026 20080731 0 900000000000207008 309055005 258442002 0 116680003 900000000000011006 900000000000451002 +2539347023 20040731 1 900000000000207008 309061008 127456000 0 116680003 900000000000011006 900000000000451002 +2539347023 20080731 0 900000000000207008 309061008 127456000 0 116680003 900000000000011006 900000000000451002 +2539348029 20040731 1 900000000000207008 309061008 122550002 0 116680003 900000000000011006 900000000000451002 +2539348029 20070731 0 900000000000207008 309061008 122550002 0 116680003 900000000000011006 900000000000451002 +2539350021 20040731 1 900000000000207008 309066003 258415003 0 116680003 900000000000011006 900000000000451002 +2539350021 20120131 0 900000000000207008 309066003 258415003 0 116680003 900000000000011006 900000000000451002 +2539350021 20210131 1 900000000000207008 309066003 258415003 0 116680003 900000000000011006 900000000000451002 +2539351020 20040731 1 900000000000207008 309067007 258419009 0 116680003 900000000000011006 900000000000451002 +2539352029 20040731 1 900000000000207008 309068002 309049000 0 116680003 900000000000011006 900000000000451002 +2539353023 20040731 1 900000000000207008 309070006 309072003 0 116680003 900000000000011006 900000000000451002 +2539353023 20080731 0 900000000000207008 309070006 309072003 0 116680003 900000000000011006 900000000000451002 +2539354028 20040731 1 900000000000207008 309071005 309072003 0 116680003 900000000000011006 900000000000451002 +2539354028 20120131 0 900000000000207008 309071005 309072003 0 116680003 900000000000011006 900000000000451002 +2539355027 20040731 1 900000000000207008 309073008 373826004 0 116680003 900000000000011006 900000000000451002 +2539355027 20080731 0 900000000000207008 309073008 373826004 0 116680003 900000000000011006 900000000000451002 +2539356026 20040731 1 900000000000207008 309074002 258415003 0 116680003 900000000000011006 900000000000451002 +2539357024 20040731 1 900000000000207008 309075001 309072003 0 116680003 900000000000011006 900000000000451002 +2539357024 20080731 0 900000000000207008 309075001 309072003 0 116680003 900000000000011006 900000000000451002 +2539358025 20040731 1 900000000000207008 309077009 373826004 0 116680003 900000000000011006 900000000000451002 +2539362020 20040731 1 900000000000207008 309104000 123038009 0 116680003 900000000000011006 900000000000451002 +2539363026 20040731 1 900000000000207008 309105004 258415003 0 116680003 900000000000011006 900000000000451002 +2539364021 20040731 1 900000000000207008 309128003 258442002 0 116680003 900000000000011006 900000000000451002 +2539364021 20070731 0 900000000000207008 309128003 258442002 0 116680003 900000000000011006 900000000000451002 +2539365022 20040731 1 900000000000207008 309129006 123038009 0 116680003 900000000000011006 900000000000451002 +2539365022 20080731 0 900000000000207008 309129006 123038009 0 116680003 900000000000011006 900000000000451002 +2539366023 20040731 1 900000000000207008 309130001 258415003 0 116680003 900000000000011006 900000000000451002 +2539367025 20040731 1 900000000000207008 309131002 309049000 0 116680003 900000000000011006 900000000000451002 +2539367025 20060731 0 900000000000207008 309131002 309049000 0 116680003 900000000000011006 900000000000451002 +2539368024 20040731 1 900000000000207008 309132009 258415003 0 116680003 900000000000011006 900000000000451002 +2539368024 20080731 0 900000000000207008 309132009 258415003 0 116680003 900000000000011006 900000000000451002 +2539369027 20040731 1 900000000000207008 309133004 373826004 0 116680003 900000000000011006 900000000000451002 +2539369027 20090131 0 900000000000207008 309133004 373826004 0 116680003 900000000000011006 900000000000451002 +2539370026 20040731 1 900000000000207008 309135006 309049000 0 116680003 900000000000011006 900000000000451002 +2539372023 20040731 1 900000000000207008 309137003 258415003 0 116680003 900000000000011006 900000000000451002 +2539372023 20080731 0 900000000000207008 309137003 258415003 0 116680003 900000000000011006 900000000000451002 +2539373029 20040731 1 900000000000207008 309138008 373826004 0 116680003 900000000000011006 900000000000451002 +2539373029 20090131 0 900000000000207008 309138008 373826004 0 116680003 900000000000011006 900000000000451002 +2539374024 20040731 1 900000000000207008 309140003 128154006 0 116680003 900000000000011006 900000000000451002 +2539374024 20140131 0 900000000000207008 309140003 128154006 0 116680003 900000000000011006 900000000000451002 +2539375020 20040731 1 900000000000207008 309142006 258415003 0 116680003 900000000000011006 900000000000451002 +2539375020 20080731 0 900000000000207008 309142006 258415003 0 116680003 900000000000011006 900000000000451002 +2539376021 20040731 1 900000000000207008 309143001 373826004 0 116680003 900000000000011006 900000000000451002 +2539376021 20090131 0 900000000000207008 309143001 373826004 0 116680003 900000000000011006 900000000000451002 +2539377028 20040731 1 900000000000207008 309145008 258442002 0 116680003 900000000000011006 900000000000451002 +2539377028 20110731 0 900000000000207008 309145008 258442002 0 116680003 900000000000011006 900000000000451002 +2539378022 20040731 1 900000000000207008 309146009 399680007 0 116680003 900000000000011006 900000000000451002 +2539379025 20040731 1 900000000000207008 309146009 122550002 0 116680003 900000000000011006 900000000000451002 +2539379025 20070731 0 900000000000207008 309146009 122550002 0 116680003 900000000000011006 900000000000451002 +2539380027 20040731 1 900000000000207008 309147000 119368000 0 116680003 900000000000011006 900000000000451002 +2539380027 20110731 0 900000000000207008 309147000 119368000 0 116680003 900000000000011006 900000000000451002 +2539381028 20040731 1 900000000000207008 309151003 258415003 0 116680003 900000000000011006 900000000000451002 +2539381028 20080731 0 900000000000207008 309151003 258415003 0 116680003 900000000000011006 900000000000451002 +2539382024 20040731 1 900000000000207008 309153000 373826004 0 116680003 900000000000011006 900000000000451002 +2539382024 20090131 0 900000000000207008 309153000 373826004 0 116680003 900000000000011006 900000000000451002 +2539383025 20040731 1 900000000000207008 309154006 119398007 0 116680003 900000000000011006 900000000000451002 +2539385021 20040731 1 900000000000207008 309164002 257261003 0 116680003 900000000000011006 900000000000451002 +2539386022 20040731 1 900000000000207008 309165001 123038009 0 116680003 900000000000011006 900000000000451002 +2539386022 20080731 0 900000000000207008 309165001 123038009 0 116680003 900000000000011006 900000000000451002 +2539387029 20040731 1 900000000000207008 309166000 257261003 0 116680003 900000000000011006 900000000000451002 +2539387029 20200731 0 900000000000207008 309166000 257261003 0 116680003 900000000000011006 900000000000451002 +2539388023 20040731 1 900000000000207008 309169007 258415003 0 116680003 900000000000011006 900000000000451002 +2539389026 20040731 1 900000000000207008 309171007 410580001 0 116680003 900000000000011006 900000000000451002 +2539390024 20040731 1 900000000000207008 309172000 258415003 0 116680003 900000000000011006 900000000000451002 +2539390024 20080731 0 900000000000207008 309172000 258415003 0 116680003 900000000000011006 900000000000451002 +2539391023 20040731 1 900000000000207008 309174004 258415003 0 116680003 900000000000011006 900000000000451002 +2539391023 20080731 0 900000000000207008 309174004 258415003 0 116680003 900000000000011006 900000000000451002 +2539392027 20040731 1 900000000000207008 309175003 373826004 0 116680003 900000000000011006 900000000000451002 +2539392027 20090131 0 900000000000207008 309175003 373826004 0 116680003 900000000000011006 900000000000451002 +2539393021 20040731 1 900000000000207008 309178001 258415003 0 116680003 900000000000011006 900000000000451002 +2539393021 20080731 0 900000000000207008 309178001 258415003 0 116680003 900000000000011006 900000000000451002 +2539394026 20040731 1 900000000000207008 309179009 309049000 0 116680003 900000000000011006 900000000000451002 +2539394026 20060731 0 900000000000207008 309179009 309049000 0 116680003 900000000000011006 900000000000451002 +2539395025 20040731 1 900000000000207008 309180007 258415003 0 116680003 900000000000011006 900000000000451002 +2539395025 20080731 0 900000000000207008 309180007 258415003 0 116680003 900000000000011006 900000000000451002 +2539396029 20040731 1 900000000000207008 309181006 258415003 0 116680003 900000000000011006 900000000000451002 +2539396029 20080731 0 900000000000207008 309181006 258415003 0 116680003 900000000000011006 900000000000451002 +2539397022 20040731 1 900000000000207008 309181006 119330002 0 116680003 900000000000011006 900000000000451002 +2539397022 20080731 0 900000000000207008 309181006 119330002 0 116680003 900000000000011006 900000000000451002 +2539398028 20040731 1 900000000000207008 309183009 373826004 0 116680003 900000000000011006 900000000000451002 +2539398028 20090131 0 900000000000207008 309183009 373826004 0 116680003 900000000000011006 900000000000451002 +2539399020 20040731 1 900000000000207008 309184003 258415003 0 116680003 900000000000011006 900000000000451002 +2539399020 20080731 0 900000000000207008 309184003 258415003 0 116680003 900000000000011006 900000000000451002 +2539400029 20040731 1 900000000000207008 309185002 363311008 0 116680003 900000000000011006 900000000000451002 +2539401025 20040731 1 900000000000207008 309188000 258415003 0 116680003 900000000000011006 900000000000451002 +2539401025 20080731 0 900000000000207008 309188000 258415003 0 116680003 900000000000011006 900000000000451002 +2539402021 20040731 1 900000000000207008 309189008 258415003 0 116680003 900000000000011006 900000000000451002 +2539402021 20080731 0 900000000000207008 309189008 258415003 0 116680003 900000000000011006 900000000000451002 +2539403027 20040731 1 900000000000207008 309190004 373826004 0 116680003 900000000000011006 900000000000451002 +2539403027 20090131 0 900000000000207008 309190004 373826004 0 116680003 900000000000011006 900000000000451002 +2539404022 20040731 1 900000000000207008 309191000 258415003 0 116680003 900000000000011006 900000000000451002 +2539404022 20080731 0 900000000000207008 309191000 258415003 0 116680003 900000000000011006 900000000000451002 +2539405023 20040731 1 900000000000207008 309192007 373826004 0 116680003 900000000000011006 900000000000451002 +2539406024 20040731 1 900000000000207008 309193002 258415003 0 116680003 900000000000011006 900000000000451002 +2539406024 20080731 0 900000000000207008 309193002 258415003 0 116680003 900000000000011006 900000000000451002 +2539406024 20240701 1 900000000000207008 309193002 258415003 0 116680003 900000000000011006 900000000000451002 +2539407026 20040731 1 900000000000207008 309199003 258442002 0 116680003 900000000000011006 900000000000451002 +2539407026 20070731 0 900000000000207008 309199003 258442002 0 116680003 900000000000011006 900000000000451002 +2539408020 20040731 1 900000000000207008 309203003 258415003 0 116680003 900000000000011006 900000000000451002 +2539408020 20080731 0 900000000000207008 309203003 258415003 0 116680003 900000000000011006 900000000000451002 +2539409028 20040731 1 900000000000207008 309204009 119383005 0 116680003 900000000000011006 900000000000451002 +2539410022 20040731 1 900000000000207008 309205005 373826004 0 116680003 900000000000011006 900000000000451002 +2539410022 20090131 0 900000000000207008 309205005 373826004 0 116680003 900000000000011006 900000000000451002 +2539411021 20040731 1 900000000000207008 309206006 258415003 0 116680003 900000000000011006 900000000000451002 +2539411021 20080731 0 900000000000207008 309206006 258415003 0 116680003 900000000000011006 900000000000451002 +2539412025 20040731 1 900000000000207008 309207002 373826004 0 116680003 900000000000011006 900000000000451002 +2539412025 20050731 0 900000000000207008 309207002 373826004 0 116680003 900000000000011006 900000000000451002 +2539413024 20040731 1 900000000000207008 309207002 258415003 0 116680003 900000000000011006 900000000000451002 +2539413024 20080731 0 900000000000207008 309207002 258415003 0 116680003 900000000000011006 900000000000451002 +2539414029 20040731 1 900000000000207008 309208007 258415003 0 116680003 900000000000011006 900000000000451002 +2539414029 20080731 0 900000000000207008 309208007 258415003 0 116680003 900000000000011006 900000000000451002 +2539415028 20040731 1 900000000000207008 309209004 258415003 0 116680003 900000000000011006 900000000000451002 +2539416027 20040731 1 900000000000207008 309211008 258415003 0 116680003 900000000000011006 900000000000451002 +2539416027 20080731 0 900000000000207008 309211008 258415003 0 116680003 900000000000011006 900000000000451002 +2539417020 20040731 1 900000000000207008 309213006 258415003 0 116680003 900000000000011006 900000000000451002 +2539418026 20040731 1 900000000000207008 309215004 119369008 0 116680003 900000000000011006 900000000000451002 +2539419023 20040731 1 900000000000207008 309216003 258415003 0 116680003 900000000000011006 900000000000451002 +2539419023 20080731 0 900000000000207008 309216003 258415003 0 116680003 900000000000011006 900000000000451002 +2539420028 20040731 1 900000000000207008 309217007 258415003 0 116680003 900000000000011006 900000000000451002 +2539420028 20080731 0 900000000000207008 309217007 258415003 0 116680003 900000000000011006 900000000000451002 +2539421029 20040731 1 900000000000207008 309218002 373826004 0 116680003 900000000000011006 900000000000451002 +2539421029 20080731 0 900000000000207008 309218002 373826004 0 116680003 900000000000011006 900000000000451002 +2539422020 20040731 1 900000000000207008 309219005 258415003 0 116680003 900000000000011006 900000000000451002 +2539422020 20080731 0 900000000000207008 309219005 258415003 0 116680003 900000000000011006 900000000000451002 +2539423026 20040731 1 900000000000207008 309220004 373826004 0 116680003 900000000000011006 900000000000451002 +2539423026 20090131 0 900000000000207008 309220004 373826004 0 116680003 900000000000011006 900000000000451002 +2539424021 20040731 1 900000000000207008 309221000 373826004 0 116680003 900000000000011006 900000000000451002 +2539424021 20080731 0 900000000000207008 309221000 373826004 0 116680003 900000000000011006 900000000000451002 +2539425022 20040731 1 900000000000207008 309223002 373826004 0 116680003 900000000000011006 900000000000451002 +2539425022 20090131 0 900000000000207008 309223002 373826004 0 116680003 900000000000011006 900000000000451002 +2539426023 20040731 1 900000000000207008 309225009 258415003 0 116680003 900000000000011006 900000000000451002 +2539426023 20080731 0 900000000000207008 309225009 258415003 0 116680003 900000000000011006 900000000000451002 +2539427025 20040731 1 900000000000207008 309226005 309049000 0 116680003 900000000000011006 900000000000451002 +2539427025 20060731 0 900000000000207008 309226005 309049000 0 116680003 900000000000011006 900000000000451002 +2539438025 20040731 1 900000000000207008 309262006 258415003 0 116680003 900000000000011006 900000000000451002 +2539438025 20080731 0 900000000000207008 309262006 258415003 0 116680003 900000000000011006 900000000000451002 +2539439022 20040731 1 900000000000207008 309263001 309049000 0 116680003 900000000000011006 900000000000451002 +2539439022 20060731 0 900000000000207008 309263001 309049000 0 116680003 900000000000011006 900000000000451002 +2539440024 20040731 1 900000000000207008 309265008 258415003 0 116680003 900000000000011006 900000000000451002 +2539440024 20080731 0 900000000000207008 309265008 258415003 0 116680003 900000000000011006 900000000000451002 +2539441023 20040731 1 900000000000207008 309266009 309049000 0 116680003 900000000000011006 900000000000451002 +2539441023 20060731 0 900000000000207008 309266009 309049000 0 116680003 900000000000011006 900000000000451002 +2539442027 20040731 1 900000000000207008 309267000 373826004 0 116680003 900000000000011006 900000000000451002 +2539442027 20090131 0 900000000000207008 309267000 373826004 0 116680003 900000000000011006 900000000000451002 +2539443021 20040731 1 900000000000207008 309268005 309051001 0 116680003 900000000000011006 900000000000451002 +2539443021 20080731 0 900000000000207008 309268005 309051001 0 116680003 900000000000011006 900000000000451002 +2539443021 20110731 1 900000000000207008 309268005 309051001 0 116680003 900000000000011006 900000000000451002 +2539444026 20040731 1 900000000000207008 309269002 258415003 0 116680003 900000000000011006 900000000000451002 +2539444026 20080731 0 900000000000207008 309269002 258415003 0 116680003 900000000000011006 900000000000451002 +2539445025 20040731 1 900000000000207008 309270001 373826004 0 116680003 900000000000011006 900000000000451002 +2539445025 20090131 0 900000000000207008 309270001 373826004 0 116680003 900000000000011006 900000000000451002 +2539446029 20040731 1 900000000000207008 309271002 258415003 0 116680003 900000000000011006 900000000000451002 +2539446029 20080731 0 900000000000207008 309271002 258415003 0 116680003 900000000000011006 900000000000451002 +2539447022 20040731 1 900000000000207008 309273004 258415003 0 116680003 900000000000011006 900000000000451002 +2539447022 20080731 0 900000000000207008 309273004 258415003 0 116680003 900000000000011006 900000000000451002 +2539448028 20040731 1 900000000000207008 309274005 258419009 0 116680003 900000000000011006 900000000000451002 +2539449020 20040731 1 900000000000207008 309275006 373826004 0 116680003 900000000000011006 900000000000451002 +2539449020 20090131 0 900000000000207008 309275006 373826004 0 116680003 900000000000011006 900000000000451002 +2539450020 20040731 1 900000000000207008 309280002 258415003 0 116680003 900000000000011006 900000000000451002 +2539450020 20080731 0 900000000000207008 309280002 258415003 0 116680003 900000000000011006 900000000000451002 +2539451024 20040731 1 900000000000207008 309283000 258415003 0 116680003 900000000000011006 900000000000451002 +2539451024 20080731 0 900000000000207008 309283000 258415003 0 116680003 900000000000011006 900000000000451002 +2539453022 20040731 1 900000000000207008 309285007 373826004 0 116680003 900000000000011006 900000000000451002 +2539453022 20080731 0 900000000000207008 309285007 373826004 0 116680003 900000000000011006 900000000000451002 +2539454027 20040731 1 900000000000207008 309286008 309049000 0 116680003 900000000000011006 900000000000451002 +2539454027 20060731 0 900000000000207008 309286008 309049000 0 116680003 900000000000011006 900000000000451002 +2539456025 20040731 1 900000000000207008 309288009 309049000 0 116680003 900000000000011006 900000000000451002 +2539456025 20060731 0 900000000000207008 309288009 309049000 0 116680003 900000000000011006 900000000000451002 +2539457023 20040731 1 900000000000207008 309288009 119396006 0 116680003 900000000000011006 900000000000451002 +2539457023 20080731 0 900000000000207008 309288009 119396006 0 116680003 900000000000011006 900000000000451002 +2539458029 20040731 1 900000000000207008 309289001 119396006 0 116680003 900000000000011006 900000000000451002 +2539458029 20080731 0 900000000000207008 309289001 119396006 0 116680003 900000000000011006 900000000000451002 +2539459021 20040731 1 900000000000207008 309289001 373826004 0 116680003 900000000000011006 900000000000451002 +2539459021 20080731 0 900000000000207008 309289001 373826004 0 116680003 900000000000011006 900000000000451002 +2539460027 20040731 1 900000000000207008 309290005 258415003 0 116680003 900000000000011006 900000000000451002 +2539460027 20080731 0 900000000000207008 309290005 258415003 0 116680003 900000000000011006 900000000000451002 +2539461028 20040731 1 900000000000207008 309291009 119368000 0 116680003 900000000000011006 900000000000451002 +2539462024 20040731 1 900000000000207008 309292002 128155007 0 116680003 900000000000011006 900000000000451002 +2539463025 20040731 1 900000000000207008 309293007 258415003 0 116680003 900000000000011006 900000000000451002 +2539463025 20080731 0 900000000000207008 309293007 258415003 0 116680003 900000000000011006 900000000000451002 +2539471026 20040731 1 900000000000207008 309478005 309049000 0 116680003 900000000000011006 900000000000451002 +2539471026 20080731 0 900000000000207008 309478005 309049000 0 116680003 900000000000011006 900000000000451002 +2539472022 20040731 1 900000000000207008 309480004 127462005 0 116680003 900000000000011006 900000000000451002 +2539472022 20080731 0 900000000000207008 309480004 127462005 0 116680003 900000000000011006 900000000000451002 +2539473028 20040731 1 900000000000207008 309485009 309072003 0 116680003 900000000000011006 900000000000451002 +2539473028 20090131 0 900000000000207008 309485009 309072003 0 116680003 900000000000011006 900000000000451002 +2539474023 20040731 1 900000000000207008 309489003 373826004 0 116680003 900000000000011006 900000000000451002 +2539474023 20090131 0 900000000000207008 309489003 373826004 0 116680003 900000000000011006 900000000000451002 +2539475024 20040731 1 900000000000207008 309490007 373826004 0 116680003 900000000000011006 900000000000451002 +2539475024 20090131 0 900000000000207008 309490007 373826004 0 116680003 900000000000011006 900000000000451002 +2539476020 20040731 1 900000000000207008 309493009 258415003 0 116680003 900000000000011006 900000000000451002 +2539476020 20080731 0 900000000000207008 309493009 258415003 0 116680003 900000000000011006 900000000000451002 +2539477027 20040731 1 900000000000207008 309495002 309072003 0 116680003 900000000000011006 900000000000451002 +2539477027 20080731 0 900000000000207008 309495002 309072003 0 116680003 900000000000011006 900000000000451002 +2539477027 20210131 1 900000000000207008 309495002 309072003 0 116680003 900000000000011006 900000000000451002 +2539478021 20040731 1 900000000000207008 309496001 373826004 0 116680003 900000000000011006 900000000000451002 +2539478021 20090131 0 900000000000207008 309496001 373826004 0 116680003 900000000000011006 900000000000451002 +2539479029 20040731 1 900000000000207008 309501000 373826004 0 116680003 900000000000011006 900000000000451002 +2539479029 20090131 0 900000000000207008 309501000 373826004 0 116680003 900000000000011006 900000000000451002 +2539480026 20040731 1 900000000000207008 309502007 258428005 0 116680003 900000000000011006 900000000000451002 +2539480026 20080731 0 900000000000207008 309502007 258428005 0 116680003 900000000000011006 900000000000451002 +2539481027 20040731 1 900000000000207008 309503002 309051001 0 116680003 900000000000011006 900000000000451002 +2539481027 20080731 0 900000000000207008 309503002 309051001 0 116680003 900000000000011006 900000000000451002 +2539482023 20040731 1 900000000000207008 309504008 309072003 0 116680003 900000000000011006 900000000000451002 +2539482023 20080731 0 900000000000207008 309504008 309072003 0 116680003 900000000000011006 900000000000451002 +2539483029 20040731 1 900000000000207008 309505009 373826004 0 116680003 900000000000011006 900000000000451002 +2539483029 20080731 0 900000000000207008 309505009 373826004 0 116680003 900000000000011006 900000000000451002 +2539484024 20040731 1 900000000000207008 309505009 309072003 0 116680003 900000000000011006 900000000000451002 +2539484024 20080731 0 900000000000207008 309505009 309072003 0 116680003 900000000000011006 900000000000451002 +2539485020 20040731 1 900000000000207008 309506005 309072003 0 116680003 900000000000011006 900000000000451002 +2539485020 20080731 0 900000000000207008 309506005 309072003 0 116680003 900000000000011006 900000000000451002 +2539486021 20040731 1 900000000000207008 309506005 373826004 0 116680003 900000000000011006 900000000000451002 +2539486021 20080731 0 900000000000207008 309506005 373826004 0 116680003 900000000000011006 900000000000451002 +2539487028 20040731 1 900000000000207008 309507001 258415003 0 116680003 900000000000011006 900000000000451002 +2539488022 20040731 1 900000000000207008 309508006 309049000 0 116680003 900000000000011006 900000000000451002 +2539489025 20040731 1 900000000000207008 309508006 122550002 0 116680003 900000000000011006 900000000000451002 +2539489025 20070731 0 900000000000207008 309508006 122550002 0 116680003 900000000000011006 900000000000451002 +2539494025 20040731 1 900000000000207008 309547008 373826004 0 116680003 900000000000011006 900000000000451002 +2539494025 20080731 0 900000000000207008 309547008 373826004 0 116680003 900000000000011006 900000000000451002 +2539506021 20040731 1 900000000000207008 119295008 123038009 0 116680003 900000000000011006 900000000000451002 +2539509025 20040731 1 900000000000207008 119297000 309051001 0 116680003 900000000000011006 900000000000451002 +2539509025 20090731 0 900000000000207008 119297000 309051001 0 116680003 900000000000011006 900000000000451002 +2539510024 20040731 1 900000000000207008 119299002 123038009 0 116680003 900000000000011006 900000000000451002 +2539512027 20040731 1 900000000000207008 119300005 309051001 0 116680003 900000000000011006 900000000000451002 +2539512027 20060131 0 900000000000207008 119300005 309051001 0 116680003 900000000000011006 900000000000451002 +2539513021 20040731 1 900000000000207008 119301009 123038009 0 116680003 900000000000011006 900000000000451002 +2539518028 20040731 1 900000000000207008 119302002 123038009 0 116680003 900000000000011006 900000000000451002 +2539518028 20150731 0 900000000000207008 119302002 123038009 0 116680003 900000000000011006 900000000000451002 +2539518028 20170731 1 900000000000207008 119302002 123038009 0 116680003 900000000000011006 900000000000451002 +2539523028 20040731 1 900000000000207008 119303007 123038009 0 116680003 900000000000011006 900000000000451002 +2539526020 20040731 1 900000000000207008 119307008 410580001 0 116680003 900000000000011006 900000000000451002 +2539527027 20040731 1 900000000000207008 119313004 119311002 0 116680003 900000000000011006 900000000000451002 +2539527027 20210131 0 900000000000207008 119313004 119311002 0 116680003 900000000000011006 900000000000451002 +2539529029 20040731 1 900000000000207008 119316007 258442002 0 116680003 900000000000011006 900000000000451002 +2539530023 20040731 1 900000000000207008 119317003 123038009 0 116680003 900000000000011006 900000000000451002 +2539531022 20040731 1 900000000000207008 119318008 258442002 0 116680003 900000000000011006 900000000000451002 +2539532026 20040731 1 900000000000207008 119319000 123038009 0 116680003 900000000000011006 900000000000451002 +2539533020 20040731 1 900000000000207008 119320006 123038009 0 116680003 900000000000011006 900000000000451002 +2539534025 20040731 1 900000000000207008 119321005 119320006 0 116680003 900000000000011006 900000000000451002 +2539535029 20040731 1 900000000000207008 119324002 123038009 0 116680003 900000000000011006 900000000000451002 +2539536028 20040731 1 900000000000207008 119328004 309051001 0 116680003 900000000000011006 900000000000451002 +2539536028 20080731 0 900000000000207008 119328004 309051001 0 116680003 900000000000011006 900000000000451002 +2539538027 20040731 1 900000000000207008 119331003 309104000 0 116680003 900000000000011006 900000000000451002 +2539539024 20040731 1 900000000000207008 119332005 309072003 0 116680003 900000000000011006 900000000000451002 +2539539024 20080731 0 900000000000207008 119332005 309072003 0 116680003 900000000000011006 900000000000451002 +2539540021 20040731 1 900000000000207008 119334006 410580001 0 116680003 900000000000011006 900000000000451002 +2539542029 20040731 1 900000000000207008 119336008 309050000 0 116680003 900000000000011006 900000000000451002 +2539543023 20040731 1 900000000000207008 119337004 309050000 0 116680003 900000000000011006 900000000000451002 +2539549022 20040731 1 900000000000207008 119340004 309051001 0 116680003 900000000000011006 900000000000451002 +2539549022 20110731 0 900000000000207008 119340004 309051001 0 116680003 900000000000011006 900000000000451002 +2539549022 20220630 1 900000000000207008 119340004 309051001 0 116680003 900000000000011006 900000000000451002 +2539550022 20040731 1 900000000000207008 119341000 309051001 0 116680003 900000000000011006 900000000000451002 +2539550022 20070731 0 900000000000207008 119341000 309051001 0 116680003 900000000000011006 900000000000451002 +2539550022 20080731 1 900000000000207008 119341000 309051001 0 116680003 900000000000011006 900000000000451002 +2539551021 20040731 1 900000000000207008 119342007 309051001 0 116680003 900000000000011006 900000000000451002 +2539552025 20040731 1 900000000000207008 119342007 363311008 0 116680003 900000000000011006 900000000000451002 +2539553024 20040731 1 900000000000207008 119343002 309051001 0 116680003 900000000000011006 900000000000451002 +2539553024 20070731 0 900000000000207008 119343002 309051001 0 116680003 900000000000011006 900000000000451002 +2539554029 20040731 1 900000000000207008 119343002 127469001 0 116680003 900000000000011006 900000000000451002 +2539555028 20040731 1 900000000000207008 119346005 119320006 0 116680003 900000000000011006 900000000000451002 +2539556027 20040731 1 900000000000207008 119347001 309051001 0 116680003 900000000000011006 900000000000451002 +2539558026 20040731 1 900000000000207008 119350003 123038009 0 116680003 900000000000011006 900000000000451002 +2539558026 20050131 0 900000000000207008 119350003 123038009 0 116680003 900000000000011006 900000000000451002 +2539559023 20040731 1 900000000000207008 119351004 119297000 0 116680003 900000000000011006 900000000000451002 +2539559023 20090731 0 900000000000207008 119351004 119297000 0 116680003 900000000000011006 900000000000451002 +2539575021 20040731 1 900000000000207008 119358005 123038009 0 116680003 900000000000011006 900000000000451002 +2539576022 20040731 1 900000000000207008 119359002 119330002 0 116680003 900000000000011006 900000000000451002 +2539576022 20060731 0 900000000000207008 119359002 119330002 0 116680003 900000000000011006 900000000000451002 +2539585022 20040731 1 900000000000207008 119365002 309049000 0 116680003 900000000000011006 900000000000451002 +2539586023 20040731 1 900000000000207008 119367005 309049000 0 116680003 900000000000011006 900000000000451002 +2539589027 20040731 1 900000000000207008 119368000 309049000 0 116680003 900000000000011006 900000000000451002 +2539589027 20060731 0 900000000000207008 119368000 309049000 0 116680003 900000000000011006 900000000000451002 +2539593022 20040731 1 900000000000207008 119369008 309049000 0 116680003 900000000000011006 900000000000451002 +2539594027 20040731 1 900000000000207008 119370009 309049000 0 116680003 900000000000011006 900000000000451002 +2539595026 20040731 1 900000000000207008 119371008 309049000 0 116680003 900000000000011006 900000000000451002 +2539595026 20200131 0 900000000000207008 119371008 309049000 0 116680003 900000000000011006 900000000000451002 +2539597023 20040731 1 900000000000207008 119373006 309051001 0 116680003 900000000000011006 900000000000451002 +2539602027 20040731 1 900000000000207008 119383005 363311008 0 116680003 900000000000011006 900000000000451002 +2539603021 20040731 1 900000000000207008 119386002 127471001 0 116680003 900000000000011006 900000000000451002 +2539603021 20080731 0 900000000000207008 119386002 127471001 0 116680003 900000000000011006 900000000000451002 +2539630027 20040731 1 900000000000207008 119389009 258603007 0 116680003 900000000000011006 900000000000451002 +2539630027 20050131 0 900000000000207008 119389009 258603007 0 116680003 900000000000011006 900000000000451002 +2539631028 20040731 1 900000000000207008 119389009 363311008 0 116680003 900000000000011006 900000000000451002 +2539631028 20170731 0 900000000000207008 119389009 363311008 0 116680003 900000000000011006 900000000000451002 +2539657025 20040731 1 900000000000207008 119392008 258550008 0 116680003 900000000000011006 900000000000451002 +2539657025 20050131 0 900000000000207008 119392008 258550008 0 116680003 900000000000011006 900000000000451002 +2539658024 20040731 1 900000000000207008 119394009 309053003 0 116680003 900000000000011006 900000000000451002 +2539658024 20130731 0 900000000000207008 119394009 309053003 0 116680003 900000000000011006 900000000000451002 +2539658024 20210731 1 900000000000207008 119394009 309053003 0 116680003 900000000000011006 900000000000451002 +2539658024 20231201 0 900000000000207008 119394009 309053003 0 116680003 900000000000011006 900000000000451002 +2539659027 20040731 1 900000000000207008 119395005 309053003 0 116680003 900000000000011006 900000000000451002 +2539659027 20080731 0 900000000000207008 119395005 309053003 0 116680003 900000000000011006 900000000000451002 +2539660021 20040731 1 900000000000207008 119397002 309052008 0 116680003 900000000000011006 900000000000451002 +2539661020 20040731 1 900000000000207008 119398007 399436000 0 116680003 900000000000011006 900000000000451002 +2539665027 20040731 1 900000000000207008 119401005 309072003 0 116680003 900000000000011006 900000000000451002 +2539665027 20080731 0 900000000000207008 119401005 309072003 0 116680003 900000000000011006 900000000000451002 +2539665027 20200131 1 900000000000207008 119401005 309072003 0 116680003 900000000000011006 900000000000451002 +2539665027 20210131 0 900000000000207008 119401005 309072003 0 116680003 900000000000011006 900000000000451002 +2539668025 20040731 1 900000000000207008 119403008 309053003 0 116680003 900000000000011006 900000000000451002 +2539668025 20080731 0 900000000000207008 119403008 309053003 0 116680003 900000000000011006 900000000000451002 +2539669022 20040731 1 900000000000207008 119403008 258428005 0 116680003 900000000000011006 900000000000451002 +2539669022 20080731 0 900000000000207008 119403008 258428005 0 116680003 900000000000011006 900000000000451002 +2541332026 20040731 1 900000000000207008 122550002 258415003 0 116680003 900000000000011006 900000000000451002 +2541337021 20040731 1 900000000000207008 122557004 309502007 0 116680003 900000000000011006 900000000000451002 +2541337021 20110731 0 900000000000207008 122557004 309502007 0 116680003 900000000000011006 900000000000451002 +2541338027 20040731 1 900000000000207008 122561005 119299002 0 116680003 900000000000011006 900000000000451002 +2541339024 20040731 1 900000000000207008 122563008 119299002 0 116680003 900000000000011006 900000000000451002 +2541339024 20080731 0 900000000000207008 122563008 119299002 0 116680003 900000000000011006 900000000000451002 +2541342029 20040731 1 900000000000207008 122565001 119311002 0 116680003 900000000000011006 900000000000451002 +2541342029 20110131 0 900000000000207008 122565001 119311002 0 116680003 900000000000011006 900000000000451002 +2541343023 20040731 1 900000000000207008 122566000 119365002 0 116680003 900000000000011006 900000000000451002 +2541353024 20040731 1 900000000000207008 122568004 119365002 0 116680003 900000000000011006 900000000000451002 +2541353024 20080731 0 900000000000207008 122568004 119365002 0 116680003 900000000000011006 900000000000451002 +2541357020 20040731 1 900000000000207008 122569007 309051001 0 116680003 900000000000011006 900000000000451002 +2541358026 20040731 1 900000000000207008 122571007 309051001 0 116680003 900000000000011006 900000000000451002 +2541360029 20040731 1 900000000000207008 122572000 122573005 0 116680003 900000000000011006 900000000000451002 +2541360029 20080731 0 900000000000207008 122572000 122573005 0 116680003 900000000000011006 900000000000451002 +2541361025 20040731 1 900000000000207008 122573005 309051001 0 116680003 900000000000011006 900000000000451002 +2541361025 20070731 0 900000000000207008 122573005 309051001 0 116680003 900000000000011006 900000000000451002 +2541362021 20040731 1 900000000000207008 122574004 309051001 0 116680003 900000000000011006 900000000000451002 +2541362021 20070731 0 900000000000207008 122574004 309051001 0 116680003 900000000000011006 900000000000451002 +2541365023 20040731 1 900000000000207008 122576002 258483004 0 116680003 900000000000011006 900000000000451002 +2541375021 20040731 1 900000000000207008 122578001 309051001 0 116680003 900000000000011006 900000000000451002 +2541384021 20040731 1 900000000000207008 122580007 309050000 0 116680003 900000000000011006 900000000000451002 +2541384021 20080731 0 900000000000207008 122580007 309050000 0 116680003 900000000000011006 900000000000451002 +2541385022 20040731 1 900000000000207008 122580007 309165001 0 116680003 900000000000011006 900000000000451002 +2541385022 20110131 0 900000000000207008 122580007 309165001 0 116680003 900000000000011006 900000000000451002 +2541395026 20040731 1 900000000000207008 122583009 122561005 0 116680003 900000000000011006 900000000000451002 +2541402022 20040731 1 900000000000207008 122584003 119299002 0 116680003 900000000000011006 900000000000451002 +2541411022 20040731 1 900000000000207008 122588000 119299002 0 116680003 900000000000011006 900000000000451002 +2541411022 20110131 0 900000000000207008 122588000 119299002 0 116680003 900000000000011006 900000000000451002 +2541415029 20040731 1 900000000000207008 122590004 119299002 0 116680003 900000000000011006 900000000000451002 +2541415029 20110131 0 900000000000207008 122590004 119299002 0 116680003 900000000000011006 900000000000451002 +2541420029 20040731 1 900000000000207008 122591000 119297000 0 116680003 900000000000011006 900000000000451002 +2541420029 20090131 0 900000000000207008 122591000 119297000 0 116680003 900000000000011006 900000000000451002 +2541421025 20040731 1 900000000000207008 122592007 309051001 0 116680003 900000000000011006 900000000000451002 +2541421025 20060131 0 900000000000207008 122592007 309051001 0 116680003 900000000000011006 900000000000451002 +2541421025 20080731 1 900000000000207008 122592007 309051001 0 116680003 900000000000011006 900000000000451002 +2541421025 20090131 0 900000000000207008 122592007 309051001 0 116680003 900000000000011006 900000000000451002 +2541421025 20090731 1 900000000000207008 122592007 309051001 0 116680003 900000000000011006 900000000000451002 +2541421025 20200131 0 900000000000207008 122592007 309051001 0 116680003 900000000000011006 900000000000451002 +2541425023 20040731 1 900000000000207008 122594008 309051001 0 116680003 900000000000011006 900000000000451002 +2541427026 20040731 1 900000000000207008 122596005 309049000 0 116680003 900000000000011006 900000000000451002 +2541427026 20090731 0 900000000000207008 122596005 309049000 0 116680003 900000000000011006 900000000000451002 +2541452029 20040731 1 900000000000207008 122602008 258415003 0 116680003 900000000000011006 900000000000451002 +2541452029 20080731 0 900000000000207008 122602008 258415003 0 116680003 900000000000011006 900000000000451002 +2541452029 20240701 1 900000000000207008 122602008 258415003 0 116680003 900000000000011006 900000000000451002 +2541463026 20040731 1 900000000000207008 122610009 258415003 0 116680003 900000000000011006 900000000000451002 +2541463026 20080731 0 900000000000207008 122610009 258415003 0 116680003 900000000000011006 900000000000451002 +2541467025 20040731 1 900000000000207008 122614000 122550002 0 116680003 900000000000011006 900000000000451002 +2541467025 20070731 0 900000000000207008 122614000 122550002 0 116680003 900000000000011006 900000000000451002 +2541467025 20080731 1 900000000000207008 122614000 122550002 0 116680003 900000000000011006 900000000000451002 +2541473029 20040731 1 900000000000207008 122618002 122550002 0 116680003 900000000000011006 900000000000451002 +2541473029 20070731 0 900000000000207008 122618002 122550002 0 116680003 900000000000011006 900000000000451002 +2541473029 20080731 1 900000000000207008 122618002 122550002 0 116680003 900000000000011006 900000000000451002 +2541474024 20040731 1 900000000000207008 122619005 119295008 0 116680003 900000000000011006 900000000000451002 +2541474024 20070731 0 900000000000207008 122619005 119295008 0 116680003 900000000000011006 900000000000451002 +2541474024 20080731 1 900000000000207008 122619005 119295008 0 116680003 900000000000011006 900000000000451002 +2541493021 20040731 1 900000000000207008 122623002 258415003 0 116680003 900000000000011006 900000000000451002 +2541493021 20080731 0 900000000000207008 122623002 258415003 0 116680003 900000000000011006 900000000000451002 +2541498028 20040731 1 900000000000207008 122624008 309049000 0 116680003 900000000000011006 900000000000451002 +2541508023 20040731 1 900000000000207008 122626005 122550002 0 116680003 900000000000011006 900000000000451002 +2541508023 20070731 0 900000000000207008 122626005 122550002 0 116680003 900000000000011006 900000000000451002 +2541529025 20040731 1 900000000000207008 122630008 373826004 0 116680003 900000000000011006 900000000000451002 +2541529025 20090131 0 900000000000207008 122630008 373826004 0 116680003 900000000000011006 900000000000451002 +2541535025 20040731 1 900000000000207008 122631007 373826004 0 116680003 900000000000011006 900000000000451002 +2541535025 20080731 0 900000000000207008 122631007 373826004 0 116680003 900000000000011006 900000000000451002 +2541576023 20040731 1 900000000000207008 122639009 373826004 0 116680003 900000000000011006 900000000000451002 +2541576023 20080731 0 900000000000207008 122639009 373826004 0 116680003 900000000000011006 900000000000451002 +2541583027 20040731 1 900000000000207008 122640006 373826004 0 116680003 900000000000011006 900000000000451002 +2541583027 20080731 0 900000000000207008 122640006 373826004 0 116680003 900000000000011006 900000000000451002 +2541588020 20040731 1 900000000000207008 122641005 373826004 0 116680003 900000000000011006 900000000000451002 +2541588020 20080731 0 900000000000207008 122641005 373826004 0 116680003 900000000000011006 900000000000451002 +2541593023 20040731 1 900000000000207008 122642003 373826004 0 116680003 900000000000011006 900000000000451002 +2541593023 20090131 0 900000000000207008 122642003 373826004 0 116680003 900000000000011006 900000000000451002 +2541639027 20040731 1 900000000000207008 122658000 373826004 0 116680003 900000000000011006 900000000000451002 +2541639027 20080731 0 900000000000207008 122658000 373826004 0 116680003 900000000000011006 900000000000451002 +2541655023 20040731 1 900000000000207008 122668005 373826004 0 116680003 900000000000011006 900000000000451002 +2541655023 20090131 0 900000000000207008 122668005 373826004 0 116680003 900000000000011006 900000000000451002 +2541667020 20040731 1 900000000000207008 122671002 122550002 0 116680003 900000000000011006 900000000000451002 +2541667020 20070731 0 900000000000207008 122671002 122550002 0 116680003 900000000000011006 900000000000451002 +2541667020 20080731 1 900000000000207008 122671002 122550002 0 116680003 900000000000011006 900000000000451002 +2541667020 20090731 0 900000000000207008 122671002 122550002 0 116680003 900000000000011006 900000000000451002 +2541673021 20040731 1 900000000000207008 122673004 373826004 0 116680003 900000000000011006 900000000000451002 +2541673021 20080731 0 900000000000207008 122673004 373826004 0 116680003 900000000000011006 900000000000451002 +2541688027 20040731 1 900000000000207008 122688009 373826004 0 116680003 900000000000011006 900000000000451002 +2541688027 20080731 0 900000000000207008 122688009 373826004 0 116680003 900000000000011006 900000000000451002 +2541694024 20040731 1 900000000000207008 122693007 373826004 0 116680003 900000000000011006 900000000000451002 +2541694024 20090131 0 900000000000207008 122693007 373826004 0 116680003 900000000000011006 900000000000451002 +2541710022 20040731 1 900000000000207008 122700007 373826004 0 116680003 900000000000011006 900000000000451002 +2541710022 20080731 0 900000000000207008 122700007 373826004 0 116680003 900000000000011006 900000000000451002 +2541733023 20040731 1 900000000000207008 122703009 258419009 0 116680003 900000000000011006 900000000000451002 +2541739022 20040731 1 900000000000207008 122704003 258415003 0 116680003 900000000000011006 900000000000451002 +2541739022 20080731 0 900000000000207008 122704003 258415003 0 116680003 900000000000011006 900000000000451002 +2541745025 20040731 1 900000000000207008 122705002 373826004 0 116680003 900000000000011006 900000000000451002 +2541745025 20080731 0 900000000000207008 122705002 373826004 0 116680003 900000000000011006 900000000000451002 +2541755026 20040731 1 900000000000207008 122708000 258415003 0 116680003 900000000000011006 900000000000451002 +2541755026 20080731 0 900000000000207008 122708000 258415003 0 116680003 900000000000011006 900000000000451002 +2541763025 20040731 1 900000000000207008 122710003 373826004 0 116680003 900000000000011006 900000000000451002 +2541763025 20090131 0 900000000000207008 122710003 373826004 0 116680003 900000000000011006 900000000000451002 +2541764020 20040731 1 900000000000207008 122711004 309049000 0 116680003 900000000000011006 900000000000451002 +2541764020 20060731 0 900000000000207008 122711004 309049000 0 116680003 900000000000011006 900000000000451002 +2541765021 20040731 1 900000000000207008 122712006 373826004 0 116680003 900000000000011006 900000000000451002 +2541765021 20110731 0 900000000000207008 122712006 373826004 0 116680003 900000000000011006 900000000000451002 +2541786021 20040731 1 900000000000207008 122719002 373826004 0 116680003 900000000000011006 900000000000451002 +2541786021 20090131 0 900000000000207008 122719002 373826004 0 116680003 900000000000011006 900000000000451002 +2541787028 20040731 1 900000000000207008 122720008 373826004 0 116680003 900000000000011006 900000000000451002 +2541787028 20090131 0 900000000000207008 122720008 373826004 0 116680003 900000000000011006 900000000000451002 +2541788022 20040731 1 900000000000207008 122722000 373826004 0 116680003 900000000000011006 900000000000451002 +2541788022 20090131 0 900000000000207008 122722000 373826004 0 116680003 900000000000011006 900000000000451002 +2541789025 20040731 1 900000000000207008 122723005 373826004 0 116680003 900000000000011006 900000000000451002 +2541789025 20090131 0 900000000000207008 122723005 373826004 0 116680003 900000000000011006 900000000000451002 +2541808027 20040731 1 900000000000207008 122732007 373826004 0 116680003 900000000000011006 900000000000451002 +2541808027 20080731 0 900000000000207008 122732007 373826004 0 116680003 900000000000011006 900000000000451002 +2541812022 20040731 1 900000000000207008 122735009 373826004 0 116680003 900000000000011006 900000000000451002 +2541812022 20080731 0 900000000000207008 122735009 373826004 0 116680003 900000000000011006 900000000000451002 +2541819029 20040731 1 900000000000207008 122736005 119403008 0 116680003 900000000000011006 900000000000451002 +2542251021 20040731 1 900000000000207008 409821005 122575003 0 116680003 900000000000011006 900000000000451002 +2542314029 20040731 1 900000000000207008 122877000 119295008 0 116680003 900000000000011006 900000000000451002 +2542314029 20100731 0 900000000000207008 122877000 119295008 0 116680003 900000000000011006 900000000000451002 +2542315028 20040731 1 900000000000207008 122877000 410581002 0 116680003 900000000000011006 900000000000451002 +2542315028 20080731 0 900000000000207008 122877000 410581002 0 116680003 900000000000011006 900000000000451002 +2542320028 20040731 1 900000000000207008 409876003 309185002 0 116680003 900000000000011006 900000000000451002 +2542320028 20090731 0 900000000000207008 409876003 309185002 0 116680003 900000000000011006 900000000000451002 +2542339022 20040731 1 900000000000207008 122879002 309050000 0 116680003 900000000000011006 900000000000451002 +2543476027 20040731 1 900000000000207008 127459007 309072003 0 116680003 900000000000011006 900000000000451002 +2543476027 20060131 0 900000000000207008 127459007 309072003 0 116680003 900000000000011006 900000000000451002 +2543477020 20040731 1 900000000000207008 127461003 373826004 0 116680003 900000000000011006 900000000000451002 +2543477020 20090131 0 900000000000207008 127461003 373826004 0 116680003 900000000000011006 900000000000451002 +2543478026 20040731 1 900000000000207008 127465007 258550008 0 116680003 900000000000011006 900000000000451002 +2543478026 20050131 0 900000000000207008 127465007 258550008 0 116680003 900000000000011006 900000000000451002 +2543479023 20040731 1 900000000000207008 127466008 119376003 0 116680003 900000000000011006 900000000000451002 +2543479023 20080731 0 900000000000207008 127466008 119376003 0 116680003 900000000000011006 900000000000451002 +2543480021 20040731 1 900000000000207008 127467004 258550008 0 116680003 900000000000011006 900000000000451002 +2543480021 20050131 0 900000000000207008 127467004 258550008 0 116680003 900000000000011006 900000000000451002 +2543481020 20040731 1 900000000000207008 127469001 363311008 0 116680003 900000000000011006 900000000000451002 +2543481020 20080731 0 900000000000207008 127469001 363311008 0 116680003 900000000000011006 900000000000451002 +2543481020 20170131 1 900000000000207008 127469001 363311008 0 116680003 900000000000011006 900000000000451002 +2543482029 20040731 1 900000000000207008 127470000 119376003 0 116680003 900000000000011006 900000000000451002 +2543482029 20170131 0 900000000000207008 127470000 119376003 0 116680003 900000000000011006 900000000000451002 +2543483023 20040731 1 900000000000207008 127473003 258570002 0 116680003 900000000000011006 900000000000451002 +2543483023 20080731 0 900000000000207008 127473003 258570002 0 116680003 900000000000011006 900000000000451002 +2543484028 20040731 1 900000000000207008 127476006 309053003 0 116680003 900000000000011006 900000000000451002 +2543484028 20130731 0 900000000000207008 127476006 309053003 0 116680003 900000000000011006 900000000000451002 +2543484028 20210731 1 900000000000207008 127476006 309053003 0 116680003 900000000000011006 900000000000451002 +2543484028 20231201 0 900000000000207008 127476006 309053003 0 116680003 900000000000011006 900000000000451002 +2543536024 20040731 1 900000000000207008 128154006 309052008 0 116680003 900000000000011006 900000000000451002 +2543538020 20040731 1 900000000000207008 128155007 309053003 0 116680003 900000000000011006 900000000000451002 +2543538020 20130731 0 900000000000207008 128155007 309053003 0 116680003 900000000000011006 900000000000451002 +2543538020 20210731 1 900000000000207008 128155007 309053003 0 116680003 900000000000011006 900000000000451002 +2543538020 20231201 0 900000000000207008 128155007 309053003 0 116680003 900000000000011006 900000000000451002 +2543539028 20040731 1 900000000000207008 128171007 309072003 0 116680003 900000000000011006 900000000000451002 +2543539028 20080731 0 900000000000207008 128171007 309072003 0 116680003 900000000000011006 900000000000451002 +2546927022 20040731 1 900000000000207008 40511003 258442002 0 116680003 900000000000011006 900000000000451002 +2553569028 20040731 1 900000000000207008 363311008 123038009 0 116680003 900000000000011006 900000000000451002 +2555065029 20040731 1 900000000000207008 168145009 309051001 0 116680003 900000000000011006 900000000000451002 +2562177029 20040731 1 900000000000207008 369611008 258415003 0 116680003 900000000000011006 900000000000451002 +2562177029 20080731 0 900000000000207008 369611008 258415003 0 116680003 900000000000011006 900000000000451002 +2562180028 20040731 1 900000000000207008 369616003 258415003 0 116680003 900000000000011006 900000000000451002 +2562180028 20080731 0 900000000000207008 369616003 258415003 0 116680003 900000000000011006 900000000000451002 +2562181029 20040731 1 900000000000207008 369617007 373826004 0 116680003 900000000000011006 900000000000451002 +2562181029 20080731 0 900000000000207008 369617007 373826004 0 116680003 900000000000011006 900000000000451002 +2562182020 20040731 1 900000000000207008 369618002 258415003 0 116680003 900000000000011006 900000000000451002 +2562182020 20080731 0 900000000000207008 369618002 258415003 0 116680003 900000000000011006 900000000000451002 +2563255027 20040731 1 900000000000207008 371782000 119330002 0 116680003 900000000000011006 900000000000451002 +2563255027 20080731 0 900000000000207008 371782000 119330002 0 116680003 900000000000011006 900000000000451002 +2563778023 20040731 1 900000000000207008 373101006 258415003 0 116680003 900000000000011006 900000000000451002 +2563778023 20080731 0 900000000000207008 373101006 258415003 0 116680003 900000000000011006 900000000000451002 +2563779026 20040731 1 900000000000207008 373102004 258415003 0 116680003 900000000000011006 900000000000451002 +2563779026 20080731 0 900000000000207008 373102004 258415003 0 116680003 900000000000011006 900000000000451002 +2563780028 20040731 1 900000000000207008 373102004 127454002 0 116680003 900000000000011006 900000000000451002 +2563780028 20080731 0 900000000000207008 373102004 127454002 0 116680003 900000000000011006 900000000000451002 +2563781029 20040731 1 900000000000207008 373103009 258415003 0 116680003 900000000000011006 900000000000451002 +2563781029 20080731 0 900000000000207008 373103009 258415003 0 116680003 900000000000011006 900000000000451002 +2564147023 20040731 1 900000000000207008 373826004 123038009 0 116680003 900000000000011006 900000000000451002 +2564147023 20100731 0 900000000000207008 373826004 123038009 0 116680003 900000000000011006 900000000000451002 +2564817024 20040731 1 900000000000207008 384746001 373826004 0 116680003 900000000000011006 900000000000451002 +2564817024 20090131 0 900000000000207008 384746001 373826004 0 116680003 900000000000011006 900000000000451002 +2564874022 20040731 1 900000000000207008 396273004 373826004 0 116680003 900000000000011006 900000000000451002 +2564874022 20080731 0 900000000000207008 396273004 373826004 0 116680003 900000000000011006 900000000000451002 +2564879028 20040731 1 900000000000207008 396355000 373826004 0 116680003 900000000000011006 900000000000451002 +2564879028 20080731 0 900000000000207008 396355000 373826004 0 116680003 900000000000011006 900000000000451002 +2564880025 20040731 1 900000000000207008 396356004 373826004 0 116680003 900000000000011006 900000000000451002 +2564880025 20090131 0 900000000000207008 396356004 373826004 0 116680003 900000000000011006 900000000000451002 +2564895028 20040731 1 900000000000207008 396476009 373826004 0 116680003 900000000000011006 900000000000451002 +2564895028 20090131 0 900000000000207008 396476009 373826004 0 116680003 900000000000011006 900000000000451002 +2564896027 20040731 1 900000000000207008 396477000 373826004 0 116680003 900000000000011006 900000000000451002 +2564896027 20080731 0 900000000000207008 396477000 373826004 0 116680003 900000000000011006 900000000000451002 +2564897020 20040731 1 900000000000207008 396478005 373826004 0 116680003 900000000000011006 900000000000451002 +2564897020 20090131 0 900000000000207008 396478005 373826004 0 116680003 900000000000011006 900000000000451002 +2564898026 20040731 1 900000000000207008 396479002 373826004 0 116680003 900000000000011006 900000000000451002 +2564898026 20090131 0 900000000000207008 396479002 373826004 0 116680003 900000000000011006 900000000000451002 +2564899023 20040731 1 900000000000207008 396480004 373826004 0 116680003 900000000000011006 900000000000451002 +2564899023 20090131 0 900000000000207008 396480004 373826004 0 116680003 900000000000011006 900000000000451002 +2564900029 20040731 1 900000000000207008 396483002 373826004 0 116680003 900000000000011006 900000000000451002 +2564900029 20080731 0 900000000000207008 396483002 373826004 0 116680003 900000000000011006 900000000000451002 +2564905023 20040731 1 900000000000207008 396897003 396896007 0 116680003 900000000000011006 900000000000451002 +2564906024 20040731 1 900000000000207008 396897003 373826004 0 116680003 900000000000011006 900000000000451002 +2564907026 20040731 1 900000000000207008 396899000 122550002 0 116680003 900000000000011006 900000000000451002 +2564907026 20070731 0 900000000000207008 396899000 122550002 0 116680003 900000000000011006 900000000000451002 +2564909028 20040731 1 900000000000207008 396928004 373826004 0 116680003 900000000000011006 900000000000451002 +2564909028 20070131 0 900000000000207008 396928004 373826004 0 116680003 900000000000011006 900000000000451002 +2564910022 20040731 1 900000000000207008 396997002 119295008 0 116680003 900000000000011006 900000000000451002 +2564918026 20040731 1 900000000000207008 397053005 373826004 0 116680003 900000000000011006 900000000000451002 +2564918026 20080731 0 900000000000207008 397053005 373826004 0 116680003 900000000000011006 900000000000451002 +2564919023 20040731 1 900000000000207008 397055003 373826004 0 116680003 900000000000011006 900000000000451002 +2564919023 20080731 0 900000000000207008 397055003 373826004 0 116680003 900000000000011006 900000000000451002 +2564920028 20040731 1 900000000000207008 397056002 373826004 0 116680003 900000000000011006 900000000000451002 +2564920028 20080731 0 900000000000207008 397056002 373826004 0 116680003 900000000000011006 900000000000451002 +2564922020 20040731 1 900000000000207008 397077004 373826004 0 116680003 900000000000011006 900000000000451002 +2564922020 20090131 0 900000000000207008 397077004 373826004 0 116680003 900000000000011006 900000000000451002 +2564923026 20040731 1 900000000000207008 397078009 373826004 0 116680003 900000000000011006 900000000000451002 +2564923026 20090131 0 900000000000207008 397078009 373826004 0 116680003 900000000000011006 900000000000451002 +2564924021 20040731 1 900000000000207008 397130007 373826004 0 116680003 900000000000011006 900000000000451002 +2564924021 20090131 0 900000000000207008 397130007 373826004 0 116680003 900000000000011006 900000000000451002 +2564925022 20040731 1 900000000000207008 397131006 373826004 0 116680003 900000000000011006 900000000000451002 +2564925022 20090131 0 900000000000207008 397131006 373826004 0 116680003 900000000000011006 900000000000451002 +2564926023 20040731 1 900000000000207008 397132004 373826004 0 116680003 900000000000011006 900000000000451002 +2564926023 20090131 0 900000000000207008 397132004 373826004 0 116680003 900000000000011006 900000000000451002 +2564927025 20040731 1 900000000000207008 397133009 373826004 0 116680003 900000000000011006 900000000000451002 +2564927025 20090131 0 900000000000207008 397133009 373826004 0 116680003 900000000000011006 900000000000451002 +2564928024 20040731 1 900000000000207008 397134003 373826004 0 116680003 900000000000011006 900000000000451002 +2564928024 20080731 0 900000000000207008 397134003 373826004 0 116680003 900000000000011006 900000000000451002 +2564929027 20040731 1 900000000000207008 397136001 373826004 0 116680003 900000000000011006 900000000000451002 +2564929027 20080731 0 900000000000207008 397136001 373826004 0 116680003 900000000000011006 900000000000451002 +2564939022 20040731 1 900000000000207008 397232008 373826004 0 116680003 900000000000011006 900000000000451002 +2564939022 20080731 0 900000000000207008 397232008 373826004 0 116680003 900000000000011006 900000000000451002 +2564940024 20040731 1 900000000000207008 397233003 127471001 0 116680003 900000000000011006 900000000000451002 +2564940024 20080731 0 900000000000207008 397233003 127471001 0 116680003 900000000000011006 900000000000451002 +2564944026 20040731 1 900000000000207008 397333000 373826004 0 116680003 900000000000011006 900000000000451002 +2564944026 20090131 0 900000000000207008 397333000 373826004 0 116680003 900000000000011006 900000000000451002 +2564945025 20040731 1 900000000000207008 397334006 373826004 0 116680003 900000000000011006 900000000000451002 +2564945025 20090131 0 900000000000207008 397334006 373826004 0 116680003 900000000000011006 900000000000451002 +2564948028 20040731 1 900000000000207008 397436009 373826004 0 116680003 900000000000011006 900000000000451002 +2564948028 20090131 0 900000000000207008 397436009 373826004 0 116680003 900000000000011006 900000000000451002 +2564949020 20040731 1 900000000000207008 397455009 258415003 0 116680003 900000000000011006 900000000000451002 +2564950020 20040731 1 900000000000207008 397456005 258415003 0 116680003 900000000000011006 900000000000451002 +2564950020 20080731 0 900000000000207008 397456005 258415003 0 116680003 900000000000011006 900000000000451002 +2564951024 20040731 1 900000000000207008 397462000 258541006 0 116680003 900000000000011006 900000000000451002 +2564951024 20080731 0 900000000000207008 397462000 258541006 0 116680003 900000000000011006 900000000000451002 +2564952028 20040731 1 900000000000207008 397462000 373826004 0 116680003 900000000000011006 900000000000451002 +2564952028 20090131 0 900000000000207008 397462000 373826004 0 116680003 900000000000011006 900000000000451002 +2564953022 20040731 1 900000000000207008 397482001 373826004 0 116680003 900000000000011006 900000000000451002 +2564953022 20090131 0 900000000000207008 397482001 373826004 0 116680003 900000000000011006 900000000000451002 +2565138020 20040731 1 900000000000207008 399396003 258419009 0 116680003 900000000000011006 900000000000451002 +2565139028 20040731 1 900000000000207008 399407000 373826004 0 116680003 900000000000011006 900000000000451002 +2565139028 20090131 0 900000000000207008 399407000 373826004 0 116680003 900000000000011006 900000000000451002 +2565140026 20040731 1 900000000000207008 399436000 123038009 0 116680003 900000000000011006 900000000000451002 +2565140026 20130731 0 900000000000207008 399436000 123038009 0 116680003 900000000000011006 900000000000451002 +2565141027 20040731 1 900000000000207008 399440009 373826004 0 116680003 900000000000011006 900000000000451002 +2565141027 20080731 0 900000000000207008 399440009 373826004 0 116680003 900000000000011006 900000000000451002 +2565142023 20040731 1 900000000000207008 399447007 373826004 0 116680003 900000000000011006 900000000000451002 +2565142023 20080731 0 900000000000207008 399447007 373826004 0 116680003 900000000000011006 900000000000451002 +2565150025 20040731 1 900000000000207008 399551006 258415003 0 116680003 900000000000011006 900000000000451002 +2565155024 20040731 1 900000000000207008 399614009 309049000 0 116680003 900000000000011006 900000000000451002 +2565155024 20060731 0 900000000000207008 399614009 309049000 0 116680003 900000000000011006 900000000000451002 +2565156020 20040731 1 900000000000207008 399614009 373826004 0 116680003 900000000000011006 900000000000451002 +2565156020 20090131 0 900000000000207008 399614009 373826004 0 116680003 900000000000011006 900000000000451002 +2565158021 20040731 1 900000000000207008 399622002 373826004 0 116680003 900000000000011006 900000000000451002 +2565158021 20080731 0 900000000000207008 399622002 373826004 0 116680003 900000000000011006 900000000000451002 +2565159029 20040731 1 900000000000207008 399629006 373826004 0 116680003 900000000000011006 900000000000451002 +2565159029 20090131 0 900000000000207008 399629006 373826004 0 116680003 900000000000011006 900000000000451002 +2565160023 20040731 1 900000000000207008 399633004 258415003 0 116680003 900000000000011006 900000000000451002 +2565160023 20080731 0 900000000000207008 399633004 258415003 0 116680003 900000000000011006 900000000000451002 +2565161022 20040731 1 900000000000207008 399658009 373826004 0 116680003 900000000000011006 900000000000451002 +2565161022 20090131 0 900000000000207008 399658009 373826004 0 116680003 900000000000011006 900000000000451002 +2565162026 20040731 1 900000000000207008 399680007 309048008 0 116680003 900000000000011006 900000000000451002 +2565162026 20130731 0 900000000000207008 399680007 309048008 0 116680003 900000000000011006 900000000000451002 +2565163020 20040731 1 900000000000207008 399689008 373826004 0 116680003 900000000000011006 900000000000451002 +2565163020 20090131 0 900000000000207008 399689008 373826004 0 116680003 900000000000011006 900000000000451002 +2565165029 20040731 1 900000000000207008 399713008 258415003 0 116680003 900000000000011006 900000000000451002 +2565165029 20080731 0 900000000000207008 399713008 258415003 0 116680003 900000000000011006 900000000000451002 +2565166028 20040731 1 900000000000207008 399713008 373826004 0 116680003 900000000000011006 900000000000451002 +2565166028 20080731 0 900000000000207008 399713008 373826004 0 116680003 900000000000011006 900000000000451002 +2565167021 20040731 1 900000000000207008 399728008 258415003 0 116680003 900000000000011006 900000000000451002 +2565167021 20070731 0 900000000000207008 399728008 258415003 0 116680003 900000000000011006 900000000000451002 +2565168027 20040731 1 900000000000207008 399731009 373826004 0 116680003 900000000000011006 900000000000451002 +2565168027 20080731 0 900000000000207008 399731009 373826004 0 116680003 900000000000011006 900000000000451002 +2565169024 20040731 1 900000000000207008 399732002 373826004 0 116680003 900000000000011006 900000000000451002 +2565169024 20090131 0 900000000000207008 399732002 373826004 0 116680003 900000000000011006 900000000000451002 +2565170020 20040731 1 900000000000207008 399732002 309049000 0 116680003 900000000000011006 900000000000451002 +2565170020 20060731 0 900000000000207008 399732002 309049000 0 116680003 900000000000011006 900000000000451002 +2565171024 20040731 1 900000000000207008 399751008 258419009 0 116680003 900000000000011006 900000000000451002 +2565171024 20110131 0 900000000000207008 399751008 258419009 0 116680003 900000000000011006 900000000000451002 +2565172028 20040731 1 900000000000207008 399752001 373826004 0 116680003 900000000000011006 900000000000451002 +2565172028 20080731 0 900000000000207008 399752001 373826004 0 116680003 900000000000011006 900000000000451002 +2565756025 20040731 1 900000000000207008 410580001 309051001 0 116680003 900000000000011006 900000000000451002 +2565757023 20040731 1 900000000000207008 410580001 258603007 0 116680003 900000000000011006 900000000000451002 +2565758029 20040731 1 900000000000207008 410581002 258604001 0 116680003 900000000000011006 900000000000451002 +2565759021 20040731 1 900000000000207008 410581002 410580001 0 116680003 900000000000011006 900000000000451002 +2565932022 20040731 1 900000000000207008 410729004 119295008 0 116680003 900000000000011006 900000000000451002 +2565933028 20040731 1 900000000000207008 410729004 119373006 0 116680003 900000000000011006 900000000000451002 +2566583022 20040731 1 900000000000207008 167869007 88928006 0 118169006 900000000000011006 900000000000451002 +2566583022 20080731 0 900000000000207008 167869007 88928006 0 118169006 900000000000011006 900000000000451002 +2566584027 20040731 1 900000000000207008 168139001 409614007 0 370133003 900000000000011006 900000000000451002 +2566584027 20080731 0 900000000000207008 168139001 409614007 0 370133003 900000000000011006 900000000000451002 +2566584027 20090131 1 900000000000207008 168139001 409614007 1 370133003 900000000000011006 900000000000451002 +2566584027 20100131 0 900000000000207008 168139001 409614007 1 370133003 900000000000011006 900000000000451002 +2566584027 20100731 1 900000000000207008 168139001 409614007 1 370133003 900000000000011006 900000000000451002 +2566585026 20040731 1 900000000000207008 168139001 83670000 0 118169006 900000000000011006 900000000000451002 +2566585026 20080731 0 900000000000207008 168139001 83670000 0 118169006 900000000000011006 900000000000451002 +2566585026 20090131 1 900000000000207008 168139001 83670000 1 118169006 900000000000011006 900000000000451002 +2566585026 20100131 0 900000000000207008 168139001 83670000 1 118169006 900000000000011006 900000000000451002 +2566585026 20100731 1 900000000000207008 168139001 83670000 1 118169006 900000000000011006 900000000000451002 +2566586025 20040731 1 900000000000207008 168141000 410582009 0 370133003 900000000000011006 900000000000451002 +2566586025 20080731 0 900000000000207008 168141000 410582009 0 370133003 900000000000011006 900000000000451002 +2566586025 20090131 1 900000000000207008 168141000 410582009 1 370133003 900000000000011006 900000000000451002 +2575194021 20040731 1 900000000000207008 110904004 2095001 0 118169006 900000000000011006 900000000000451002 +2575194021 20190731 1 900000000000207008 110904004 2095001 1 118169006 900000000000011006 900000000000451002 +2579466026 20040731 1 900000000000207008 256889002 33463005 0 370133003 900000000000011006 900000000000451002 +2579466026 20080731 0 900000000000207008 256889002 33463005 0 370133003 900000000000011006 900000000000451002 +2579473020 20040731 1 900000000000207008 257261003 285570007 0 118171006 900000000000011006 900000000000451002 +2579473020 20190731 1 900000000000207008 257261003 285570007 1 118171006 900000000000011006 900000000000451002 +2579502025 20040731 1 900000000000207008 258411007 410579004 0 370133003 900000000000011006 900000000000451002 +2579502025 20080731 0 900000000000207008 258411007 410579004 0 370133003 900000000000011006 900000000000451002 +2579502025 20090131 1 900000000000207008 258411007 410579004 1 370133003 900000000000011006 900000000000451002 +2579502025 20110131 0 900000000000207008 258411007 410579004 1 370133003 900000000000011006 900000000000451002 +2579502025 20110731 1 900000000000207008 258411007 410579004 1 370133003 900000000000011006 900000000000451002 +2579503024 20040731 1 900000000000207008 258412000 410579004 0 370133003 900000000000011006 900000000000451002 +2579503024 20080731 0 900000000000207008 258412000 410579004 0 370133003 900000000000011006 900000000000451002 +2579503024 20110731 1 900000000000207008 258412000 410579004 2 370133003 900000000000011006 900000000000451002 +2579504029 20040731 1 900000000000207008 258432004 48075008 0 118169006 900000000000011006 900000000000451002 +2579504029 20080731 0 900000000000207008 258432004 48075008 0 118169006 900000000000011006 900000000000451002 +2579505028 20040731 1 900000000000207008 258433009 386147002 0 118171006 900000000000011006 900000000000451002 +2579505028 20110731 0 900000000000207008 258433009 386147002 0 118171006 900000000000011006 900000000000451002 +2579506027 20040731 1 900000000000207008 258467004 410579004 0 370133003 900000000000011006 900000000000451002 +2579506027 20080731 0 900000000000207008 258467004 410579004 0 370133003 900000000000011006 900000000000451002 +2579507020 20040731 1 900000000000207008 258469001 410579004 0 370133003 900000000000011006 900000000000451002 +2579507020 20070731 0 900000000000207008 258469001 410579004 0 370133003 900000000000011006 900000000000451002 +2579508026 20040731 1 900000000000207008 258474009 410583004 0 370133003 900000000000011006 900000000000451002 +2579508026 20080731 0 900000000000207008 258474009 410583004 0 370133003 900000000000011006 900000000000451002 +2579508026 20090131 1 900000000000207008 258474009 410583004 1 370133003 900000000000011006 900000000000451002 +2579509023 20040731 1 900000000000207008 258475005 410579004 0 370133003 900000000000011006 900000000000451002 +2579509023 20080731 0 900000000000207008 258475005 410579004 0 370133003 900000000000011006 900000000000451002 +2579511025 20040731 1 900000000000207008 258480001 410579004 0 370133003 900000000000011006 900000000000451002 +2579511025 20080731 1 900000000000207008 258480001 410579004 1 370133003 900000000000011006 900000000000451002 +2579512021 20040731 1 900000000000207008 258480001 321667001 0 118169006 900000000000011006 900000000000451002 +2579512021 20080731 1 900000000000207008 258480001 321667001 1 118169006 900000000000011006 900000000000451002 +2579512021 20220630 0 900000000000207008 258480001 321667001 1 118169006 900000000000011006 900000000000451002 +2579513027 20040731 1 900000000000207008 258481002 56993006 0 118171006 900000000000011006 900000000000451002 +2579513027 20080731 1 900000000000207008 258481002 56993006 1 118171006 900000000000011006 900000000000451002 +2579513027 20090131 0 900000000000207008 258481002 56993006 1 118171006 900000000000011006 900000000000451002 +2579513027 20090731 1 900000000000207008 258481002 56993006 1 118171006 900000000000011006 900000000000451002 +2579514022 20040731 1 900000000000207008 258484005 85756007 0 118169006 900000000000011006 900000000000451002 +2579514022 20080731 0 900000000000207008 258484005 85756007 0 118169006 900000000000011006 900000000000451002 +2579515023 20040731 1 900000000000207008 258487003 386147002 0 118171006 900000000000011006 900000000000451002 +2579515023 20080731 1 900000000000207008 258487003 386147002 1 118171006 900000000000011006 900000000000451002 +2579515023 20110731 0 900000000000207008 258487003 386147002 1 118171006 900000000000011006 900000000000451002 +2579516024 20040731 1 900000000000207008 258488008 386147002 0 118171006 900000000000011006 900000000000451002 +2579516024 20080731 1 900000000000207008 258488008 386147002 1 118171006 900000000000011006 900000000000451002 +2579516024 20110731 0 900000000000207008 258488008 386147002 1 118171006 900000000000011006 900000000000451002 +2579517026 20040731 1 900000000000207008 258489000 386147002 0 118171006 900000000000011006 900000000000451002 +2579517026 20080731 0 900000000000207008 258489000 386147002 0 118171006 900000000000011006 900000000000451002 +2579517026 20090131 1 900000000000207008 258489000 386147002 1 118171006 900000000000011006 900000000000451002 +2579517026 20110731 0 900000000000207008 258489000 386147002 1 118171006 900000000000011006 900000000000451002 +2579518020 20040731 1 900000000000207008 258497007 285570007 0 118171006 900000000000011006 900000000000451002 +2579518020 20080731 1 900000000000207008 258497007 285570007 1 118171006 900000000000011006 900000000000451002 +2579519028 20040731 1 900000000000207008 258498002 285570007 0 118171006 900000000000011006 900000000000451002 +2579519028 20080731 1 900000000000207008 258498002 285570007 1 118171006 900000000000011006 900000000000451002 +2579519028 20100731 0 900000000000207008 258498002 285570007 1 118171006 900000000000011006 900000000000451002 +2579519028 20110131 1 900000000000207008 258498002 285570007 1 118171006 900000000000011006 900000000000451002 +2579520023 20040731 1 900000000000207008 258502009 285570007 0 118171006 900000000000011006 900000000000451002 +2579520023 20080731 1 900000000000207008 258502009 285570007 1 118171006 900000000000011006 900000000000451002 +2579520023 20110731 0 900000000000207008 258502009 285570007 1 118171006 900000000000011006 900000000000451002 +2579521022 20040731 1 900000000000207008 258508008 285570007 0 118171006 900000000000011006 900000000000451002 +2579521022 20080731 1 900000000000207008 258508008 285570007 1 118171006 900000000000011006 900000000000451002 +2579522026 20040731 1 900000000000207008 258509000 285570007 0 118171006 900000000000011006 900000000000451002 +2579522026 20080731 1 900000000000207008 258509000 285570007 1 118171006 900000000000011006 900000000000451002 +2579523020 20040731 1 900000000000207008 258510005 285570007 0 118171006 900000000000011006 900000000000451002 +2579523020 20080731 0 900000000000207008 258510005 285570007 0 118171006 900000000000011006 900000000000451002 +2579523020 20090131 1 900000000000207008 258510005 285570007 1 118171006 900000000000011006 900000000000451002 +2579524025 20040731 1 900000000000207008 258511009 285570007 0 118171006 900000000000011006 900000000000451002 +2579524025 20080731 1 900000000000207008 258511009 285570007 1 118171006 900000000000011006 900000000000451002 +2579524025 20110731 0 900000000000207008 258511009 285570007 1 118171006 900000000000011006 900000000000451002 +2579525029 20040731 1 900000000000207008 258512002 285570007 0 118171006 900000000000011006 900000000000451002 +2579525029 20080731 1 900000000000207008 258512002 285570007 1 118171006 900000000000011006 900000000000451002 +2579526028 20040731 1 900000000000207008 258513007 285570007 0 118171006 900000000000011006 900000000000451002 +2579526028 20080731 1 900000000000207008 258513007 285570007 1 118171006 900000000000011006 900000000000451002 +2579526028 20110731 0 900000000000207008 258513007 285570007 1 118171006 900000000000011006 900000000000451002 +2579527021 20040731 1 900000000000207008 258514001 285570007 0 118171006 900000000000011006 900000000000451002 +2579527021 20080731 0 900000000000207008 258514001 285570007 0 118171006 900000000000011006 900000000000451002 +2579527021 20090131 1 900000000000207008 258514001 285570007 1 118171006 900000000000011006 900000000000451002 +2579528027 20040731 1 900000000000207008 258515000 285570007 0 118171006 900000000000011006 900000000000451002 +2579528027 20080731 0 900000000000207008 258515000 285570007 0 118171006 900000000000011006 900000000000451002 +2579528027 20090131 1 900000000000207008 258515000 285570007 1 118171006 900000000000011006 900000000000451002 +2579529024 20040731 1 900000000000207008 258516004 285570007 0 118171006 900000000000011006 900000000000451002 +2579529024 20080731 0 900000000000207008 258516004 285570007 0 118171006 900000000000011006 900000000000451002 +2579529024 20090131 1 900000000000207008 258516004 285570007 1 118171006 900000000000011006 900000000000451002 +2579529024 20110731 0 900000000000207008 258516004 285570007 1 118171006 900000000000011006 900000000000451002 +2579530025 20040731 1 900000000000207008 258517008 285570007 0 118171006 900000000000011006 900000000000451002 +2579530025 20080731 0 900000000000207008 258517008 285570007 0 118171006 900000000000011006 900000000000451002 +2579530025 20090131 1 900000000000207008 258517008 285570007 1 118171006 900000000000011006 900000000000451002 +2579531026 20040731 1 900000000000207008 258518003 285570007 0 118171006 900000000000011006 900000000000451002 +2579531026 20080731 0 900000000000207008 258518003 285570007 0 118171006 900000000000011006 900000000000451002 +2579531026 20090131 1 900000000000207008 258518003 285570007 1 118171006 900000000000011006 900000000000451002 +2579532022 20040731 1 900000000000207008 258519006 285570007 0 118171006 900000000000011006 900000000000451002 +2579532022 20080731 1 900000000000207008 258519006 285570007 1 118171006 900000000000011006 900000000000451002 +2579533028 20040731 1 900000000000207008 258520000 285570007 0 118171006 900000000000011006 900000000000451002 +2579533028 20080731 1 900000000000207008 258520000 285570007 1 118171006 900000000000011006 900000000000451002 +2579534023 20040731 1 900000000000207008 258523003 285570007 0 118171006 900000000000011006 900000000000451002 +2579534023 20080731 0 900000000000207008 258523003 285570007 0 118171006 900000000000011006 900000000000451002 +2579534023 20090131 1 900000000000207008 258523003 285570007 1 118171006 900000000000011006 900000000000451002 +2579535024 20040731 1 900000000000207008 258524009 285570007 0 118171006 900000000000011006 900000000000451002 +2579535024 20080731 1 900000000000207008 258524009 285570007 1 118171006 900000000000011006 900000000000451002 +2579536020 20040731 1 900000000000207008 258525005 285570007 0 118171006 900000000000011006 900000000000451002 +2579536020 20080731 0 900000000000207008 258525005 285570007 0 118171006 900000000000011006 900000000000451002 +2579536020 20090131 1 900000000000207008 258525005 285570007 1 118171006 900000000000011006 900000000000451002 +2579537027 20040731 1 900000000000207008 258526006 285570007 0 118171006 900000000000011006 900000000000451002 +2579537027 20080731 0 900000000000207008 258526006 285570007 0 118171006 900000000000011006 900000000000451002 +2579537027 20090131 1 900000000000207008 258526006 285570007 1 118171006 900000000000011006 900000000000451002 +2579538021 20040731 1 900000000000207008 258527002 285570007 0 118171006 900000000000011006 900000000000451002 +2579538021 20080731 0 900000000000207008 258527002 285570007 0 118171006 900000000000011006 900000000000451002 +2579538021 20090131 1 900000000000207008 258527002 285570007 1 118171006 900000000000011006 900000000000451002 +2579539029 20040731 1 900000000000207008 258528007 285570007 0 118171006 900000000000011006 900000000000451002 +2579539029 20080731 0 900000000000207008 258528007 285570007 0 118171006 900000000000011006 900000000000451002 +2579539029 20090131 1 900000000000207008 258528007 285570007 1 118171006 900000000000011006 900000000000451002 +2579539029 20110731 0 900000000000207008 258528007 285570007 1 118171006 900000000000011006 900000000000451002 +2579540027 20040731 1 900000000000207008 258531008 285570007 0 118171006 900000000000011006 900000000000451002 +2579540027 20080731 1 900000000000207008 258531008 285570007 1 118171006 900000000000011006 900000000000451002 +2579541028 20040731 1 900000000000207008 258532001 285570007 0 118171006 900000000000011006 900000000000451002 +2579541028 20190731 1 900000000000207008 258532001 285570007 1 118171006 900000000000011006 900000000000451002 +2579543025 20040731 1 900000000000207008 258535004 285570007 0 118171006 900000000000011006 900000000000451002 +2579543025 20190731 1 900000000000207008 258535004 285570007 1 118171006 900000000000011006 900000000000451002 +2579544020 20040731 1 900000000000207008 258536003 285570007 0 118171006 900000000000011006 900000000000451002 +2579544020 20080731 1 900000000000207008 258536003 285570007 1 118171006 900000000000011006 900000000000451002 +2579545021 20040731 1 900000000000207008 258537007 285570007 0 118171006 900000000000011006 900000000000451002 +2579545021 20190731 1 900000000000207008 258537007 285570007 1 118171006 900000000000011006 900000000000451002 +2579546022 20040731 1 900000000000207008 258547005 33463005 0 370133003 900000000000011006 900000000000451002 +2579546022 20190731 1 900000000000207008 258547005 33463005 1 370133003 900000000000011006 900000000000451002 +2579547029 20040731 1 900000000000207008 258548000 48075008 0 118169006 900000000000011006 900000000000451002 +2579547029 20190731 1 900000000000207008 258548000 48075008 1 118169006 900000000000011006 900000000000451002 +2579548023 20040731 1 900000000000207008 258587000 52501007 0 118169006 900000000000011006 900000000000451002 +2579548023 20080731 0 900000000000207008 258587000 52501007 0 118169006 900000000000011006 900000000000451002 +2579548023 20090731 1 900000000000207008 258587000 52501007 0 118169006 900000000000011006 900000000000451002 +2579548023 20190731 1 900000000000207008 258587000 52501007 1 118169006 900000000000011006 900000000000451002 +2579550026 20040731 1 900000000000207008 258599007 33463005 0 370133003 900000000000011006 900000000000451002 +2579550026 20190731 1 900000000000207008 258599007 33463005 1 370133003 900000000000011006 900000000000451002 +2580400023 20040731 1 900000000000207008 276446009 386147002 0 118171006 900000000000011006 900000000000451002 +2580400023 20080731 1 900000000000207008 276446009 386147002 1 118171006 900000000000011006 900000000000451002 +2580400023 20110731 0 900000000000207008 276446009 386147002 1 118171006 900000000000011006 900000000000451002 +2581471028 20040731 1 900000000000207008 116157005 80891009 0 118169006 900000000000011006 900000000000451002 +2581471028 20190731 1 900000000000207008 116157005 80891009 1 118169006 900000000000011006 900000000000451002 +2585640021 20040731 1 900000000000207008 309055005 33463005 0 370133003 900000000000011006 900000000000451002 +2585640021 20080731 0 900000000000207008 309055005 33463005 0 370133003 900000000000011006 900000000000451002 +2585643023 20040731 1 900000000000207008 309066003 48075008 0 118169006 900000000000011006 900000000000451002 +2585643023 20080731 0 900000000000207008 309066003 48075008 0 118169006 900000000000011006 900000000000451002 +2585644028 20040731 1 900000000000207008 309067007 48075008 0 118169006 900000000000011006 900000000000451002 +2585644028 20080731 0 900000000000207008 309067007 48075008 0 118169006 900000000000011006 900000000000451002 +2585645027 20040731 1 900000000000207008 309068002 48075008 0 118169006 900000000000011006 900000000000451002 +2585645027 20080731 0 900000000000207008 309068002 48075008 0 118169006 900000000000011006 900000000000451002 +2585646026 20040731 1 900000000000207008 309077009 234319005 0 118171006 900000000000011006 900000000000451002 +2585646026 20080731 0 900000000000207008 309077009 234319005 0 118171006 900000000000011006 900000000000451002 +2585646026 20090131 1 900000000000207008 309077009 234319005 1 118171006 900000000000011006 900000000000451002 +2585647024 20040731 1 900000000000207008 309077009 78961009 0 118169006 900000000000011006 900000000000451002 +2585647024 20080731 0 900000000000207008 309077009 78961009 0 118169006 900000000000011006 900000000000451002 +2585647024 20090131 1 900000000000207008 309077009 78961009 1 118169006 900000000000011006 900000000000451002 +2585649022 20040731 1 900000000000207008 309201001 83670000 0 118169006 900000000000011006 900000000000451002 +2585649022 20080731 1 900000000000207008 309201001 83670000 1 118169006 900000000000011006 900000000000451002 +2585650022 20040731 1 900000000000207008 309201001 409615008 0 370133003 900000000000011006 900000000000451002 +2585650022 20080731 1 900000000000207008 309201001 409615008 1 370133003 900000000000011006 900000000000451002 +2585651021 20040731 1 900000000000207008 309203003 122865005 0 118169006 900000000000011006 900000000000451002 +2585651021 20080731 0 900000000000207008 309203003 122865005 0 118169006 900000000000011006 900000000000451002 +2585652025 20040731 1 900000000000207008 309205005 122865005 0 118169006 900000000000011006 900000000000451002 +2585652025 20080731 0 900000000000207008 309205005 122865005 0 118169006 900000000000011006 900000000000451002 +2585653024 20040731 1 900000000000207008 309207002 122865005 0 118169006 900000000000011006 900000000000451002 +2585653024 20080731 0 900000000000207008 309207002 122865005 0 118169006 900000000000011006 900000000000451002 +2585654029 20040731 1 900000000000207008 309208007 122865005 0 118169006 900000000000011006 900000000000451002 +2585654029 20050131 0 900000000000207008 309208007 122865005 0 118169006 900000000000011006 900000000000451002 +2585670027 20040731 1 900000000000207008 309491006 122865005 0 118169006 900000000000011006 900000000000451002 +2585670027 20080731 0 900000000000207008 309491006 122865005 0 118169006 900000000000011006 900000000000451002 +2585671028 20040731 1 900000000000207008 309493009 122865005 0 118169006 900000000000011006 900000000000451002 +2585671028 20080731 0 900000000000207008 309493009 122865005 0 118169006 900000000000011006 900000000000451002 +2585672024 20040731 1 900000000000207008 309495002 122865005 0 118169006 900000000000011006 900000000000451002 +2585672024 20050131 0 900000000000207008 309495002 122865005 0 118169006 900000000000011006 900000000000451002 +2585673025 20040731 1 900000000000207008 309496001 122865005 0 118169006 900000000000011006 900000000000451002 +2585673025 20050131 0 900000000000207008 309496001 122865005 0 118169006 900000000000011006 900000000000451002 +2585674020 20040731 1 900000000000207008 309503002 64778000 0 370133003 900000000000011006 900000000000451002 +2585674020 20080731 1 900000000000207008 309503002 64778000 1 370133003 900000000000011006 900000000000451002 +2585706027 20040731 1 900000000000207008 119300005 256906008 0 370133003 900000000000011006 900000000000451002 +2585706027 20080731 0 900000000000207008 119300005 256906008 0 370133003 900000000000011006 900000000000451002 +2585709023 20040731 1 900000000000207008 119302002 289954006 0 370133003 900000000000011006 900000000000451002 +2585709023 20190731 1 900000000000207008 119302002 289954006 1 370133003 900000000000011006 900000000000451002 +2585710029 20040731 1 900000000000207008 119307008 410579004 0 370133003 900000000000011006 900000000000451002 +2585710029 20080731 0 900000000000207008 119307008 410579004 0 370133003 900000000000011006 900000000000451002 +2585710029 20090131 1 900000000000207008 119307008 410579004 1 370133003 900000000000011006 900000000000451002 +2585711025 20040731 1 900000000000207008 119307008 321667001 0 118169006 900000000000011006 900000000000451002 +2585711025 20080731 0 900000000000207008 119307008 321667001 0 118169006 900000000000011006 900000000000451002 +2585711025 20090131 1 900000000000207008 119307008 321667001 1 118169006 900000000000011006 900000000000451002 +2585712021 20040731 1 900000000000207008 119319000 410942007 0 370133003 900000000000011006 900000000000451002 +2585712021 20190731 1 900000000000207008 119319000 410942007 1 370133003 900000000000011006 900000000000451002 +2585713027 20040731 1 900000000000207008 119325001 48075008 0 118169006 900000000000011006 900000000000451002 +2585713027 20080731 0 900000000000207008 119325001 48075008 0 118169006 900000000000011006 900000000000451002 +2585738021 20040731 1 900000000000207008 119350003 384600008 0 370133003 900000000000011006 900000000000451002 +2585738021 20190731 1 900000000000207008 119350003 384600008 1 370133003 900000000000011006 900000000000451002 +2586107021 20040731 1 900000000000207008 312494007 386147002 0 118171006 900000000000011006 900000000000451002 +2586107021 20080731 0 900000000000207008 312494007 386147002 0 118171006 900000000000011006 900000000000451002 +2587856028 20040731 1 900000000000207008 122564002 116146000 0 118170007 900000000000011006 900000000000451002 +2587856028 20080731 0 900000000000207008 122564002 116146000 0 118170007 900000000000011006 900000000000451002 +2587857021 20040731 1 900000000000207008 122565001 20568009 0 118170007 900000000000011006 900000000000451002 +2587857021 20080731 0 900000000000207008 122565001 20568009 0 118170007 900000000000011006 900000000000451002 +2587857021 20090131 1 900000000000207008 122565001 20568009 1 118170007 900000000000011006 900000000000451002 +2587857021 20110131 0 900000000000207008 122565001 20568009 1 118170007 900000000000011006 900000000000451002 +2587905022 20040731 1 900000000000207008 122583009 116154003 0 118170007 900000000000011006 900000000000451002 +2587905022 20080731 1 900000000000207008 122583009 116154003 1 118170007 900000000000011006 900000000000451002 +2587905022 20090731 0 900000000000207008 122583009 116154003 1 118170007 900000000000011006 900000000000451002 +2587905022 20100131 1 900000000000207008 122583009 116154003 1 118170007 900000000000011006 900000000000451002 +2587905022 20110131 0 900000000000207008 122583009 116154003 1 118170007 900000000000011006 900000000000451002 +2587905022 20110731 1 900000000000207008 122583009 116154003 1 118170007 900000000000011006 900000000000451002 +2588029026 20040731 1 900000000000207008 122627001 122865005 0 118169006 900000000000011006 900000000000451002 +2588029026 20080731 0 900000000000207008 122627001 122865005 0 118169006 900000000000011006 900000000000451002 +2588029026 20090131 1 900000000000207008 122627001 122865005 1 118169006 900000000000011006 900000000000451002 +2588200024 20040731 1 900000000000207008 122656001 122865005 0 118169006 900000000000011006 900000000000451002 +2588200024 20080731 0 900000000000207008 122656001 122865005 0 118169006 900000000000011006 900000000000451002 +2588725025 20040731 1 900000000000207008 404643001 386147002 0 118171006 900000000000011006 900000000000451002 +2588725025 20080731 1 900000000000207008 404643001 386147002 1 118171006 900000000000011006 900000000000451002 +2588725025 20110731 0 900000000000207008 404643001 386147002 1 118171006 900000000000011006 900000000000451002 +2588754020 20040731 1 900000000000207008 409821005 35461009 0 118169006 900000000000011006 900000000000451002 +2588754020 20080731 0 900000000000207008 409821005 35461009 0 118169006 900000000000011006 900000000000451002 +2588755021 20040731 1 900000000000207008 409821005 78014005 0 370133003 900000000000011006 900000000000451002 +2588755021 20080731 0 900000000000207008 409821005 78014005 0 370133003 900000000000011006 900000000000451002 +2588755021 20090131 1 900000000000207008 409821005 78014005 1 370133003 900000000000011006 900000000000451002 +2588775028 20040731 1 900000000000207008 122877000 129112001 0 118171006 900000000000011006 900000000000451002 +2588775028 20080731 0 900000000000207008 122877000 129112001 0 118171006 900000000000011006 900000000000451002 +2588775028 20090131 1 900000000000207008 122877000 129112001 1 118171006 900000000000011006 900000000000451002 +2588775028 20100731 0 900000000000207008 122877000 129112001 1 118171006 900000000000011006 900000000000451002 +2588775028 20110131 1 900000000000207008 122877000 129112001 1 118171006 900000000000011006 900000000000451002 +2588781020 20040731 1 900000000000207008 409876003 74262004 0 118169006 900000000000011006 900000000000451002 +2588781020 20090131 0 900000000000207008 409876003 74262004 0 118169006 900000000000011006 900000000000451002 +2590432021 20040731 1 900000000000207008 127466008 122865005 0 118169006 900000000000011006 900000000000451002 +2590432021 20080731 0 900000000000207008 127466008 122865005 0 118169006 900000000000011006 900000000000451002 +2590432021 20090131 1 900000000000207008 127466008 122865005 1 118169006 900000000000011006 900000000000451002 +2590498023 20040731 1 900000000000207008 128168004 122865005 0 118169006 900000000000011006 900000000000451002 +2590498023 20080731 0 900000000000207008 128168004 122865005 0 118169006 900000000000011006 900000000000451002 +2635270022 20040731 1 900000000000207008 369614000 122865005 0 118169006 900000000000011006 900000000000451002 +2635270022 20080731 0 900000000000207008 369614000 122865005 0 118169006 900000000000011006 900000000000451002 +2635271021 20040731 1 900000000000207008 369616003 122865005 0 118169006 900000000000011006 900000000000451002 +2635271021 20080731 0 900000000000207008 369616003 122865005 0 118169006 900000000000011006 900000000000451002 +2635272025 20040731 1 900000000000207008 369617007 122865005 0 118169006 900000000000011006 900000000000451002 +2635272025 20080731 0 900000000000207008 369617007 122865005 0 118169006 900000000000011006 900000000000451002 +2639448027 20040731 1 900000000000207008 396353007 48075008 0 118169006 900000000000011006 900000000000451002 +2639448027 20080731 0 900000000000207008 396353007 48075008 0 118169006 900000000000011006 900000000000451002 +2639449024 20040731 1 900000000000207008 396354001 48075008 0 118169006 900000000000011006 900000000000451002 +2639449024 20080731 0 900000000000207008 396354001 48075008 0 118169006 900000000000011006 900000000000451002 +2639450024 20040731 1 900000000000207008 396355000 48075008 0 118169006 900000000000011006 900000000000451002 +2639450024 20080731 0 900000000000207008 396355000 48075008 0 118169006 900000000000011006 900000000000451002 +2639451023 20040731 1 900000000000207008 396356004 48075008 0 118169006 900000000000011006 900000000000451002 +2639451023 20080731 0 900000000000207008 396356004 48075008 0 118169006 900000000000011006 900000000000451002 +2639452027 20040731 1 900000000000207008 396357008 48075008 0 118169006 900000000000011006 900000000000451002 +2639452027 20080731 0 900000000000207008 396357008 48075008 0 118169006 900000000000011006 900000000000451002 +2639453021 20040731 1 900000000000207008 396358003 48075008 0 118169006 900000000000011006 900000000000451002 +2639453021 20080731 0 900000000000207008 396358003 48075008 0 118169006 900000000000011006 900000000000451002 +2639458028 20040731 1 900000000000207008 396476009 122865005 0 118169006 900000000000011006 900000000000451002 +2639458028 20080731 0 900000000000207008 396476009 122865005 0 118169006 900000000000011006 900000000000451002 +2639459020 20040731 1 900000000000207008 396477000 122865005 0 118169006 900000000000011006 900000000000451002 +2639459020 20080731 0 900000000000207008 396477000 122865005 0 118169006 900000000000011006 900000000000451002 +2639460026 20040731 1 900000000000207008 396478005 122865005 0 118169006 900000000000011006 900000000000451002 +2639460026 20080731 0 900000000000207008 396478005 122865005 0 118169006 900000000000011006 900000000000451002 +2639461027 20040731 1 900000000000207008 396479002 122865005 0 118169006 900000000000011006 900000000000451002 +2639461027 20080731 0 900000000000207008 396479002 122865005 0 118169006 900000000000011006 900000000000451002 +2639462023 20040731 1 900000000000207008 396480004 122865005 0 118169006 900000000000011006 900000000000451002 +2639462023 20080731 0 900000000000207008 396480004 122865005 0 118169006 900000000000011006 900000000000451002 +2639463029 20040731 1 900000000000207008 396481000 122865005 0 118169006 900000000000011006 900000000000451002 +2639463029 20080731 0 900000000000207008 396481000 122865005 0 118169006 900000000000011006 900000000000451002 +2639464024 20040731 1 900000000000207008 396483002 48075008 0 118169006 900000000000011006 900000000000451002 +2639464024 20080731 0 900000000000207008 396483002 48075008 0 118169006 900000000000011006 900000000000451002 +2641775023 20040731 1 900000000000207008 410580001 410579004 0 370133003 900000000000011006 900000000000451002 +2641775023 20080731 1 900000000000207008 410580001 410579004 1 370133003 900000000000011006 900000000000451002 +2641776024 20040731 1 900000000000207008 410580001 321667001 0 118169006 900000000000011006 900000000000451002 +2641776024 20080731 1 900000000000207008 410580001 321667001 1 118169006 900000000000011006 900000000000451002 +2641777026 20040731 1 900000000000207008 410581002 58675001 0 118169006 900000000000011006 900000000000451002 +2641777026 20080731 1 900000000000207008 410581002 58675001 1 118169006 900000000000011006 900000000000451002 +2641778020 20040731 1 900000000000207008 410581002 72869002 0 370133003 900000000000011006 900000000000451002 +2641778020 20080731 1 900000000000207008 410581002 72869002 1 370133003 900000000000011006 900000000000451002 +2641860024 20040731 1 900000000000207008 410729004 77012006 0 370133003 900000000000011006 900000000000451002 +2641860024 20080731 1 900000000000207008 410729004 77012006 1 370133003 900000000000011006 900000000000451002 +2641861023 20040731 1 900000000000207008 410729004 34536000 0 118171006 900000000000011006 900000000000451002 +2641861023 20080731 1 900000000000207008 410729004 34536000 1 118171006 900000000000011006 900000000000451002 +2650477027 20050131 1 900000000000207008 116155002 119380008 0 116680003 900000000000011006 900000000000451002 +2650477027 20080731 0 900000000000207008 116155002 119380008 0 116680003 900000000000011006 900000000000451002 +2650478021 20050131 1 900000000000207008 116156001 127465007 0 116680003 900000000000011006 900000000000451002 +2650482023 20050131 1 900000000000207008 116158000 127465007 0 116680003 900000000000011006 900000000000451002 +2650482023 20080731 0 900000000000207008 116158000 127465007 0 116680003 900000000000011006 900000000000451002 +2683981029 20050131 1 900000000000207008 309078004 309050000 0 116680003 900000000000011006 900000000000451002 +2683981029 20080731 0 900000000000207008 309078004 309050000 0 116680003 900000000000011006 900000000000451002 +2683990020 20050131 1 900000000000207008 309199003 127465007 0 116680003 900000000000011006 900000000000451002 +2683991024 20050131 1 900000000000207008 309202008 127465007 0 116680003 900000000000011006 900000000000451002 +2683996025 20050131 1 900000000000207008 309272009 119376003 0 116680003 900000000000011006 900000000000451002 +2683996025 20080731 0 900000000000207008 309272009 119376003 0 116680003 900000000000011006 900000000000451002 +2683997023 20050131 1 900000000000207008 309272009 127471001 0 116680003 900000000000011006 900000000000451002 +2683997023 20080731 0 900000000000207008 309272009 127471001 0 116680003 900000000000011006 900000000000451002 +2683998029 20050131 1 900000000000207008 309277003 258415003 0 116680003 900000000000011006 900000000000451002 +2683998029 20080731 0 900000000000207008 309277003 258415003 0 116680003 900000000000011006 900000000000451002 +2684031027 20050131 1 900000000000207008 119329007 258439008 0 116680003 900000000000011006 900000000000451002 +2684039025 20050131 1 900000000000207008 119350003 309050000 0 116680003 900000000000011006 900000000000451002 +2684068029 20050131 1 900000000000207008 119389009 258604001 0 116680003 900000000000011006 900000000000451002 +2684069021 20050131 1 900000000000207008 119392008 127465007 0 116680003 900000000000011006 900000000000451002 +2684069021 20080731 0 900000000000207008 119392008 127465007 0 116680003 900000000000011006 900000000000451002 +2684069021 20210131 1 900000000000207008 119392008 127465007 0 116680003 900000000000011006 900000000000451002 +2684069021 20210930 0 900000000000207008 119392008 127465007 0 116680003 900000000000011006 900000000000451002 +2684070022 20050131 1 900000000000207008 119393003 127471001 0 116680003 900000000000011006 900000000000451002 +2684074029 20050131 1 900000000000207008 119401005 128164002 0 116680003 900000000000011006 900000000000451002 +2684074029 20080731 0 900000000000207008 119401005 128164002 0 116680003 900000000000011006 900000000000451002 +2685192026 20050131 1 900000000000207008 415293009 258483004 0 116680003 900000000000011006 900000000000451002 +2685192026 20070731 0 900000000000207008 415293009 258483004 0 116680003 900000000000011006 900000000000451002 +2685193020 20050131 1 900000000000207008 415293009 410580001 0 116680003 900000000000011006 900000000000451002 +2685193020 20070731 0 900000000000207008 415293009 410580001 0 116680003 900000000000011006 900000000000451002 +2685765029 20050131 1 900000000000207008 122668005 127471001 0 116680003 900000000000011006 900000000000451002 +2685765029 20080731 0 900000000000207008 122668005 127471001 0 116680003 900000000000011006 900000000000451002 +2686179022 20050131 1 900000000000207008 122879002 127465007 0 116680003 900000000000011006 900000000000451002 +2686179022 20130731 0 900000000000207008 122879002 127465007 0 116680003 900000000000011006 900000000000451002 +2687949023 20050131 1 900000000000207008 127465007 363311008 0 116680003 900000000000011006 900000000000451002 +2687950023 20050131 1 900000000000207008 127466008 127465007 0 116680003 900000000000011006 900000000000451002 +2687951022 20050131 1 900000000000207008 127467004 119380008 0 116680003 900000000000011006 900000000000451002 +2688029025 20050131 1 900000000000207008 128157004 309050000 0 116680003 900000000000011006 900000000000451002 +2688029025 20080731 0 900000000000207008 128157004 309050000 0 116680003 900000000000011006 900000000000451002 +2688031023 20050131 1 900000000000207008 128161005 128164002 0 116680003 900000000000011006 900000000000451002 +2688032027 20050131 1 900000000000207008 128164002 119399004 0 116680003 900000000000011006 900000000000451002 +2688035025 20050131 1 900000000000207008 128174004 119376003 0 116680003 900000000000011006 900000000000451002 +2688035025 20080731 0 900000000000207008 128174004 119376003 0 116680003 900000000000011006 900000000000451002 +2701910025 20050131 1 900000000000207008 258553005 119380008 0 116680003 900000000000011006 900000000000451002 +2704684025 20050131 1 900000000000207008 371783005 309050000 0 116680003 900000000000011006 900000000000451002 +2705042025 20050131 1 900000000000207008 373103009 373826004 0 116680003 900000000000011006 900000000000451002 +2705042025 20080731 0 900000000000207008 373103009 373826004 0 116680003 900000000000011006 900000000000451002 +2706881022 20050131 1 900000000000207008 415563002 309490007 0 116680003 900000000000011006 900000000000451002 +2706882026 20050131 1 900000000000207008 415563002 258415003 0 116680003 900000000000011006 900000000000451002 +2706882026 20080731 0 900000000000207008 415563002 258415003 0 116680003 900000000000011006 900000000000451002 +2713987021 20050131 1 900000000000207008 110893002 256898004 0 116680003 900000000000011006 900000000000451002 +2713987021 20080731 0 900000000000207008 110893002 256898004 0 116680003 900000000000011006 900000000000451002 +2714071025 20050131 1 900000000000207008 110901007 256898004 0 116680003 900000000000011006 900000000000451002 +2714071025 20080731 0 900000000000207008 110901007 256898004 0 116680003 900000000000011006 900000000000451002 +2714075023 20050131 1 900000000000207008 110902000 258604001 0 116680003 900000000000011006 900000000000451002 +2714096027 20050131 1 900000000000207008 110904004 258604001 0 116680003 900000000000011006 900000000000451002 +2714096027 20080731 0 900000000000207008 110904004 258604001 0 116680003 900000000000011006 900000000000451002 +2714141020 20050131 1 900000000000207008 110907006 258604001 0 116680003 900000000000011006 900000000000451002 +2714141020 20080731 0 900000000000207008 110907006 258604001 0 116680003 900000000000011006 900000000000451002 +2714145027 20050131 1 900000000000207008 110908001 258604001 0 116680003 900000000000011006 900000000000451002 +2714145027 20080731 0 900000000000207008 110908001 258604001 0 116680003 900000000000011006 900000000000451002 +2714154029 20050131 1 900000000000207008 110909009 258604001 0 116680003 900000000000011006 900000000000451002 +2714154029 20080731 0 900000000000207008 110909009 258604001 0 116680003 900000000000011006 900000000000451002 +2714419028 20050131 1 900000000000207008 110936006 127465007 0 116680003 900000000000011006 900000000000451002 +2714419028 20080731 0 900000000000207008 110936006 127465007 0 116680003 900000000000011006 900000000000451002 +2714435024 20050131 1 900000000000207008 110938007 119380008 0 116680003 900000000000011006 900000000000451002 +2714435024 20080731 0 900000000000207008 110938007 119380008 0 116680003 900000000000011006 900000000000451002 +2714442024 20050131 1 900000000000207008 110940002 119380008 0 116680003 900000000000011006 900000000000451002 +2714442024 20080731 0 900000000000207008 110940002 119380008 0 116680003 900000000000011006 900000000000451002 +2714465025 20050131 1 900000000000207008 110942005 127465007 0 116680003 900000000000011006 900000000000451002 +2714465025 20080731 0 900000000000207008 110942005 127465007 0 116680003 900000000000011006 900000000000451002 +2714606022 20050131 1 900000000000207008 110954005 119380008 0 116680003 900000000000011006 900000000000451002 +2714623029 20050131 1 900000000000207008 110956007 127465007 0 116680003 900000000000011006 900000000000451002 +2714623029 20080731 0 900000000000207008 110956007 127465007 0 116680003 900000000000011006 900000000000451002 +2714647020 20050131 1 900000000000207008 110962002 127463000 0 116680003 900000000000011006 900000000000451002 +2714672020 20050131 1 900000000000207008 110965000 119393003 0 116680003 900000000000011006 900000000000451002 +2714689028 20050131 1 900000000000207008 110966004 119380008 0 116680003 900000000000011006 900000000000451002 +2714689028 20080731 0 900000000000207008 110966004 119380008 0 116680003 900000000000011006 900000000000451002 +2723052024 20050131 1 900000000000207008 119356009 52501007 0 118169006 900000000000011006 900000000000451002 +2723052024 20080731 0 900000000000207008 119356009 52501007 0 118169006 900000000000011006 900000000000451002 +2723052024 20090731 1 900000000000207008 119356009 52501007 0 118169006 900000000000011006 900000000000451002 +2723052024 20190731 1 900000000000207008 119356009 52501007 1 118169006 900000000000011006 900000000000451002 +2723058023 20050131 1 900000000000207008 119357000 52501007 0 118169006 900000000000011006 900000000000451002 +2723058023 20080731 0 900000000000207008 119357000 52501007 0 118169006 900000000000011006 900000000000451002 +2723058023 20090731 1 900000000000207008 119357000 52501007 0 118169006 900000000000011006 900000000000451002 +2723058023 20190731 1 900000000000207008 119357000 52501007 1 118169006 900000000000011006 900000000000451002 +2724102024 20050131 1 900000000000207008 168141000 410581002 0 116680003 900000000000011006 900000000000451002 +2726165022 20050131 1 900000000000207008 415293009 321667001 0 118169006 900000000000011006 900000000000451002 +2726165022 20080731 0 900000000000207008 415293009 321667001 0 118169006 900000000000011006 900000000000451002 +2726165022 20090131 1 900000000000207008 415293009 321667001 1 118169006 900000000000011006 900000000000451002 +2726166023 20050131 1 900000000000207008 415293009 410579004 0 370133003 900000000000011006 900000000000451002 +2726166023 20070731 0 900000000000207008 415293009 410579004 0 370133003 900000000000011006 900000000000451002 +2726167025 20050131 1 900000000000207008 415293009 49909006 0 370133003 900000000000011006 900000000000451002 +2726167025 20070731 0 900000000000207008 415293009 49909006 0 370133003 900000000000011006 900000000000451002 +2726222027 20050131 1 900000000000207008 122599003 172043006 0 118171006 900000000000011006 900000000000451002 +2726222027 20080731 0 900000000000207008 122599003 172043006 0 118171006 900000000000011006 900000000000451002 +2726224026 20050131 1 900000000000207008 122600000 172043006 0 118171006 900000000000011006 900000000000451002 +2726224026 20080731 0 900000000000207008 122600000 172043006 0 118171006 900000000000011006 900000000000451002 +2726251028 20050131 1 900000000000207008 122630008 45900003 0 118171006 900000000000011006 900000000000451002 +2726251028 20080731 0 900000000000207008 122630008 45900003 0 118171006 900000000000011006 900000000000451002 +2726251028 20090731 1 900000000000207008 122630008 45900003 1 118171006 900000000000011006 900000000000451002 +2726286026 20050131 1 900000000000207008 122651006 43075005 0 118171006 900000000000011006 900000000000451002 +2726286026 20080731 0 900000000000207008 122651006 43075005 0 118171006 900000000000011006 900000000000451002 +2745026023 20050131 1 900000000000207008 258462005 119380008 0 116680003 900000000000011006 900000000000451002 +2745027025 20050131 1 900000000000207008 258463000 119380008 0 116680003 900000000000011006 900000000000451002 +2745041023 20050131 1 900000000000207008 258474009 410581002 0 116680003 900000000000011006 900000000000451002 +2745045025 20050131 1 900000000000207008 258475005 258604001 0 116680003 900000000000011006 900000000000451002 +2745045025 20080731 0 900000000000207008 258475005 258604001 0 116680003 900000000000011006 900000000000451002 +2745100027 20050131 1 900000000000207008 258511009 119393003 0 116680003 900000000000011006 900000000000451002 +2745100027 20110731 0 900000000000207008 258511009 119393003 0 116680003 900000000000011006 900000000000451002 +2745133021 20050131 1 900000000000207008 258528007 127465007 0 116680003 900000000000011006 900000000000451002 +2745133021 20080731 0 900000000000207008 258528007 127465007 0 116680003 900000000000011006 900000000000451002 +2745139020 20050131 1 900000000000207008 258530009 119393003 0 116680003 900000000000011006 900000000000451002 +2750196020 20050131 1 900000000000207008 406101006 34797008 0 118169006 900000000000011006 900000000000451002 +2750196020 20070131 0 900000000000207008 406101006 34797008 0 118169006 900000000000011006 900000000000451002 +2756141022 20050131 1 900000000000207008 415563002 15776009 0 118169006 900000000000011006 900000000000451002 +2756141022 20080731 0 900000000000207008 415563002 15776009 0 118169006 900000000000011006 900000000000451002 +2756141022 20090131 1 900000000000207008 415563002 15776009 1 118169006 900000000000011006 900000000000451002 +2756142026 20050131 1 900000000000207008 415563002 414158004 0 118171006 900000000000011006 900000000000451002 +2756142026 20080731 0 900000000000207008 415563002 414158004 0 118171006 900000000000011006 900000000000451002 +2756142026 20090131 1 900000000000207008 415563002 414158004 1 118171006 900000000000011006 900000000000451002 +2756143020 20050131 1 900000000000207008 415563002 85756007 0 118169006 900000000000011006 900000000000451002 +2756143020 20080731 0 900000000000207008 415563002 85756007 0 118169006 900000000000011006 900000000000451002 +2766264028 20050731 1 900000000000207008 258609006 119295008 0 116680003 900000000000011006 900000000000451002 +2766264028 20080731 0 900000000000207008 258609006 119295008 0 116680003 900000000000011006 900000000000451002 +2768144021 20050731 1 900000000000207008 309167009 258415003 0 116680003 900000000000011006 900000000000451002 +2768144021 20080731 0 900000000000207008 309167009 258415003 0 116680003 900000000000011006 900000000000451002 +2768512025 20050731 1 900000000000207008 122601001 258415003 0 116680003 900000000000011006 900000000000451002 +2768512025 20080731 0 900000000000207008 122601001 258415003 0 116680003 900000000000011006 900000000000451002 +2768519023 20050731 1 900000000000207008 122739003 373826004 0 116680003 900000000000011006 900000000000451002 +2768519023 20080731 0 900000000000207008 122739003 373826004 0 116680003 900000000000011006 900000000000451002 +2784785023 20050731 1 900000000000207008 122611008 312849006 0 118171006 900000000000011006 900000000000451002 +2784785023 20080731 0 900000000000207008 122611008 312849006 0 118171006 900000000000011006 900000000000451002 +2835331027 20060131 1 900000000000207008 258571003 119319000 0 116680003 900000000000011006 900000000000451002 +2835331027 20080731 0 900000000000207008 258571003 119319000 0 116680003 900000000000011006 900000000000451002 +2839288022 20060131 1 900000000000207008 302794003 119295008 0 116680003 900000000000011006 900000000000451002 +2839434025 20060131 1 900000000000207008 119297000 119319000 0 116680003 900000000000011006 900000000000451002 +2839434025 20080731 0 900000000000207008 119297000 119319000 0 116680003 900000000000011006 900000000000451002 +2839434025 20090131 1 900000000000207008 119297000 119319000 0 116680003 900000000000011006 900000000000451002 +2839434025 20090731 0 900000000000207008 119297000 119319000 0 116680003 900000000000011006 900000000000451002 +2839435029 20060131 1 900000000000207008 119300005 119319000 0 116680003 900000000000011006 900000000000451002 +2839435029 20080731 0 900000000000207008 119300005 119319000 0 116680003 900000000000011006 900000000000451002 +2839441020 20060131 1 900000000000207008 119361006 309051001 0 116680003 900000000000011006 900000000000451002 +2839441020 20080731 0 900000000000207008 119361006 309051001 0 116680003 900000000000011006 900000000000451002 +2839441020 20221130 1 900000000000207008 119361006 309051001 0 116680003 900000000000011006 900000000000451002 +2839442029 20060131 1 900000000000207008 119364003 309051001 0 116680003 900000000000011006 900000000000451002 +2839442029 20080731 0 900000000000207008 119364003 309051001 0 116680003 900000000000011006 900000000000451002 +2839672028 20060131 1 900000000000207008 418564007 410580001 0 116680003 900000000000011006 900000000000451002 +2839672028 20080731 0 900000000000207008 418564007 410580001 0 116680003 900000000000011006 900000000000451002 +2839998020 20060131 1 900000000000207008 122592007 119319000 0 116680003 900000000000011006 900000000000451002 +2839998020 20080731 0 900000000000207008 122592007 119319000 0 116680003 900000000000011006 900000000000451002 +2839999028 20060131 1 900000000000207008 122592007 258442002 0 116680003 900000000000011006 900000000000451002 +2839999028 20080731 0 900000000000207008 122592007 258442002 0 116680003 900000000000011006 900000000000451002 +2840000025 20060131 1 900000000000207008 122619005 410580001 0 116680003 900000000000011006 900000000000451002 +2840000025 20080731 0 900000000000207008 122619005 410580001 0 116680003 900000000000011006 900000000000451002 +2841050025 20060131 1 900000000000207008 127459007 119376003 0 116680003 900000000000011006 900000000000451002 +2841050025 20080731 0 900000000000207008 127459007 119376003 0 116680003 900000000000011006 900000000000451002 +2848577023 20060131 1 900000000000207008 418932006 309164002 0 116680003 900000000000011006 900000000000451002 +2848577023 20080731 0 900000000000207008 418932006 309164002 0 116680003 900000000000011006 900000000000451002 +2848582027 20060131 1 900000000000207008 419695002 257261003 0 116680003 900000000000011006 900000000000451002 +2855018021 20060131 1 900000000000207008 258571003 33463005 0 370133003 900000000000011006 900000000000451002 +2855018021 20090131 0 900000000000207008 258571003 33463005 0 370133003 900000000000011006 900000000000451002 +2859410029 20060131 1 900000000000207008 418564007 91381003 0 118169006 900000000000011006 900000000000451002 +2859410029 20080731 0 900000000000207008 418564007 91381003 0 118169006 900000000000011006 900000000000451002 +2859410029 20090131 1 900000000000207008 418564007 91381003 1 118169006 900000000000011006 900000000000451002 +2859411025 20060131 1 900000000000207008 418564007 2778004 0 370133003 900000000000011006 900000000000451002 +2859411025 20080731 0 900000000000207008 418564007 2778004 0 370133003 900000000000011006 900000000000451002 +2859411025 20090131 1 900000000000207008 418564007 2778004 1 370133003 900000000000011006 900000000000451002 +2859412021 20060131 1 900000000000207008 418564007 321667001 0 118169006 900000000000011006 900000000000451002 +2859412021 20080731 0 900000000000207008 418564007 321667001 0 118169006 900000000000011006 900000000000451002 +2861869026 20060131 1 900000000000207008 122592007 33463005 0 370133003 900000000000011006 900000000000451002 +2861869026 20080731 0 900000000000207008 122592007 33463005 0 370133003 900000000000011006 900000000000451002 +2861880026 20060131 1 900000000000207008 122619005 91381003 0 118169006 900000000000011006 900000000000451002 +2861880026 20080731 0 900000000000207008 122619005 91381003 0 118169006 900000000000011006 900000000000451002 +2861880026 20090131 1 900000000000207008 122619005 91381003 1 118169006 900000000000011006 900000000000451002 +2861881027 20060131 1 900000000000207008 122619005 2778004 0 370133003 900000000000011006 900000000000451002 +2861881027 20080731 0 900000000000207008 122619005 2778004 0 370133003 900000000000011006 900000000000451002 +2861881027 20090131 1 900000000000207008 122619005 2778004 1 370133003 900000000000011006 900000000000451002 +2886206022 20060131 1 900000000000207008 418932006 58675001 0 118169006 900000000000011006 900000000000451002 +2886206022 20080731 0 900000000000207008 418932006 58675001 0 118169006 900000000000011006 900000000000451002 +2886207029 20060131 1 900000000000207008 418932006 418622002 0 118171006 900000000000011006 900000000000451002 +2886207029 20080731 0 900000000000207008 418932006 418622002 0 118171006 900000000000011006 900000000000451002 +2886207029 20090131 1 900000000000207008 418932006 418622002 1 118171006 900000000000011006 900000000000451002 +2886212028 20060131 1 900000000000207008 419695002 285570007 0 118171006 900000000000011006 900000000000451002 +2886212028 20080731 0 900000000000207008 419695002 285570007 0 118171006 900000000000011006 900000000000451002 +2886212028 20090731 1 900000000000207008 419695002 285570007 1 118171006 900000000000011006 900000000000451002 +2939255025 20060731 1 900000000000207008 110953004 119394009 0 116680003 900000000000011006 900000000000451002 +2939255025 20080731 0 900000000000207008 110953004 119394009 0 116680003 900000000000011006 900000000000451002 +2939256029 20060731 1 900000000000207008 110953004 119395005 0 116680003 900000000000011006 900000000000451002 +2939256029 20080731 0 900000000000207008 110953004 119395005 0 116680003 900000000000011006 900000000000451002 +2939691027 20060731 1 900000000000207008 258435002 420548004 0 116680003 900000000000011006 900000000000451002 +2939691027 20230630 0 900000000000207008 258435002 420548004 0 116680003 900000000000011006 900000000000451002 +2939825025 20060731 1 900000000000207008 271514008 119330002 0 116680003 900000000000011006 900000000000451002 +2939825025 20070731 0 900000000000207008 271514008 119330002 0 116680003 900000000000011006 900000000000451002 +2939826029 20060731 1 900000000000207008 271515009 119330002 0 116680003 900000000000011006 900000000000451002 +2939826029 20080731 0 900000000000207008 271515009 119330002 0 116680003 900000000000011006 900000000000451002 +2939827022 20060731 1 900000000000207008 271516005 119330002 0 116680003 900000000000011006 900000000000451002 +2939827022 20080731 0 900000000000207008 271516005 119330002 0 116680003 900000000000011006 900000000000451002 +2940278028 20060731 1 900000000000207008 309131002 420548004 0 116680003 900000000000011006 900000000000451002 +2940279020 20060731 1 900000000000207008 309179009 420548004 0 116680003 900000000000011006 900000000000451002 +2940279020 20230630 0 900000000000207008 309179009 420548004 0 116680003 900000000000011006 900000000000451002 +2940281022 20060731 1 900000000000207008 309226005 420548004 0 116680003 900000000000011006 900000000000451002 +2940281022 20230630 0 900000000000207008 309226005 420548004 0 116680003 900000000000011006 900000000000451002 +2940282026 20060731 1 900000000000207008 309263001 420548004 0 116680003 900000000000011006 900000000000451002 +2940282026 20230630 0 900000000000207008 309263001 420548004 0 116680003 900000000000011006 900000000000451002 +2940283020 20060731 1 900000000000207008 309266009 420548004 0 116680003 900000000000011006 900000000000451002 +2940283020 20230630 0 900000000000207008 309266009 420548004 0 116680003 900000000000011006 900000000000451002 +2940284025 20060731 1 900000000000207008 309286008 420548004 0 116680003 900000000000011006 900000000000451002 +2940284025 20230630 0 900000000000207008 309286008 420548004 0 116680003 900000000000011006 900000000000451002 +2940285029 20060731 1 900000000000207008 309288009 420548004 0 116680003 900000000000011006 900000000000451002 +2940285029 20230630 0 900000000000207008 309288009 420548004 0 116680003 900000000000011006 900000000000451002 +2940301021 20060731 1 900000000000207008 119359002 119376003 0 116680003 900000000000011006 900000000000451002 +2940301021 20080731 0 900000000000207008 119359002 119376003 0 116680003 900000000000011006 900000000000451002 +2940303024 20060731 1 900000000000207008 119368000 420548004 0 116680003 900000000000011006 900000000000451002 +2940671025 20060731 1 900000000000207008 420548004 309049000 0 116680003 900000000000011006 900000000000451002 +2940919020 20060731 1 900000000000207008 122711004 420548004 0 116680003 900000000000011006 900000000000451002 +2940919020 20080731 0 900000000000207008 122711004 420548004 0 116680003 900000000000011006 900000000000451002 +2946701027 20060731 1 900000000000207008 399614009 420548004 0 116680003 900000000000011006 900000000000451002 +2946701027 20080731 0 900000000000207008 399614009 420548004 0 116680003 900000000000011006 900000000000451002 +2946703029 20060731 1 900000000000207008 399732002 420548004 0 116680003 900000000000011006 900000000000451002 +2946703029 20080731 0 900000000000207008 399732002 420548004 0 116680003 900000000000011006 900000000000451002 +2946977021 20060731 1 900000000000207008 421615004 373826004 0 116680003 900000000000011006 900000000000451002 +2946977021 20090131 0 900000000000207008 421615004 373826004 0 116680003 900000000000011006 900000000000451002 +2946978027 20060731 1 900000000000207008 421615004 309222007 0 116680003 900000000000011006 900000000000451002 +2947705027 20060731 1 900000000000207008 110953004 76784001 0 118169006 900000000000011006 900000000000451002 +2947705027 20190731 1 900000000000207008 110953004 76784001 3 118169006 900000000000011006 900000000000451002 +2947706026 20060731 1 900000000000207008 110953004 71252005 0 118169006 900000000000011006 900000000000451002 +2947706026 20190731 1 900000000000207008 110953004 71252005 2 118169006 900000000000011006 900000000000451002 +2948061027 20060731 1 900000000000207008 258583001 85756007 0 118169006 900000000000011006 900000000000451002 +2948061027 20080731 0 900000000000207008 258583001 85756007 0 118169006 900000000000011006 900000000000451002 +2948062023 20060731 1 900000000000207008 258583001 14016003 0 118169006 900000000000011006 900000000000451002 +2948062023 20190731 1 900000000000207008 258583001 14016003 1 118169006 900000000000011006 900000000000451002 +2948063029 20060731 1 900000000000207008 258584007 14016003 0 118169006 900000000000011006 900000000000451002 +2948063029 20190731 1 900000000000207008 258584007 14016003 1 118169006 900000000000011006 900000000000451002 +2948064024 20060731 1 900000000000207008 258584007 85756007 0 118169006 900000000000011006 900000000000451002 +2948064024 20080731 0 900000000000207008 258584007 85756007 0 118169006 900000000000011006 900000000000451002 +2948065020 20060731 1 900000000000207008 258585008 85756007 0 118169006 900000000000011006 900000000000451002 +2948065020 20080731 0 900000000000207008 258585008 85756007 0 118169006 900000000000011006 900000000000451002 +2948066021 20060731 1 900000000000207008 258585008 14016003 0 118169006 900000000000011006 900000000000451002 +2948066021 20080731 0 900000000000207008 258585008 14016003 0 118169006 900000000000011006 900000000000451002 +2948066021 20090731 1 900000000000207008 258585008 14016003 1 118169006 900000000000011006 900000000000451002 +2948100026 20060731 1 900000000000207008 271518006 85756007 0 118169006 900000000000011006 900000000000451002 +2948100026 20080731 0 900000000000207008 271518006 85756007 0 118169006 900000000000011006 900000000000451002 +2948395021 20060731 1 900000000000207008 119359002 85756007 0 118169006 900000000000011006 900000000000451002 +2948395021 20080731 0 900000000000207008 119359002 85756007 0 118169006 900000000000011006 900000000000451002 +2948396022 20060731 1 900000000000207008 119359002 14016003 0 118169006 900000000000011006 900000000000451002 +2948396022 20190731 1 900000000000207008 119359002 14016003 1 118169006 900000000000011006 900000000000451002 +2949148020 20060731 1 900000000000207008 420548004 4147007 0 118168003 900000000000011006 900000000000451002 +2949148020 20190731 1 900000000000207008 420548004 4147007 1 118168003 900000000000011006 900000000000451002 +2951231029 20060731 1 900000000000207008 167913002 14016003 0 118169006 900000000000011006 900000000000451002 +2951231029 20190731 1 900000000000207008 167913002 14016003 1 118169006 900000000000011006 900000000000451002 +2951232020 20060731 1 900000000000207008 167913002 85756007 0 118169006 900000000000011006 900000000000451002 +2951232020 20080731 0 900000000000207008 167913002 85756007 0 118169006 900000000000011006 900000000000451002 +2954485028 20060731 1 900000000000207008 396997002 14016003 0 118169006 900000000000011006 900000000000451002 +2954485028 20080731 1 900000000000207008 396997002 14016003 1 118169006 900000000000011006 900000000000451002 +2954486027 20060731 1 900000000000207008 396997002 85756007 0 118169006 900000000000011006 900000000000451002 +2954486027 20080731 0 900000000000207008 396997002 85756007 0 118169006 900000000000011006 900000000000451002 +2954487020 20060731 1 900000000000207008 396998007 14016003 0 118169006 900000000000011006 900000000000451002 +2954487020 20080731 0 900000000000207008 396998007 14016003 0 118169006 900000000000011006 900000000000451002 +2954488026 20060731 1 900000000000207008 396998007 272673000 0 118169006 900000000000011006 900000000000451002 +2954488026 20070731 0 900000000000207008 396998007 272673000 0 118169006 900000000000011006 900000000000451002 +2954489023 20060731 1 900000000000207008 396999004 272673000 0 118169006 900000000000011006 900000000000451002 +2954489023 20070731 0 900000000000207008 396999004 272673000 0 118169006 900000000000011006 900000000000451002 +2954490025 20060731 1 900000000000207008 396999004 14016003 0 118169006 900000000000011006 900000000000451002 +2954490025 20080731 1 900000000000207008 396999004 14016003 1 118169006 900000000000011006 900000000000451002 +2954962022 20060731 1 900000000000207008 421615004 80146002 0 118171006 900000000000011006 900000000000451002 +2954962022 20080731 0 900000000000207008 421615004 80146002 0 118171006 900000000000011006 900000000000451002 +2954962022 20090731 1 900000000000207008 421615004 80146002 1 118171006 900000000000011006 900000000000451002 +2954963028 20060731 1 900000000000207008 421615004 85756007 0 118169006 900000000000011006 900000000000451002 +2954963028 20080731 0 900000000000207008 421615004 85756007 0 118169006 900000000000011006 900000000000451002 +2954964023 20060731 1 900000000000207008 421615004 66754008 0 118169006 900000000000011006 900000000000451002 +2954964023 20080731 0 900000000000207008 421615004 66754008 0 118169006 900000000000011006 900000000000451002 +2954964023 20090731 1 900000000000207008 421615004 66754008 1 118169006 900000000000011006 900000000000451002 +3010292022 20070131 1 900000000000207008 422991009 421615004 0 116680003 900000000000011006 900000000000451002 +3010292022 20080731 0 900000000000207008 422991009 421615004 0 116680003 900000000000011006 900000000000451002 +3010293028 20070131 1 900000000000207008 422991009 122648004 0 116680003 900000000000011006 900000000000451002 +3012020023 20070131 1 900000000000207008 423696009 373826004 0 116680003 900000000000011006 900000000000451002 +3012020023 20080731 0 900000000000207008 423696009 373826004 0 116680003 900000000000011006 900000000000451002 +3012021022 20070131 1 900000000000207008 423696009 119382000 0 116680003 900000000000011006 900000000000451002 +3012021022 20080731 0 900000000000207008 423696009 119382000 0 116680003 900000000000011006 900000000000451002 +3012022026 20070131 1 900000000000207008 423696009 309222007 0 116680003 900000000000011006 900000000000451002 +3012022026 20080731 0 900000000000207008 423696009 309222007 0 116680003 900000000000011006 900000000000451002 +3012045021 20070131 1 900000000000207008 423671006 119376003 0 116680003 900000000000011006 900000000000451002 +3012045021 20080731 0 900000000000207008 423671006 119376003 0 116680003 900000000000011006 900000000000451002 +3012046022 20070131 1 900000000000207008 423671006 420548004 0 116680003 900000000000011006 900000000000451002 +3028521023 20070131 1 900000000000207008 258654007 70813002 0 370133003 900000000000011006 900000000000451002 +3028521023 20080731 0 900000000000207008 258654007 70813002 0 370133003 900000000000011006 900000000000451002 +3032536024 20070131 1 900000000000207008 309058007 122548005 0 118171006 900000000000011006 900000000000451002 +3032536024 20080731 0 900000000000207008 309058007 122548005 0 118171006 900000000000011006 900000000000451002 +3032599026 20070131 1 900000000000207008 119328004 226789007 0 370133003 900000000000011006 900000000000451002 +3032599026 20080731 0 900000000000207008 119328004 226789007 0 370133003 900000000000011006 900000000000451002 +3032599026 20090131 1 900000000000207008 119328004 226789007 1 370133003 900000000000011006 900000000000451002 +3032600028 20070131 1 900000000000207008 119329007 226789007 0 370133003 900000000000011006 900000000000451002 +3032600028 20080731 0 900000000000207008 119329007 226789007 0 370133003 900000000000011006 900000000000451002 +3034667027 20070131 1 900000000000207008 122621000 14671001 0 118171006 900000000000011006 900000000000451002 +3034667027 20080731 0 900000000000207008 122621000 14671001 0 118171006 900000000000011006 900000000000451002 +3034673026 20070131 1 900000000000207008 122648004 51342009 0 118169006 900000000000011006 900000000000451002 +3034673026 20080731 0 900000000000207008 122648004 51342009 0 118169006 900000000000011006 900000000000451002 +3034673026 20090131 1 900000000000207008 122648004 51342009 1 118169006 900000000000011006 900000000000451002 +3034673026 20170731 0 900000000000207008 122648004 51342009 1 118169006 900000000000011006 900000000000451002 +3034677025 20070131 1 900000000000207008 122650007 43075005 0 118171006 900000000000011006 900000000000451002 +3034677025 20080731 0 900000000000207008 122650007 43075005 0 118171006 900000000000011006 900000000000451002 +3034712022 20070131 1 900000000000207008 122737001 122548005 0 118171006 900000000000011006 900000000000451002 +3034712022 20080731 0 900000000000207008 122737001 122548005 0 118171006 900000000000011006 900000000000451002 +3066360028 20070131 1 900000000000207008 406101006 91470000 0 118169006 900000000000011006 900000000000451002 +3066360028 20080731 0 900000000000207008 406101006 91470000 0 118169006 900000000000011006 900000000000451002 +3066360028 20090131 1 900000000000207008 406101006 91470000 1 118169006 900000000000011006 900000000000451002 +3069140026 20070131 1 900000000000207008 422991009 66754008 0 118169006 900000000000011006 900000000000451002 +3069140026 20080731 0 900000000000207008 422991009 66754008 0 118169006 900000000000011006 900000000000451002 +3069141027 20070131 1 900000000000207008 422991009 80146002 0 118171006 900000000000011006 900000000000451002 +3069141027 20080731 0 900000000000207008 422991009 80146002 0 118171006 900000000000011006 900000000000451002 +3069142023 20070131 1 900000000000207008 422991009 85756007 0 118169006 900000000000011006 900000000000451002 +3069142023 20080731 0 900000000000207008 422991009 85756007 0 118169006 900000000000011006 900000000000451002 +3069143029 20070131 1 900000000000207008 422991009 51342009 0 118169006 900000000000011006 900000000000451002 +3069143029 20080731 0 900000000000207008 422991009 51342009 0 118169006 900000000000011006 900000000000451002 +3069144024 20070131 1 900000000000207008 422991009 235326000 0 118171006 900000000000011006 900000000000451002 +3069144024 20080731 0 900000000000207008 422991009 235326000 0 118171006 900000000000011006 900000000000451002 +3069945021 20070131 1 900000000000207008 423696009 359571009 1 118171006 900000000000011006 900000000000451002 +3069945021 20070731 1 900000000000207008 423696009 359571009 2 118171006 900000000000011006 900000000000451002 +3069945021 20080731 0 900000000000207008 423696009 359571009 2 118171006 900000000000011006 900000000000451002 +3069946022 20070131 1 900000000000207008 423696009 71854001 1 118169006 900000000000011006 900000000000451002 +3069946022 20070731 1 900000000000207008 423696009 71854001 2 118169006 900000000000011006 900000000000451002 +3069946022 20080731 0 900000000000207008 423696009 71854001 2 118169006 900000000000011006 900000000000451002 +3069947029 20070131 1 900000000000207008 423696009 85756007 0 118169006 900000000000011006 900000000000451002 +3069947029 20080731 0 900000000000207008 423696009 85756007 0 118169006 900000000000011006 900000000000451002 +3069948023 20070131 1 900000000000207008 423696009 80146002 2 118171006 900000000000011006 900000000000451002 +3069948023 20070731 1 900000000000207008 423696009 80146002 1 118171006 900000000000011006 900000000000451002 +3069948023 20080731 0 900000000000207008 423696009 80146002 1 118171006 900000000000011006 900000000000451002 +3069949026 20070131 1 900000000000207008 423696009 66754008 2 118169006 900000000000011006 900000000000451002 +3069949026 20070731 1 900000000000207008 423696009 66754008 1 118169006 900000000000011006 900000000000451002 +3069949026 20080731 0 900000000000207008 423696009 66754008 1 118169006 900000000000011006 900000000000451002 +3069966029 20070131 1 900000000000207008 423671006 83670000 0 118169006 900000000000011006 900000000000451002 +3069966029 20080731 0 900000000000207008 423671006 83670000 0 118169006 900000000000011006 900000000000451002 +3069966029 20090131 1 900000000000207008 423671006 83670000 1 118169006 900000000000011006 900000000000451002 +3069966029 20100131 0 900000000000207008 423671006 83670000 1 118169006 900000000000011006 900000000000451002 +3069966029 20100731 1 900000000000207008 423671006 83670000 1 118169006 900000000000011006 900000000000451002 +3069967022 20070131 1 900000000000207008 423671006 85756007 0 118169006 900000000000011006 900000000000451002 +3069967022 20080731 0 900000000000207008 423671006 85756007 0 118169006 900000000000011006 900000000000451002 +3069968028 20070131 1 900000000000207008 423671006 14799000 0 118168003 900000000000011006 900000000000451002 +3069968028 20080731 0 900000000000207008 423671006 14799000 0 118168003 900000000000011006 900000000000451002 +3069968028 20090131 1 900000000000207008 423671006 14799000 1 118168003 900000000000011006 900000000000451002 +3069968028 20100131 0 900000000000207008 423671006 14799000 1 118168003 900000000000011006 900000000000451002 +3069968028 20100731 1 900000000000207008 423671006 14799000 1 118168003 900000000000011006 900000000000451002 +3070127029 20070131 1 900000000000207008 396998007 234326005 0 118171006 900000000000011006 900000000000451002 +3070127029 20080731 0 900000000000207008 396998007 234326005 0 118171006 900000000000011006 900000000000451002 +3171966027 20070731 1 900000000000207008 415293009 258603007 0 116680003 900000000000011006 900000000000451002 +3171966027 20080731 0 900000000000207008 415293009 258603007 0 116680003 900000000000011006 900000000000451002 +3172841025 20070731 1 900000000000207008 168138009 258460002 0 116680003 900000000000011006 900000000000451002 +3172841025 20080131 0 900000000000207008 168138009 258460002 0 116680003 900000000000011006 900000000000451002 +3173032027 20070731 1 900000000000207008 258469001 410581002 0 116680003 900000000000011006 900000000000451002 +3173299028 20070731 1 900000000000207008 399502008 373826004 0 116680003 900000000000011006 900000000000451002 +3173299028 20090131 0 900000000000207008 399502008 373826004 0 116680003 900000000000011006 900000000000451002 +3173300020 20070731 1 900000000000207008 426815000 373826004 0 116680003 900000000000011006 900000000000451002 +3173301024 20070731 1 900000000000207008 122702004 373826004 0 116680003 900000000000011006 900000000000451002 +3173301024 20090131 0 900000000000207008 122702004 373826004 0 116680003 900000000000011006 900000000000451002 +3173302028 20070731 1 900000000000207008 122721007 373826004 0 116680003 900000000000011006 900000000000451002 +3173302028 20090131 0 900000000000207008 122721007 373826004 0 116680003 900000000000011006 900000000000451002 +3173526025 20070731 1 900000000000207008 426924005 373826004 0 116680003 900000000000011006 900000000000451002 +3173527023 20070731 1 900000000000207008 425804000 373826004 0 116680003 900000000000011006 900000000000451002 +3173528029 20070731 1 900000000000207008 122669002 373826004 0 116680003 900000000000011006 900000000000451002 +3173528029 20090131 0 900000000000207008 122669002 373826004 0 116680003 900000000000011006 900000000000451002 +3173529021 20070731 1 900000000000207008 309108002 373826004 0 116680003 900000000000011006 900000000000451002 +3173529021 20090131 0 900000000000207008 309108002 373826004 0 116680003 900000000000011006 900000000000451002 +3175433029 20070731 1 900000000000207008 415293009 309050000 0 116680003 900000000000011006 900000000000451002 +3175433029 20080731 0 900000000000207008 415293009 309050000 0 116680003 900000000000011006 900000000000451002 +3175441029 20070731 1 900000000000207008 116161004 122550002 0 116680003 900000000000011006 900000000000451002 +3175441029 20080731 0 900000000000207008 116161004 122550002 0 116680003 900000000000011006 900000000000451002 +3176273026 20070731 1 900000000000207008 309107007 119376003 0 116680003 900000000000011006 900000000000451002 +3176273026 20080731 0 900000000000207008 309107007 119376003 0 116680003 900000000000011006 900000000000451002 +3178104021 20070731 1 900000000000207008 309128003 309051001 0 116680003 900000000000011006 900000000000451002 +3178105022 20070731 1 900000000000207008 309199003 309051001 0 116680003 900000000000011006 900000000000451002 +3179261027 20070731 1 900000000000207008 309061008 258415003 0 116680003 900000000000011006 900000000000451002 +3179261027 20080731 0 900000000000207008 309061008 258415003 0 116680003 900000000000011006 900000000000451002 +3179262023 20070731 1 900000000000207008 309113003 258415003 0 116680003 900000000000011006 900000000000451002 +3179262023 20080731 0 900000000000207008 309113003 258415003 0 116680003 900000000000011006 900000000000451002 +3179262023 20210131 1 900000000000207008 309113003 258415003 0 116680003 900000000000011006 900000000000451002 +3179263029 20070731 1 900000000000207008 122618002 258415003 0 116680003 900000000000011006 900000000000451002 +3179263029 20080731 0 900000000000207008 122618002 258415003 0 116680003 900000000000011006 900000000000451002 +3179264024 20070731 1 900000000000207008 309146009 258415003 0 116680003 900000000000011006 900000000000451002 +3179264024 20080731 0 900000000000207008 309146009 258415003 0 116680003 900000000000011006 900000000000451002 +3179265020 20070731 1 900000000000207008 427558003 258415003 0 116680003 900000000000011006 900000000000451002 +3179266021 20070731 1 900000000000207008 309508006 258415003 0 116680003 900000000000011006 900000000000451002 +3179266021 20080731 0 900000000000207008 309508006 258415003 0 116680003 900000000000011006 900000000000451002 +3184362028 20070731 1 900000000000207008 408654003 123038009 0 116680003 900000000000011006 900000000000451002 +3184362028 20090731 0 900000000000207008 408654003 123038009 0 116680003 900000000000011006 900000000000451002 +3184597025 20070731 1 900000000000207008 110925004 48469005 0 116680003 900000000000011006 900000000000451002 +3184711028 20070731 1 900000000000207008 110897001 48469005 0 116680003 900000000000011006 900000000000451002 +3185532025 20070731 1 900000000000207008 399728008 427558003 0 116680003 900000000000011006 900000000000451002 +3185533024 20070731 1 900000000000207008 309134005 427558003 0 116680003 900000000000011006 900000000000451002 +3185534029 20070731 1 900000000000207008 122670001 427558003 0 116680003 900000000000011006 900000000000451002 +3185535028 20070731 1 900000000000207008 122737001 427558003 0 116680003 900000000000011006 900000000000451002 +3185536027 20070731 1 900000000000207008 309058007 427558003 0 116680003 900000000000011006 900000000000451002 +3185536027 20080731 0 900000000000207008 309058007 427558003 0 116680003 900000000000011006 900000000000451002 +3186774029 20070731 1 900000000000207008 415293009 423662002 0 370133003 900000000000011006 900000000000451002 +3186774029 20080731 0 900000000000207008 415293009 423662002 0 370133003 900000000000011006 900000000000451002 +3186774029 20090131 1 900000000000207008 415293009 423662002 1 370133003 900000000000011006 900000000000451002 +3187531022 20070731 1 900000000000207008 258559009 110597005 0 118169006 900000000000011006 900000000000451002 +3187531022 20080731 0 900000000000207008 258559009 110597005 0 118169006 900000000000011006 900000000000451002 +3187531022 20090131 1 900000000000207008 258559009 110597005 1 118169006 900000000000011006 900000000000451002 +3187531022 20090731 0 900000000000207008 258559009 110597005 1 118169006 900000000000011006 900000000000451002 +3187531022 20100131 1 900000000000207008 258559009 110597005 1 118169006 900000000000011006 900000000000451002 +3187921021 20070731 1 900000000000207008 122567009 78014005 0 370133003 900000000000011006 900000000000451002 +3187921021 20080731 0 900000000000207008 122567009 78014005 0 370133003 900000000000011006 900000000000451002 +3189343028 20070731 1 900000000000207008 309107007 13024002 0 118169006 900000000000011006 900000000000451002 +3189343028 20190731 1 900000000000207008 309107007 13024002 1 118169006 900000000000011006 900000000000451002 +3189731026 20070731 1 900000000000207008 309108002 13024002 0 118169006 900000000000011006 900000000000451002 +3189731026 20080731 0 900000000000207008 309108002 13024002 0 118169006 900000000000011006 900000000000451002 +3189731026 20090731 1 900000000000207008 309108002 13024002 1 118169006 900000000000011006 900000000000451002 +3189732022 20070731 1 900000000000207008 309113003 13024002 0 118169006 900000000000011006 900000000000451002 +3189732022 20080731 0 900000000000207008 309113003 13024002 0 118169006 900000000000011006 900000000000451002 +3189732022 20090131 1 900000000000207008 309113003 13024002 1 118169006 900000000000011006 900000000000451002 +3190228021 20070731 1 900000000000207008 309108002 74795009 0 118171006 900000000000011006 900000000000451002 +3190228021 20080731 0 900000000000207008 309108002 74795009 0 118171006 900000000000011006 900000000000451002 +3190228021 20090731 1 900000000000207008 309108002 74795009 1 118171006 900000000000011006 900000000000451002 +3191309020 20070731 1 900000000000207008 258469001 427282009 0 118171006 900000000000011006 900000000000451002 +3191309020 20080731 1 900000000000207008 258469001 427282009 1 118171006 900000000000011006 900000000000451002 +3191309020 20090131 0 900000000000207008 258469001 427282009 1 118171006 900000000000011006 900000000000451002 +3191309020 20090731 1 900000000000207008 258469001 427282009 1 118171006 900000000000011006 900000000000451002 +3191551028 20070731 1 900000000000207008 426924005 65801008 0 118171006 900000000000011006 900000000000451002 +3191551028 20190731 1 900000000000207008 426924005 65801008 1 118171006 900000000000011006 900000000000451002 +3191552024 20070731 1 900000000000207008 425804000 65801008 0 118171006 900000000000011006 900000000000451002 +3191552024 20190731 1 900000000000207008 425804000 65801008 1 118171006 900000000000011006 900000000000451002 +3191553025 20070731 1 900000000000207008 426815000 65801008 0 118171006 900000000000011006 900000000000451002 +3191553025 20190731 1 900000000000207008 426815000 65801008 1 118171006 900000000000011006 900000000000451002 +3193114023 20070731 1 900000000000207008 258469001 72869002 0 370133003 900000000000011006 900000000000451002 +3193114023 20080731 1 900000000000207008 258469001 72869002 1 370133003 900000000000011006 900000000000451002 +3193114023 20090131 0 900000000000207008 258469001 72869002 1 370133003 900000000000011006 900000000000451002 +3193114023 20090731 1 900000000000207008 258469001 72869002 1 370133003 900000000000011006 900000000000451002 +3193785022 20070731 1 900000000000207008 271514008 85756007 0 118169006 900000000000011006 900000000000451002 +3193785022 20080731 0 900000000000207008 271514008 85756007 0 118169006 900000000000011006 900000000000451002 +3195833029 20070731 1 900000000000207008 116161004 14766002 0 118171006 900000000000011006 900000000000451002 +3195833029 20080731 0 900000000000207008 116161004 14766002 0 118171006 900000000000011006 900000000000451002 +3195834024 20070731 1 900000000000207008 122550002 14766002 0 118171006 900000000000011006 900000000000451002 +3195834024 20080731 0 900000000000207008 122550002 14766002 0 118171006 900000000000011006 900000000000451002 +3196341029 20070731 1 900000000000207008 258444001 425460003 0 370133003 900000000000011006 900000000000451002 +3196341029 20080731 1 900000000000207008 258444001 425460003 1 370133003 900000000000011006 900000000000451002 +3198146020 20070731 1 900000000000207008 258438000 426101004 0 370133003 900000000000011006 900000000000451002 +3198146020 20080731 0 900000000000207008 258438000 426101004 0 370133003 900000000000011006 900000000000451002 +3198146020 20090131 1 900000000000207008 258438000 426101004 1 370133003 900000000000011006 900000000000451002 +3198634020 20070731 1 900000000000207008 427558003 9911007 0 118171006 900000000000011006 900000000000451002 +3198634020 20080731 0 900000000000207008 427558003 9911007 0 118171006 900000000000011006 900000000000451002 +3198634020 20090131 1 900000000000207008 427558003 9911007 1 118171006 900000000000011006 900000000000451002 +3198867022 20070731 1 900000000000207008 258469001 54066008 0 118169006 900000000000011006 900000000000451002 +3198867022 20080731 1 900000000000207008 258469001 54066008 1 118169006 900000000000011006 900000000000451002 +3198867022 20090131 0 900000000000207008 258469001 54066008 1 118169006 900000000000011006 900000000000451002 +3198867022 20090731 1 900000000000207008 258469001 54066008 1 118169006 900000000000011006 900000000000451002 +3199408027 20070731 1 900000000000207008 309113003 427337008 0 118171006 900000000000011006 900000000000451002 +3199408027 20080731 0 900000000000207008 309113003 427337008 0 118171006 900000000000011006 900000000000451002 +3199408027 20090131 1 900000000000207008 309113003 427337008 1 118171006 900000000000011006 900000000000451002 +3199611020 20070731 1 900000000000207008 258463000 64856004 0 370133003 900000000000011006 900000000000451002 +3199611020 20080731 0 900000000000207008 258463000 64856004 0 370133003 900000000000011006 900000000000451002 +3199612029 20070731 1 900000000000207008 258462005 64856004 0 370133003 900000000000011006 900000000000451002 +3199612029 20080731 0 900000000000207008 258462005 64856004 0 370133003 900000000000011006 900000000000451002 +3199613023 20070731 1 900000000000207008 309199003 64856004 0 370133003 900000000000011006 900000000000451002 +3199613023 20080731 1 900000000000207008 309199003 64856004 1 370133003 900000000000011006 900000000000451002 +3199614028 20070731 1 900000000000207008 168136008 64856004 0 370133003 900000000000011006 900000000000451002 +3199614028 20080731 0 900000000000207008 168136008 64856004 0 370133003 900000000000011006 900000000000451002 +3199614028 20090131 1 900000000000207008 168136008 64856004 1 370133003 900000000000011006 900000000000451002 +3199671025 20070731 1 900000000000207008 396999004 3138006 0 118169006 900000000000011006 900000000000451002 +3199671025 20080731 0 900000000000207008 396999004 3138006 0 118169006 900000000000011006 900000000000451002 +3199672021 20070731 1 900000000000207008 396998007 3138006 0 118169006 900000000000011006 900000000000451002 +3199672021 20080731 0 900000000000207008 396998007 3138006 0 118169006 900000000000011006 900000000000451002 +3199673027 20070731 1 900000000000207008 309105004 3138006 0 118169006 900000000000011006 900000000000451002 +3199673027 20080731 0 900000000000207008 309105004 3138006 0 118169006 900000000000011006 900000000000451002 +3199674022 20070731 1 900000000000207008 258417006 3138006 0 118169006 900000000000011006 900000000000451002 +3199674022 20080731 0 900000000000207008 258417006 3138006 0 118169006 900000000000011006 900000000000451002 +3199675023 20070731 1 900000000000207008 309120005 3138006 0 118169006 900000000000011006 900000000000451002 +3199675023 20080731 0 900000000000207008 309120005 3138006 0 118169006 900000000000011006 900000000000451002 +3199986023 20070731 1 900000000000207008 258476006 426513002 0 370133003 900000000000011006 900000000000451002 +3199986023 20080731 0 900000000000207008 258476006 426513002 0 370133003 900000000000011006 900000000000451002 +3199987025 20070731 1 900000000000207008 309128003 426513002 0 370133003 900000000000011006 900000000000451002 +3199987025 20080731 0 900000000000207008 309128003 426513002 0 370133003 900000000000011006 900000000000451002 +3199987025 20090131 1 900000000000207008 309128003 426513002 1 370133003 900000000000011006 900000000000451002 +3265271020 20080731 1 900000000000207008 309146009 122550002 0 116680003 900000000000011006 900000000000451002 +3265318022 20080731 1 900000000000207008 430241003 48469005 0 116680003 900000000000011006 900000000000451002 +3265319025 20080731 1 900000000000207008 430241003 309165001 0 116680003 900000000000011006 900000000000451002 +3265349028 20080731 1 900000000000207008 399731009 122645001 0 116680003 900000000000011006 900000000000451002 +3265349028 20130731 0 900000000000207008 399731009 122645001 0 116680003 900000000000011006 900000000000451002 +3265350028 20080731 1 900000000000207008 399731009 309266009 0 116680003 900000000000011006 900000000000451002 +3265351029 20080731 1 900000000000207008 399731009 309267000 0 116680003 900000000000011006 900000000000451002 +3265367024 20080731 1 900000000000207008 399541005 309491006 0 116680003 900000000000011006 900000000000451002 +3265385028 20080731 1 900000000000207008 415563002 397078009 0 116680003 900000000000011006 900000000000451002 +3265386027 20080731 1 900000000000207008 415563002 309206006 0 116680003 900000000000011006 900000000000451002 +3265395024 20080731 1 900000000000207008 110923006 110910004 0 116680003 900000000000011006 900000000000451002 +3265396020 20080731 1 900000000000207008 110923006 110912007 0 116680003 900000000000011006 900000000000451002 +3265452021 20080731 1 900000000000207008 397458006 397457001 0 116680003 900000000000011006 900000000000451002 +3265512022 20080731 1 900000000000207008 122651006 309223002 0 116680003 900000000000011006 900000000000451002 +3265512022 20190731 0 900000000000207008 122651006 309223002 0 116680003 900000000000011006 900000000000451002 +3265644027 20080731 1 900000000000207008 432980007 122550002 0 116680003 900000000000011006 900000000000451002 +3265644027 20090731 0 900000000000207008 432980007 122550002 0 116680003 900000000000011006 900000000000451002 +3265645026 20080731 1 900000000000207008 432980007 431205006 0 116680003 900000000000011006 900000000000451002 +3265645026 20230630 0 900000000000207008 432980007 431205006 0 116680003 900000000000011006 900000000000451002 +3265661029 20080731 1 900000000000207008 433324003 430220009 0 116680003 900000000000011006 900000000000451002 +3265661029 20240701 0 900000000000207008 433324003 430220009 0 116680003 900000000000011006 900000000000451002 +3265676021 20080731 1 900000000000207008 397457001 430232008 0 116680003 900000000000011006 900000000000451002 +3265690024 20080731 1 900000000000207008 122638001 127466008 0 116680003 900000000000011006 900000000000451002 +3265695025 20080731 1 900000000000207008 399532000 127474009 0 116680003 900000000000011006 900000000000451002 +3265709022 20080731 1 900000000000207008 432384008 122550002 0 116680003 900000000000011006 900000000000451002 +3265709022 20090731 0 900000000000207008 432384008 122550002 0 116680003 900000000000011006 900000000000451002 +3265710028 20080731 1 900000000000207008 432384008 309211008 0 116680003 900000000000011006 900000000000451002 +3265711029 20080731 1 900000000000207008 122601001 127456000 0 116680003 900000000000011006 900000000000451002 +3265712020 20080731 1 900000000000207008 122601001 431412004 0 116680003 900000000000011006 900000000000451002 +3265746021 20080731 1 900000000000207008 258510005 258525005 0 116680003 900000000000011006 900000000000451002 +3265746021 20190731 0 900000000000207008 258510005 258525005 0 116680003 900000000000011006 900000000000451002 +3265754023 20080731 1 900000000000207008 122629003 309049000 0 116680003 900000000000011006 900000000000451002 +3265755024 20080731 1 900000000000207008 122629003 122630008 0 116680003 900000000000011006 900000000000451002 +3265849023 20080731 1 900000000000207008 119355008 258591005 0 116680003 900000000000011006 900000000000451002 +3265850023 20080731 1 900000000000207008 309134005 128170008 0 116680003 900000000000011006 900000000000451002 +3265851022 20080731 1 900000000000207008 309134005 384819001 0 116680003 900000000000011006 900000000000451002 +3265867027 20080731 1 900000000000207008 430117006 48469005 0 116680003 900000000000011006 900000000000451002 +3265868021 20080731 1 900000000000207008 430117006 433324003 0 116680003 900000000000011006 900000000000451002 +3265880029 20080731 1 900000000000207008 432382007 122550002 0 116680003 900000000000011006 900000000000451002 +3265881025 20080731 1 900000000000207008 432382007 302795002 0 116680003 900000000000011006 900000000000451002 +3265882021 20080731 1 900000000000207008 432382007 309079007 0 116680003 900000000000011006 900000000000451002 +3265882021 20090131 0 900000000000207008 432382007 309079007 0 116680003 900000000000011006 900000000000451002 +3265934027 20080731 1 900000000000207008 430144001 258604001 0 116680003 900000000000011006 900000000000451002 +3265934027 20170731 0 900000000000207008 430144001 258604001 0 116680003 900000000000011006 900000000000451002 +3265935026 20080731 1 900000000000207008 433859006 431886004 0 116680003 900000000000011006 900000000000451002 +3265935026 20240701 0 900000000000207008 433859006 431886004 0 116680003 900000000000011006 900000000000451002 +3265936025 20080731 1 900000000000207008 433859006 432608000 0 116680003 900000000000011006 900000000000451002 +3265991021 20080731 1 900000000000207008 122652004 373826004 0 116680003 900000000000011006 900000000000451002 +3265991021 20090131 0 900000000000207008 122652004 373826004 0 116680003 900000000000011006 900000000000451002 +3265992025 20080731 1 900000000000207008 122652004 122643008 0 116680003 900000000000011006 900000000000451002 +3265992025 20190731 0 900000000000207008 122652004 122643008 0 116680003 900000000000011006 900000000000451002 +3266065028 20080731 1 900000000000207008 434406008 432607005 0 116680003 900000000000011006 900000000000451002 +3266066027 20080731 1 900000000000207008 434406008 433119005 0 116680003 900000000000011006 900000000000451002 +3266114022 20080731 1 900000000000207008 122602008 431885000 0 116680003 900000000000011006 900000000000451002 +3266114022 20240701 0 900000000000207008 122602008 431885000 0 116680003 900000000000011006 900000000000451002 +3266178025 20080731 1 900000000000207008 430319000 309185002 0 116680003 900000000000011006 900000000000451002 +3266178025 20240501 0 900000000000207008 430319000 309185002 0 116680003 900000000000011006 900000000000451002 +3266194021 20080731 1 900000000000207008 122737001 127457009 0 116680003 900000000000011006 900000000000451002 +3266231020 20080731 1 900000000000207008 167872000 167871007 0 116680003 900000000000011006 900000000000451002 +3266237024 20080731 1 900000000000207008 258504005 257261003 0 116680003 900000000000011006 900000000000451002 +3266289025 20080731 1 900000000000207008 369611008 431412004 0 116680003 900000000000011006 900000000000451002 +3266309026 20080731 1 900000000000207008 397233003 433323009 0 116680003 900000000000011006 900000000000451002 +3266309026 20140131 0 900000000000207008 397233003 433323009 0 116680003 900000000000011006 900000000000451002 +3266311024 20080731 1 900000000000207008 122700007 309501000 0 116680003 900000000000011006 900000000000451002 +3266323029 20080731 1 900000000000207008 430379005 309051001 0 116680003 900000000000011006 900000000000451002 +3266323029 20110731 0 900000000000207008 430379005 309051001 0 116680003 900000000000011006 900000000000451002 +3266324024 20080731 1 900000000000207008 430379005 110919003 0 116680003 900000000000011006 900000000000451002 +3266416029 20080731 1 900000000000207008 167869007 309125000 0 116680003 900000000000011006 900000000000451002 +3266416029 20110131 0 900000000000207008 167869007 309125000 0 116680003 900000000000011006 900000000000451002 +3266417022 20080731 1 900000000000207008 167869007 430246008 0 116680003 900000000000011006 900000000000451002 +3266558028 20080731 1 900000000000207008 427558003 119376003 0 116680003 900000000000011006 900000000000451002 +3266560026 20080731 1 900000000000207008 399614009 258435002 0 116680003 900000000000011006 900000000000451002 +3266561027 20080731 1 900000000000207008 110956007 119382000 0 116680003 900000000000011006 900000000000451002 +3266562023 20080731 1 900000000000207008 110956007 116158000 0 116680003 900000000000011006 900000000000451002 +3266586020 20080731 1 900000000000207008 167871007 309125000 0 116680003 900000000000011006 900000000000451002 +3266586020 20110131 0 900000000000207008 167871007 309125000 0 116680003 900000000000011006 900000000000451002 +3266587027 20080731 1 900000000000207008 167871007 430246008 0 116680003 900000000000011006 900000000000451002 +3266608025 20080731 1 900000000000207008 432983009 431886004 0 116680003 900000000000011006 900000000000451002 +3266608025 20240701 0 900000000000207008 432983009 431886004 0 116680003 900000000000011006 900000000000451002 +3266609022 20080731 1 900000000000207008 432983009 309154006 0 116680003 900000000000011006 900000000000451002 +3266610028 20080731 1 900000000000207008 432983009 432139004 0 116680003 900000000000011006 900000000000451002 +3266613026 20080731 1 900000000000207008 399486006 309278008 0 116680003 900000000000011006 900000000000451002 +3266613026 20140131 0 900000000000207008 399486006 309278008 0 116680003 900000000000011006 900000000000451002 +3266613026 20190731 1 900000000000207008 399486006 309278008 0 116680003 900000000000011006 900000000000451002 +3266617025 20080731 1 900000000000207008 431696005 122550002 0 116680003 900000000000011006 900000000000451002 +3266617025 20090731 0 900000000000207008 431696005 122550002 0 116680003 900000000000011006 900000000000451002 +3266618024 20080731 1 900000000000207008 431696005 433873002 0 116680003 900000000000011006 900000000000451002 +3266637026 20080731 1 900000000000207008 258507003 258531008 0 116680003 900000000000011006 900000000000451002 +3266680024 20080731 1 900000000000207008 430389009 119373006 0 116680003 900000000000011006 900000000000451002 +3266681023 20080731 1 900000000000207008 430389009 48469005 0 116680003 900000000000011006 900000000000451002 +3266695021 20080731 1 900000000000207008 309137003 128154006 0 116680003 900000000000011006 900000000000451002 +3266696022 20080731 1 900000000000207008 309137003 431412004 0 116680003 900000000000011006 900000000000451002 +3266720029 20080731 1 900000000000207008 430250001 309072003 0 116680003 900000000000011006 900000000000451002 +3266720029 20210131 0 900000000000207008 430250001 309072003 0 116680003 900000000000011006 900000000000451002 +3266721025 20080731 1 900000000000207008 430250001 430232008 0 116680003 900000000000011006 900000000000451002 +3266721025 20100131 0 900000000000207008 430250001 430232008 0 116680003 900000000000011006 900000000000451002 +3266741024 20080731 1 900000000000207008 430309006 110899003 0 116680003 900000000000011006 900000000000451002 +3266742028 20080731 1 900000000000207008 430309006 309503002 0 116680003 900000000000011006 900000000000451002 +3266775020 20080731 1 900000000000207008 122673004 309270001 0 116680003 900000000000011006 900000000000451002 +3266775020 20240901 0 900000000000207008 122673004 309270001 0 116680003 900000000000011006 900000000000451002 +3266792027 20080731 1 900000000000207008 433116003 122550002 0 116680003 900000000000011006 900000000000451002 +3266792027 20090731 0 900000000000207008 433116003 122550002 0 116680003 900000000000011006 900000000000451002 +3266793021 20080731 1 900000000000207008 433116003 309203003 0 116680003 900000000000011006 900000000000451002 +3266795025 20080731 1 900000000000207008 110907006 110908001 0 116680003 900000000000011006 900000000000451002 +3266804026 20080731 1 900000000000207008 399752001 309267000 0 116680003 900000000000011006 900000000000451002 +3266855022 20080731 1 900000000000207008 110893002 48469005 0 116680003 900000000000011006 900000000000451002 +3266856023 20080731 1 900000000000207008 110893002 258548000 0 116680003 900000000000011006 900000000000451002 +3266856023 20130731 0 900000000000207008 110893002 258548000 0 116680003 900000000000011006 900000000000451002 +3266899029 20080731 1 900000000000207008 110944006 430232008 0 116680003 900000000000011006 900000000000451002 +3266899029 20100131 0 900000000000207008 110944006 430232008 0 116680003 900000000000011006 900000000000451002 +3266920024 20080731 1 900000000000207008 432140002 122550002 0 116680003 900000000000011006 900000000000451002 +3266921023 20080731 1 900000000000207008 432140002 309174004 0 116680003 900000000000011006 900000000000451002 +3266924026 20080731 1 900000000000207008 258503004 258548000 0 116680003 900000000000011006 900000000000451002 +3266924026 20130731 0 900000000000207008 258503004 258548000 0 116680003 900000000000011006 900000000000451002 +3267016028 20080731 1 900000000000207008 110955006 119396006 0 116680003 900000000000011006 900000000000451002 +3267100028 20080731 1 900000000000207008 397462000 430244006 0 116680003 900000000000011006 900000000000451002 +3267100028 20140131 0 900000000000207008 397462000 430244006 0 116680003 900000000000011006 900000000000451002 +3267134027 20080731 1 900000000000207008 431771004 309201001 0 116680003 900000000000011006 900000000000451002 +3267135026 20080731 1 900000000000207008 431771004 110944006 0 116680003 900000000000011006 900000000000451002 +3267161027 20080731 1 900000000000207008 258506007 258531008 0 116680003 900000000000011006 900000000000451002 +3267211029 20080731 1 900000000000207008 397232008 309270001 0 116680003 900000000000011006 900000000000451002 +3267296022 20080731 1 900000000000207008 167874004 309125000 0 116680003 900000000000011006 900000000000451002 +3267296022 20110131 0 900000000000207008 167874004 309125000 0 116680003 900000000000011006 900000000000451002 +3267297029 20080731 1 900000000000207008 167874004 430214008 0 116680003 900000000000011006 900000000000451002 +3267303020 20080731 1 900000000000207008 309261004 110956007 0 116680003 900000000000011006 900000000000451002 +3267303020 20220630 0 900000000000207008 309261004 110956007 0 116680003 900000000000011006 900000000000451002 +3267304025 20080731 1 900000000000207008 309261004 258415003 0 116680003 900000000000011006 900000000000451002 +3267325025 20080731 1 900000000000207008 433322004 430250001 0 116680003 900000000000011006 900000000000451002 +3267357029 20080731 1 900000000000207008 433799002 430236006 0 116680003 900000000000011006 900000000000451002 +3267365026 20080731 1 900000000000207008 258489000 258548000 0 116680003 900000000000011006 900000000000451002 +3267365026 20130731 0 900000000000207008 258489000 258548000 0 116680003 900000000000011006 900000000000451002 +3267424027 20080731 1 900000000000207008 122628006 122630008 0 116680003 900000000000011006 900000000000451002 +3267424027 20190131 0 900000000000207008 122628006 122630008 0 116680003 900000000000011006 900000000000451002 +3267425026 20080731 1 900000000000207008 122628006 122627001 0 116680003 900000000000011006 900000000000451002 +3267444022 20080731 1 900000000000207008 415293009 432825001 0 116680003 900000000000011006 900000000000451002 +3267445023 20080731 1 900000000000207008 415293009 410580001 0 116680003 900000000000011006 900000000000451002 +3267500022 20080731 1 900000000000207008 110926003 430232008 0 116680003 900000000000011006 900000000000451002 +3267500022 20100131 0 900000000000207008 110926003 430232008 0 116680003 900000000000011006 900000000000451002 +3267508026 20080731 1 900000000000207008 309129006 119376003 0 116680003 900000000000011006 900000000000451002 +3267509023 20080731 1 900000000000207008 309129006 430236006 0 116680003 900000000000011006 900000000000451002 +3267556021 20080731 1 900000000000207008 309262006 119381007 0 116680003 900000000000011006 900000000000451002 +3267556021 20110731 0 900000000000207008 309262006 119381007 0 116680003 900000000000011006 900000000000451002 +3267557028 20080731 1 900000000000207008 309262006 431412004 0 116680003 900000000000011006 900000000000451002 +3267599027 20080731 1 900000000000207008 167868004 309125000 0 116680003 900000000000011006 900000000000451002 +3267599027 20110131 0 900000000000207008 167868004 309125000 0 116680003 900000000000011006 900000000000451002 +3267600029 20080731 1 900000000000207008 167868004 430246008 0 116680003 900000000000011006 900000000000451002 +3267623026 20080731 1 900000000000207008 110954005 116156001 0 116680003 900000000000011006 900000000000451002 +3267636026 20080731 1 900000000000207008 369614000 399541005 0 116680003 900000000000011006 900000000000451002 +3267646029 20080731 1 900000000000207008 369616003 431412004 0 116680003 900000000000011006 900000000000451002 +3267650020 20080731 1 900000000000207008 309142006 309141004 0 116680003 900000000000011006 900000000000451002 +3267651024 20080731 1 900000000000207008 309142006 434244002 0 116680003 900000000000011006 900000000000451002 +3267695029 20080731 1 900000000000207008 396899000 432144006 0 116680003 900000000000011006 900000000000451002 +3267724028 20080731 1 900000000000207008 122567009 309050000 0 116680003 900000000000011006 900000000000451002 +3267725027 20080731 1 900000000000207008 122567009 127471001 0 116680003 900000000000011006 900000000000451002 +3267866024 20080731 1 900000000000207008 430297000 48469005 0 116680003 900000000000011006 900000000000451002 +3267867026 20080731 1 900000000000207008 430297000 430304001 0 116680003 900000000000011006 900000000000451002 +3267934026 20080731 1 900000000000207008 309139000 430234009 0 116680003 900000000000011006 900000000000451002 +3267937022 20080731 1 900000000000207008 110952009 110930000 0 116680003 900000000000011006 900000000000451002 +3267938028 20080731 1 900000000000207008 110922001 110912007 0 116680003 900000000000011006 900000000000451002 +3267943024 20080731 1 900000000000207008 167870008 309125000 0 116680003 900000000000011006 900000000000451002 +3267943024 20110131 0 900000000000207008 167870008 309125000 0 116680003 900000000000011006 900000000000451002 +3267944029 20080731 1 900000000000207008 167870008 430246008 0 116680003 900000000000011006 900000000000451002 +3267960025 20080731 1 900000000000207008 116161004 432984003 0 116680003 900000000000011006 900000000000451002 +3268022023 20080731 1 900000000000207008 258500001 430248009 0 116680003 900000000000011006 900000000000451002 +3268151020 20080731 1 900000000000207008 433309007 430250001 0 116680003 900000000000011006 900000000000451002 +3268171027 20080731 1 900000000000207008 309127008 373826004 0 116680003 900000000000011006 900000000000451002 +3268171027 20090131 0 900000000000207008 309127008 373826004 0 116680003 900000000000011006 900000000000451002 +3268216020 20080731 1 900000000000207008 116161004 431886004 0 116680003 900000000000011006 900000000000451002 +3268216020 20170731 0 900000000000207008 116161004 431886004 0 116680003 900000000000011006 900000000000451002 +3268233029 20080731 1 900000000000207008 399633004 396896007 0 116680003 900000000000011006 900000000000451002 +3268234024 20080731 1 900000000000207008 399633004 434014007 0 116680003 900000000000011006 900000000000451002 +3268278026 20080731 1 900000000000207008 122641005 309218002 0 116680003 900000000000011006 900000000000451002 +3268298020 20080731 1 900000000000207008 432419006 309125000 0 116680003 900000000000011006 900000000000451002 +3268298020 20110731 0 900000000000207008 432419006 309125000 0 116680003 900000000000011006 900000000000451002 +3268299028 20080731 1 900000000000207008 432419006 122550002 0 116680003 900000000000011006 900000000000451002 +3268335022 20080731 1 900000000000207008 309548003 127456000 0 116680003 900000000000011006 900000000000451002 +3268360022 20080731 1 900000000000207008 258505006 309068002 0 116680003 900000000000011006 900000000000451002 +3268360022 20130131 0 900000000000207008 258505006 309068002 0 116680003 900000000000011006 900000000000451002 +3268440026 20080731 1 900000000000207008 122718005 122716009 0 116680003 900000000000011006 900000000000451002 +3268461022 20080731 1 900000000000207008 167875003 309125000 0 116680003 900000000000011006 900000000000451002 +3268461022 20110131 0 900000000000207008 167875003 309125000 0 116680003 900000000000011006 900000000000451002 +3268462026 20080731 1 900000000000207008 167875003 430214008 0 116680003 900000000000011006 900000000000451002 +3268491028 20080731 1 900000000000207008 309549006 399747006 0 116680003 900000000000011006 900000000000451002 +3268639024 20080731 1 900000000000207008 309141004 433323009 0 116680003 900000000000011006 900000000000451002 +3268828023 20080731 1 900000000000207008 369613006 119376003 0 116680003 900000000000011006 900000000000451002 +3268846028 20080731 1 900000000000207008 369615004 373826004 0 116680003 900000000000011006 900000000000451002 +3268846028 20090131 0 900000000000207008 369615004 373826004 0 116680003 900000000000011006 900000000000451002 +3268882022 20080731 1 900000000000207008 167873005 309125000 0 116680003 900000000000011006 900000000000451002 +3268882022 20110131 0 900000000000207008 167873005 309125000 0 116680003 900000000000011006 900000000000451002 +3268883028 20080731 1 900000000000207008 167873005 430214008 0 116680003 900000000000011006 900000000000451002 +3268884023 20080731 1 900000000000207008 167873005 430232008 0 116680003 900000000000011006 900000000000451002 +3268884023 20140131 0 900000000000207008 167873005 430232008 0 116680003 900000000000011006 900000000000451002 +3268884023 20210131 1 900000000000207008 167873005 430232008 0 116680003 900000000000011006 900000000000451002 +3268911021 20080731 1 900000000000207008 430238007 258604001 0 116680003 900000000000011006 900000000000451002 +3268944026 20080731 1 900000000000207008 396896007 433326001 0 116680003 900000000000011006 900000000000451002 +3268974023 20080731 1 900000000000207008 122640006 309220004 0 116680003 900000000000011006 900000000000451002 +3268977027 20080731 1 900000000000207008 396898008 396896007 0 116680003 900000000000011006 900000000000451002 +3269017025 20080731 1 900000000000207008 122736005 127480001 0 116680003 900000000000011006 900000000000451002 +3269017025 20140131 0 900000000000207008 122736005 127480001 0 116680003 900000000000011006 900000000000451002 +3269018024 20080731 1 900000000000207008 122736005 258428005 0 116680003 900000000000011006 900000000000451002 +3269051026 20080731 1 900000000000207008 122639009 397056002 0 116680003 900000000000011006 900000000000451002 +3269186026 20080731 1 900000000000207008 397483006 373826004 0 116680003 900000000000011006 900000000000451002 +3269186026 20090131 0 900000000000207008 397483006 373826004 0 116680003 900000000000011006 900000000000451002 +3269187024 20080731 1 900000000000207008 110946008 110958008 0 116680003 900000000000011006 900000000000451002 +3269209029 20080731 1 900000000000207008 432441006 309135006 0 116680003 900000000000011006 900000000000451002 +3269210023 20080731 1 900000000000207008 432441006 430228002 0 116680003 900000000000011006 900000000000451002 +3269241024 20080731 1 900000000000207008 430214008 123038009 0 116680003 900000000000011006 900000000000451002 +3269305022 20080731 1 900000000000207008 430408004 309051001 0 116680003 900000000000011006 900000000000451002 +3269305022 20110731 0 900000000000207008 430408004 309051001 0 116680003 900000000000011006 900000000000451002 +3269306023 20080731 1 900000000000207008 430408004 48469005 0 116680003 900000000000011006 900000000000451002 +3269306023 20110731 0 900000000000207008 430408004 48469005 0 116680003 900000000000011006 900000000000451002 +3269344025 20080731 1 900000000000207008 110925004 363311008 0 116680003 900000000000011006 900000000000451002 +3269345029 20080731 1 900000000000207008 110925004 430220009 0 116680003 900000000000011006 900000000000451002 +3269345029 20240701 0 900000000000207008 110925004 430220009 0 116680003 900000000000011006 900000000000451002 +3269354026 20080731 1 900000000000207008 122735009 399689008 0 116680003 900000000000011006 900000000000451002 +3269378020 20080731 1 900000000000207008 122599003 309060009 0 116680003 900000000000011006 900000000000451002 +3269378020 20200731 0 900000000000207008 122599003 309060009 0 116680003 900000000000011006 900000000000451002 +3269390022 20080731 1 900000000000207008 119338009 309185002 0 116680003 900000000000011006 900000000000451002 +3269390022 20110731 0 900000000000207008 119338009 309185002 0 116680003 900000000000011006 900000000000451002 +3269419021 20080731 1 900000000000207008 110908001 430144001 0 116680003 900000000000011006 900000000000451002 +3269420026 20080731 1 900000000000207008 110908001 110902000 0 116680003 900000000000011006 900000000000451002 +3269443024 20080731 1 900000000000207008 167877006 167876002 0 116680003 900000000000011006 900000000000451002 +3269513024 20080731 1 900000000000207008 430236006 123038009 0 116680003 900000000000011006 900000000000451002 +3269513024 20130731 0 900000000000207008 430236006 123038009 0 116680003 900000000000011006 900000000000451002 +3269550020 20080731 1 900000000000207008 122650007 309223002 0 116680003 900000000000011006 900000000000451002 +3269550020 20090131 0 900000000000207008 122650007 309223002 0 116680003 900000000000011006 900000000000451002 +3269550020 20170731 1 900000000000207008 122650007 309223002 0 116680003 900000000000011006 900000000000451002 +3269550020 20200131 0 900000000000207008 122650007 309223002 0 116680003 900000000000011006 900000000000451002 +3269599024 20080731 1 900000000000207008 309547008 309060009 0 116680003 900000000000011006 900000000000451002 +3269599024 20200731 0 900000000000207008 309547008 309060009 0 116680003 900000000000011006 900000000000451002 +3269622026 20080731 1 900000000000207008 309148005 258433009 0 116680003 900000000000011006 900000000000451002 +3269696023 20080731 1 900000000000207008 399751008 127480001 0 116680003 900000000000011006 900000000000451002 +3269696023 20110131 0 900000000000207008 399751008 127480001 0 116680003 900000000000011006 900000000000451002 +3269757020 20080731 1 900000000000207008 110906002 258606004 0 116680003 900000000000011006 900000000000451002 +3269872027 20080731 1 900000000000207008 432607005 431886004 0 116680003 900000000000011006 900000000000451002 +3269872027 20240701 0 900000000000207008 432607005 431886004 0 116680003 900000000000011006 900000000000451002 +3269873021 20080731 1 900000000000207008 432607005 309188000 0 116680003 900000000000011006 900000000000451002 +3269899025 20080731 1 900000000000207008 119392008 119381007 0 116680003 900000000000011006 900000000000451002 +3269899025 20130731 0 900000000000207008 119392008 119381007 0 116680003 900000000000011006 900000000000451002 +3269905025 20080731 1 900000000000207008 110909009 110908001 0 116680003 900000000000011006 900000000000451002 +3269915020 20080731 1 900000000000207008 430304001 123038009 0 116680003 900000000000011006 900000000000451002 +3269974025 20080731 1 900000000000207008 399661005 399649002 0 116680003 900000000000011006 900000000000451002 +3269995024 20080731 1 900000000000207008 167876002 309125000 0 116680003 900000000000011006 900000000000451002 +3269995024 20110131 0 900000000000207008 167876002 309125000 0 116680003 900000000000011006 900000000000451002 +3269996020 20080731 1 900000000000207008 167876002 430214008 0 116680003 900000000000011006 900000000000451002 +3270022023 20080731 1 900000000000207008 309151003 309149002 0 116680003 900000000000011006 900000000000451002 +3270023029 20080731 1 900000000000207008 309151003 431885000 0 116680003 900000000000011006 900000000000451002 +3270023029 20240701 0 900000000000207008 309151003 431885000 0 116680003 900000000000011006 900000000000451002 +3270118027 20080731 1 900000000000207008 309131002 430236006 0 116680003 900000000000011006 900000000000451002 +3270137020 20080731 1 900000000000207008 110953004 110947004 0 116680003 900000000000011006 900000000000451002 +3270138026 20080731 1 900000000000207008 110953004 110949001 0 116680003 900000000000011006 900000000000451002 +3270147023 20080731 1 900000000000207008 431905001 258532001 0 116680003 900000000000011006 900000000000451002 +3270284028 20080731 1 900000000000207008 110903005 430220009 0 116680003 900000000000011006 900000000000451002 +3270284028 20110131 0 900000000000207008 110903005 430220009 0 116680003 900000000000011006 900000000000451002 +3270368026 20080731 1 900000000000207008 309105004 430268003 0 116680003 900000000000011006 900000000000451002 +3270391027 20080731 1 900000000000207008 110918006 110910004 0 116680003 900000000000011006 900000000000451002 +3270392023 20080731 1 900000000000207008 110918006 110912007 0 116680003 900000000000011006 900000000000451002 +3270420022 20080731 1 900000000000207008 432825001 309050000 0 116680003 900000000000011006 900000000000451002 +3270423024 20080731 1 900000000000207008 309502007 123038009 0 116680003 900000000000011006 900000000000451002 +3270450025 20080731 1 900000000000207008 309216003 119380008 0 116680003 900000000000011006 900000000000451002 +3270451026 20080731 1 900000000000207008 309216003 431412004 0 116680003 900000000000011006 900000000000451002 +3270505025 20080731 1 900000000000207008 399747006 430220009 0 116680003 900000000000011006 900000000000451002 +3270505025 20240701 0 900000000000207008 399747006 430220009 0 116680003 900000000000011006 900000000000451002 +3270512023 20080731 1 900000000000207008 432897002 48469005 0 116680003 900000000000011006 900000000000451002 +3270513029 20080731 1 900000000000207008 432897002 431361003 0 116680003 900000000000011006 900000000000451002 +3270513029 20110131 0 900000000000207008 432897002 431361003 0 116680003 900000000000011006 900000000000451002 +3270513029 20110731 1 900000000000207008 432897002 431361003 0 116680003 900000000000011006 900000000000451002 +3270526025 20080731 1 900000000000207008 128173005 309170008 0 116680003 900000000000011006 900000000000451002 +3270536022 20080731 1 900000000000207008 258474009 430238007 0 116680003 900000000000011006 900000000000451002 +3270671028 20080731 1 900000000000207008 119383005 430232008 0 116680003 900000000000011006 900000000000451002 +3270671028 20100131 0 900000000000207008 119383005 430232008 0 116680003 900000000000011006 900000000000451002 +3270675021 20080731 1 900000000000207008 309110000 309121009 0 116680003 900000000000011006 900000000000451002 +3270675021 20190131 0 900000000000207008 309110000 309121009 0 116680003 900000000000011006 900000000000451002 +3270696025 20080731 1 900000000000207008 258479004 309051001 0 116680003 900000000000011006 900000000000451002 +3270703024 20080731 1 900000000000207008 432383002 122550002 0 116680003 900000000000011006 900000000000451002 +3270703024 20090731 0 900000000000207008 432383002 122550002 0 116680003 900000000000011006 900000000000451002 +3270704029 20080731 1 900000000000207008 432383002 433760005 0 116680003 900000000000011006 900000000000451002 +3270712021 20080731 1 900000000000207008 122704003 119396006 0 116680003 900000000000011006 900000000000451002 +3270713027 20080731 1 900000000000207008 122704003 432059003 0 116680003 900000000000011006 900000000000451002 +3270714022 20080731 1 900000000000207008 309149002 430220009 0 116680003 900000000000011006 900000000000451002 +3270714022 20240701 0 900000000000207008 309149002 430220009 0 116680003 900000000000011006 900000000000451002 +3270801029 20080731 1 900000000000207008 110966004 110954005 0 116680003 900000000000011006 900000000000451002 +3270826022 20080731 1 900000000000207008 430133009 309185002 0 116680003 900000000000011006 900000000000451002 +3270826022 20140131 0 900000000000207008 430133009 309185002 0 116680003 900000000000011006 900000000000451002 +3270827029 20080731 1 900000000000207008 430133009 309072003 0 116680003 900000000000011006 900000000000451002 +3270827029 20210131 0 900000000000207008 430133009 309072003 0 116680003 900000000000011006 900000000000451002 +3270954027 20080731 1 900000000000207008 309126004 119376003 0 116680003 900000000000011006 900000000000451002 +3270957023 20080731 1 900000000000207008 116159008 430220009 0 116680003 900000000000011006 900000000000451002 +3270957023 20240701 0 900000000000207008 116159008 430220009 0 116680003 900000000000011006 900000000000451002 +3270968023 20080731 1 900000000000207008 309128003 119399004 0 116680003 900000000000011006 900000000000451002 +3271086026 20080731 1 900000000000207008 122689001 309143001 0 116680003 900000000000011006 900000000000451002 +3271086026 20110731 0 900000000000207008 122689001 309143001 0 116680003 900000000000011006 900000000000451002 +3271110027 20080731 1 900000000000207008 309215004 119379005 0 116680003 900000000000011006 900000000000451002 +3271133026 20080731 1 900000000000207008 309546004 309060009 0 116680003 900000000000011006 900000000000451002 +3271133026 20200731 0 900000000000207008 309546004 309060009 0 116680003 900000000000011006 900000000000451002 +3271193029 20080731 1 900000000000207008 110924000 110912007 0 116680003 900000000000011006 900000000000451002 +3271251022 20080731 1 900000000000207008 309225009 119382000 0 116680003 900000000000011006 900000000000451002 +3271252026 20080731 1 900000000000207008 309225009 431412004 0 116680003 900000000000011006 900000000000451002 +3271298025 20080731 1 900000000000207008 119351004 256912003 0 116680003 900000000000011006 900000000000451002 +3271298025 20090731 0 900000000000207008 119351004 256912003 0 116680003 900000000000011006 900000000000451002 +3271315029 20080731 1 900000000000207008 309118007 309074002 0 116680003 900000000000011006 900000000000451002 +3271315029 20210131 0 900000000000207008 309118007 309074002 0 116680003 900000000000011006 900000000000451002 +3271353023 20080731 1 900000000000207008 119333000 123038009 0 116680003 900000000000011006 900000000000451002 +3271595026 20080731 1 900000000000207008 119403008 127479004 0 116680003 900000000000011006 900000000000451002 +3271595026 20140131 0 900000000000207008 119403008 127479004 0 116680003 900000000000011006 900000000000451002 +3271626025 20080731 1 900000000000207008 369618002 399486006 0 116680003 900000000000011006 900000000000451002 +3271627023 20080731 1 900000000000207008 369618002 431412004 0 116680003 900000000000011006 900000000000451002 +3271633025 20080731 1 900000000000207008 431058008 430133009 0 116680003 900000000000011006 900000000000451002 +3271634020 20080731 1 900000000000207008 431058008 110925004 0 116680003 900000000000011006 900000000000451002 +3271750024 20080731 1 900000000000207008 110919003 430244006 0 116680003 900000000000011006 900000000000451002 +3271823020 20080731 1 900000000000207008 122569007 432825001 0 116680003 900000000000011006 900000000000451002 +3271849026 20080731 1 900000000000207008 122688009 396685001 0 116680003 900000000000011006 900000000000451002 +3271852023 20080731 1 900000000000207008 122610009 127458004 0 116680003 900000000000011006 900000000000451002 +3271853029 20080731 1 900000000000207008 122610009 431412004 0 116680003 900000000000011006 900000000000451002 +3271873023 20080731 1 900000000000207008 258475005 258474009 0 116680003 900000000000011006 900000000000451002 +3271878025 20080731 1 900000000000207008 258483004 432825001 0 116680003 900000000000011006 900000000000451002 +3271915022 20080731 1 900000000000207008 399551006 399436000 0 116680003 900000000000011006 900000000000451002 +3271985025 20080731 1 900000000000207008 309219005 119380008 0 116680003 900000000000011006 900000000000451002 +3271986029 20080731 1 900000000000207008 309219005 431412004 0 116680003 900000000000011006 900000000000451002 +3271992024 20080731 1 900000000000207008 128171007 127466008 0 116680003 900000000000011006 900000000000451002 +3272073022 20080731 1 900000000000207008 397221008 397233003 0 116680003 900000000000011006 900000000000451002 +3272116020 20080731 1 900000000000207008 258649003 258442002 0 116680003 900000000000011006 900000000000451002 +3272137028 20080731 1 900000000000207008 309107007 119331003 0 116680003 900000000000011006 900000000000451002 +3272137028 20140131 0 900000000000207008 309107007 119331003 0 116680003 900000000000011006 900000000000451002 +3272265022 20080731 1 900000000000207008 258465007 258442002 0 116680003 900000000000011006 900000000000451002 +3272266023 20080731 1 900000000000207008 258465007 433324003 0 116680003 900000000000011006 900000000000451002 +3272270026 20080731 1 900000000000207008 309122002 309123007 0 116680003 900000000000011006 900000000000451002 +3272271027 20080731 1 900000000000207008 309122002 309074002 0 116680003 900000000000011006 900000000000451002 +3272271027 20210131 0 900000000000207008 309122002 309074002 0 116680003 900000000000011006 900000000000451002 +3272335026 20080731 1 900000000000207008 399680007 430220009 0 116680003 900000000000011006 900000000000451002 +3272335026 20240701 0 900000000000207008 399680007 430220009 0 116680003 900000000000011006 900000000000451002 +3272391021 20080731 1 900000000000207008 122605005 122606006 0 116680003 900000000000011006 900000000000451002 +3272589025 20080731 1 900000000000207008 309115005 258415003 0 116680003 900000000000011006 900000000000451002 +3272612021 20080731 1 900000000000207008 128172000 363328006 0 116680003 900000000000011006 900000000000451002 +3272613027 20080731 1 900000000000207008 128172000 309168004 0 116680003 900000000000011006 900000000000451002 +3272622026 20080731 1 900000000000207008 119309006 119311002 0 116680003 900000000000011006 900000000000451002 +3272622026 20210131 0 900000000000207008 119309006 119311002 0 116680003 900000000000011006 900000000000451002 +3272688029 20080731 1 900000000000207008 122672009 309270001 0 116680003 900000000000011006 900000000000451002 +3272688029 20190131 0 900000000000207008 122672009 309270001 0 116680003 900000000000011006 900000000000451002 +3272702023 20080731 1 900000000000207008 430248009 119389009 0 116680003 900000000000011006 900000000000451002 +3272702023 20170731 0 900000000000207008 430248009 119389009 0 116680003 900000000000011006 900000000000451002 +3272722022 20080731 1 900000000000207008 119356009 258591005 0 116680003 900000000000011006 900000000000451002 +3272815021 20080731 1 900000000000207008 309117002 309072003 0 116680003 900000000000011006 900000000000451002 +3272815021 20210131 0 900000000000207008 309117002 309072003 0 116680003 900000000000011006 900000000000451002 +3272822029 20080731 1 900000000000207008 369617007 309205005 0 116680003 900000000000011006 900000000000451002 +3272823023 20080731 1 900000000000207008 369617007 128168004 0 116680003 900000000000011006 900000000000451002 +3272823023 20090131 0 900000000000207008 369617007 128168004 0 116680003 900000000000011006 900000000000451002 +3272901023 20080731 1 900000000000207008 309116006 119376003 0 116680003 900000000000011006 900000000000451002 +3272901023 20090131 0 900000000000207008 309116006 119376003 0 116680003 900000000000011006 900000000000451002 +3272902027 20080731 1 900000000000207008 309116006 373826004 0 116680003 900000000000011006 900000000000451002 +3272902027 20090131 0 900000000000207008 309116006 373826004 0 116680003 900000000000011006 900000000000451002 +3272903021 20080731 1 900000000000207008 258482009 309051001 0 116680003 900000000000011006 900000000000451002 +3272905025 20080731 1 900000000000207008 128174004 127472008 0 116680003 900000000000011006 900000000000451002 +3272940029 20080731 1 900000000000207008 432436003 309135006 0 116680003 900000000000011006 900000000000451002 +3272941025 20080731 1 900000000000207008 432436003 430234009 0 116680003 900000000000011006 900000000000451002 +3273016026 20080731 1 900000000000207008 258654007 258442002 0 116680003 900000000000011006 900000000000451002 +3273017024 20080731 1 900000000000207008 258654007 119320006 0 116680003 900000000000011006 900000000000451002 +3273051023 20080731 1 900000000000207008 122584003 258591005 0 116680003 900000000000011006 900000000000451002 +3273061027 20080731 1 900000000000207008 309508006 122550002 0 116680003 900000000000011006 900000000000451002 +3273122022 20080731 1 900000000000207008 271515009 430268003 0 116680003 900000000000011006 900000000000451002 +3273122022 20110731 0 900000000000207008 271515009 430268003 0 116680003 900000000000011006 900000000000451002 +3273122022 20160131 1 900000000000207008 271515009 430268003 0 116680003 900000000000011006 900000000000451002 +3273122022 20160731 0 900000000000207008 271515009 430268003 0 116680003 900000000000011006 900000000000451002 +3273122022 20200131 1 900000000000207008 271515009 430268003 0 116680003 900000000000011006 900000000000451002 +3273123028 20080731 1 900000000000207008 271515009 430232008 0 116680003 900000000000011006 900000000000451002 +3273123028 20110731 0 900000000000207008 271515009 430232008 0 116680003 900000000000011006 900000000000451002 +3273123028 20160131 1 900000000000207008 271515009 430232008 0 116680003 900000000000011006 900000000000451002 +3273123028 20160731 0 900000000000207008 271515009 430232008 0 116680003 900000000000011006 900000000000451002 +3273123028 20200131 1 900000000000207008 271515009 430232008 0 116680003 900000000000011006 900000000000451002 +3273185022 20080731 1 900000000000207008 128169007 128165001 0 116680003 900000000000011006 900000000000451002 +3273201023 20080731 1 900000000000207008 430228002 128154006 0 116680003 900000000000011006 900000000000451002 +3273202027 20080731 1 900000000000207008 430228002 258567001 0 116680003 900000000000011006 900000000000451002 +3273202027 20140131 0 900000000000207008 430228002 258567001 0 116680003 900000000000011006 900000000000451002 +3273211027 20080731 1 900000000000207008 430856003 119376003 0 116680003 900000000000011006 900000000000451002 +3273211027 20220228 0 900000000000207008 430856003 119376003 0 116680003 900000000000011006 900000000000451002 +3273240029 20080731 1 900000000000207008 258467004 430248009 0 116680003 900000000000011006 900000000000451002 +3273241025 20080731 1 900000000000207008 258467004 410581002 0 116680003 900000000000011006 900000000000451002 +3273252020 20080731 1 900000000000207008 433308004 430232008 0 116680003 900000000000011006 900000000000451002 +3273252020 20100131 0 900000000000207008 433308004 430232008 0 116680003 900000000000011006 900000000000451002 +3273322025 20080731 1 900000000000207008 128157004 399542003 0 116680003 900000000000011006 900000000000451002 +3273383021 20080731 1 900000000000207008 110905003 430248009 0 116680003 900000000000011006 900000000000451002 +3273384026 20080731 1 900000000000207008 110905003 110934009 0 116680003 900000000000011006 900000000000451002 +3273422026 20080731 1 900000000000207008 309121009 119376003 0 116680003 900000000000011006 900000000000451002 +3273422026 20210131 0 900000000000207008 309121009 119376003 0 116680003 900000000000011006 900000000000451002 +3273439029 20080731 1 900000000000207008 430249001 309185002 0 116680003 900000000000011006 900000000000451002 +3273439029 20240501 0 900000000000207008 430249001 309185002 0 116680003 900000000000011006 900000000000451002 +3273440027 20080731 1 900000000000207008 430249001 309072003 0 116680003 900000000000011006 900000000000451002 +3273440027 20210131 0 900000000000207008 430249001 309072003 0 116680003 900000000000011006 900000000000451002 +3273474028 20080731 1 900000000000207008 110970007 110969006 0 116680003 900000000000011006 900000000000451002 +3273505026 20080731 1 900000000000207008 122657005 369611008 0 116680003 900000000000011006 900000000000451002 +3273506025 20080731 1 900000000000207008 122657005 369614000 0 116680003 900000000000011006 900000000000451002 +3273507023 20080731 1 900000000000207008 122657005 122627001 0 116680003 900000000000011006 900000000000451002 +3273508029 20080731 1 900000000000207008 122657005 122658000 0 116680003 900000000000011006 900000000000451002 +3273508029 20190131 0 900000000000207008 122657005 122658000 0 116680003 900000000000011006 900000000000451002 +3273509021 20080731 1 900000000000207008 122657005 122667000 0 116680003 900000000000011006 900000000000451002 +3273513025 20080731 1 900000000000207008 122708000 128155007 0 116680003 900000000000011006 900000000000451002 +3273514020 20080731 1 900000000000207008 122708000 431412004 0 116680003 900000000000011006 900000000000451002 +3273516022 20080731 1 900000000000207008 122678008 433323009 0 116680003 900000000000011006 900000000000451002 +3273516022 20090131 0 900000000000207008 122678008 433323009 0 116680003 900000000000011006 900000000000451002 +3273523023 20080731 1 900000000000207008 399492000 309170008 0 116680003 900000000000011006 900000000000451002 +3273530028 20080731 1 900000000000207008 258461003 309135006 0 116680003 900000000000011006 900000000000451002 +3273548021 20080731 1 900000000000207008 309504008 396355000 0 116680003 900000000000011006 900000000000451002 +3273548021 20090131 0 900000000000207008 309504008 396355000 0 116680003 900000000000011006 900000000000451002 +3273578028 20080731 1 900000000000207008 122571007 430244006 0 116680003 900000000000011006 900000000000451002 +3273597028 20080731 1 900000000000207008 110921008 110910004 0 116680003 900000000000011006 900000000000451002 +3273598022 20080731 1 900000000000207008 110921008 110912007 0 116680003 900000000000011006 900000000000451002 +3273613022 20080731 1 900000000000207008 396359006 399649002 0 116680003 900000000000011006 900000000000451002 +3273615026 20080731 1 900000000000207008 122608007 373826004 0 116680003 900000000000011006 900000000000451002 +3273615026 20090131 0 900000000000207008 122608007 373826004 0 116680003 900000000000011006 900000000000451002 +3273616025 20080731 1 900000000000207008 122608007 399492000 0 116680003 900000000000011006 900000000000451002 +3273635025 20080731 1 900000000000207008 258468009 309051001 0 116680003 900000000000011006 900000000000451002 +3273678024 20080731 1 900000000000207008 119390000 258606004 0 116680003 900000000000011006 900000000000451002 +3273694028 20080731 1 900000000000207008 110941003 309140003 0 116680003 900000000000011006 900000000000451002 +3273718021 20080731 1 900000000000207008 119307008 119310001 0 116680003 900000000000011006 900000000000451002 +3273718021 20210131 0 900000000000207008 119307008 119310001 0 116680003 900000000000011006 900000000000451002 +3273772025 20080731 1 900000000000207008 432135005 119380008 0 116680003 900000000000011006 900000000000451002 +3273773024 20080731 1 900000000000207008 432135005 122550002 0 116680003 900000000000011006 900000000000451002 +3273773024 20090731 0 900000000000207008 432135005 122550002 0 116680003 900000000000011006 900000000000451002 +3273774029 20080731 1 900000000000207008 432135005 431412004 0 116680003 900000000000011006 900000000000451002 +3273774029 20090731 0 900000000000207008 432135005 431412004 0 116680003 900000000000011006 900000000000451002 +3273792021 20080731 1 900000000000207008 122677003 433323009 0 116680003 900000000000011006 900000000000451002 +3273792021 20090131 0 900000000000207008 122677003 433323009 0 116680003 900000000000011006 900000000000451002 +3273860027 20080731 1 900000000000207008 430221008 399436000 0 116680003 900000000000011006 900000000000451002 +3273901026 20080731 1 900000000000207008 397055003 309220004 0 116680003 900000000000011006 900000000000451002 +3273919024 20080731 1 900000000000207008 122633005 420548004 0 116680003 900000000000011006 900000000000451002 +3273919024 20211031 0 900000000000207008 122633005 420548004 0 116680003 900000000000011006 900000000000451002 +3273920029 20080731 1 900000000000207008 122633005 399629006 0 116680003 900000000000011006 900000000000451002 +3273927026 20080731 1 900000000000207008 309120005 309125000 0 116680003 900000000000011006 900000000000451002 +3273927026 20210131 0 900000000000207008 309120005 309125000 0 116680003 900000000000011006 900000000000451002 +3273927026 20240501 1 900000000000207008 309120005 309125000 0 116680003 900000000000011006 900000000000451002 +3273928020 20080731 1 900000000000207008 309120005 430268003 0 116680003 900000000000011006 900000000000451002 +3273929028 20080731 1 900000000000207008 309120005 430214008 0 116680003 900000000000011006 900000000000451002 +3273930022 20080731 1 900000000000207008 309120005 430232008 0 116680003 900000000000011006 900000000000451002 +3273930022 20140131 0 900000000000207008 309120005 430232008 0 116680003 900000000000011006 900000000000451002 +3273930022 20210131 1 900000000000207008 309120005 430232008 0 116680003 900000000000011006 900000000000451002 +3273951020 20080731 1 900000000000207008 128158009 309170008 0 116680003 900000000000011006 900000000000451002 +3273993021 20080731 1 900000000000207008 430310001 110906002 0 116680003 900000000000011006 900000000000451002 +3273994026 20080731 1 900000000000207008 430310001 119334006 0 116680003 900000000000011006 900000000000451002 +3273999020 20080731 1 900000000000207008 399645008 363328006 0 116680003 900000000000011006 900000000000451002 +3273999020 20220630 0 900000000000207008 399645008 363328006 0 116680003 900000000000011006 900000000000451002 +3274010029 20080731 1 900000000000207008 110943000 110946008 0 116680003 900000000000011006 900000000000451002 +3274011025 20080731 1 900000000000207008 110943000 110948009 0 116680003 900000000000011006 900000000000451002 +3274046022 20080731 1 900000000000207008 128156008 122643008 0 116680003 900000000000011006 900000000000451002 +3274046022 20130731 0 900000000000207008 128156008 122643008 0 116680003 900000000000011006 900000000000451002 +3274101023 20080731 1 900000000000207008 397056002 309220004 0 116680003 900000000000011006 900000000000451002 +3274106029 20080731 1 900000000000207008 309123007 309104000 0 116680003 900000000000011006 900000000000451002 +3274107022 20080731 1 900000000000207008 309123007 309072003 0 116680003 900000000000011006 900000000000451002 +3274107022 20210131 0 900000000000207008 309123007 309072003 0 116680003 900000000000011006 900000000000451002 +3274121024 20080731 1 900000000000207008 423671006 430232008 0 116680003 900000000000011006 900000000000451002 +3274121024 20100131 0 900000000000207008 423671006 430232008 0 116680003 900000000000011006 900000000000451002 +3274214026 20080731 1 900000000000207008 429836002 258475005 0 116680003 900000000000011006 900000000000451002 +3274238027 20080731 1 900000000000207008 309491006 363328006 0 116680003 900000000000011006 900000000000451002 +3274239024 20080731 1 900000000000207008 309491006 430232008 0 116680003 900000000000011006 900000000000451002 +3274239024 20100131 0 900000000000207008 309491006 430232008 0 116680003 900000000000011006 900000000000451002 +3274241020 20080731 1 900000000000207008 309208007 433309007 0 116680003 900000000000011006 900000000000451002 +3274242029 20080731 1 900000000000207008 309208007 309207002 0 116680003 900000000000011006 900000000000451002 +3274247024 20080731 1 900000000000207008 309206006 127469001 0 116680003 900000000000011006 900000000000451002 +3274248025 20080731 1 900000000000207008 309206006 431412004 0 116680003 900000000000011006 900000000000451002 +3274248025 20190731 0 900000000000207008 309206006 431412004 0 116680003 900000000000011006 900000000000451002 +3274288024 20080731 1 900000000000207008 384744003 373192005 0 116680003 900000000000011006 900000000000451002 +3274289027 20080731 1 900000000000207008 384744003 373193000 0 116680003 900000000000011006 900000000000451002 +3274329027 20080731 1 900000000000207008 122691009 122693007 0 116680003 900000000000011006 900000000000451002 +3274329027 20190131 0 900000000000207008 122691009 122693007 0 116680003 900000000000011006 900000000000451002 +3274487027 20080731 1 900000000000207008 399443006 373826004 0 116680003 900000000000011006 900000000000451002 +3274487027 20090131 0 900000000000207008 399443006 373826004 0 116680003 900000000000011006 900000000000451002 +3274519024 20080731 1 900000000000207008 258472008 309051001 0 116680003 900000000000011006 900000000000451002 +3274519024 20110731 0 900000000000207008 258472008 309051001 0 116680003 900000000000011006 900000000000451002 +3274567025 20080731 1 900000000000207008 309119004 119376003 0 116680003 900000000000011006 900000000000451002 +3274567025 20090131 0 900000000000207008 309119004 119376003 0 116680003 900000000000011006 900000000000451002 +3274568024 20080731 1 900000000000207008 309119004 373826004 0 116680003 900000000000011006 900000000000451002 +3274568024 20090131 0 900000000000207008 309119004 373826004 0 116680003 900000000000011006 900000000000451002 +3274585021 20080731 1 900000000000207008 128160006 128164002 0 116680003 900000000000011006 900000000000451002 +3274586022 20080731 1 900000000000207008 119353001 258591005 0 116680003 900000000000011006 900000000000451002 +3274622027 20080731 1 900000000000207008 430234009 309052008 0 116680003 900000000000011006 900000000000451002 +3274673024 20080731 1 900000000000207008 431404007 309105004 0 116680003 900000000000011006 900000000000451002 +3274674029 20080731 1 900000000000207008 431404007 122550002 0 116680003 900000000000011006 900000000000451002 +3274689022 20080731 1 900000000000207008 309132009 119386002 0 116680003 900000000000011006 900000000000451002 +3274690029 20080731 1 900000000000207008 309132009 431412004 0 116680003 900000000000011006 900000000000451002 +3274696024 20080731 1 900000000000207008 309218002 309220004 0 116680003 900000000000011006 900000000000451002 +3274766020 20080731 1 900000000000207008 430268003 309104000 0 116680003 900000000000011006 900000000000451002 +3274822025 20080731 1 900000000000207008 110940002 110954005 0 116680003 900000000000011006 900000000000451002 +3274837026 20080731 1 900000000000207008 122568004 122566000 0 116680003 900000000000011006 900000000000451002 +3274847028 20080731 1 900000000000207008 430244006 258541006 0 116680003 900000000000011006 900000000000451002 +3274848022 20080731 1 900000000000207008 430244006 433326001 0 116680003 900000000000011006 900000000000451002 +3274867021 20080731 1 900000000000207008 396483002 258415003 0 116680003 900000000000011006 900000000000451002 +3274868027 20080731 1 900000000000207008 128170008 128165001 0 116680003 900000000000011006 900000000000451002 +3274869024 20080731 1 900000000000207008 430861001 119376003 0 116680003 900000000000011006 900000000000451002 +3274878029 20080731 1 900000000000207008 258471001 309051001 0 116680003 900000000000011006 900000000000451002 +3274878029 20110131 0 900000000000207008 258471001 309051001 0 116680003 900000000000011006 900000000000451002 +3274977022 20080731 1 900000000000207008 396477000 396476009 0 116680003 900000000000011006 900000000000451002 +3275031021 20080731 1 900000000000207008 431361003 309051001 0 116680003 900000000000011006 900000000000451002 +3275051020 20080731 1 900000000000207008 122692002 309049000 0 116680003 900000000000011006 900000000000451002 +3275052029 20080731 1 900000000000207008 122692002 122693007 0 116680003 900000000000011006 900000000000451002 +3275084020 20080731 1 900000000000207008 168136008 119382000 0 116680003 900000000000011006 900000000000451002 +3275085021 20080731 1 900000000000207008 168136008 309049000 0 116680003 900000000000011006 900000000000451002 +3275190022 20080731 1 900000000000207008 432059003 127479004 0 116680003 900000000000011006 900000000000451002 +3275191021 20080731 1 900000000000207008 432059003 431412004 0 116680003 900000000000011006 900000000000451002 +3275227020 20080731 1 900000000000207008 258564008 309188000 0 116680003 900000000000011006 900000000000451002 +3275227020 20110731 0 900000000000207008 258564008 309188000 0 116680003 900000000000011006 900000000000451002 +3275291028 20080731 1 900000000000207008 168138009 122573005 0 116680003 900000000000011006 900000000000451002 +3275314023 20080731 1 900000000000207008 309108002 119376003 0 116680003 900000000000011006 900000000000451002 +3275314023 20090131 0 900000000000207008 309108002 119376003 0 116680003 900000000000011006 900000000000451002 +3275319029 20080731 1 900000000000207008 432420000 122550002 0 116680003 900000000000011006 900000000000451002 +3275319029 20090731 0 900000000000207008 432420000 122550002 0 116680003 900000000000011006 900000000000451002 +3275320024 20080731 1 900000000000207008 432420000 309271002 0 116680003 900000000000011006 900000000000451002 +3275355021 20080731 1 900000000000207008 110964001 110958008 0 116680003 900000000000011006 900000000000451002 +3275368029 20080731 1 900000000000207008 309109005 309123007 0 116680003 900000000000011006 900000000000451002 +3275368029 20190131 0 900000000000207008 309109005 309123007 0 116680003 900000000000011006 900000000000451002 +3275465027 20080731 1 900000000000207008 122690005 309143001 0 116680003 900000000000011006 900000000000451002 +3275465027 20100131 0 900000000000207008 122690005 309143001 0 116680003 900000000000011006 900000000000451002 +3275468025 20080731 1 900000000000207008 429832000 363311008 0 116680003 900000000000011006 900000000000451002 +3275468025 20110731 0 900000000000207008 429832000 363311008 0 116680003 900000000000011006 900000000000451002 +3275469022 20080731 1 900000000000207008 429832000 430232008 0 116680003 900000000000011006 900000000000451002 +3275469022 20100131 0 900000000000207008 429832000 430232008 0 116680003 900000000000011006 900000000000451002 +3275470023 20080731 1 900000000000207008 429832000 258455001 0 116680003 900000000000011006 900000000000451002 +3275561023 20080731 1 900000000000207008 258452003 430232008 0 116680003 900000000000011006 900000000000451002 +3275561023 20100131 0 900000000000207008 258452003 430232008 0 116680003 900000000000011006 900000000000451002 +3275561023 20240501 1 900000000000207008 258452003 430232008 0 116680003 900000000000011006 900000000000451002 +3275574028 20080731 1 900000000000207008 397135002 430232008 0 116680003 900000000000011006 900000000000451002 +3275593026 20080731 1 900000000000207008 309072003 123038009 0 116680003 900000000000011006 900000000000451002 +3275593026 20210131 0 900000000000207008 309072003 123038009 0 116680003 900000000000011006 900000000000451002 +3275696028 20080731 1 900000000000207008 258466008 258442002 0 116680003 900000000000011006 900000000000451002 +3275696028 20170731 0 900000000000207008 258466008 258442002 0 116680003 900000000000011006 900000000000451002 +3275716022 20080731 1 900000000000207008 309217007 119380008 0 116680003 900000000000011006 900000000000451002 +3275717029 20080731 1 900000000000207008 309217007 431412004 0 116680003 900000000000011006 900000000000451002 +3275763024 20080731 1 900000000000207008 309493009 363311008 0 116680003 900000000000011006 900000000000451002 +3275763024 20110731 0 900000000000207008 309493009 363311008 0 116680003 900000000000011006 900000000000451002 +3275764029 20080731 1 900000000000207008 309493009 431412004 0 116680003 900000000000011006 900000000000451002 +3275793029 20080731 1 900000000000207008 309130001 430236006 0 116680003 900000000000011006 900000000000451002 +3275814026 20080731 1 900000000000207008 110939004 309139000 0 116680003 900000000000011006 900000000000451002 +3275876022 20080731 1 900000000000207008 122566000 309051001 0 116680003 900000000000011006 900000000000451002 +3275911024 20080731 1 900000000000207008 421615004 122643008 0 116680003 900000000000011006 900000000000451002 +3275956028 20080731 1 900000000000207008 122631007 122630008 0 116680003 900000000000011006 900000000000451002 +3275994028 20080731 1 900000000000207008 430132004 433799002 0 116680003 900000000000011006 900000000000451002 +3275995027 20080731 1 900000000000207008 430132004 309072003 0 116680003 900000000000011006 900000000000451002 +3275995027 20160131 0 900000000000207008 430132004 309072003 0 116680003 900000000000011006 900000000000451002 +3276018022 20080731 1 900000000000207008 371782000 430268003 0 116680003 900000000000011006 900000000000451002 +3276086027 20080731 1 900000000000207008 309184003 309182004 0 116680003 900000000000011006 900000000000451002 +3276095024 20080731 1 900000000000207008 432910000 309165001 0 116680003 900000000000011006 900000000000451002 +3276096020 20080731 1 900000000000207008 432910000 431885000 0 116680003 900000000000011006 900000000000451002 +3276096020 20240701 0 900000000000207008 432910000 431885000 0 116680003 900000000000011006 900000000000451002 +3276183021 20080731 1 900000000000207008 309193002 119389009 0 116680003 900000000000011006 900000000000451002 +3276183021 20170731 0 900000000000207008 309193002 119389009 0 116680003 900000000000011006 900000000000451002 +3276184026 20080731 1 900000000000207008 309193002 431885000 0 116680003 900000000000011006 900000000000451002 +3276184026 20240701 0 900000000000207008 309193002 431885000 0 116680003 900000000000011006 900000000000451002 +3276197029 20080731 1 900000000000207008 309124001 258415003 0 116680003 900000000000011006 900000000000451002 +3276218025 20080731 1 900000000000207008 397053005 420548004 0 116680003 900000000000011006 900000000000451002 +3276218025 20211031 0 900000000000207008 397053005 420548004 0 116680003 900000000000011006 900000000000451002 +3276219022 20080731 1 900000000000207008 397053005 309220004 0 116680003 900000000000011006 900000000000451002 +3276221028 20080731 1 900000000000207008 128168004 363328006 0 116680003 900000000000011006 900000000000451002 +3276248027 20080731 1 900000000000207008 396804002 122666009 0 116680003 900000000000011006 900000000000451002 +3276304024 20080731 1 900000000000207008 434244002 433323009 0 116680003 900000000000011006 900000000000451002 +3276305020 20080731 1 900000000000207008 434244002 431412004 0 116680003 900000000000011006 900000000000451002 +3276332026 20080731 1 900000000000207008 396807009 122665008 0 116680003 900000000000011006 900000000000451002 +3276366024 20080731 1 900000000000207008 396805001 122666009 0 116680003 900000000000011006 900000000000451002 +3276422021 20080731 1 900000000000207008 432984003 399680007 0 116680003 900000000000011006 900000000000451002 +3276423027 20080731 1 900000000000207008 432984003 431885000 0 116680003 900000000000011006 900000000000451002 +3276423027 20240701 0 900000000000207008 432984003 431885000 0 116680003 900000000000011006 900000000000451002 +3276448029 20080731 1 900000000000207008 127458004 430232008 0 116680003 900000000000011006 900000000000451002 +3276448029 20100131 0 900000000000207008 127458004 430232008 0 116680003 900000000000011006 900000000000451002 +3276489026 20080731 1 900000000000207008 127459007 430232008 0 116680003 900000000000011006 900000000000451002 +3276489026 20100131 0 900000000000207008 127459007 430232008 0 116680003 900000000000011006 900000000000451002 +3276496029 20080731 1 900000000000207008 168139001 430232008 0 116680003 900000000000011006 900000000000451002 +3276496029 20100131 0 900000000000207008 168139001 430232008 0 116680003 900000000000011006 900000000000451002 +3276509026 20080731 1 900000000000207008 432057001 122550002 0 116680003 900000000000011006 900000000000451002 +3276509026 20090731 0 900000000000207008 432057001 122550002 0 116680003 900000000000011006 900000000000451002 +3276510020 20080731 1 900000000000207008 432057001 433854001 0 116680003 900000000000011006 900000000000451002 +3276559024 20080731 1 900000000000207008 397136001 399649002 0 116680003 900000000000011006 900000000000451002 +3276560025 20080731 1 900000000000207008 397136001 430214008 0 116680003 900000000000011006 900000000000451002 +3276561026 20080731 1 900000000000207008 397136001 430232008 0 116680003 900000000000011006 900000000000451002 +3276752028 20080731 1 900000000000207008 433120004 122550002 0 116680003 900000000000011006 900000000000451002 +3276752028 20090731 0 900000000000207008 433120004 122550002 0 116680003 900000000000011006 900000000000451002 +3276753022 20080731 1 900000000000207008 433120004 309277003 0 116680003 900000000000011006 900000000000451002 +3276753022 20090131 0 900000000000207008 433120004 309277003 0 116680003 900000000000011006 900000000000451002 +3276814023 20080731 1 900000000000207008 128155007 258567001 0 116680003 900000000000011006 900000000000451002 +3276830026 20080731 1 900000000000207008 168141000 119388001 0 116680003 900000000000011006 900000000000451002 +3276854020 20080731 1 900000000000207008 122575003 309051001 0 116680003 900000000000011006 900000000000451002 +3276854020 20110731 0 900000000000207008 122575003 309051001 0 116680003 900000000000011006 900000000000451002 +3276888025 20080731 1 900000000000207008 397134003 397133009 0 116680003 900000000000011006 900000000000451002 +3276918020 20080731 1 900000000000207008 432142005 119397002 0 116680003 900000000000011006 900000000000451002 +3276919028 20080731 1 900000000000207008 432142005 431412004 0 116680003 900000000000011006 900000000000451002 +3276961023 20080731 1 900000000000207008 258563002 110967008 0 116680003 900000000000011006 900000000000451002 +3277026023 20080731 1 900000000000207008 431412004 258415003 0 116680003 900000000000011006 900000000000451002 +3277027025 20080731 1 900000000000207008 431412004 430232008 0 116680003 900000000000011006 900000000000451002 +3277066022 20080731 1 900000000000207008 309071005 119397002 0 116680003 900000000000011006 900000000000451002 +3277100027 20080731 1 900000000000207008 127460002 363329003 0 116680003 900000000000011006 900000000000451002 +3277140022 20080731 1 900000000000207008 434250007 430244006 0 116680003 900000000000011006 900000000000451002 +3277141021 20080731 1 900000000000207008 434250007 434014007 0 116680003 900000000000011006 900000000000451002 +3277148026 20080731 1 900000000000207008 309125000 309104000 0 116680003 900000000000011006 900000000000451002 +3277210027 20080731 1 900000000000207008 258453008 309051001 0 116680003 900000000000011006 900000000000451002 +3277230028 20080731 1 900000000000207008 128163008 127480001 0 116680003 900000000000011006 900000000000451002 +3277256024 20080731 1 900000000000207008 430222001 119389009 0 116680003 900000000000011006 900000000000451002 +3277308026 20080731 1 900000000000207008 122739003 397077004 0 116680003 900000000000011006 900000000000451002 +3277309023 20080731 1 900000000000207008 122739003 309060009 0 116680003 900000000000011006 900000000000451002 +3277309023 20190131 0 900000000000207008 122739003 309060009 0 116680003 900000000000011006 900000000000451002 +3277341028 20080731 1 900000000000207008 258456000 119323008 0 116680003 900000000000011006 900000000000451002 +3277345021 20080731 1 900000000000207008 430232008 123038009 0 116680003 900000000000011006 900000000000451002 +3277350026 20080731 1 900000000000207008 309221000 309218002 0 116680003 900000000000011006 900000000000451002 +3277402026 20080731 1 900000000000207008 309112008 373826004 0 116680003 900000000000011006 900000000000451002 +3277402026 20090131 0 900000000000207008 309112008 373826004 0 116680003 900000000000011006 900000000000451002 +3277406028 20080731 1 900000000000207008 258627009 119308003 0 116680003 900000000000011006 900000000000451002 +3277407021 20080731 1 900000000000207008 122705002 309501000 0 116680003 900000000000011006 900000000000451002 +3277409024 20080731 1 900000000000207008 128167009 309168004 0 116680003 900000000000011006 900000000000451002 +3277481020 20080731 1 900000000000207008 309506005 397078009 0 116680003 900000000000011006 900000000000451002 +3277482029 20080731 1 900000000000207008 309506005 396355000 0 116680003 900000000000011006 900000000000451002 +3277496024 20080731 1 900000000000207008 399460001 363311008 0 116680003 900000000000011006 900000000000451002 +3277496024 20110731 0 900000000000207008 399460001 363311008 0 116680003 900000000000011006 900000000000451002 +3277497026 20080731 1 900000000000207008 399460001 430232008 0 116680003 900000000000011006 900000000000451002 +3277497026 20100131 0 900000000000207008 399460001 430232008 0 116680003 900000000000011006 900000000000451002 +3277505027 20080731 1 900000000000207008 384747005 258415003 0 116680003 900000000000011006 900000000000451002 +3277506026 20080731 1 900000000000207008 384747005 127458004 0 116680003 900000000000011006 900000000000451002 +3277559029 20080731 1 900000000000207008 431233006 122550002 0 116680003 900000000000011006 900000000000451002 +3277559029 20090731 0 900000000000207008 431233006 122550002 0 116680003 900000000000011006 900000000000451002 +3277560023 20080731 1 900000000000207008 431233006 309290005 0 116680003 900000000000011006 900000000000451002 +3277599026 20080731 1 900000000000207008 432864003 122550002 0 116680003 900000000000011006 900000000000451002 +3277599026 20090731 0 900000000000207008 432864003 122550002 0 116680003 900000000000011006 900000000000451002 +3277600028 20080731 1 900000000000207008 432864003 119381007 0 116680003 900000000000011006 900000000000451002 +3277601029 20080731 1 900000000000207008 432864003 431412004 0 116680003 900000000000011006 900000000000451002 +3277601029 20090731 0 900000000000207008 432864003 431412004 0 116680003 900000000000011006 900000000000451002 +3277608024 20080731 1 900000000000207008 422991009 423696009 0 116680003 900000000000011006 900000000000451002 +3277672021 20080731 1 900000000000207008 430246008 123038009 0 116680003 900000000000011006 900000000000451002 +3277702027 20080731 1 900000000000207008 309113003 432058006 0 116680003 900000000000011006 900000000000451002 +3277702027 20140131 0 900000000000207008 309113003 432058006 0 116680003 900000000000011006 900000000000451002 +3277722028 20080731 1 900000000000207008 110904004 430238007 0 116680003 900000000000011006 900000000000451002 +3277723022 20080731 1 900000000000207008 110904004 110902000 0 116680003 900000000000011006 900000000000451002 +3277730027 20080731 1 900000000000207008 258458004 309051001 0 116680003 900000000000011006 900000000000451002 +3277756023 20080731 1 900000000000207008 399388008 119385003 0 116680003 900000000000011006 900000000000451002 +3277839023 20080731 1 900000000000207008 122643008 127466008 0 116680003 900000000000011006 900000000000451002 +3277855027 20080731 1 900000000000207008 431232001 433324003 0 116680003 900000000000011006 900000000000451002 +3277856026 20080731 1 900000000000207008 431232001 258415003 0 116680003 900000000000011006 900000000000451002 +3277915025 20080731 1 900000000000207008 431196006 119376003 0 116680003 900000000000011006 900000000000451002 +3277959023 20080731 1 900000000000207008 258462005 309049000 0 116680003 900000000000011006 900000000000451002 +3277974020 20080731 1 900000000000207008 110920009 110906002 0 116680003 900000000000011006 900000000000451002 +3277975021 20080731 1 900000000000207008 110920009 119390000 0 116680003 900000000000011006 900000000000451002 +3277981029 20080731 1 900000000000207008 110934009 110902000 0 116680003 900000000000011006 900000000000451002 +3277998029 20080731 1 900000000000207008 309507001 309104000 0 116680003 900000000000011006 900000000000451002 +3278010024 20080731 1 900000000000207008 309479002 309072003 0 116680003 900000000000011006 900000000000451002 +3278010024 20210131 0 900000000000207008 309479002 309072003 0 116680003 900000000000011006 900000000000451002 +3278023028 20080731 1 900000000000207008 309222007 119381007 0 116680003 900000000000011006 900000000000451002 +3278025024 20080731 1 900000000000207008 430970004 119376003 0 116680003 900000000000011006 900000000000451002 +3278027027 20080731 1 900000000000207008 432061007 258415003 0 116680003 900000000000011006 900000000000451002 +3278028021 20080731 1 900000000000207008 432061007 309480004 0 116680003 900000000000011006 900000000000451002 +3278030023 20080731 1 900000000000207008 396806000 122665008 0 116680003 900000000000011006 900000000000451002 +3278035029 20080731 1 900000000000207008 122679000 433323009 0 116680003 900000000000011006 900000000000451002 +3278035029 20090131 0 900000000000207008 122679000 433323009 0 116680003 900000000000011006 900000000000451002 +3278040021 20080731 1 900000000000207008 258569003 258548000 0 116680003 900000000000011006 900000000000451002 +3278040021 20130731 0 900000000000207008 258569003 258548000 0 116680003 900000000000011006 900000000000451002 +3278071028 20080731 1 900000000000207008 122585002 258591005 0 116680003 900000000000011006 900000000000451002 +3278134028 20080731 1 900000000000207008 110942005 116158000 0 116680003 900000000000011006 900000000000451002 +3278142027 20080731 1 900000000000207008 309111001 309109005 0 116680003 900000000000011006 900000000000451002 +3278143021 20080731 1 900000000000207008 309111001 309122002 0 116680003 900000000000011006 900000000000451002 +3278143021 20190131 0 900000000000207008 309111001 309122002 0 116680003 900000000000011006 900000000000451002 +3278156025 20080731 1 900000000000207008 397078009 119376003 0 116680003 900000000000011006 900000000000451002 +3278156025 20090131 0 900000000000207008 397078009 119376003 0 116680003 900000000000011006 900000000000451002 +3278164020 20080731 1 900000000000207008 418564007 309051001 0 116680003 900000000000011006 900000000000451002 +3278165021 20080731 1 900000000000207008 418564007 258603007 0 116680003 900000000000011006 900000000000451002 +3278166022 20080731 1 900000000000207008 418564007 430232008 0 116680003 900000000000011006 900000000000451002 +3278193020 20080731 1 900000000000207008 110936006 119379005 0 116680003 900000000000011006 900000000000451002 +3278194025 20080731 1 900000000000207008 110936006 116156001 0 116680003 900000000000011006 900000000000451002 +3278212021 20080731 1 900000000000207008 309209004 127463000 0 116680003 900000000000011006 900000000000451002 +3278237027 20080731 1 900000000000207008 258436001 430232008 0 116680003 900000000000011006 900000000000451002 +3278272029 20080731 1 900000000000207008 309207002 309074002 0 116680003 900000000000011006 900000000000451002 +3278272029 20210131 0 900000000000207008 309207002 309074002 0 116680003 900000000000011006 900000000000451002 +3278273023 20080731 1 900000000000207008 309207002 430250001 0 116680003 900000000000011006 900000000000451002 +3278274028 20080731 1 900000000000207008 309207002 431412004 0 116680003 900000000000011006 900000000000451002 +3278275027 20080731 1 900000000000207008 309495002 119376003 0 116680003 900000000000011006 900000000000451002 +3278275027 20210131 0 900000000000207008 309495002 119376003 0 116680003 900000000000011006 900000000000451002 +3278276026 20080731 1 900000000000207008 309495002 433309007 0 116680003 900000000000011006 900000000000451002 +3278315020 20080731 1 900000000000207008 122709008 122710003 0 116680003 900000000000011006 900000000000451002 +3278315020 20190131 0 900000000000207008 122709008 122710003 0 116680003 900000000000011006 900000000000451002 +3278333025 20080731 1 900000000000207008 258609006 119390000 0 116680003 900000000000011006 900000000000451002 +3278387020 20080731 1 900000000000207008 127462005 433326001 0 116680003 900000000000011006 900000000000451002 +3278411028 20080731 1 900000000000207008 418932006 257261003 0 116680003 900000000000011006 900000000000451002 +3278411028 20200731 0 900000000000207008 418932006 257261003 0 116680003 900000000000011006 900000000000451002 +3278412024 20080731 1 900000000000207008 418932006 309185002 0 116680003 900000000000011006 900000000000451002 +3278435022 20080731 1 900000000000207008 122685007 433323009 0 116680003 900000000000011006 900000000000451002 +3278435022 20090131 0 900000000000207008 122685007 433323009 0 116680003 900000000000011006 900000000000451002 +3278463024 20080731 1 900000000000207008 430855004 48469005 0 116680003 900000000000011006 900000000000451002 +3278514023 20080731 1 900000000000207008 258559009 258479004 0 116680003 900000000000011006 900000000000451002 +3278514023 20090131 0 900000000000207008 258559009 258479004 0 116680003 900000000000011006 900000000000451002 +3278515024 20080731 1 900000000000207008 258559009 258558001 0 116680003 900000000000011006 900000000000451002 +3278534024 20080731 1 900000000000207008 432982004 122550002 0 116680003 900000000000011006 900000000000451002 +3278534024 20090731 0 900000000000207008 432982004 122550002 0 116680003 900000000000011006 900000000000451002 +3278535020 20080731 1 900000000000207008 432982004 309207002 0 116680003 900000000000011006 900000000000451002 +3278554020 20080731 1 900000000000207008 309482007 309078004 0 116680003 900000000000011006 900000000000451002 +3278696029 20080731 1 900000000000207008 384746001 399492000 0 116680003 900000000000011006 900000000000451002 +3278735023 20080731 1 900000000000207008 110937002 430131006 0 116680003 900000000000011006 900000000000451002 +3278791028 20080731 1 900000000000207008 110916005 110910004 0 116680003 900000000000011006 900000000000451002 +3278792024 20080731 1 900000000000207008 110916005 110912007 0 116680003 900000000000011006 900000000000451002 +3278801028 20080731 1 900000000000207008 258440005 309051001 0 116680003 900000000000011006 900000000000451002 +3278830024 20080731 1 900000000000207008 122645001 373826004 0 116680003 900000000000011006 900000000000451002 +3278830024 20090131 0 900000000000207008 122645001 373826004 0 116680003 900000000000011006 900000000000451002 +3278831023 20080731 1 900000000000207008 122645001 420548004 0 116680003 900000000000011006 900000000000451002 +3278831023 20211031 0 900000000000207008 122645001 420548004 0 116680003 900000000000011006 900000000000451002 +3278873026 20080731 1 900000000000207008 122553000 430232008 0 116680003 900000000000011006 900000000000451002 +3278891020 20080731 1 900000000000207008 122711004 122710003 0 116680003 900000000000011006 900000000000451002 +3278892029 20080731 1 900000000000207008 122711004 258435002 0 116680003 900000000000011006 900000000000451002 +3278902020 20080731 1 900000000000207008 122611008 122612001 0 116680003 900000000000011006 900000000000451002 +3278902020 20110731 0 900000000000207008 122611008 122612001 0 116680003 900000000000011006 900000000000451002 +3279016022 20080731 1 900000000000207008 309114009 123038009 0 116680003 900000000000011006 900000000000451002 +3279018023 20080731 1 900000000000207008 258435002 119376003 0 116680003 900000000000011006 900000000000451002 +3279018023 20230630 0 900000000000207008 258435002 119376003 0 116680003 900000000000011006 900000000000451002 +3279036023 20080731 1 900000000000207008 119391001 258606004 0 116680003 900000000000011006 900000000000451002 +3279037025 20080731 1 900000000000207008 119391001 430232008 0 116680003 900000000000011006 900000000000451002 +3279037025 20100131 0 900000000000207008 119391001 430232008 0 116680003 900000000000011006 900000000000451002 +3279042022 20080731 1 900000000000207008 430318008 309051001 0 116680003 900000000000011006 900000000000451002 +3279042022 20110731 0 900000000000207008 430318008 309051001 0 116680003 900000000000011006 900000000000451002 +3279043028 20080731 1 900000000000207008 430318008 48469005 0 116680003 900000000000011006 900000000000451002 +3279043028 20110731 0 900000000000207008 430318008 48469005 0 116680003 900000000000011006 900000000000451002 +3279054022 20080731 1 900000000000207008 119381007 430232008 0 116680003 900000000000011006 900000000000451002 +3279054022 20100131 0 900000000000207008 119381007 430232008 0 116680003 900000000000011006 900000000000451002 +3279063024 20080731 1 900000000000207008 110902000 116159008 0 116680003 900000000000011006 900000000000451002 +3279079020 20080731 1 900000000000207008 258459007 119379005 0 116680003 900000000000011006 900000000000451002 +3279100022 20080731 1 900000000000207008 309494003 127467004 0 116680003 900000000000011006 900000000000451002 +3279101021 20080731 1 900000000000207008 309494003 309493009 0 116680003 900000000000011006 900000000000451002 +3279102025 20080731 1 900000000000207008 309494003 309216003 0 116680003 900000000000011006 900000000000451002 +3279181024 20080731 1 900000000000207008 309505009 397077004 0 116680003 900000000000011006 900000000000451002 +3279182028 20080731 1 900000000000207008 309505009 396355000 0 116680003 900000000000011006 900000000000451002 +3279182028 20190131 0 900000000000207008 309505009 396355000 0 116680003 900000000000011006 900000000000451002 +3279196023 20080731 1 900000000000207008 127456000 430232008 0 116680003 900000000000011006 900000000000451002 +3279215028 20080731 1 900000000000207008 309293007 119403008 0 116680003 900000000000011006 900000000000451002 +3279216027 20080731 1 900000000000207008 309293007 432059003 0 116680003 900000000000011006 900000000000451002 +3279216027 20140131 0 900000000000207008 309293007 432059003 0 116680003 900000000000011006 900000000000451002 +3279245025 20080731 1 900000000000207008 258446004 119391001 0 116680003 900000000000011006 900000000000451002 +3279247022 20080731 1 900000000000207008 122684006 433323009 0 116680003 900000000000011006 900000000000451002 +3279247022 20090131 0 900000000000207008 122684006 433323009 0 116680003 900000000000011006 900000000000451002 +3279268023 20080731 1 900000000000207008 309073008 258415003 0 116680003 900000000000011006 900000000000451002 +3279269026 20080731 1 900000000000207008 309073008 420548004 0 116680003 900000000000011006 900000000000451002 +3279323029 20080731 1 900000000000207008 309185002 430220009 0 116680003 900000000000011006 900000000000451002 +3279323029 20240701 0 900000000000207008 309185002 430220009 0 116680003 900000000000011006 900000000000451002 +3279391020 20080731 1 900000000000207008 110963007 116158000 0 116680003 900000000000011006 900000000000451002 +3279391020 20130731 0 900000000000207008 110963007 116158000 0 116680003 900000000000011006 900000000000451002 +3279428021 20080731 1 900000000000207008 432134009 309066003 0 116680003 900000000000011006 900000000000451002 +3279429029 20080731 1 900000000000207008 432134009 122550002 0 116680003 900000000000011006 900000000000451002 +3279429029 20120131 0 900000000000207008 432134009 122550002 0 116680003 900000000000011006 900000000000451002 +3279441020 20080731 1 900000000000207008 110932008 399526005 0 116680003 900000000000011006 900000000000451002 +3279442029 20080731 1 900000000000207008 110932008 116159008 0 116680003 900000000000011006 900000000000451002 +3279443023 20080731 1 900000000000207008 110932008 110930000 0 116680003 900000000000011006 900000000000451002 +3279444028 20080731 1 900000000000207008 110913002 258603007 0 116680003 900000000000011006 900000000000451002 +3279445027 20080731 1 900000000000207008 110913002 430232008 0 116680003 900000000000011006 900000000000451002 +3279462021 20080731 1 900000000000207008 258558001 432825001 0 116680003 900000000000011006 900000000000451002 +3279463027 20080731 1 900000000000207008 258558001 309051001 0 116680003 900000000000011006 900000000000451002 +3279463027 20110731 0 900000000000207008 258558001 309051001 0 116680003 900000000000011006 900000000000451002 +3279463027 20220630 1 900000000000207008 258558001 309051001 0 116680003 900000000000011006 900000000000451002 +3279519022 20080731 1 900000000000207008 122574004 119380008 0 116680003 900000000000011006 900000000000451002 +3279520027 20080731 1 900000000000207008 127469001 430232008 0 116680003 900000000000011006 900000000000451002 +3279520027 20100131 0 900000000000207008 127469001 430232008 0 116680003 900000000000011006 900000000000451002 +3279571025 20080731 1 900000000000207008 116155002 127467004 0 116680003 900000000000011006 900000000000451002 +3279572021 20080731 1 900000000000207008 116155002 370108001 0 116680003 900000000000011006 900000000000451002 +3279573027 20080731 1 900000000000207008 116155002 110938007 0 116680003 900000000000011006 900000000000451002 +3279574022 20080731 1 900000000000207008 116155002 110929005 0 116680003 900000000000011006 900000000000451002 +3279595028 20080731 1 900000000000207008 432145007 258415003 0 116680003 900000000000011006 900000000000451002 +3279596027 20080731 1 900000000000207008 432145007 430157009 0 116680003 900000000000011006 900000000000451002 +3279673022 20080731 1 900000000000207008 258561000 399526005 0 116680003 900000000000011006 900000000000451002 +3279684026 20080731 1 900000000000207008 119342007 430220009 0 116680003 900000000000011006 900000000000451002 +3279684026 20240701 0 900000000000207008 119342007 430220009 0 116680003 900000000000011006 900000000000451002 +3279757024 20080731 1 900000000000207008 309210009 258415003 0 116680003 900000000000011006 900000000000451002 +3279758025 20080731 1 900000000000207008 309210009 110962002 0 116680003 900000000000011006 900000000000451002 +3279780027 20080731 1 900000000000207008 397077004 119376003 0 116680003 900000000000011006 900000000000451002 +3279780027 20090131 0 900000000000207008 397077004 119376003 0 116680003 900000000000011006 900000000000451002 +3279780027 20190131 1 900000000000207008 397077004 119376003 0 116680003 900000000000011006 900000000000451002 +3279791023 20080731 1 900000000000207008 309211008 119379005 0 116680003 900000000000011006 900000000000451002 +3279792027 20080731 1 900000000000207008 309211008 431412004 0 116680003 900000000000011006 900000000000451002 +3279838023 20080731 1 900000000000207008 309483002 309074002 0 116680003 900000000000011006 900000000000451002 +3279838023 20210131 0 900000000000207008 309483002 309074002 0 116680003 900000000000011006 900000000000451002 +3279839026 20080731 1 900000000000207008 309483002 430133009 0 116680003 900000000000011006 900000000000451002 +3279863023 20080731 1 900000000000207008 399622002 399689008 0 116680003 900000000000011006 900000000000451002 +3279921023 20080731 1 900000000000207008 434014007 431412004 0 116680003 900000000000011006 900000000000451002 +3279922027 20080731 1 900000000000207008 434014007 433326001 0 116680003 900000000000011006 900000000000451002 +3279927022 20080731 1 900000000000207008 309102001 258415003 0 116680003 900000000000011006 900000000000451002 +3279929020 20080731 1 900000000000207008 258604001 430220009 0 116680003 900000000000011006 900000000000451002 +3279929020 20240701 0 900000000000207008 258604001 430220009 0 116680003 900000000000011006 900000000000451002 +3280028026 20080731 1 900000000000207008 423696009 309223002 0 116680003 900000000000011006 900000000000451002 +3280028026 20190731 0 900000000000207008 423696009 309223002 0 116680003 900000000000011006 900000000000451002 +3280029023 20080731 1 900000000000207008 423696009 421615004 0 116680003 900000000000011006 900000000000451002 +3280041027 20080731 1 900000000000207008 110938007 110954005 0 116680003 900000000000011006 900000000000451002 +3280060023 20080731 1 900000000000207008 309481000 430220009 0 116680003 900000000000011006 900000000000451002 +3280060023 20240701 0 900000000000207008 309481000 430220009 0 116680003 900000000000011006 900000000000451002 +3280090027 20080731 1 900000000000207008 110901007 430268003 0 116680003 900000000000011006 900000000000451002 +3280136021 20080731 1 900000000000207008 122667000 309490007 0 116680003 900000000000011006 900000000000451002 +3280136021 20190131 0 900000000000207008 122667000 309490007 0 116680003 900000000000011006 900000000000451002 +3280226024 20080731 1 900000000000207008 309101008 309104000 0 116680003 900000000000011006 900000000000451002 +3280229028 20080731 1 900000000000207008 309103006 119376003 0 116680003 900000000000011006 900000000000451002 +3280229028 20090131 0 900000000000207008 309103006 119376003 0 116680003 900000000000011006 900000000000451002 +3280230022 20080731 1 900000000000207008 309103006 373826004 0 116680003 900000000000011006 900000000000451002 +3280230022 20090131 0 900000000000207008 309103006 373826004 0 116680003 900000000000011006 900000000000451002 +3280245026 20080731 1 900000000000207008 122644002 431412004 0 116680003 900000000000011006 900000000000451002 +3280246025 20080731 1 900000000000207008 122644002 122627001 0 116680003 900000000000011006 900000000000451002 +3280249021 20080731 1 900000000000207008 309188000 363311008 0 116680003 900000000000011006 900000000000451002 +3280250021 20080731 1 900000000000207008 309188000 431885000 0 116680003 900000000000011006 900000000000451002 +3280250021 20240701 0 900000000000207008 309188000 431885000 0 116680003 900000000000011006 900000000000451002 +3280321028 20080731 1 900000000000207008 432146008 433322004 0 116680003 900000000000011006 900000000000451002 +3280322024 20080731 1 900000000000207008 432146008 309207002 0 116680003 900000000000011006 900000000000451002 +3280328023 20080731 1 900000000000207008 119300005 127454002 0 116680003 900000000000011006 900000000000451002 +3280328023 20210131 0 900000000000207008 119300005 127454002 0 116680003 900000000000011006 900000000000451002 +3280331024 20080731 1 900000000000207008 122577006 119395005 0 116680003 900000000000011006 900000000000451002 +3280332028 20080731 1 900000000000207008 122577006 122576002 0 116680003 900000000000011006 900000000000451002 +3280387027 20080731 1 900000000000207008 119380008 430232008 0 116680003 900000000000011006 900000000000451002 +3280387027 20100131 0 900000000000207008 119380008 430232008 0 116680003 900000000000011006 900000000000451002 +3280387027 20240501 1 900000000000207008 119380008 430232008 0 116680003 900000000000011006 900000000000451002 +3280412028 20080731 1 900000000000207008 258424007 128166000 0 116680003 900000000000011006 900000000000451002 +3280419021 20080731 1 900000000000207008 309192007 430222001 0 116680003 900000000000011006 900000000000451002 +3280451022 20080731 1 900000000000207008 309075001 119368000 0 116680003 900000000000011006 900000000000451002 +3280455029 20080731 1 900000000000207008 433860001 430238007 0 116680003 900000000000011006 900000000000451002 +3280456028 20080731 1 900000000000207008 433860001 431885000 0 116680003 900000000000011006 900000000000451002 +3280456028 20240701 0 900000000000207008 433860001 431885000 0 116680003 900000000000011006 900000000000451002 +3280483027 20080731 1 900000000000207008 309190004 399747006 0 116680003 900000000000011006 900000000000451002 +3280484022 20080731 1 900000000000207008 309190004 363328006 0 116680003 900000000000011006 900000000000451002 +3280484022 20220630 0 900000000000207008 309190004 363328006 0 116680003 900000000000011006 900000000000451002 +3280503027 20080731 1 900000000000207008 432060008 122550002 0 116680003 900000000000011006 900000000000451002 +3280503027 20090731 0 900000000000207008 432060008 122550002 0 116680003 900000000000011006 900000000000451002 +3280504022 20080731 1 900000000000207008 432060008 432059003 0 116680003 900000000000011006 900000000000451002 +3280509028 20080731 1 900000000000207008 431776009 258532001 0 116680003 900000000000011006 900000000000451002 +3280509028 20130131 0 900000000000207008 431776009 258532001 0 116680003 900000000000011006 900000000000451002 +3280510022 20080731 1 900000000000207008 309077009 433308004 0 116680003 900000000000011006 900000000000451002 +3280522020 20080731 1 900000000000207008 119399004 433324003 0 116680003 900000000000011006 900000000000451002 +3280602025 20080731 1 900000000000207008 309186001 363328006 0 116680003 900000000000011006 900000000000451002 +3280616024 20080731 1 900000000000207008 122659008 397482001 0 116680003 900000000000011006 900000000000451002 +3280617026 20080731 1 900000000000207008 122659008 122639009 0 116680003 900000000000011006 900000000000451002 +3280643025 20080731 1 900000000000207008 119343002 363311008 0 116680003 900000000000011006 900000000000451002 +3280643025 20090131 0 900000000000207008 119343002 363311008 0 116680003 900000000000011006 900000000000451002 +3280644020 20080731 1 900000000000207008 119343002 309051001 0 116680003 900000000000011006 900000000000451002 +3280653029 20080731 1 900000000000207008 373102004 122737001 0 116680003 900000000000011006 900000000000451002 +3280691029 20080731 1 900000000000207008 309177006 258433009 0 116680003 900000000000011006 900000000000451002 +3280691029 20230630 0 900000000000207008 309177006 258433009 0 116680003 900000000000011006 900000000000451002 +3280692020 20080731 1 900000000000207008 309177006 127458004 0 116680003 900000000000011006 900000000000451002 +3280695022 20080731 1 900000000000207008 433118002 122550002 0 116680003 900000000000011006 900000000000451002 +3280696023 20080731 1 900000000000207008 433118002 434244002 0 116680003 900000000000011006 900000000000451002 +3280705020 20080731 1 900000000000207008 258448003 119332005 0 116680003 900000000000011006 900000000000451002 +3280705020 20170731 0 900000000000207008 258448003 119332005 0 116680003 900000000000011006 900000000000451002 +3280706021 20080731 1 900000000000207008 258448003 258479004 0 116680003 900000000000011006 900000000000451002 +3280706021 20090131 0 900000000000207008 258448003 258479004 0 116680003 900000000000011006 900000000000451002 +3280729029 20080731 1 900000000000207008 373103009 397077004 0 116680003 900000000000011006 900000000000451002 +3280730023 20080731 1 900000000000207008 373103009 309060009 0 116680003 900000000000011006 900000000000451002 +3280730023 20190131 0 900000000000207008 373103009 309060009 0 116680003 900000000000011006 900000000000451002 +3280731022 20080731 1 900000000000207008 373103009 122601001 0 116680003 900000000000011006 900000000000451002 +3280757020 20080731 1 900000000000207008 122632000 399629006 0 116680003 900000000000011006 900000000000451002 +3280757020 20190131 0 900000000000207008 122632000 399629006 0 116680003 900000000000011006 900000000000451002 +3280803022 20080731 1 900000000000207008 122623002 434014007 0 116680003 900000000000011006 900000000000451002 +3280818023 20080731 1 900000000000207008 122683000 433323009 0 116680003 900000000000011006 900000000000451002 +3280818023 20090131 0 900000000000207008 122683000 433323009 0 116680003 900000000000011006 900000000000451002 +3280848021 20080731 1 900000000000207008 122658000 309220004 0 116680003 900000000000011006 900000000000451002 +3280849029 20080731 1 900000000000207008 122658000 122661004 0 116680003 900000000000011006 900000000000451002 +3280850029 20080731 1 900000000000207008 127467004 399460001 0 116680003 900000000000011006 900000000000451002 +3280882026 20080731 1 900000000000207008 309189008 309074002 0 116680003 900000000000011006 900000000000451002 +3280882026 20210131 0 900000000000207008 309189008 309074002 0 116680003 900000000000011006 900000000000451002 +3280883020 20080731 1 900000000000207008 309189008 430249001 0 116680003 900000000000011006 900000000000451002 +3280883020 20220630 0 900000000000207008 309189008 430249001 0 116680003 900000000000011006 900000000000451002 +3280883020 20240501 1 900000000000207008 309189008 430249001 0 116680003 900000000000011006 900000000000451002 +3280884025 20080731 1 900000000000207008 309189008 309188000 0 116680003 900000000000011006 900000000000451002 +3280886028 20080731 1 900000000000207008 110933003 119386002 0 116680003 900000000000011006 900000000000451002 +3280888027 20080731 1 900000000000207008 110914008 110910004 0 116680003 900000000000011006 900000000000451002 +3280889024 20080731 1 900000000000207008 110914008 110912007 0 116680003 900000000000011006 900000000000451002 +3280896021 20080731 1 900000000000207008 127468009 399541005 0 116680003 900000000000011006 900000000000451002 +3280897028 20080731 1 900000000000207008 127468009 122638001 0 116680003 900000000000011006 900000000000451002 +3280898022 20080731 1 900000000000207008 127468009 127470000 0 116680003 900000000000011006 900000000000451002 +3280904026 20080731 1 900000000000207008 373101006 127457009 0 116680003 900000000000011006 900000000000451002 +3280905025 20080731 1 900000000000207008 373101006 122601001 0 116680003 900000000000011006 900000000000451002 +3280919025 20080731 1 900000000000207008 433861002 431886004 0 116680003 900000000000011006 900000000000451002 +3280919025 20240701 0 900000000000207008 433861002 431886004 0 116680003 900000000000011006 900000000000451002 +3280920020 20080731 1 900000000000207008 433861002 433860001 0 116680003 900000000000011006 900000000000451002 +3281027026 20080731 1 900000000000207008 122573005 119379005 0 116680003 900000000000011006 900000000000451002 +3281070026 20080731 1 900000000000207008 119329007 119321005 0 116680003 900000000000011006 900000000000451002 +3281071027 20080731 1 900000000000207008 119329007 309055005 0 116680003 900000000000011006 900000000000451002 +3281107025 20080731 1 900000000000207008 432058006 309507001 0 116680003 900000000000011006 900000000000451002 +3281107025 20090131 0 900000000000207008 432058006 309507001 0 116680003 900000000000011006 900000000000451002 +3281108024 20080731 1 900000000000207008 432058006 309074002 0 116680003 900000000000011006 900000000000451002 +3281108024 20210131 0 900000000000207008 432058006 309074002 0 116680003 900000000000011006 900000000000451002 +3281109027 20080731 1 900000000000207008 432058006 119331003 0 116680003 900000000000011006 900000000000451002 +3281133022 20080731 1 900000000000207008 127466008 363328006 0 116680003 900000000000011006 900000000000451002 +3281156029 20080731 1 900000000000207008 110899003 110894008 0 116680003 900000000000011006 900000000000451002 +3281167028 20080731 1 900000000000207008 431697001 258415003 0 116680003 900000000000011006 900000000000451002 +3281168022 20080731 1 900000000000207008 431697001 430221008 0 116680003 900000000000011006 900000000000451002 +3281217025 20080731 1 900000000000207008 396685001 122687004 0 116680003 900000000000011006 900000000000451002 +3281231025 20080731 1 900000000000207008 396525008 258415003 0 116680003 900000000000011006 900000000000451002 +3281232021 20080731 1 900000000000207008 396525008 309141004 0 116680003 900000000000011006 900000000000451002 +3281319029 20080731 1 900000000000207008 116158000 119381007 0 116680003 900000000000011006 900000000000451002 +3281320024 20080731 1 900000000000207008 116158000 116156001 0 116680003 900000000000011006 900000000000451002 +3281323021 20080731 1 900000000000207008 110897001 309051001 0 116680003 900000000000011006 900000000000451002 +3281323021 20180731 0 900000000000207008 110897001 309051001 0 116680003 900000000000011006 900000000000451002 +3281324026 20080731 1 900000000000207008 110897001 119359002 0 116680003 900000000000011006 900000000000451002 +3281381020 20080731 1 900000000000207008 430157009 399436000 0 116680003 900000000000011006 900000000000451002 +3281597025 20080731 1 900000000000207008 122732007 399689008 0 116680003 900000000000011006 900000000000451002 +3281649020 20080731 1 900000000000207008 119396006 127479004 0 116680003 900000000000011006 900000000000451002 +3281672022 20080731 1 900000000000207008 122626005 432144006 0 116680003 900000000000011006 900000000000451002 +3281689025 20080731 1 900000000000207008 431234000 258415003 0 116680003 900000000000011006 900000000000451002 +3281690023 20080731 1 900000000000207008 431234000 309502007 0 116680003 900000000000011006 900000000000451002 +3281795020 20080731 1 900000000000207008 119376003 309050000 0 116680003 900000000000011006 900000000000451002 +3281828021 20080731 1 900000000000207008 399741007 309497005 0 116680003 900000000000011006 900000000000451002 +3281856027 20080731 1 900000000000207008 309079007 258415003 0 116680003 900000000000011006 900000000000451002 +3281857020 20080731 1 900000000000207008 309079007 258589002 0 116680003 900000000000011006 900000000000451002 +3281857020 20090131 0 900000000000207008 309079007 258589002 0 116680003 900000000000011006 900000000000451002 +3281921027 20080731 1 900000000000207008 432608000 430245007 0 116680003 900000000000011006 900000000000451002 +3281922023 20080731 1 900000000000207008 432608000 309178001 0 116680003 900000000000011006 900000000000451002 +3282067027 20080731 1 900000000000207008 433326001 430232008 0 116680003 900000000000011006 900000000000451002 +3282067027 20100131 0 900000000000207008 433326001 430232008 0 116680003 900000000000011006 900000000000451002 +3282141024 20080731 1 900000000000207008 127482009 309278008 0 116680003 900000000000011006 900000000000451002 +3282142028 20080731 1 900000000000207008 127482009 258422006 0 116680003 900000000000011006 900000000000451002 +3282162020 20080731 1 900000000000207008 309165001 430220009 0 116680003 900000000000011006 900000000000451002 +3282162020 20240701 0 900000000000207008 309165001 430220009 0 116680003 900000000000011006 900000000000451002 +3282174024 20080731 1 900000000000207008 309271002 431412004 0 116680003 900000000000011006 900000000000451002 +3282245022 20080731 1 900000000000207008 309273004 127471001 0 116680003 900000000000011006 900000000000451002 +3282245022 20120731 0 900000000000207008 309273004 127471001 0 116680003 900000000000011006 900000000000451002 +3282246023 20080731 1 900000000000207008 309273004 431412004 0 116680003 900000000000011006 900000000000451002 +3282265026 20080731 1 900000000000207008 258432004 432825001 0 116680003 900000000000011006 900000000000451002 +3282279023 20080731 1 900000000000207008 122730004 373826004 0 116680003 900000000000011006 900000000000451002 +3282279023 20190131 0 900000000000207008 122730004 373826004 0 116680003 900000000000011006 900000000000451002 +3282390026 20080731 1 900000000000207008 432385009 309130001 0 116680003 900000000000011006 900000000000451002 +3282391027 20080731 1 900000000000207008 432385009 430132004 0 116680003 900000000000011006 900000000000451002 +3282392023 20080731 1 900000000000207008 432385009 309074002 0 116680003 900000000000011006 900000000000451002 +3282392023 20160131 0 900000000000207008 432385009 309074002 0 116680003 900000000000011006 900000000000451002 +3282402029 20080731 1 900000000000207008 309202008 258433009 0 116680003 900000000000011006 900000000000451002 +3282423024 20080731 1 900000000000207008 119379005 430232008 0 116680003 900000000000011006 900000000000451002 +3282423024 20100131 0 900000000000207008 119379005 430232008 0 116680003 900000000000011006 900000000000451002 +3282430029 20080731 1 900000000000207008 309204009 258433009 0 116680003 900000000000011006 900000000000451002 +3282440026 20080731 1 900000000000207008 122578001 432825001 0 116680003 900000000000011006 900000000000451002 +3282464025 20080731 1 900000000000207008 110900008 119331003 0 116680003 900000000000011006 900000000000451002 +3282479021 20080731 1 900000000000207008 397436009 309078004 0 116680003 900000000000011006 900000000000451002 +3282572026 20080731 1 900000000000207008 258539005 309125000 0 116680003 900000000000011006 900000000000451002 +3282573020 20080731 1 900000000000207008 258539005 430268003 0 116680003 900000000000011006 900000000000451002 +3282575029 20080731 1 900000000000207008 110965000 110964001 0 116680003 900000000000011006 900000000000451002 +3282593028 20080731 1 900000000000207008 309478005 258582006 0 116680003 900000000000011006 900000000000451002 +3282600026 20080731 1 900000000000207008 309191000 430222001 0 116680003 900000000000011006 900000000000451002 +3282600026 20170731 0 900000000000207008 309191000 430222001 0 116680003 900000000000011006 900000000000451002 +3282601027 20080731 1 900000000000207008 309191000 431885000 0 116680003 900000000000011006 900000000000451002 +3282601027 20090731 0 900000000000207008 309191000 431885000 0 116680003 900000000000011006 900000000000451002 +3282840023 20080731 1 900000000000207008 258429002 119381007 0 116680003 900000000000011006 900000000000451002 +3282840023 20110731 0 900000000000207008 258429002 119381007 0 116680003 900000000000011006 900000000000451002 +3282877026 20080731 1 900000000000207008 399672000 119376003 0 116680003 900000000000011006 900000000000451002 +3282878020 20080731 1 900000000000207008 433119005 399747006 0 116680003 900000000000011006 900000000000451002 +3282879028 20080731 1 900000000000207008 433119005 309188000 0 116680003 900000000000011006 900000000000451002 +3282942027 20080731 1 900000000000207008 122624008 128166000 0 116680003 900000000000011006 900000000000451002 +3283048021 20080731 1 900000000000207008 258434003 122567009 0 116680003 900000000000011006 900000000000451002 +3283073021 20080731 1 900000000000207008 309078004 119376003 0 116680003 900000000000011006 900000000000451002 +3283149026 20080731 1 900000000000207008 309485009 309185002 0 116680003 900000000000011006 900000000000451002 +3283149026 20090131 0 900000000000207008 309485009 309185002 0 116680003 900000000000011006 900000000000451002 +3283177024 20080731 1 900000000000207008 122877000 119390000 0 116680003 900000000000011006 900000000000451002 +3283177024 20100731 0 900000000000207008 122877000 119390000 0 116680003 900000000000011006 900000000000451002 +3283178025 20080731 1 900000000000207008 122877000 410580001 0 116680003 900000000000011006 900000000000451002 +3283199027 20080731 1 900000000000207008 122698003 396273004 0 116680003 900000000000011006 900000000000451002 +3283199027 20190131 0 900000000000207008 122698003 396273004 0 116680003 900000000000011006 900000000000451002 +3283287028 20080731 1 900000000000207008 110928002 430232008 0 116680003 900000000000011006 900000000000451002 +3283287028 20100131 0 900000000000207008 110928002 430232008 0 116680003 900000000000011006 900000000000451002 +3283295029 20080731 1 900000000000207008 258526006 258525005 0 116680003 900000000000011006 900000000000451002 +3283325020 20080731 1 900000000000207008 122580007 432825001 0 116680003 900000000000011006 900000000000451002 +3283358027 20080731 1 900000000000207008 309269002 127473003 0 116680003 900000000000011006 900000000000451002 +3283359024 20080731 1 900000000000207008 309269002 431412004 0 116680003 900000000000011006 900000000000451002 +3283359024 20140131 0 900000000000207008 309269002 431412004 0 116680003 900000000000011006 900000000000451002 +3283376023 20080731 1 900000000000207008 431884001 363311008 0 116680003 900000000000011006 900000000000451002 +3283376023 20110731 0 900000000000207008 431884001 363311008 0 116680003 900000000000011006 900000000000451002 +3283377025 20080731 1 900000000000207008 431884001 122550002 0 116680003 900000000000011006 900000000000451002 +3283377025 20090731 0 900000000000207008 431884001 122550002 0 116680003 900000000000011006 900000000000451002 +3283378024 20080731 1 900000000000207008 431884001 431412004 0 116680003 900000000000011006 900000000000451002 +3283378024 20090731 0 900000000000207008 431884001 431412004 0 116680003 900000000000011006 900000000000451002 +3283394028 20080731 1 900000000000207008 309287004 122716009 0 116680003 900000000000011006 900000000000451002 +3283395027 20080731 1 900000000000207008 309287004 397333000 0 116680003 900000000000011006 900000000000451002 +3283396026 20080731 1 900000000000207008 309287004 397334006 0 116680003 900000000000011006 900000000000451002 +3283397024 20080731 1 900000000000207008 309287004 122714007 0 116680003 900000000000011006 900000000000451002 +3283418028 20080731 1 900000000000207008 431205006 309140003 0 116680003 900000000000011006 900000000000451002 +3283419020 20080731 1 900000000000207008 431205006 431412004 0 116680003 900000000000011006 900000000000451002 +3283449022 20080731 1 900000000000207008 122618002 309172000 0 116680003 900000000000011006 900000000000451002 +3283487025 20080731 1 900000000000207008 432141003 431886004 0 116680003 900000000000011006 900000000000451002 +3283487025 20240701 0 900000000000207008 432141003 431886004 0 116680003 900000000000011006 900000000000451002 +3283488024 20080731 1 900000000000207008 432141003 309151003 0 116680003 900000000000011006 900000000000451002 +3283500028 20080731 1 900000000000207008 258419009 119376003 0 116680003 900000000000011006 900000000000451002 +3283582022 20080731 1 900000000000207008 432981006 119399004 0 116680003 900000000000011006 900000000000451002 +3283583028 20080731 1 900000000000207008 432981006 431232001 0 116680003 900000000000011006 900000000000451002 +3283584023 20080731 1 900000000000207008 432981006 431886004 0 116680003 900000000000011006 900000000000451002 +3283584023 20240701 0 900000000000207008 432981006 431886004 0 116680003 900000000000011006 900000000000451002 +3283633027 20080731 1 900000000000207008 110930000 110925004 0 116680003 900000000000011006 900000000000451002 +3283639028 20080731 1 900000000000207008 309176002 258415003 0 116680003 900000000000011006 900000000000451002 +3283640026 20080731 1 900000000000207008 309176002 110912007 0 116680003 900000000000011006 900000000000451002 +3283660023 20080731 1 900000000000207008 119347001 432825001 0 116680003 900000000000011006 900000000000451002 +3283661022 20080731 1 900000000000207008 119347001 430131006 0 116680003 900000000000011006 900000000000451002 +3283694020 20080731 1 900000000000207008 127473003 127471001 0 116680003 900000000000011006 900000000000451002 +3283719024 20080731 1 900000000000207008 258418001 119376003 0 116680003 900000000000011006 900000000000451002 +3283743022 20080731 1 900000000000207008 431235004 122550002 0 116680003 900000000000011006 900000000000451002 +3283744027 20080731 1 900000000000207008 431235004 309169007 0 116680003 900000000000011006 900000000000451002 +3283758025 20080731 1 900000000000207008 258607008 122609004 0 116680003 900000000000011006 900000000000451002 +3283758025 20090131 0 900000000000207008 258607008 122609004 0 116680003 900000000000011006 900000000000451002 +3283937028 20080731 1 900000000000207008 258428005 119376003 0 116680003 900000000000011006 900000000000451002 +3283948024 20080731 1 900000000000207008 396273004 122700007 0 116680003 900000000000011006 900000000000451002 +3283995023 20080731 1 900000000000207008 122660003 122659008 0 116680003 900000000000011006 900000000000451002 +3283996024 20080731 1 900000000000207008 122660003 122666009 0 116680003 900000000000011006 900000000000451002 +3283997026 20080731 1 900000000000207008 399440009 399407000 0 116680003 900000000000011006 900000000000451002 +3284045027 20080731 1 900000000000207008 122697008 373826004 0 116680003 900000000000011006 900000000000451002 +3284045027 20090131 0 900000000000207008 122697008 373826004 0 116680003 900000000000011006 900000000000451002 +3284046026 20080731 1 900000000000207008 122697008 127480001 0 116680003 900000000000011006 900000000000451002 +3284076022 20080731 1 900000000000207008 119388001 258604001 0 116680003 900000000000011006 900000000000451002 +3284118026 20080731 1 900000000000207008 110935005 258567001 0 116680003 900000000000011006 900000000000451002 +3284118026 20140131 0 900000000000207008 110935005 258567001 0 116680003 900000000000011006 900000000000451002 +3284273023 20080731 1 900000000000207008 309203003 119383005 0 116680003 900000000000011006 900000000000451002 +3284274028 20080731 1 900000000000207008 309203003 431412004 0 116680003 900000000000011006 900000000000451002 +3284298024 20080731 1 900000000000207008 431405008 122550002 0 116680003 900000000000011006 900000000000451002 +3284298024 20090731 0 900000000000207008 431405008 122550002 0 116680003 900000000000011006 900000000000451002 +3284299027 20080731 1 900000000000207008 431405008 122708000 0 116680003 900000000000011006 900000000000451002 +3284302027 20080731 1 900000000000207008 110951002 110949001 0 116680003 900000000000011006 900000000000451002 +3284331028 20080731 1 900000000000207008 119398007 430220009 0 116680003 900000000000011006 900000000000451002 +3284331028 20240701 0 900000000000207008 119398007 430220009 0 116680003 900000000000011006 900000000000451002 +3284336022 20080731 1 900000000000207008 309265008 119392008 0 116680003 900000000000011006 900000000000451002 +3284337029 20080731 1 900000000000207008 309265008 431412004 0 116680003 900000000000011006 900000000000451002 +3284434021 20080731 1 900000000000207008 110948009 110958008 0 116680003 900000000000011006 900000000000451002 +3284457026 20080731 1 900000000000207008 110960005 399402006 0 116680003 900000000000011006 900000000000451002 +3284458020 20080731 1 900000000000207008 110960005 110946008 0 116680003 900000000000011006 900000000000451002 +3284599028 20080731 1 900000000000207008 432098008 122550002 0 116680003 900000000000011006 900000000000451002 +3284599028 20090731 0 900000000000207008 432098008 122550002 0 116680003 900000000000011006 900000000000451002 +3284600025 20080731 1 900000000000207008 432098008 309493009 0 116680003 900000000000011006 900000000000451002 +3284604023 20080731 1 900000000000207008 399732002 258435002 0 116680003 900000000000011006 900000000000451002 +3284626024 20080731 1 900000000000207008 110912007 110906002 0 116680003 900000000000011006 900000000000451002 +3284627026 20080731 1 900000000000207008 110912007 119391001 0 116680003 900000000000011006 900000000000451002 +3284687029 20080731 1 900000000000207008 309285007 399713008 0 116680003 900000000000011006 900000000000451002 +3284687029 20230331 0 900000000000207008 309285007 399713008 0 116680003 900000000000011006 900000000000451002 +3284764025 20080731 1 900000000000207008 309178001 431885000 0 116680003 900000000000011006 900000000000451002 +3284764025 20240701 0 900000000000207008 309178001 431885000 0 116680003 900000000000011006 900000000000451002 +3284771024 20080731 1 900000000000207008 309181006 309105004 0 116680003 900000000000011006 900000000000451002 +3284772028 20080731 1 900000000000207008 309181006 431885000 0 116680003 900000000000011006 900000000000451002 +3284772028 20240701 0 900000000000207008 309181006 431885000 0 116680003 900000000000011006 900000000000451002 +3284777023 20080731 1 900000000000207008 433115004 432607005 0 116680003 900000000000011006 900000000000451002 +3284778029 20080731 1 900000000000207008 433115004 309483002 0 116680003 900000000000011006 900000000000451002 +3284789020 20080731 1 900000000000207008 110896005 258548000 0 116680003 900000000000011006 900000000000451002 +3284790027 20080731 1 900000000000207008 110896005 309072003 0 116680003 900000000000011006 900000000000451002 +3284790027 20210131 0 900000000000207008 110896005 309072003 0 116680003 900000000000011006 900000000000451002 +3284804020 20080731 1 900000000000207008 122670001 127474009 0 116680003 900000000000011006 900000000000451002 +3284805021 20080731 1 900000000000207008 258525005 430232008 0 116680003 900000000000011006 900000000000451002 +3284805021 20130131 0 900000000000207008 258525005 430232008 0 116680003 900000000000011006 900000000000451002 +3284886024 20080731 1 900000000000207008 258414004 119376003 0 116680003 900000000000011006 900000000000451002 +3284886024 20210131 0 900000000000207008 258414004 119376003 0 116680003 900000000000011006 900000000000451002 +3285008027 20080731 1 900000000000207008 309179009 128167009 0 116680003 900000000000011006 900000000000451002 +3285018021 20080731 1 900000000000207008 309183009 430144001 0 116680003 900000000000011006 900000000000451002 +3285071021 20080731 1 900000000000207008 430346005 48469005 0 116680003 900000000000011006 900000000000451002 +3285072025 20080731 1 900000000000207008 110910004 110906002 0 116680003 900000000000011006 900000000000451002 +3285073024 20080731 1 900000000000207008 110910004 127458004 0 116680003 900000000000011006 900000000000451002 +3285087024 20080731 1 900000000000207008 434249007 431886004 0 116680003 900000000000011006 900000000000451002 +3285087024 20240701 0 900000000000207008 434249007 431886004 0 116680003 900000000000011006 900000000000451002 +3285088025 20080731 1 900000000000207008 434249007 432910000 0 116680003 900000000000011006 900000000000451002 +3285142022 20080731 1 900000000000207008 432136006 122550002 0 116680003 900000000000011006 900000000000451002 +3285142022 20090731 0 900000000000207008 432136006 122550002 0 116680003 900000000000011006 900000000000451002 +3285143028 20080731 1 900000000000207008 432136006 397129002 0 116680003 900000000000011006 900000000000451002 +3285143028 20140131 0 900000000000207008 432136006 397129002 0 116680003 900000000000011006 900000000000451002 +3285143028 20190731 1 900000000000207008 432136006 397129002 0 116680003 900000000000011006 900000000000451002 +3285144023 20080731 1 900000000000207008 432136006 431412004 0 116680003 900000000000011006 900000000000451002 +3285144023 20090731 0 900000000000207008 432136006 431412004 0 116680003 900000000000011006 900000000000451002 +3285148021 20080731 1 900000000000207008 312494007 119394009 0 116680003 900000000000011006 900000000000451002 +3285165028 20080731 1 900000000000207008 127475005 128154006 0 116680003 900000000000011006 900000000000451002 +3285166027 20080731 1 900000000000207008 127475005 128165001 0 116680003 900000000000011006 900000000000451002 +3285166027 20140131 0 900000000000207008 127475005 128165001 0 116680003 900000000000011006 900000000000451002 +3285189024 20080731 1 900000000000207008 258585008 119376003 0 116680003 900000000000011006 900000000000451002 +3285189024 20090131 0 900000000000207008 258585008 119376003 0 116680003 900000000000011006 900000000000451002 +3285231023 20080731 1 900000000000207008 258527002 258525005 0 116680003 900000000000011006 900000000000451002 +3285236029 20080731 1 900000000000207008 309067007 396355000 0 116680003 900000000000011006 900000000000451002 +3285236029 20090131 0 900000000000207008 309067007 396355000 0 116680003 900000000000011006 900000000000451002 +3285266020 20080731 1 900000000000207008 309070006 258415003 0 116680003 900000000000011006 900000000000451002 +3285269029 20080731 1 900000000000207008 122733002 309144007 0 116680003 900000000000011006 900000000000451002 +3285275022 20080731 1 900000000000207008 433760005 433308004 0 116680003 900000000000011006 900000000000451002 +3285276023 20080731 1 900000000000207008 433760005 431412004 0 116680003 900000000000011006 900000000000451002 +3285313020 20080731 1 900000000000207008 258412000 119295008 0 116680003 900000000000011006 900000000000451002 +3285314025 20080731 1 900000000000207008 258412000 410581002 0 116680003 900000000000011006 900000000000451002 +3285314025 20110131 0 900000000000207008 258412000 410581002 0 116680003 900000000000011006 900000000000451002 +3285332025 20080731 1 900000000000207008 258538002 309051001 0 116680003 900000000000011006 900000000000451002 +3285495029 20080731 1 900000000000207008 406101006 430232008 0 116680003 900000000000011006 900000000000451002 +3285495029 20180731 0 900000000000207008 406101006 430232008 0 116680003 900000000000011006 900000000000451002 +3285496028 20080731 1 900000000000207008 406101006 430246008 0 116680003 900000000000011006 900000000000451002 +3285564022 20080731 1 900000000000207008 258417006 119376003 0 116680003 900000000000011006 900000000000451002 +3285565023 20080731 1 900000000000207008 258417006 430268003 0 116680003 900000000000011006 900000000000451002 +3285567026 20080731 1 900000000000207008 258528007 119381007 0 116680003 900000000000011006 900000000000451002 +3285567026 20110731 0 900000000000207008 258528007 119381007 0 116680003 900000000000011006 900000000000451002 +3285599021 20080731 1 900000000000207008 431406009 122550002 0 116680003 900000000000011006 900000000000451002 +3285599021 20090731 0 900000000000207008 431406009 122550002 0 116680003 900000000000011006 900000000000451002 +3285600024 20080731 1 900000000000207008 431406009 309206006 0 116680003 900000000000011006 900000000000451002 +3285634020 20080731 1 900000000000207008 258422006 128165001 0 116680003 900000000000011006 900000000000451002 +3285772021 20080731 1 900000000000207008 363329003 119376003 0 116680003 900000000000011006 900000000000451002 +3285805028 20080731 1 900000000000207008 309268005 258442002 0 116680003 900000000000011006 900000000000451002 +3285805028 20110731 0 900000000000207008 309268005 258442002 0 116680003 900000000000011006 900000000000451002 +3285806027 20080731 1 900000000000207008 432143000 122550002 0 116680003 900000000000011006 900000000000451002 +3285806027 20090731 0 900000000000207008 432143000 122550002 0 116680003 900000000000011006 900000000000451002 +3285807020 20080731 1 900000000000207008 432143000 432142005 0 116680003 900000000000011006 900000000000451002 +3285812021 20080731 1 900000000000207008 309168004 363329003 0 116680003 900000000000011006 900000000000451002 +3285814022 20080731 1 900000000000207008 122619005 418564007 0 116680003 900000000000011006 900000000000451002 +3285897025 20080731 1 900000000000207008 309055005 309051001 0 116680003 900000000000011006 900000000000451002 +3285904028 20080731 1 900000000000207008 122699006 309049000 0 116680003 900000000000011006 900000000000451002 +3285905027 20080731 1 900000000000207008 122699006 399713008 0 116680003 900000000000011006 900000000000451002 +3285912020 20080731 1 900000000000207008 122598006 397199005 0 116680003 900000000000011006 900000000000451002 +3285961022 20080731 1 900000000000207008 127483004 309278008 0 116680003 900000000000011006 900000000000451002 +3285995021 20080731 1 900000000000207008 430387006 110949001 0 116680003 900000000000011006 900000000000451002 +3285997029 20080731 1 900000000000207008 309277003 119393003 0 116680003 900000000000011006 900000000000451002 +3285997029 20090131 0 900000000000207008 309277003 119393003 0 116680003 900000000000011006 900000000000451002 +3285998023 20080731 1 900000000000207008 309277003 431412004 0 116680003 900000000000011006 900000000000451002 +3286020028 20080731 1 900000000000207008 303248007 258433009 0 116680003 900000000000011006 900000000000451002 +3286024021 20080731 1 900000000000207008 430387006 110947004 0 116680003 900000000000011006 900000000000451002 +3286042027 20080731 1 900000000000207008 122715008 122714007 0 116680003 900000000000011006 900000000000451002 +3286132027 20080731 1 900000000000207008 258587000 258591005 0 116680003 900000000000011006 900000000000451002 +3286141021 20080731 1 900000000000207008 430312009 119332005 0 116680003 900000000000011006 900000000000451002 +3286142025 20080731 1 900000000000207008 430312009 48469005 0 116680003 900000000000011006 900000000000451002 +3286142025 20110131 0 900000000000207008 430312009 48469005 0 116680003 900000000000011006 900000000000451002 +3286185023 20080731 1 900000000000207008 432139004 119398007 0 116680003 900000000000011006 900000000000451002 +3286186024 20080731 1 900000000000207008 432139004 431885000 0 116680003 900000000000011006 900000000000451002 +3286186024 20240701 0 900000000000207008 432139004 431885000 0 116680003 900000000000011006 900000000000451002 +3286226026 20080731 1 900000000000207008 122594008 432825001 0 116680003 900000000000011006 900000000000451002 +3286227024 20080731 1 900000000000207008 122594008 258465007 0 116680003 900000000000011006 900000000000451002 +3286264029 20080731 1 900000000000207008 119357000 258591005 0 116680003 900000000000011006 900000000000451002 +3286267020 20080731 1 900000000000207008 433117007 258415003 0 116680003 900000000000011006 900000000000451002 +3286268026 20080731 1 900000000000207008 433117007 430214008 0 116680003 900000000000011006 900000000000451002 +3286328027 20080731 1 900000000000207008 397456005 397457001 0 116680003 900000000000011006 900000000000451002 +3286329024 20080731 1 900000000000207008 397456005 431412004 0 116680003 900000000000011006 900000000000451002 +3286336020 20080731 1 900000000000207008 309061008 122601001 0 116680003 900000000000011006 900000000000451002 +3286387023 20080731 1 900000000000207008 119312009 119311002 0 116680003 900000000000011006 900000000000451002 +3286417027 20080731 1 900000000000207008 309283000 119395005 0 116680003 900000000000011006 900000000000451002 +3286418021 20080731 1 900000000000207008 309283000 432059003 0 116680003 900000000000011006 900000000000451002 +3286445022 20080731 1 900000000000207008 122649007 309223002 0 116680003 900000000000011006 900000000000451002 +3286445022 20190731 0 900000000000207008 122649007 309223002 0 116680003 900000000000011006 900000000000451002 +3286467023 20080731 1 900000000000207008 122581006 122560006 0 116680003 900000000000011006 900000000000451002 +3286541027 20080731 1 900000000000207008 432144006 122550002 0 116680003 900000000000011006 900000000000451002 +3286542023 20080731 1 900000000000207008 432144006 434014007 0 116680003 900000000000011006 900000000000451002 +3286558021 20080731 1 900000000000207008 309172000 127459007 0 116680003 900000000000011006 900000000000451002 +3286559029 20080731 1 900000000000207008 309172000 431412004 0 116680003 900000000000011006 900000000000451002 +3286573022 20080731 1 900000000000207008 397455009 397457001 0 116680003 900000000000011006 900000000000451002 +3286581023 20080731 1 900000000000207008 309174004 119391001 0 116680003 900000000000011006 900000000000451002 +3286582027 20080731 1 900000000000207008 309174004 431412004 0 116680003 900000000000011006 900000000000451002 +3286625021 20080731 1 900000000000207008 432099000 122550002 0 116680003 900000000000011006 900000000000451002 +3286625021 20090731 0 900000000000207008 432099000 122550002 0 116680003 900000000000011006 900000000000451002 +3286626022 20080731 1 900000000000207008 432099000 309273004 0 116680003 900000000000011006 900000000000451002 +3286638029 20080731 1 900000000000207008 256889002 258453008 0 116680003 900000000000011006 900000000000451002 +3286667028 20080731 1 900000000000207008 373193000 309078004 0 116680003 900000000000011006 900000000000451002 +3286674022 20080731 1 900000000000207008 432985002 432607005 0 116680003 900000000000011006 900000000000451002 +3286675023 20080731 1 900000000000207008 432985002 309189008 0 116680003 900000000000011006 900000000000451002 +3286675023 20140131 0 900000000000207008 432985002 309189008 0 116680003 900000000000011006 900000000000451002 +3286675023 20220630 1 900000000000207008 432985002 309189008 0 116680003 900000000000011006 900000000000451002 +3286710026 20080731 1 900000000000207008 399713008 397078009 0 116680003 900000000000011006 900000000000451002 +3286711027 20080731 1 900000000000207008 399713008 396273004 0 116680003 900000000000011006 900000000000451002 +3286712023 20080731 1 900000000000207008 399713008 309283000 0 116680003 900000000000011006 900000000000451002 +3286783024 20080731 1 900000000000207008 258515000 258512002 0 116680003 900000000000011006 900000000000451002 +3286784029 20080731 1 900000000000207008 258515000 258517008 0 116680003 900000000000011006 900000000000451002 +3286784029 20190731 0 900000000000207008 258515000 258517008 0 116680003 900000000000011006 900000000000451002 +3286787020 20080731 1 900000000000207008 258571003 119360007 0 116680003 900000000000011006 900000000000451002 +3286787020 20220630 0 900000000000207008 258571003 119360007 0 116680003 900000000000011006 900000000000451002 +3286816028 20080731 1 900000000000207008 258570002 430232008 0 116680003 900000000000011006 900000000000451002 +3286854028 20080731 1 900000000000207008 433323009 430232008 0 116680003 900000000000011006 900000000000451002 +3286869027 20080731 1 900000000000207008 258588005 420548004 0 116680003 900000000000011006 900000000000451002 +3286871027 20080731 1 900000000000207008 122625009 128166000 0 116680003 900000000000011006 900000000000451002 +3286930023 20080731 1 900000000000207008 258516004 258512002 0 116680003 900000000000011006 900000000000451002 +3286931022 20080731 1 900000000000207008 258516004 258513007 0 116680003 900000000000011006 900000000000451002 +3286931022 20110731 0 900000000000207008 258516004 258513007 0 116680003 900000000000011006 900000000000451002 +3286973025 20080731 1 900000000000207008 432657002 119368000 0 116680003 900000000000011006 900000000000451002 +3286974020 20080731 1 900000000000207008 432657002 309104000 0 116680003 900000000000011006 900000000000451002 +3287074025 20080731 1 900000000000207008 119395005 127479004 0 116680003 900000000000011006 900000000000451002 +3287098021 20080731 1 900000000000207008 431889006 258415003 0 116680003 900000000000011006 900000000000451002 +3287099029 20080731 1 900000000000207008 431889006 430246008 0 116680003 900000000000011006 900000000000451002 +3287139028 20080731 1 900000000000207008 309173005 119391001 0 116680003 900000000000011006 900000000000451002 +3287139028 20110731 0 900000000000207008 309173005 119391001 0 116680003 900000000000011006 900000000000451002 +3287140026 20080731 1 900000000000207008 309173005 431412004 0 116680003 900000000000011006 900000000000451002 +3287140026 20110731 0 900000000000207008 309173005 431412004 0 116680003 900000000000011006 900000000000451002 +3287142023 20080731 1 900000000000207008 122597001 397199005 0 116680003 900000000000011006 900000000000451002 +3287149025 20080731 1 900000000000207008 432865002 431886004 0 116680003 900000000000011006 900000000000451002 +3287149025 20240701 0 900000000000207008 432865002 431886004 0 116680003 900000000000011006 900000000000451002 +3287150025 20080731 1 900000000000207008 432865002 309182004 0 116680003 900000000000011006 900000000000451002 +3287257022 20080731 1 900000000000207008 373192005 309078004 0 116680003 900000000000011006 900000000000451002 +3287258028 20080731 1 900000000000207008 373192005 406101006 0 116680003 900000000000011006 900000000000451002 +3287274022 20080731 1 900000000000207008 309167009 432910000 0 116680003 900000000000011006 900000000000451002 +3287301027 20080731 1 900000000000207008 110962002 116156001 0 116680003 900000000000011006 900000000000451002 +3287328021 20080731 1 900000000000207008 431413009 430228002 0 116680003 900000000000011006 900000000000451002 +3287329029 20080731 1 900000000000207008 431413009 309137003 0 116680003 900000000000011006 900000000000451002 +3287339024 20080731 1 900000000000207008 122600000 122599003 0 116680003 900000000000011006 900000000000451002 +3287360029 20080731 1 900000000000207008 258577004 119394009 0 116680003 900000000000011006 900000000000451002 +3287380028 20080731 1 900000000000207008 309057002 258433009 0 116680003 900000000000011006 900000000000451002 +3287381029 20080731 1 900000000000207008 127474009 127472008 0 116680003 900000000000011006 900000000000451002 +3287431021 20080731 1 900000000000207008 399624001 127472008 0 116680003 900000000000011006 900000000000451002 +3287433024 20080731 1 900000000000207008 110950001 110964001 0 116680003 900000000000011006 900000000000451002 +3287448029 20080731 1 900000000000207008 258407001 119376003 0 116680003 900000000000011006 900000000000451002 +3287448029 20230630 0 900000000000207008 258407001 119376003 0 116680003 900000000000011006 900000000000451002 +3287537022 20080731 1 900000000000207008 119359002 123038009 0 116680003 900000000000011006 900000000000451002 +3287544029 20080731 1 900000000000207008 309289001 122705002 0 116680003 900000000000011006 900000000000451002 +3287589028 20080731 1 900000000000207008 258581004 258582006 0 116680003 900000000000011006 900000000000451002 +3287589028 20090131 0 900000000000207008 258581004 258582006 0 116680003 900000000000011006 900000000000451002 +3287688027 20080731 1 900000000000207008 258411007 119295008 0 116680003 900000000000011006 900000000000451002 +3287688027 20110131 0 900000000000207008 258411007 119295008 0 116680003 900000000000011006 900000000000451002 +3287689024 20080731 1 900000000000207008 258411007 430248009 0 116680003 900000000000011006 900000000000451002 +3287725022 20080731 1 900000000000207008 309170008 363329003 0 116680003 900000000000011006 900000000000451002 +3287732029 20080731 1 900000000000207008 276833005 409821005 0 116680003 900000000000011006 900000000000451002 +3287745025 20080731 1 900000000000207008 309291009 128155007 0 116680003 900000000000011006 900000000000451002 +3287778021 20080731 1 900000000000207008 430245007 119388001 0 116680003 900000000000011006 900000000000451002 +3287807021 20080731 1 900000000000207008 127481002 127480001 0 116680003 900000000000011006 900000000000451002 +3287817027 20080731 1 900000000000207008 309280002 119394009 0 116680003 900000000000011006 900000000000451002 +3287818021 20080731 1 900000000000207008 309280002 431412004 0 116680003 900000000000011006 900000000000451002 +3287827022 20080731 1 900000000000207008 430131006 309052008 0 116680003 900000000000011006 900000000000451002 +3287867023 20080731 1 900000000000207008 399447007 399658009 0 116680003 900000000000011006 900000000000451002 +3287953029 20080731 1 900000000000207008 258518003 258525005 0 116680003 900000000000011006 900000000000451002 +3287953029 20190731 0 900000000000207008 258518003 258525005 0 116680003 900000000000011006 900000000000451002 +3287983022 20080731 1 900000000000207008 434140003 432146008 0 116680003 900000000000011006 900000000000451002 +3287984027 20080731 1 900000000000207008 434140003 432982004 0 116680003 900000000000011006 900000000000451002 +3288031026 20080731 1 900000000000207008 309066003 258548000 0 116680003 900000000000011006 900000000000451002 +3288031026 20130731 0 900000000000207008 309066003 258548000 0 116680003 900000000000011006 900000000000451002 +3288059025 20080731 1 900000000000207008 309058007 122737001 0 116680003 900000000000011006 900000000000451002 +3288097025 20080731 1 900000000000207008 433873002 430234009 0 116680003 900000000000011006 900000000000451002 +3288098024 20080731 1 900000000000207008 433873002 431412004 0 116680003 900000000000011006 900000000000451002 +3288099027 20080731 1 900000000000207008 119341000 363311008 0 116680003 900000000000011006 900000000000451002 +3288099027 20110731 0 900000000000207008 119341000 363311008 0 116680003 900000000000011006 900000000000451002 +3288100024 20080731 1 900000000000207008 119341000 430232008 0 116680003 900000000000011006 900000000000451002 +3288100024 20100131 0 900000000000207008 119341000 430232008 0 116680003 900000000000011006 900000000000451002 +3288118022 20080731 1 900000000000207008 309068002 258548000 0 116680003 900000000000011006 900000000000451002 +3288118022 20130731 0 900000000000207008 309068002 258548000 0 116680003 900000000000011006 900000000000451002 +3288122028 20080731 1 900000000000207008 309180007 430248009 0 116680003 900000000000011006 900000000000451002 +3288123022 20080731 1 900000000000207008 309180007 309193002 0 116680003 900000000000011006 900000000000451002 +3288172026 20080731 1 900000000000207008 258575007 409821005 0 116680003 900000000000011006 900000000000451002 +3288192022 20080731 1 900000000000207008 122734008 309144007 0 116680003 900000000000011006 900000000000451002 +3288299021 20080731 1 900000000000207008 309169007 119390000 0 116680003 900000000000011006 900000000000451002 +3288309028 20080731 1 900000000000207008 430386002 48469005 0 116680003 900000000000011006 900000000000451002 +3288310022 20080731 1 900000000000207008 430386002 119349003 0 116680003 900000000000011006 900000000000451002 +3288330021 20080731 1 900000000000207008 433854001 430131006 0 116680003 900000000000011006 900000000000451002 +3288331020 20080731 1 900000000000207008 433854001 431412004 0 116680003 900000000000011006 900000000000451002 +3288396028 20080731 1 900000000000207008 122638001 30315005 1 118169006 900000000000011006 900000000000451002 +3288396028 20090131 0 900000000000207008 122638001 30315005 1 118169006 900000000000011006 900000000000451002 +3288608027 20080731 1 900000000000207008 399532000 413675001 1 370133003 900000000000011006 900000000000451002 +3288608027 20090731 0 900000000000207008 399532000 413675001 1 370133003 900000000000011006 900000000000451002 +3288706022 20080731 1 900000000000207008 122629003 116226004 1 118171006 900000000000011006 900000000000451002 +3288706022 20090131 0 900000000000207008 122629003 116226004 1 118171006 900000000000011006 900000000000451002 +3288729025 20080731 1 900000000000207008 119325001 39937001 1 118169006 900000000000011006 900000000000451002 +3288729025 20090131 0 900000000000207008 119325001 39937001 1 118169006 900000000000011006 900000000000451002 +3288825028 20080731 1 900000000000207008 122651006 413675001 1 370133003 900000000000011006 900000000000451002 +3288825028 20090131 0 900000000000207008 122651006 413675001 1 370133003 900000000000011006 900000000000451002 +3288907023 20080731 1 900000000000207008 432382007 234279002 1 118171006 900000000000011006 900000000000451002 +3288907023 20090131 0 900000000000207008 432382007 234279002 1 118171006 900000000000011006 900000000000451002 +3288908029 20080731 1 900000000000207008 432382007 59441001 1 118169006 900000000000011006 900000000000451002 +3288908029 20090131 0 900000000000207008 432382007 59441001 1 118169006 900000000000011006 900000000000451002 +3288949029 20080731 1 900000000000207008 122652004 413675001 1 370133003 900000000000011006 900000000000451002 +3288949029 20090731 0 900000000000207008 122652004 413675001 1 370133003 900000000000011006 900000000000451002 +3289021028 20080731 1 900000000000207008 430144001 4596009 0 118169006 900000000000011006 900000000000451002 +3289021028 20190731 1 900000000000207008 430144001 4596009 1 118169006 900000000000011006 900000000000451002 +3289028023 20080731 1 900000000000207008 433859006 53912006 1 118169006 900000000000011006 900000000000451002 +3289028023 20090131 0 900000000000207008 433859006 53912006 1 118169006 900000000000011006 900000000000451002 +3289378029 20080731 1 900000000000207008 399735000 81745001 1 118169006 900000000000011006 900000000000451002 +3289378029 20090131 0 900000000000207008 399735000 81745001 1 118169006 900000000000011006 900000000000451002 +3289379021 20080731 1 900000000000207008 399735000 413675001 1 370133003 900000000000011006 900000000000451002 +3289379021 20090131 0 900000000000207008 399735000 413675001 1 370133003 900000000000011006 900000000000451002 +3289441028 20080731 1 900000000000207008 430319000 74262004 0 118169006 900000000000011006 900000000000451002 +3289441028 20110731 0 900000000000207008 430319000 74262004 0 118169006 900000000000011006 900000000000451002 +3289712022 20080731 1 900000000000207008 434406008 385294005 1 118169006 900000000000011006 900000000000451002 +3289712022 20090131 0 900000000000207008 434406008 385294005 1 118169006 900000000000011006 900000000000451002 +3290261026 20080731 1 900000000000207008 433324003 371398005 0 118169006 900000000000011006 900000000000451002 +3290261026 20190731 1 900000000000207008 433324003 371398005 1 118169006 900000000000011006 900000000000451002 +3290354028 20080731 1 900000000000207008 258510005 285570007 1 118171006 900000000000011006 900000000000451002 +3290354028 20090131 0 900000000000207008 258510005 285570007 1 118171006 900000000000011006 900000000000451002 +3290397022 20080731 1 900000000000207008 432384008 69695003 1 118169006 900000000000011006 900000000000451002 +3290397022 20090131 0 900000000000207008 432384008 69695003 1 118169006 900000000000011006 900000000000451002 +3290397022 20090731 1 900000000000207008 432384008 69695003 1 118169006 900000000000011006 900000000000451002 +3290397022 20100131 0 900000000000207008 432384008 69695003 1 118169006 900000000000011006 900000000000451002 +3290580028 20080731 1 900000000000207008 122601001 122548005 1 118171006 900000000000011006 900000000000451002 +3290580028 20090131 0 900000000000207008 122601001 122548005 1 118171006 900000000000011006 900000000000451002 +3291603029 20080731 1 900000000000207008 119355008 414387006 0 118169006 900000000000011006 900000000000451002 +3291603029 20090731 0 900000000000207008 119355008 414387006 0 118169006 900000000000011006 900000000000451002 +3291604024 20080731 1 900000000000207008 309134005 41216001 1 118169006 900000000000011006 900000000000451002 +3291604024 20090131 0 900000000000207008 309134005 41216001 1 118169006 900000000000011006 900000000000451002 +3291687025 20080731 1 900000000000207008 430117006 371398005 0 118169006 900000000000011006 900000000000451002 +3291687025 20190731 1 900000000000207008 430117006 371398005 1 118169006 900000000000011006 900000000000451002 +3291734023 20080731 1 900000000000207008 415563002 413675001 1 370133003 900000000000011006 900000000000451002 +3291734023 20090131 0 900000000000207008 415563002 413675001 1 370133003 900000000000011006 900000000000451002 +3292027025 20080731 1 900000000000207008 432980007 87644002 1 118169006 900000000000011006 900000000000451002 +3292027025 20090131 0 900000000000207008 432980007 87644002 1 118169006 900000000000011006 900000000000451002 +3292027025 20090731 1 900000000000207008 432980007 87644002 1 118169006 900000000000011006 900000000000451002 +3292027025 20100131 0 900000000000207008 432980007 87644002 1 118169006 900000000000011006 900000000000451002 +3292165024 20080731 1 900000000000207008 309288009 128163008 0 116680003 900000000000011006 900000000000451002 +3292944028 20080731 1 900000000000207008 399731009 413675001 1 370133003 900000000000011006 900000000000451002 +3292944028 20090131 0 900000000000207008 399731009 413675001 1 370133003 900000000000011006 900000000000451002 +3292994027 20080731 1 900000000000207008 399541005 413675001 1 370133003 900000000000011006 900000000000451002 +3292994027 20090131 0 900000000000207008 399541005 413675001 1 370133003 900000000000011006 900000000000451002 +3293011025 20080731 1 900000000000207008 430241003 117590005 0 118169006 900000000000011006 900000000000451002 +3293011025 20190731 1 900000000000207008 430241003 117590005 1 118169006 900000000000011006 900000000000451002 +3293037027 20080731 1 900000000000207008 397458006 397384004 1 118169006 900000000000011006 900000000000451002 +3293037027 20090131 0 900000000000207008 397458006 397384004 1 118169006 900000000000011006 900000000000451002 +3293037027 20100731 1 900000000000207008 397458006 397384004 1 118169006 900000000000011006 900000000000451002 +3293037027 20110131 0 900000000000207008 397458006 397384004 1 118169006 900000000000011006 900000000000451002 +3293208022 20080731 1 900000000000207008 432986001 258415003 0 116680003 900000000000011006 900000000000451002 +3293209025 20080731 1 900000000000207008 432986001 430319000 0 116680003 900000000000011006 900000000000451002 +3293279026 20080731 1 900000000000207008 309182004 430144001 0 116680003 900000000000011006 900000000000451002 +3293280028 20080731 1 900000000000207008 309182004 431885000 0 116680003 900000000000011006 900000000000451002 +3293280028 20240701 0 900000000000207008 309182004 431885000 0 116680003 900000000000011006 900000000000451002 +3293301025 20080731 1 900000000000207008 309290005 127476006 0 116680003 900000000000011006 900000000000451002 +3293302021 20080731 1 900000000000207008 309290005 431412004 0 116680003 900000000000011006 900000000000451002 +3293339022 20080731 1 900000000000207008 432097003 309074002 0 116680003 900000000000011006 900000000000451002 +3293339022 20210131 0 900000000000207008 432097003 309074002 0 116680003 900000000000011006 900000000000451002 +3293340024 20080731 1 900000000000207008 432097003 309479002 0 116680003 900000000000011006 900000000000451002 +3293431024 20080731 1 900000000000207008 258576008 119295008 0 116680003 900000000000011006 900000000000451002 +3293431024 20110131 0 900000000000207008 258576008 119295008 0 116680003 900000000000011006 900000000000451002 +3293500025 20080731 1 900000000000207008 309278008 128165001 0 116680003 900000000000011006 900000000000451002 +3293526024 20080731 1 900000000000207008 399693002 13358001 1 118171006 900000000000011006 900000000000451002 +3293526024 20090131 0 900000000000207008 399693002 13358001 1 118171006 900000000000011006 900000000000451002 +3293527026 20080731 1 900000000000207008 309146009 48635004 1 118171006 900000000000011006 900000000000451002 +3293527026 20090131 0 900000000000207008 309146009 48635004 1 118171006 900000000000011006 900000000000451002 +3293666025 20080731 1 900000000000207008 258523003 258525005 0 116680003 900000000000011006 900000000000451002 +3293666025 20140131 0 900000000000207008 258523003 258525005 0 116680003 900000000000011006 900000000000451002 +3293666025 20190731 1 900000000000207008 258523003 258525005 0 116680003 900000000000011006 900000000000451002 +3293994024 20080731 1 900000000000207008 432140002 955009 1 118169006 900000000000011006 900000000000451002 +3293994024 20090131 0 900000000000207008 432140002 955009 1 118169006 900000000000011006 900000000000451002 +3293996021 20080731 1 900000000000207008 258503004 312881002 1 118171006 900000000000011006 900000000000451002 +3293996021 20090131 0 900000000000207008 258503004 312881002 1 118171006 900000000000011006 900000000000451002 +3294328026 20080731 1 900000000000207008 271518006 297221009 0 118169006 900000000000011006 900000000000451002 +3294328026 20190731 1 900000000000207008 271518006 297221009 1 118169006 900000000000011006 900000000000451002 +3294362026 20080731 1 900000000000207008 258499005 225709000 1 118171006 900000000000011006 900000000000451002 +3294362026 20090131 0 900000000000207008 258499005 225709000 1 118171006 900000000000011006 900000000000451002 +3294369024 20080731 1 900000000000207008 430408004 2778004 0 370133003 900000000000011006 900000000000451002 +3294369024 20110731 0 900000000000207008 430408004 2778004 0 370133003 900000000000011006 900000000000451002 +3294752024 20080731 1 900000000000207008 399751008 11401008 1 118171006 900000000000011006 900000000000451002 +3294752024 20090131 0 900000000000207008 399751008 11401008 1 118171006 900000000000011006 900000000000451002 +3294752024 20110131 1 900000000000207008 399751008 11401008 1 118171006 900000000000011006 900000000000451002 +3294752024 20110731 0 900000000000207008 399751008 11401008 1 118171006 900000000000011006 900000000000451002 +3295108026 20080731 1 900000000000207008 122599003 384723003 1 118171006 900000000000011006 900000000000451002 +3295108026 20090131 0 900000000000207008 122599003 384723003 1 118171006 900000000000011006 900000000000451002 +3295308023 20080731 1 900000000000207008 431696005 49957000 1 118169006 900000000000011006 900000000000451002 +3295308023 20090131 0 900000000000207008 431696005 49957000 1 118169006 900000000000011006 900000000000451002 +3295308023 20090731 1 900000000000207008 431696005 49957000 1 118169006 900000000000011006 900000000000451002 +3295308023 20100131 0 900000000000207008 431696005 49957000 1 118169006 900000000000011006 900000000000451002 +3295309026 20080731 1 900000000000207008 431696005 430111007 1 118171006 900000000000011006 900000000000451002 +3295309026 20090131 0 900000000000207008 431696005 430111007 1 118171006 900000000000011006 900000000000451002 +3295309026 20090731 1 900000000000207008 431696005 430111007 1 118171006 900000000000011006 900000000000451002 +3295309026 20100131 0 900000000000207008 431696005 430111007 1 118171006 900000000000011006 900000000000451002 +3295310020 20080731 1 900000000000207008 396998007 49401003 1 118171006 900000000000011006 900000000000451002 +3295311024 20080731 1 900000000000207008 396998007 14016003 1 118169006 900000000000011006 900000000000451002 +3295536025 20080731 1 900000000000207008 258504005 285570007 0 118171006 900000000000011006 900000000000451002 +3295536025 20190731 1 900000000000207008 258504005 285570007 1 118171006 900000000000011006 900000000000451002 +3295824027 20080731 1 900000000000207008 110958008 122489005 0 118169006 900000000000011006 900000000000451002 +3295824027 20190731 1 900000000000207008 110958008 122489005 1 118169006 900000000000011006 900000000000451002 +3296135027 20080731 1 900000000000207008 122717000 413675001 1 370133003 900000000000011006 900000000000451002 +3296135027 20090131 0 900000000000207008 122717000 413675001 1 370133003 900000000000011006 900000000000451002 +3296342021 20080731 1 900000000000207008 430236006 3057000 0 118169006 900000000000011006 900000000000451002 +3296342021 20190731 1 900000000000207008 430236006 3057000 1 118169006 900000000000011006 900000000000451002 +3296450029 20080731 1 900000000000207008 397234009 413675001 1 370133003 900000000000011006 900000000000451002 +3296450029 20090131 0 900000000000207008 397234009 413675001 1 370133003 900000000000011006 900000000000451002 +3296500023 20080731 1 900000000000207008 430379005 76848001 0 118169006 900000000000011006 900000000000451002 +3296500023 20110731 0 900000000000207008 430379005 76848001 0 118169006 900000000000011006 900000000000451002 +3296501022 20080731 1 900000000000207008 430379005 34429004 0 370133003 900000000000011006 900000000000451002 +3296501022 20110731 0 900000000000207008 430379005 34429004 0 370133003 900000000000011006 900000000000451002 +3297003023 20080731 1 900000000000207008 309137003 279572002 1 118169006 900000000000011006 900000000000451002 +3297003023 20090131 0 900000000000207008 309137003 279572002 1 118169006 900000000000011006 900000000000451002 +3297185027 20080731 1 900000000000207008 430250001 15425007 0 118169006 900000000000011006 900000000000451002 +3297185027 20190731 1 900000000000207008 430250001 15425007 1 118169006 900000000000011006 900000000000451002 +3297468021 20080731 1 900000000000207008 122700007 413675001 1 370133003 900000000000011006 900000000000451002 +3297468021 20090131 0 900000000000207008 122700007 413675001 1 370133003 900000000000011006 900000000000451002 +3298188028 20080731 1 900000000000207008 397232008 25990002 1 118169006 900000000000011006 900000000000451002 +3298188028 20090131 0 900000000000207008 397232008 25990002 1 118169006 900000000000011006 900000000000451002 +3298297020 20080731 1 900000000000207008 433116003 10200004 1 118169006 900000000000011006 900000000000451002 +3298297020 20090131 0 900000000000207008 433116003 10200004 1 118169006 900000000000011006 900000000000451002 +3298297020 20090731 1 900000000000207008 433116003 10200004 1 118169006 900000000000011006 900000000000451002 +3298297020 20100131 0 900000000000207008 433116003 10200004 1 118169006 900000000000011006 900000000000451002 +3298459022 20080731 1 900000000000207008 258507003 285570007 1 118171006 900000000000011006 900000000000451002 +3298459022 20090131 0 900000000000207008 258507003 285570007 1 118171006 900000000000011006 900000000000451002 +3298522023 20080731 1 900000000000207008 399486006 45292006 1 118169006 900000000000011006 900000000000451002 +3298522023 20090131 0 900000000000207008 399486006 45292006 1 118169006 900000000000011006 900000000000451002 +3298558027 20080731 1 900000000000207008 430389009 77012006 0 370133003 900000000000011006 900000000000451002 +3298558027 20190731 1 900000000000207008 430389009 77012006 2 370133003 900000000000011006 900000000000451002 +3298853025 20080731 1 900000000000207008 309138008 413675001 1 370133003 900000000000011006 900000000000451002 +3298853025 20090731 0 900000000000207008 309138008 413675001 1 370133003 900000000000011006 900000000000451002 +3299255024 20080731 1 900000000000207008 430309006 24142002 1 118169006 900000000000011006 900000000000451002 +3299255024 20090131 0 900000000000207008 430309006 24142002 1 118169006 900000000000011006 900000000000451002 +3299331027 20080731 1 900000000000207008 122703009 68688001 1 118171006 900000000000011006 900000000000451002 +3299331027 20090131 0 900000000000207008 122703009 68688001 1 118171006 900000000000011006 900000000000451002 +3299818028 20080731 1 900000000000207008 122563008 430372001 0 118170007 900000000000011006 900000000000451002 +3299818028 20190731 1 900000000000207008 122563008 430372001 1 118170007 900000000000011006 900000000000451002 +3300310020 20080731 1 900000000000207008 397462000 34646007 1 118171006 900000000000011006 900000000000451002 +3300310020 20090731 0 900000000000207008 397462000 34646007 1 118171006 900000000000011006 900000000000451002 +3300520027 20080731 1 900000000000207008 431771004 83670000 1 118169006 900000000000011006 900000000000451002 +3300520027 20090131 0 900000000000207008 431771004 83670000 1 118169006 900000000000011006 900000000000451002 +3300521028 20080731 1 900000000000207008 431771004 409615008 1 370133003 900000000000011006 900000000000451002 +3300521028 20090131 0 900000000000207008 431771004 409615008 1 370133003 900000000000011006 900000000000451002 +3300616023 20080731 1 900000000000207008 409821005 78014005 1 370133003 900000000000011006 900000000000451002 +3300616023 20090131 0 900000000000207008 409821005 78014005 1 370133003 900000000000011006 900000000000451002 +3300792027 20080731 1 900000000000207008 399752001 385341003 1 118171006 900000000000011006 900000000000451002 +3300792027 20090131 0 900000000000207008 399752001 385341003 1 118171006 900000000000011006 900000000000451002 +3301216022 20080731 1 900000000000207008 258506007 285570007 1 118171006 900000000000011006 900000000000451002 +3301216022 20090131 0 900000000000207008 258506007 285570007 1 118171006 900000000000011006 900000000000451002 +3301458023 20080731 1 900000000000207008 116161004 69748006 1 118169006 900000000000011006 900000000000451002 +3301458023 20090131 0 900000000000207008 116161004 69748006 1 118169006 900000000000011006 900000000000451002 +3301666021 20080731 1 900000000000207008 309129006 3057000 1 118169006 900000000000011006 900000000000451002 +3301666021 20090131 0 900000000000207008 309129006 3057000 1 118169006 900000000000011006 900000000000451002 +3302093022 20080731 1 900000000000207008 433309007 27398004 0 118169006 900000000000011006 900000000000451002 +3302093022 20190731 1 900000000000207008 433309007 27398004 1 118169006 900000000000011006 900000000000451002 +3302166022 20080731 1 900000000000207008 397235005 25990002 1 118169006 900000000000011006 900000000000451002 +3302166022 20090131 0 900000000000207008 397235005 25990002 1 118169006 900000000000011006 900000000000451002 +3302434021 20080731 1 900000000000207008 399603006 397896001 1 118171006 900000000000011006 900000000000451002 +3302434021 20090131 0 900000000000207008 399603006 397896001 1 118171006 900000000000011006 900000000000451002 +3302606020 20080731 1 900000000000207008 258500001 285570007 1 118171006 900000000000011006 900000000000451002 +3302606020 20090131 0 900000000000207008 258500001 285570007 1 118171006 900000000000011006 900000000000451002 +3302826021 20080731 1 900000000000207008 432383002 78961009 1 118169006 900000000000011006 900000000000451002 +3302826021 20090131 0 900000000000207008 432383002 78961009 1 118169006 900000000000011006 900000000000451002 +3302826021 20090731 1 900000000000207008 432383002 78961009 1 118169006 900000000000011006 900000000000451002 +3302826021 20100131 0 900000000000207008 432383002 78961009 1 118169006 900000000000011006 900000000000451002 +3303045023 20080731 1 900000000000207008 309148005 386147002 1 118171006 900000000000011006 900000000000451002 +3303045023 20090131 0 900000000000207008 309148005 386147002 1 118171006 900000000000011006 900000000000451002 +3303113026 20080731 1 900000000000207008 167869007 6085005 1 370133003 900000000000011006 900000000000451002 +3303113026 20090131 0 900000000000207008 167869007 6085005 1 370133003 900000000000011006 900000000000451002 +3303113026 20110131 1 900000000000207008 167869007 6085005 1 370133003 900000000000011006 900000000000451002 +3303113026 20110731 0 900000000000207008 167869007 6085005 1 370133003 900000000000011006 900000000000451002 +3303207025 20080731 1 900000000000207008 258505006 56208002 1 118168003 900000000000011006 900000000000451002 +3303207025 20090131 0 900000000000207008 258505006 56208002 1 118168003 900000000000011006 900000000000451002 +3303448029 20080731 1 900000000000207008 309127008 39352004 1 118169006 900000000000011006 900000000000451002 +3303448029 20090731 0 900000000000207008 309127008 39352004 1 118169006 900000000000011006 900000000000451002 +3303809024 20080731 1 900000000000207008 415293009 321667001 1 118169006 900000000000011006 900000000000451002 +3303809024 20090131 0 900000000000207008 415293009 321667001 1 118169006 900000000000011006 900000000000451002 +3304133022 20080731 1 900000000000207008 167868004 6085005 1 370133003 900000000000011006 900000000000451002 +3304133022 20090131 0 900000000000207008 167868004 6085005 1 370133003 900000000000011006 900000000000451002 +3304133022 20110131 1 900000000000207008 167868004 6085005 1 370133003 900000000000011006 900000000000451002 +3304133022 20110731 0 900000000000207008 167868004 6085005 1 370133003 900000000000011006 900000000000451002 +3304452020 20080731 1 900000000000207008 309546004 413675001 1 370133003 900000000000011006 900000000000451002 +3304452020 20090131 0 900000000000207008 309546004 413675001 1 370133003 900000000000011006 900000000000451002 +3304739027 20080731 1 900000000000207008 427558003 413675001 1 370133003 900000000000011006 900000000000451002 +3304739027 20090131 0 900000000000207008 427558003 413675001 1 370133003 900000000000011006 900000000000451002 +3304758020 20080731 1 900000000000207008 399614009 432258004 1 118171006 900000000000011006 900000000000451002 +3304758020 20090731 0 900000000000207008 399614009 432258004 1 118171006 900000000000011006 900000000000451002 +3305223028 20080731 1 900000000000207008 271514008 297219004 0 118169006 900000000000011006 900000000000451002 +3305223028 20190731 1 900000000000207008 271514008 297219004 1 118169006 900000000000011006 900000000000451002 +3305364020 20080731 1 900000000000207008 432607005 430113005 1 118171006 900000000000011006 900000000000451002 +3305364020 20090131 0 900000000000207008 432607005 430113005 1 118171006 900000000000011006 900000000000451002 +3305478020 20080731 1 900000000000207008 122704003 386802000 1 118171006 900000000000011006 900000000000451002 +3305478020 20090131 0 900000000000207008 122704003 386802000 1 118171006 900000000000011006 900000000000451002 +3305627022 20080731 1 900000000000207008 309128003 81745001 1 118169006 900000000000011006 900000000000451002 +3305627022 20090131 0 900000000000207008 309128003 81745001 1 118169006 900000000000011006 900000000000451002 +3305799022 20080731 1 900000000000207008 122654003 413675001 1 370133003 900000000000011006 900000000000451002 +3305799022 20090131 0 900000000000207008 122654003 413675001 1 370133003 900000000000011006 900000000000451002 +3306513025 20080731 1 900000000000207008 397199005 69031006 1 118171006 900000000000011006 900000000000451002 +3306513025 20090131 0 900000000000207008 397199005 69031006 1 118171006 900000000000011006 900000000000451002 +3306744021 20080731 1 900000000000207008 122630008 413675001 1 370133003 900000000000011006 900000000000451002 +3306744021 20090731 0 900000000000207008 122630008 413675001 1 370133003 900000000000011006 900000000000451002 +3307190026 20080731 1 900000000000207008 399661005 14059008 1 118171006 900000000000011006 900000000000451002 +3307190026 20090131 0 900000000000207008 399661005 14059008 1 118171006 900000000000011006 900000000000451002 +3307214027 20080731 1 900000000000207008 167876002 6085005 1 370133003 900000000000011006 900000000000451002 +3307214027 20090131 0 900000000000207008 167876002 6085005 1 370133003 900000000000011006 900000000000451002 +3307214027 20110131 1 900000000000207008 167876002 6085005 1 370133003 900000000000011006 900000000000451002 +3307214027 20110731 0 900000000000207008 167876002 6085005 1 370133003 900000000000011006 900000000000451002 +3307263028 20080731 1 900000000000207008 110925004 123851003 0 118169006 900000000000011006 900000000000451002 +3307263028 20190731 1 900000000000207008 110925004 123851003 1 118169006 900000000000011006 900000000000451002 +3307655022 20080731 1 900000000000207008 122606006 413675001 1 370133003 900000000000011006 900000000000451002 +3307655022 20090131 0 900000000000207008 122606006 413675001 1 370133003 900000000000011006 900000000000451002 +3307897025 20080731 1 900000000000207008 309548003 64633006 0 118169006 900000000000011006 900000000000451002 +3307897025 20190731 1 900000000000207008 309548003 64633006 1 118169006 900000000000011006 900000000000451002 +3309008023 20080731 1 900000000000207008 122671002 64033007 1 118169006 900000000000011006 900000000000451002 +3309008023 20090131 0 900000000000207008 122671002 64033007 1 118169006 900000000000011006 900000000000451002 +3309008023 20090731 1 900000000000207008 122671002 64033007 1 118169006 900000000000011006 900000000000451002 +3309008023 20100131 0 900000000000207008 122671002 64033007 1 118169006 900000000000011006 900000000000451002 +3309242020 20080731 1 900000000000207008 119309006 19923001 0 118170007 900000000000011006 900000000000451002 +3309242020 20190731 1 900000000000207008 119309006 19923001 2 118170007 900000000000011006 900000000000451002 +3309242020 20210131 0 900000000000207008 119309006 19923001 2 118170007 900000000000011006 900000000000451002 +3309566026 20080731 1 900000000000207008 397482001 116241004 1 118171006 900000000000011006 900000000000451002 +3309566026 20090731 0 900000000000207008 397482001 116241004 1 118171006 900000000000011006 900000000000451002 +3309918026 20080731 1 900000000000207008 122721007 413675001 1 370133003 900000000000011006 900000000000451002 +3309918026 20090731 0 900000000000207008 122721007 413675001 1 370133003 900000000000011006 900000000000451002 +3310304026 20080731 1 900000000000207008 369618002 274942001 1 118171006 900000000000011006 900000000000451002 +3310304026 20090131 0 900000000000207008 369618002 274942001 1 118171006 900000000000011006 900000000000451002 +3310474026 20080731 1 900000000000207008 122584003 116154003 1 118170007 900000000000011006 900000000000451002 +3310474026 20090131 0 900000000000207008 122584003 116154003 1 118170007 900000000000011006 900000000000451002 +3310968022 20080731 1 900000000000207008 369616003 28231008 1 118169006 900000000000011006 900000000000451002 +3310968022 20090131 0 900000000000207008 369616003 28231008 1 118169006 900000000000011006 900000000000451002 +3310988021 20080731 1 900000000000207008 122702004 52224004 1 118171006 900000000000011006 900000000000451002 +3310988021 20090731 0 900000000000207008 122702004 52224004 1 118171006 900000000000011006 900000000000451002 +3311250022 20080731 1 900000000000207008 122674005 116033007 1 118171006 900000000000011006 900000000000451002 +3311250022 20090131 0 900000000000207008 122674005 116033007 1 118171006 900000000000011006 900000000000451002 +3311251021 20080731 1 900000000000207008 309142006 274371008 1 118171006 900000000000011006 900000000000451002 +3311251021 20090131 0 900000000000207008 309142006 274371008 1 118171006 900000000000011006 900000000000451002 +3311297023 20080731 1 900000000000207008 369615004 66361005 1 118171006 900000000000011006 900000000000451002 +3311297023 20090731 0 900000000000207008 369615004 66361005 1 118171006 900000000000011006 900000000000451002 +3311731023 20080731 1 900000000000207008 309143001 23451007 1 118169006 900000000000011006 900000000000451002 +3311731023 20090731 0 900000000000207008 309143001 23451007 1 118169006 900000000000011006 900000000000451002 +3312075025 20080731 1 900000000000207008 119356009 414387006 0 118169006 900000000000011006 900000000000451002 +3312075025 20090731 0 900000000000207008 119356009 414387006 0 118169006 900000000000011006 900000000000451002 +3312354025 20080731 1 900000000000207008 122720008 413675001 1 370133003 900000000000011006 900000000000451002 +3312354025 20090731 0 900000000000207008 122720008 413675001 1 370133003 900000000000011006 900000000000451002 +3312755027 20080731 1 900000000000207008 433799002 64274004 0 118169006 900000000000011006 900000000000451002 +3312755027 20190731 1 900000000000207008 433799002 64274004 1 118169006 900000000000011006 900000000000451002 +3312980021 20080731 1 900000000000207008 309126004 39352004 1 118169006 900000000000011006 900000000000451002 +3312980021 20090131 0 900000000000207008 309126004 39352004 1 118169006 900000000000011006 900000000000451002 +3312981020 20080731 1 900000000000207008 309126004 413675001 1 370133003 900000000000011006 900000000000451002 +3312981020 20090131 0 900000000000207008 309126004 413675001 1 370133003 900000000000011006 900000000000451002 +3313159022 20080731 1 900000000000207008 384820007 90199006 1 118171006 900000000000011006 900000000000451002 +3313159022 20090131 0 900000000000207008 384820007 90199006 1 118171006 900000000000011006 900000000000451002 +3313213028 20080731 1 900000000000207008 122735009 69748006 1 118169006 900000000000011006 900000000000451002 +3313213028 20090131 0 900000000000207008 122735009 69748006 1 118169006 900000000000011006 900000000000451002 +3313272025 20080731 1 900000000000207008 122639009 413675001 1 370133003 900000000000011006 900000000000451002 +3313272025 20090131 0 900000000000207008 122639009 413675001 1 370133003 900000000000011006 900000000000451002 +3313302028 20080731 1 900000000000207008 431905001 285570007 0 118171006 900000000000011006 900000000000451002 +3313302028 20190731 1 900000000000207008 431905001 285570007 1 118171006 900000000000011006 900000000000451002 +3313550028 20080731 1 900000000000207008 122628006 413675001 1 370133003 900000000000011006 900000000000451002 +3313550028 20090131 0 900000000000207008 122628006 413675001 1 370133003 900000000000011006 900000000000451002 +3313713027 20080731 1 900000000000207008 432441006 386152007 1 118168003 900000000000011006 900000000000451002 +3313713027 20090131 0 900000000000207008 432441006 386152007 1 118168003 900000000000011006 900000000000451002 +3313748023 20080731 1 900000000000207008 430214008 61685007 0 118169006 900000000000011006 900000000000451002 +3313748023 20190731 1 900000000000207008 430214008 61685007 1 118169006 900000000000011006 900000000000451002 +3314087022 20080731 1 900000000000207008 369617007 413675001 1 370133003 900000000000011006 900000000000451002 +3314088028 20080731 1 900000000000207008 369617007 10200004 2 118169006 900000000000011006 900000000000451002 +3314088028 20110731 0 900000000000207008 369617007 10200004 2 118169006 900000000000011006 900000000000451002 +3314091028 20080731 1 900000000000207008 258484005 406139003 1 118169006 900000000000011006 900000000000451002 +3314091028 20090131 0 900000000000207008 258484005 406139003 1 118169006 900000000000011006 900000000000451002 +3314092024 20080731 1 900000000000207008 258484005 413675001 1 370133003 900000000000011006 900000000000451002 +3314092024 20090131 0 900000000000207008 258484005 413675001 1 370133003 900000000000011006 900000000000451002 +3314852021 20080731 1 900000000000207008 167870008 74670003 1 118169006 900000000000011006 900000000000451002 +3314852021 20090131 0 900000000000207008 167870008 74670003 1 118169006 900000000000011006 900000000000451002 +3314852021 20110131 1 900000000000207008 167870008 74670003 1 118169006 900000000000011006 900000000000451002 +3314852021 20110731 0 900000000000207008 167870008 74670003 1 118169006 900000000000011006 900000000000451002 +3315052028 20080731 1 900000000000207008 399633004 66300009 1 118171006 900000000000011006 900000000000451002 +3315052028 20090131 0 900000000000207008 399633004 66300009 1 118171006 900000000000011006 900000000000451002 +3315503023 20080731 1 900000000000207008 122650007 82619000 1 118171006 900000000000011006 900000000000451002 +3315503023 20090731 0 900000000000207008 122650007 82619000 1 118171006 900000000000011006 900000000000451002 +3315709020 20080731 1 900000000000207008 430297000 87100004 0 118169006 900000000000011006 900000000000451002 +3315709020 20090731 0 900000000000207008 430297000 87100004 0 118169006 900000000000011006 900000000000451002 +3316826028 20080731 1 900000000000207008 309150002 413675001 1 370133003 900000000000011006 900000000000451002 +3316826028 20090131 0 900000000000207008 309150002 413675001 1 370133003 900000000000011006 900000000000451002 +3317071025 20080731 1 900000000000207008 432419006 39352004 1 118169006 900000000000011006 900000000000451002 +3317071025 20090131 0 900000000000207008 432419006 39352004 1 118169006 900000000000011006 900000000000451002 +3317071025 20110731 1 900000000000207008 432419006 39352004 1 118169006 900000000000011006 900000000000451002 +3317111023 20080731 1 900000000000207008 167875003 6085005 1 370133003 900000000000011006 900000000000451002 +3317111023 20090131 0 900000000000207008 167875003 6085005 1 370133003 900000000000011006 900000000000451002 +3317111023 20110131 1 900000000000207008 167875003 6085005 1 370133003 900000000000011006 900000000000451002 +3317111023 20110731 0 900000000000207008 167875003 6085005 1 370133003 900000000000011006 900000000000451002 +3317417026 20080731 1 900000000000207008 167873005 6085005 1 370133003 900000000000011006 900000000000451002 +3317417026 20090131 0 900000000000207008 167873005 6085005 1 370133003 900000000000011006 900000000000451002 +3317417026 20110131 1 900000000000207008 167873005 6085005 1 370133003 900000000000011006 900000000000451002 +3317417026 20110731 0 900000000000207008 167873005 6085005 1 370133003 900000000000011006 900000000000451002 +3317731027 20080731 1 900000000000207008 122641005 17988003 1 118171006 900000000000011006 900000000000451002 +3317731027 20090131 0 900000000000207008 122641005 17988003 1 118171006 900000000000011006 900000000000451002 +3318040020 20080731 1 900000000000207008 399728008 399710006 1 118171006 900000000000011006 900000000000451002 +3318040020 20090131 0 900000000000207008 399728008 399710006 1 118171006 900000000000011006 900000000000451002 +3318143020 20080731 1 900000000000207008 258649003 118431008 0 370133003 900000000000011006 900000000000451002 +3318143020 20190731 1 900000000000207008 258649003 118431008 1 370133003 900000000000011006 900000000000451002 +3318550026 20080731 1 900000000000207008 309261004 36213007 1 118171006 900000000000011006 900000000000451002 +3318550026 20090131 0 900000000000207008 309261004 36213007 1 118171006 900000000000011006 900000000000451002 +3318655026 20080731 1 900000000000207008 122604009 232632009 1 118171006 900000000000011006 900000000000451002 +3318655026 20090131 0 900000000000207008 122604009 232632009 1 118171006 900000000000011006 900000000000451002 +3318797028 20080731 1 900000000000207008 122719002 413675001 1 370133003 900000000000011006 900000000000451002 +3318797028 20090731 0 900000000000207008 122719002 413675001 1 370133003 900000000000011006 900000000000451002 +3318903025 20080731 1 900000000000207008 122736005 413675001 1 370133003 900000000000011006 900000000000451002 +3318903025 20090131 0 900000000000207008 122736005 413675001 1 370133003 900000000000011006 900000000000451002 +3319207025 20080731 1 900000000000207008 309547008 413675001 1 370133003 900000000000011006 900000000000451002 +3319207025 20090131 0 900000000000207008 309547008 413675001 1 370133003 900000000000011006 900000000000451002 +3320698027 20080731 1 900000000000207008 369613006 413675001 0 370133003 900000000000011006 900000000000451002 +3320698027 20190731 1 900000000000207008 369613006 413675001 1 370133003 900000000000011006 900000000000451002 +3320946027 20080731 1 900000000000207008 397245007 413675001 1 370133003 900000000000011006 900000000000451002 +3320946027 20090131 0 900000000000207008 397245007 413675001 1 370133003 900000000000011006 900000000000451002 +3321053028 20080731 1 900000000000207008 431058008 48477009 0 118169006 900000000000011006 900000000000451002 +3321053028 20190731 1 900000000000207008 431058008 48477009 1 118169006 900000000000011006 900000000000451002 +3321384023 20080731 1 900000000000207008 397246008 413675001 1 370133003 900000000000011006 900000000000451002 +3321384023 20090131 0 900000000000207008 397246008 413675001 1 370133003 900000000000011006 900000000000451002 +3321848021 20080731 1 900000000000207008 430304001 87100004 0 118169006 900000000000011006 900000000000451002 +3321848021 20090731 0 900000000000207008 430304001 87100004 0 118169006 900000000000011006 900000000000451002 +3322096020 20080731 1 900000000000207008 309262006 34402009 1 118169006 900000000000011006 900000000000451002 +3322096020 20090131 0 900000000000207008 309262006 34402009 1 118169006 900000000000011006 900000000000451002 +3322096020 20110731 1 900000000000207008 309262006 34402009 1 118169006 900000000000011006 900000000000451002 +3322461029 20080731 1 900000000000207008 122567009 386100006 1 370133003 900000000000011006 900000000000451002 +3322461029 20090131 0 900000000000207008 122567009 386100006 1 370133003 900000000000011006 900000000000451002 +3322963021 20080731 1 900000000000207008 430238007 2095001 0 118169006 900000000000011006 900000000000451002 +3322963021 20190731 1 900000000000207008 430238007 2095001 1 118169006 900000000000011006 900000000000451002 +3323020025 20080731 1 900000000000207008 397483006 413675001 1 370133003 900000000000011006 900000000000451002 +3323020025 20090731 0 900000000000207008 397483006 413675001 1 370133003 900000000000011006 900000000000451002 +3323030023 20080731 1 900000000000207008 110946008 431491007 0 118169006 900000000000011006 900000000000451002 +3323030023 20190731 1 900000000000207008 110946008 431491007 1 118169006 900000000000011006 900000000000451002 +3323149020 20080731 1 900000000000207008 309153000 53304009 1 118171006 900000000000011006 900000000000451002 +3323149020 20090731 0 900000000000207008 309153000 53304009 1 118171006 900000000000011006 900000000000451002 +3323604023 20080731 1 900000000000207008 122564002 430345009 0 118170007 900000000000011006 900000000000451002 +3323604023 20190731 1 900000000000207008 122564002 430345009 1 118170007 900000000000011006 900000000000451002 +3323802024 20080731 1 900000000000207008 433322004 89679009 0 118169006 900000000000011006 900000000000451002 +3323802024 20190731 1 900000000000207008 433322004 89679009 1 118169006 900000000000011006 900000000000451002 +3324089024 20080731 1 900000000000207008 122718005 413675001 1 370133003 900000000000011006 900000000000451002 +3324089024 20090131 0 900000000000207008 122718005 413675001 1 370133003 900000000000011006 900000000000451002 +3324296028 20080731 1 900000000000207008 122640006 116027003 1 118171006 900000000000011006 900000000000451002 +3324296028 20090131 0 900000000000207008 122640006 116027003 1 118171006 900000000000011006 900000000000451002 +3324771027 20080731 1 900000000000207008 128173005 413675001 1 370133003 900000000000011006 900000000000451002 +3324771027 20090131 0 900000000000207008 128173005 413675001 1 370133003 900000000000011006 900000000000451002 +3324873020 20080731 1 900000000000207008 302794003 6853008 0 118171006 900000000000011006 900000000000451002 +3324873020 20190731 1 900000000000207008 302794003 6853008 1 118171006 900000000000011006 900000000000451002 +3325135029 20080731 1 900000000000207008 122656001 413675001 1 370133003 900000000000011006 900000000000451002 +3325135029 20090131 0 900000000000207008 122656001 413675001 1 370133003 900000000000011006 900000000000451002 +3325135029 20110731 1 900000000000207008 122656001 413675001 1 370133003 900000000000011006 900000000000451002 +3325845025 20080731 1 900000000000207008 309116006 413675001 1 370133003 900000000000011006 900000000000451002 +3325845025 20090731 0 900000000000207008 309116006 413675001 1 370133003 900000000000011006 900000000000451002 +3325847022 20080731 1 900000000000207008 258482009 32457005 1 370133003 900000000000011006 900000000000451002 +3325847022 20090131 0 900000000000207008 258482009 32457005 1 370133003 900000000000011006 900000000000451002 +3326198021 20080731 1 900000000000207008 128171007 413675001 1 370133003 900000000000011006 900000000000451002 +3326198021 20090131 0 900000000000207008 128171007 413675001 1 370133003 900000000000011006 900000000000451002 +3327188023 20080731 1 900000000000207008 122724004 116244007 1 118171006 900000000000011006 900000000000451002 +3327188023 20090131 0 900000000000207008 122724004 116244007 1 118171006 900000000000011006 900000000000451002 +3327276027 20080731 1 900000000000207008 309498000 413675001 1 370133003 900000000000011006 900000000000451002 +3327276027 20090131 0 900000000000207008 309498000 413675001 1 370133003 900000000000011006 900000000000451002 +3327932029 20080731 1 900000000000207008 271516005 313230008 0 118169006 900000000000011006 900000000000451002 +3327932029 20190731 1 900000000000207008 271516005 313230008 1 118169006 900000000000011006 900000000000451002 +3328767024 20080731 1 900000000000207008 309105004 13861005 1 118171006 900000000000011006 900000000000451002 +3328767024 20090131 0 900000000000207008 309105004 13861005 1 118171006 900000000000011006 900000000000451002 +3328768025 20080731 1 900000000000207008 309105004 272673000 1 118169006 900000000000011006 900000000000451002 +3328768025 20090131 0 900000000000207008 309105004 272673000 1 118169006 900000000000011006 900000000000451002 +3329315029 20080731 1 900000000000207008 397221008 25990002 1 118169006 900000000000011006 900000000000451002 +3329315029 20090131 0 900000000000207008 397221008 25990002 1 118169006 900000000000011006 900000000000451002 +3329824025 20080731 1 900000000000207008 399551006 119283008 1 118171006 900000000000011006 900000000000451002 +3329824025 20090131 0 900000000000207008 399551006 119283008 1 118171006 900000000000011006 900000000000451002 +3329824025 20100731 1 900000000000207008 399551006 119283008 1 118171006 900000000000011006 900000000000451002 +3329824025 20110131 0 900000000000207008 399551006 119283008 1 118171006 900000000000011006 900000000000451002 +3330098023 20080731 1 900000000000207008 432825001 46242002 0 370133003 900000000000011006 900000000000451002 +3330098023 20190731 1 900000000000207008 432825001 46242002 1 370133003 900000000000011006 900000000000451002 +3330751021 20080731 1 900000000000207008 122688009 413675001 1 370133003 900000000000011006 900000000000451002 +3330751021 20090131 0 900000000000207008 122688009 413675001 1 370133003 900000000000011006 900000000000451002 +3331286029 20080731 1 900000000000207008 122687004 413675001 1 370133003 900000000000011006 900000000000451002 +3331286029 20090131 0 900000000000207008 122687004 413675001 1 370133003 900000000000011006 900000000000451002 +3331524025 20080731 1 900000000000207008 309216003 38848004 1 118169006 900000000000011006 900000000000451002 +3331524025 20090131 0 900000000000207008 309216003 38848004 1 118169006 900000000000011006 900000000000451002 +3331899021 20080731 1 900000000000207008 258650003 118431008 0 370133003 900000000000011006 900000000000451002 +3331899021 20190731 1 900000000000207008 258650003 118431008 2 370133003 900000000000011006 900000000000451002 +3331921027 20080731 1 900000000000207008 309501000 413675001 1 370133003 900000000000011006 900000000000451002 +3331921027 20090731 0 900000000000207008 309501000 413675001 1 370133003 900000000000011006 900000000000451002 +3332277020 20080731 1 900000000000207008 258466008 33463005 1 370133003 900000000000011006 900000000000451002 +3332277020 20090131 0 900000000000207008 258466008 33463005 1 370133003 900000000000011006 900000000000451002 +3332304027 20080731 1 900000000000207008 309130001 3057000 1 118169006 900000000000011006 900000000000451002 +3332304027 20090131 0 900000000000207008 309130001 3057000 1 118169006 900000000000011006 900000000000451002 +3332689027 20080731 1 900000000000207008 119353001 414387006 0 118169006 900000000000011006 900000000000451002 +3332689027 20090731 0 900000000000207008 119353001 414387006 0 118169006 900000000000011006 900000000000451002 +3332710029 20080731 1 900000000000207008 122707005 413675001 1 370133003 900000000000011006 900000000000451002 +3332710029 20090131 0 900000000000207008 122707005 413675001 1 370133003 900000000000011006 900000000000451002 +3332819022 20080731 1 900000000000207008 258470000 33463005 1 370133003 900000000000011006 900000000000451002 +3332819022 20090131 0 900000000000207008 258470000 33463005 1 370133003 900000000000011006 900000000000451002 +3332841022 20080731 1 900000000000207008 399396003 25149004 1 118169006 900000000000011006 900000000000451002 +3332841022 20090131 0 900000000000207008 399396003 25149004 1 118169006 900000000000011006 900000000000451002 +3332973028 20080731 1 900000000000207008 258472008 38922008 1 370133003 900000000000011006 900000000000451002 +3332973028 20090131 0 900000000000207008 258472008 38922008 1 370133003 900000000000011006 900000000000451002 +3333008029 20080731 1 900000000000207008 309133004 90470006 1 118171006 900000000000011006 900000000000451002 +3333008029 20090731 0 900000000000207008 309133004 90470006 1 118171006 900000000000011006 900000000000451002 +3333090026 20080731 1 900000000000207008 122642003 413675001 1 370133003 900000000000011006 900000000000451002 +3333090026 20090731 0 900000000000207008 122642003 413675001 1 370133003 900000000000011006 900000000000451002 +3333388020 20080731 1 900000000000207008 128161005 413675001 1 370133003 900000000000011006 900000000000451002 +3333388020 20090131 0 900000000000207008 128161005 413675001 1 370133003 900000000000011006 900000000000451002 +3333458026 20080731 1 900000000000207008 396477000 413675001 1 370133003 900000000000011006 900000000000451002 +3333458026 20090131 0 900000000000207008 396477000 413675001 1 370133003 900000000000011006 900000000000451002 +3334181027 20080731 1 900000000000207008 122631007 24506003 1 118171006 900000000000011006 900000000000451002 +3334181027 20090731 0 900000000000207008 122631007 24506003 1 118171006 900000000000011006 900000000000451002 +3334240027 20080731 1 900000000000207008 122723005 413675001 1 370133003 900000000000011006 900000000000451002 +3334240027 20090731 0 900000000000207008 122723005 413675001 1 370133003 900000000000011006 900000000000451002 +3334906023 20080731 1 900000000000207008 384744003 413675001 1 370133003 900000000000011006 900000000000451002 +3334906023 20090131 0 900000000000207008 384744003 413675001 1 370133003 900000000000011006 900000000000451002 +3335148021 20080731 1 900000000000207008 429836002 15924003 1 118169006 900000000000011006 900000000000451002 +3335148021 20090131 0 900000000000207008 429836002 15924003 1 118169006 900000000000011006 900000000000451002 +3335148021 20100731 1 900000000000207008 429836002 15924003 1 118169006 900000000000011006 900000000000451002 +3335148021 20110131 0 900000000000207008 429836002 15924003 1 118169006 900000000000011006 900000000000451002 +3335222023 20080731 1 900000000000207008 309491006 413675001 1 370133003 900000000000011006 900000000000451002 +3335222023 20090131 0 900000000000207008 309491006 413675001 1 370133003 900000000000011006 900000000000451002 +3335222023 20100131 1 900000000000207008 309491006 413675001 1 370133003 900000000000011006 900000000000451002 +3335222023 20100731 0 900000000000207008 309491006 413675001 1 370133003 900000000000011006 900000000000451002 +3335222023 20110731 1 900000000000207008 309491006 413675001 1 370133003 900000000000011006 900000000000451002 +3335239020 20080731 1 900000000000207008 309208007 17444001 1 118171006 900000000000011006 900000000000451002 +3335239020 20090131 0 900000000000207008 309208007 17444001 1 118171006 900000000000011006 900000000000451002 +3335285023 20080731 1 900000000000207008 309119004 84820005 1 118169006 900000000000011006 900000000000451002 +3335285023 20090731 0 900000000000207008 309119004 84820005 1 118169006 900000000000011006 900000000000451002 +3335379025 20080731 1 900000000000207008 122608007 413675001 1 370133003 900000000000011006 900000000000451002 +3335379025 20090731 0 900000000000207008 122608007 413675001 1 370133003 900000000000011006 900000000000451002 +3335853029 20080731 1 900000000000207008 421615004 66754008 1 118169006 900000000000011006 900000000000451002 +3335853029 20090731 0 900000000000207008 421615004 66754008 1 118169006 900000000000011006 900000000000451002 +3336358022 20080731 1 900000000000207008 128172000 413675001 1 370133003 900000000000011006 900000000000451002 +3336358022 20090131 0 900000000000207008 128172000 413675001 1 370133003 900000000000011006 900000000000451002 +3336784029 20080731 1 900000000000207008 271515009 297220005 0 118169006 900000000000011006 900000000000451002 +3336784029 20190731 1 900000000000207008 271515009 297220005 1 118169006 900000000000011006 900000000000451002 +3337197029 20080731 1 900000000000207008 122672009 413675001 1 370133003 900000000000011006 900000000000451002 +3337197029 20090131 0 900000000000207008 122672009 413675001 1 370133003 900000000000011006 900000000000451002 +3337217024 20080731 1 900000000000207008 309224008 71854001 1 118169006 900000000000011006 900000000000451002 +3337217024 20090131 0 900000000000207008 309224008 71854001 1 118169006 900000000000011006 900000000000451002 +3337457024 20080731 1 900000000000207008 309144007 119281005 0 118169006 900000000000011006 900000000000451002 +3337457024 20190731 1 900000000000207008 309144007 119281005 1 118169006 900000000000011006 900000000000451002 +3337466023 20080731 1 900000000000207008 122738006 116334007 1 118171006 900000000000011006 900000000000451002 +3337466023 20090131 0 900000000000207008 122738006 116334007 1 118171006 900000000000011006 900000000000451002 +3337512028 20080731 1 900000000000207008 119351004 41898006 1 118169006 900000000000011006 900000000000451002 +3337512028 20090131 0 900000000000207008 119351004 41898006 1 118169006 900000000000011006 900000000000451002 +3337767029 20080731 1 900000000000207008 309118007 429889001 1 118171006 900000000000011006 900000000000451002 +3337767029 20090131 0 900000000000207008 309118007 429889001 1 118171006 900000000000011006 900000000000451002 +3338226020 20080731 1 900000000000207008 122605005 173172000 1 118171006 900000000000011006 900000000000451002 +3338226020 20090131 0 900000000000207008 122605005 173172000 1 118171006 900000000000011006 900000000000451002 +3338489029 20080731 1 900000000000207008 309496001 78384007 1 118171006 900000000000011006 900000000000451002 +3338489029 20090731 0 900000000000207008 309496001 78384007 1 118171006 900000000000011006 900000000000451002 +3338542028 20080731 1 900000000000207008 309117002 84820005 0 118169006 900000000000011006 900000000000451002 +3338542028 20190731 1 900000000000207008 309117002 84820005 1 118169006 900000000000011006 900000000000451002 +3338658023 20080731 1 900000000000207008 309225009 71854001 1 118169006 900000000000011006 900000000000451002 +3338658023 20090131 0 900000000000207008 309225009 71854001 1 118169006 900000000000011006 900000000000451002 +3338806026 20080731 1 900000000000207008 309226005 41329004 1 118168003 900000000000011006 900000000000451002 +3338806026 20090131 0 900000000000207008 309226005 41329004 1 118168003 900000000000011006 900000000000451002 +3338807024 20080731 1 900000000000207008 309226005 413675001 1 370133003 900000000000011006 900000000000451002 +3338807024 20090131 0 900000000000207008 309226005 413675001 1 370133003 900000000000011006 900000000000451002 +3339415023 20080731 1 900000000000207008 430248009 71836000 0 118169006 900000000000011006 900000000000451002 +3339415023 20190731 1 900000000000207008 430248009 71836000 1 118169006 900000000000011006 900000000000451002 +3340943029 20080731 1 900000000000207008 122689001 31904001 2 118171006 900000000000011006 900000000000451002 +3340943029 20110731 0 900000000000207008 122689001 31904001 2 118171006 900000000000011006 900000000000451002 +3340944024 20080731 1 900000000000207008 122689001 413675001 2 370133003 900000000000011006 900000000000451002 +3340944024 20110731 0 900000000000207008 122689001 413675001 2 370133003 900000000000011006 900000000000451002 +3341198028 20080731 1 900000000000207008 432897002 431898009 0 370133003 900000000000011006 900000000000451002 +3341198028 20110731 0 900000000000207008 432897002 431898009 0 370133003 900000000000011006 900000000000451002 +3341399025 20080731 1 900000000000207008 430133009 48477009 0 118169006 900000000000011006 900000000000451002 +3341399025 20190731 1 900000000000207008 430133009 48477009 1 118169006 900000000000011006 900000000000451002 +3341848027 20080731 1 900000000000207008 399657004 413675001 1 370133003 900000000000011006 900000000000451002 +3341848027 20090131 0 900000000000207008 399657004 413675001 1 370133003 900000000000011006 900000000000451002 +3341884023 20080731 1 900000000000207008 122653009 413675001 1 370133003 900000000000011006 900000000000451002 +3341884023 20090131 0 900000000000207008 122653009 413675001 1 370133003 900000000000011006 900000000000451002 +3342145028 20080731 1 900000000000207008 309109005 13351007 0 118169006 900000000000011006 900000000000451002 +3342145028 20190731 1 900000000000207008 309109005 13351007 1 118169006 900000000000011006 900000000000451002 +3342398024 20080731 1 900000000000207008 258475005 410583004 1 370133003 900000000000011006 900000000000451002 +3342398024 20090731 0 900000000000207008 258475005 410583004 1 370133003 900000000000011006 900000000000451002 +3342655025 20080731 1 900000000000207008 309215004 56208002 1 118168003 900000000000011006 900000000000451002 +3342655025 20090131 0 900000000000207008 309215004 56208002 1 118168003 900000000000011006 900000000000451002 +3342851020 20080731 1 900000000000207008 309488006 413675001 1 370133003 900000000000011006 900000000000451002 +3342851020 20090131 0 900000000000207008 309488006 413675001 1 370133003 900000000000011006 900000000000451002 +3343091029 20080731 1 900000000000207008 258476006 427223001 1 370133003 900000000000011006 900000000000451002 +3343091029 20090131 0 900000000000207008 258476006 427223001 1 370133003 900000000000011006 900000000000451002 +3343281029 20080731 1 900000000000207008 309489003 413675001 1 370133003 900000000000011006 900000000000451002 +3343281029 20090731 0 900000000000207008 309489003 413675001 1 370133003 900000000000011006 900000000000451002 +3343384024 20080731 1 900000000000207008 430234009 49957000 0 118169006 900000000000011006 900000000000451002 +3343384024 20190731 1 900000000000207008 430234009 49957000 1 118169006 900000000000011006 900000000000451002 +3343571027 20080731 1 900000000000207008 309218002 51346007 1 118171006 900000000000011006 900000000000451002 +3343571027 20090131 0 900000000000207008 309218002 51346007 1 118171006 900000000000011006 900000000000451002 +3343682029 20080731 1 900000000000207008 258474009 2095001 1 118169006 900000000000011006 900000000000451002 +3343682029 20090131 0 900000000000207008 258474009 2095001 1 118169006 900000000000011006 900000000000451002 +3344100026 20080731 1 900000000000207008 309490007 413675001 1 370133003 900000000000011006 900000000000451002 +3344100026 20090731 0 900000000000207008 309490007 413675001 1 370133003 900000000000011006 900000000000451002 +3344581022 20080731 1 900000000000207008 431361003 431898009 0 370133003 900000000000011006 900000000000451002 +3344581022 20110131 0 900000000000207008 431361003 431898009 0 370133003 900000000000011006 900000000000451002 +3344581022 20110731 1 900000000000207008 431361003 431898009 1 370133003 900000000000011006 900000000000451002 +3344951020 20080731 1 900000000000207008 309110000 13351007 1 118169006 900000000000011006 900000000000451002 +3344951020 20090131 0 900000000000207008 309110000 13351007 1 118169006 900000000000011006 900000000000451002 +3344989026 20080731 1 900000000000207008 122565001 20568009 1 118170007 900000000000011006 900000000000451002 +3344989026 20090131 0 900000000000207008 122565001 20568009 1 118170007 900000000000011006 900000000000451002 +3345177024 20080731 1 900000000000207008 258479004 32457005 1 370133003 900000000000011006 900000000000451002 +3345177024 20090131 0 900000000000207008 258479004 32457005 1 370133003 900000000000011006 900000000000451002 +3345965026 20080731 1 900000000000207008 122607002 119746007 1 118171006 900000000000011006 900000000000451002 +3345965026 20090131 0 900000000000207008 122607002 119746007 1 118171006 900000000000011006 900000000000451002 +3345969021 20080731 1 900000000000207008 122691009 413675001 1 370133003 900000000000011006 900000000000451002 +3345969021 20090131 0 900000000000207008 122691009 413675001 1 370133003 900000000000011006 900000000000451002 +3346260024 20080731 1 900000000000207008 430132004 55139000 0 118169006 900000000000011006 900000000000451002 +3346260024 20190731 1 900000000000207008 430132004 55139000 1 118169006 900000000000011006 900000000000451002 +3346431029 20080731 1 900000000000207008 128162003 413675001 1 370133003 900000000000011006 900000000000451002 +3346431029 20090131 0 900000000000207008 128162003 413675001 1 370133003 900000000000011006 900000000000451002 +3346431029 20110131 1 900000000000207008 128162003 413675001 1 370133003 900000000000011006 900000000000451002 +3346431029 20110731 0 900000000000207008 128162003 413675001 1 370133003 900000000000011006 900000000000451002 +3346662020 20080731 1 900000000000207008 430268003 272673000 0 118169006 900000000000011006 900000000000451002 +3346662020 20190731 1 900000000000207008 430268003 272673000 1 118169006 900000000000011006 900000000000451002 +3346948027 20080731 1 900000000000207008 309493009 28273000 1 118169006 900000000000011006 900000000000451002 +3346948027 20090131 0 900000000000207008 309493009 28273000 1 118169006 900000000000011006 900000000000451002 +3346948027 20100131 1 900000000000207008 309493009 28273000 1 118169006 900000000000011006 900000000000451002 +3346948027 20100731 0 900000000000207008 309493009 28273000 1 118169006 900000000000011006 900000000000451002 +3346948027 20110731 1 900000000000207008 309493009 28273000 1 118169006 900000000000011006 900000000000451002 +3346973027 20080731 1 900000000000207008 309205005 38102005 1 118171006 900000000000011006 900000000000451002 +3346973027 20090731 0 900000000000207008 309205005 38102005 1 118171006 900000000000011006 900000000000451002 +3347198020 20080731 1 900000000000207008 122690005 413675001 1 370133003 900000000000011006 900000000000451002 +3347198020 20100131 0 900000000000207008 122690005 413675001 1 370133003 900000000000011006 900000000000451002 +3347200025 20080731 1 900000000000207008 429832000 235566000 1 118171006 900000000000011006 900000000000451002 +3347200025 20090131 0 900000000000207008 429832000 235566000 1 118171006 900000000000011006 900000000000451002 +3347200025 20100131 1 900000000000207008 429832000 235566000 1 118171006 900000000000011006 900000000000451002 +3347200025 20100731 0 900000000000207008 429832000 235566000 1 118171006 900000000000011006 900000000000451002 +3347200025 20110731 1 900000000000207008 429832000 235566000 1 118171006 900000000000011006 900000000000451002 +3347693026 20080731 1 900000000000207008 396476009 85946004 1 118171006 900000000000011006 900000000000451002 +3347693026 20090731 0 900000000000207008 396476009 85946004 1 118171006 900000000000011006 900000000000451002 +3348090025 20080731 1 900000000000207008 309122002 122478003 1 118171006 900000000000011006 900000000000451002 +3348090025 20090131 0 900000000000207008 309122002 122478003 1 118171006 900000000000011006 900000000000451002 +3348134022 20080731 1 900000000000207008 396359006 21525004 1 118171006 900000000000011006 900000000000451002 +3348134022 20090131 0 900000000000207008 396359006 21525004 1 118171006 900000000000011006 900000000000451002 +3348245029 20080731 1 900000000000207008 122585002 414387006 0 118169006 900000000000011006 900000000000451002 +3348245029 20090731 0 900000000000207008 122585002 414387006 0 118169006 900000000000011006 900000000000451002 +3348425023 20080731 1 900000000000207008 122681003 116033007 1 118171006 900000000000011006 900000000000451002 +3348425023 20090131 0 900000000000207008 122681003 116033007 1 118171006 900000000000011006 900000000000451002 +3348426024 20080731 1 900000000000207008 430310001 82094008 1 118169006 900000000000011006 900000000000451002 +3348426024 20090131 0 900000000000207008 430310001 82094008 1 118169006 900000000000011006 900000000000451002 +3348873024 20080731 1 900000000000207008 396478005 413675001 1 370133003 900000000000011006 900000000000451002 +3348873024 20090731 0 900000000000207008 396478005 413675001 1 370133003 900000000000011006 900000000000451002 +3349054028 20080731 1 900000000000207008 309227001 413675001 1 370133003 900000000000011006 900000000000451002 +3349054028 20090131 0 900000000000207008 309227001 413675001 1 370133003 900000000000011006 900000000000451002 +3349201020 20080731 1 900000000000207008 258467004 67889009 1 118171006 900000000000011006 900000000000451002 +3349201020 20090731 0 900000000000207008 258467004 67889009 1 118171006 900000000000011006 900000000000451002 +3349245020 20080731 1 900000000000207008 396354001 39937001 1 118169006 900000000000011006 900000000000451002 +3349245020 20090131 0 900000000000207008 396354001 39937001 1 118169006 900000000000011006 900000000000451002 +3349428029 20080731 1 900000000000207008 384747005 129249002 1 118171006 900000000000011006 900000000000451002 +3349428029 20090131 0 900000000000207008 384747005 129249002 1 118171006 900000000000011006 900000000000451002 +3349579022 20080731 1 900000000000207008 309221000 307193005 1 118171006 900000000000011006 900000000000451002 +3349579022 20090131 0 900000000000207008 309221000 307193005 1 118171006 900000000000011006 900000000000451002 +3349965024 20080731 1 900000000000207008 168136008 64856004 1 370133003 900000000000011006 900000000000451002 +3349965024 20090131 0 900000000000207008 168136008 64856004 1 370133003 900000000000011006 900000000000451002 +3350207021 20080731 1 900000000000207008 397056002 30315005 1 118169006 900000000000011006 900000000000451002 +3350207021 20090131 0 900000000000207008 397056002 30315005 1 118169006 900000000000011006 900000000000451002 +3350247025 20080731 1 900000000000207008 309123007 64331004 0 118169006 900000000000011006 900000000000451002 +3350247025 20190731 1 900000000000207008 309123007 64331004 1 118169006 900000000000011006 900000000000451002 +3350580022 20080731 1 900000000000207008 397053005 30315005 1 118169006 900000000000011006 900000000000451002 +3350580022 20090131 0 900000000000207008 397053005 30315005 1 118169006 900000000000011006 900000000000451002 +3350586027 20080731 1 900000000000207008 128168004 413675001 1 370133003 900000000000011006 900000000000451002 +3350586027 20090131 0 900000000000207008 128168004 413675001 1 370133003 900000000000011006 900000000000451002 +3350927025 20080731 1 900000000000207008 122553000 87612001 1 370133003 900000000000011006 900000000000451002 +3350927025 20090131 0 900000000000207008 122553000 87612001 1 370133003 900000000000011006 900000000000451002 +3350927025 20090731 1 900000000000207008 122553000 87612001 1 370133003 900000000000011006 900000000000451002 +3350927025 20100131 0 900000000000207008 122553000 87612001 1 370133003 900000000000011006 900000000000451002 +3350946029 20080731 1 900000000000207008 384746001 413675001 1 370133003 900000000000011006 900000000000451002 +3350946029 20090731 0 900000000000207008 384746001 413675001 1 370133003 900000000000011006 900000000000451002 +3351001022 20080731 1 900000000000207008 399388008 413675001 1 370133003 900000000000011006 900000000000451002 +3351001022 20090131 0 900000000000207008 399388008 413675001 1 370133003 900000000000011006 900000000000451002 +3351054020 20080731 1 900000000000207008 122726002 413675001 1 370133003 900000000000011006 900000000000451002 +3351054020 20090131 0 900000000000207008 122726002 413675001 1 370133003 900000000000011006 900000000000451002 +3351122029 20080731 1 900000000000207008 396358003 65854006 1 118171006 900000000000011006 900000000000451002 +3351122029 20090131 0 900000000000207008 396358003 65854006 1 118171006 900000000000011006 900000000000451002 +3351171023 20080731 1 900000000000207008 309220004 107938000 1 118171006 900000000000011006 900000000000451002 +3351171023 20090731 0 900000000000207008 309220004 107938000 1 118171006 900000000000011006 900000000000451002 +3351263028 20080731 1 900000000000207008 309507001 26107004 1 118169006 900000000000011006 900000000000451002 +3351263028 20090131 0 900000000000207008 309507001 26107004 1 118169006 900000000000011006 900000000000451002 +3351327026 20080731 1 900000000000207008 168137004 31773000 1 370133003 900000000000011006 900000000000451002 +3351327026 20090131 0 900000000000207008 168137004 31773000 1 370133003 900000000000011006 900000000000451002 +3351396029 20080731 1 900000000000207008 431404007 272673000 1 118169006 900000000000011006 900000000000451002 +3351396029 20090131 0 900000000000207008 431404007 272673000 1 118169006 900000000000011006 900000000000451002 +3351531022 20080731 1 900000000000207008 128169007 413675001 1 370133003 900000000000011006 900000000000451002 +3351531022 20090131 0 900000000000207008 128169007 413675001 1 370133003 900000000000011006 900000000000451002 +3351541020 20080731 1 900000000000207008 430856003 413675001 0 370133003 900000000000011006 900000000000451002 +3351541020 20190731 1 900000000000207008 430856003 413675001 1 370133003 900000000000011006 900000000000451002 +3352080024 20080731 1 900000000000207008 309505009 413675001 1 370133003 900000000000011006 900000000000451002 +3352080024 20090131 0 900000000000207008 309505009 413675001 1 370133003 900000000000011006 900000000000451002 +3352534028 20080731 1 900000000000207008 430249001 21974007 0 118169006 900000000000011006 900000000000451002 +3352534028 20190731 1 900000000000207008 430249001 21974007 1 118169006 900000000000011006 900000000000451002 +3352614022 20080731 1 900000000000207008 431232001 430203005 1 118171006 900000000000011006 900000000000451002 +3352614022 20090131 0 900000000000207008 431232001 430203005 1 118171006 900000000000011006 900000000000451002 +3352694021 20080731 1 900000000000207008 264380007 64331004 0 118169006 900000000000011006 900000000000451002 +3352694021 20110731 0 900000000000207008 264380007 64331004 0 118169006 900000000000011006 900000000000451002 +3352791024 20080731 1 900000000000207008 309111001 13351007 1 118169006 900000000000011006 900000000000451002 +3352791024 20090131 0 900000000000207008 309111001 13351007 1 118169006 900000000000011006 900000000000451002 +3352925026 20080731 1 900000000000207008 309124001 229013007 1 118171006 900000000000011006 900000000000451002 +3352925026 20090131 0 900000000000207008 309124001 229013007 1 118171006 900000000000011006 900000000000451002 +3353033022 20080731 1 900000000000207008 432135005 30315005 1 118169006 900000000000011006 900000000000451002 +3353033022 20090131 0 900000000000207008 432135005 30315005 1 118169006 900000000000011006 900000000000451002 +3353033022 20090731 1 900000000000207008 432135005 30315005 1 118169006 900000000000011006 900000000000451002 +3353033022 20100131 0 900000000000207008 432135005 30315005 1 118169006 900000000000011006 900000000000451002 +3353089029 20080731 1 900000000000207008 258462005 264364002 1 118168003 900000000000011006 900000000000451002 +3353089029 20090131 0 900000000000207008 258462005 264364002 1 118168003 900000000000011006 900000000000451002 +3353220020 20080731 1 900000000000207008 128167009 413675001 1 370133003 900000000000011006 900000000000451002 +3353220020 20090131 0 900000000000207008 128167009 413675001 1 370133003 900000000000011006 900000000000451002 +3353232024 20080731 1 900000000000207008 396357008 413675001 1 370133003 900000000000011006 900000000000451002 +3353232024 20090131 0 900000000000207008 396357008 413675001 1 370133003 900000000000011006 900000000000451002 +3353345020 20080731 1 900000000000207008 122566000 32457005 1 370133003 900000000000011006 900000000000451002 +3353345020 20090131 0 900000000000207008 122566000 32457005 1 370133003 900000000000011006 900000000000451002 +3353540025 20080731 1 900000000000207008 434250007 175189006 1 118171006 900000000000011006 900000000000451002 +3353540025 20090131 0 900000000000207008 434250007 175189006 1 118171006 900000000000011006 900000000000451002 +3354460026 20080731 1 900000000000207008 430222001 17861009 0 118169006 900000000000011006 900000000000451002 +3354460026 20190731 1 900000000000207008 430222001 17861009 1 118169006 900000000000011006 900000000000451002 +3354705021 20080731 1 900000000000207008 128166000 413675001 1 370133003 900000000000011006 900000000000451002 +3354705021 20090131 0 900000000000207008 128166000 413675001 1 370133003 900000000000011006 900000000000451002 +3354726021 20080731 1 900000000000207008 430232008 22943007 0 118169006 900000000000011006 900000000000451002 +3354726021 20190731 1 900000000000207008 430232008 22943007 1 118169006 900000000000011006 900000000000451002 +3354804028 20080731 1 900000000000207008 258463000 27897001 1 370133003 900000000000011006 900000000000451002 +3354804028 20090131 0 900000000000207008 258463000 27897001 1 370133003 900000000000011006 900000000000451002 +3354920021 20080731 1 900000000000207008 431196006 413675001 0 370133003 900000000000011006 900000000000451002 +3354920021 20190731 1 900000000000207008 431196006 413675001 1 370133003 900000000000011006 900000000000451002 +3355233027 20080731 1 900000000000207008 430246008 53120007 0 118169006 900000000000011006 900000000000451002 +3355233027 20190731 1 900000000000207008 430246008 53120007 1 118169006 900000000000011006 900000000000451002 +3355425026 20080731 1 900000000000207008 397055003 54357003 1 118171006 900000000000011006 900000000000451002 +3355425026 20090131 0 900000000000207008 397055003 54357003 1 118171006 900000000000011006 900000000000451002 +3355751025 20080731 1 900000000000207008 168139001 83670000 1 118169006 900000000000011006 900000000000451002 +3355751025 20090131 0 900000000000207008 168139001 83670000 1 118169006 900000000000011006 900000000000451002 +3355751025 20100131 1 900000000000207008 168139001 83670000 1 118169006 900000000000011006 900000000000451002 +3355751025 20100731 0 900000000000207008 168139001 83670000 1 118169006 900000000000011006 900000000000451002 +3355843023 20080731 1 900000000000207008 399645008 413675001 1 370133003 900000000000011006 900000000000451002 +3355843023 20090131 0 900000000000207008 399645008 413675001 1 370133003 900000000000011006 900000000000451002 +3356529025 20080731 1 900000000000207008 168138009 62059006 1 370133003 900000000000011006 900000000000451002 +3356529025 20090731 0 900000000000207008 168138009 62059006 1 370133003 900000000000011006 900000000000451002 +3356666027 20080731 1 900000000000207008 434244002 82849001 1 118169006 900000000000011006 900000000000451002 +3356666027 20090131 0 900000000000207008 434244002 82849001 1 118169006 900000000000011006 900000000000451002 +3356726023 20080731 1 900000000000207008 127457009 413675001 1 370133003 900000000000011006 900000000000451002 +3356726023 20090131 0 900000000000207008 127457009 413675001 1 370133003 900000000000011006 900000000000451002 +3357040024 20080731 1 900000000000207008 430228002 279603000 0 118169006 900000000000011006 900000000000451002 +3357040024 20190731 1 900000000000207008 430228002 279603000 1 118169006 900000000000011006 900000000000451002 +3357335024 20080731 1 900000000000207008 399492000 39607008 1 118169006 900000000000011006 900000000000451002 +3357335024 20090131 0 900000000000207008 399492000 39607008 1 118169006 900000000000011006 900000000000451002 +3357358022 20080731 1 900000000000207008 258461003 33463005 1 370133003 900000000000011006 900000000000451002 +3357358022 20090131 0 900000000000207008 258461003 33463005 1 370133003 900000000000011006 900000000000451002 +3357497026 20080731 1 900000000000207008 397134003 287966005 1 118171006 900000000000011006 900000000000451002 +3357497026 20090131 0 900000000000207008 397134003 287966005 1 118171006 900000000000011006 900000000000451002 +3357541027 20080731 1 900000000000207008 309132009 41216001 1 118169006 900000000000011006 900000000000451002 +3357541027 20090131 0 900000000000207008 309132009 41216001 1 118169006 900000000000011006 900000000000451002 +3357785028 20080731 1 900000000000207008 128156008 53505006 1 118169006 900000000000011006 900000000000451002 +3357785028 20090131 0 900000000000207008 128156008 53505006 1 118169006 900000000000011006 900000000000451002 +3358581020 20080731 1 900000000000207008 396355000 413675001 1 370133003 900000000000011006 900000000000451002 +3358581020 20090131 0 900000000000207008 396355000 413675001 1 370133003 900000000000011006 900000000000451002 +3358708025 20080731 1 900000000000207008 396807009 413675001 1 370133003 900000000000011006 900000000000451002 +3358708025 20090131 0 900000000000207008 396807009 413675001 1 370133003 900000000000011006 900000000000451002 +3359158022 20080731 1 900000000000207008 397133009 176597000 1 118171006 900000000000011006 900000000000451002 +3359158022 20090731 0 900000000000207008 397133009 176597000 1 118171006 900000000000011006 900000000000451002 +3359365024 20080731 1 900000000000207008 309184003 431066004 1 118171006 900000000000011006 900000000000451002 +3359365024 20090131 0 900000000000207008 309184003 431066004 1 118171006 900000000000011006 900000000000451002 +3359723027 20080731 1 900000000000207008 128157004 413675001 1 370133003 900000000000011006 900000000000451002 +3359723027 20090131 0 900000000000207008 128157004 413675001 1 370133003 900000000000011006 900000000000451002 +3359785021 20080731 1 900000000000207008 122677003 119280006 1 118169006 900000000000011006 900000000000451002 +3359785021 20090731 0 900000000000207008 122677003 119280006 1 118169006 900000000000011006 900000000000451002 +3359910025 20080731 1 900000000000207008 430244006 76848001 0 118169006 900000000000011006 900000000000451002 +3359910025 20190731 1 900000000000207008 430244006 76848001 1 118169006 900000000000011006 900000000000451002 +3359917027 20080731 1 900000000000207008 122655002 413675001 1 370133003 900000000000011006 900000000000451002 +3359917027 20090131 0 900000000000207008 122655002 413675001 1 370133003 900000000000011006 900000000000451002 +3360001025 20080731 1 900000000000207008 122725003 413675001 1 370133003 900000000000011006 900000000000451002 +3360001025 20090131 0 900000000000207008 122725003 413675001 1 370133003 900000000000011006 900000000000451002 +3360026023 20080731 1 900000000000207008 396483002 413675001 1 370133003 900000000000011006 900000000000451002 +3360026023 20090131 0 900000000000207008 396483002 413675001 1 370133003 900000000000011006 900000000000451002 +3360026023 20100731 1 900000000000207008 396483002 413675001 1 370133003 900000000000011006 900000000000451002 +3360026023 20110131 0 900000000000207008 396483002 413675001 1 370133003 900000000000011006 900000000000451002 +3360035027 20080731 1 900000000000207008 128170008 413675001 1 370133003 900000000000011006 900000000000451002 +3360035027 20090131 0 900000000000207008 128170008 413675001 1 370133003 900000000000011006 900000000000451002 +3360039022 20080731 1 900000000000207008 430861001 413675001 0 370133003 900000000000011006 900000000000451002 +3360039022 20190731 1 900000000000207008 430861001 413675001 1 370133003 900000000000011006 900000000000451002 +3360413028 20080731 1 900000000000207008 258471001 32457005 1 370133003 900000000000011006 900000000000451002 +3360413028 20090131 0 900000000000207008 258471001 32457005 1 370133003 900000000000011006 900000000000451002 +3360528026 20080731 1 900000000000207008 396479002 413675001 1 370133003 900000000000011006 900000000000451002 +3360528026 20090731 0 900000000000207008 396479002 413675001 1 370133003 900000000000011006 900000000000451002 +3360584026 20080731 1 900000000000207008 396356004 413675001 1 370133003 900000000000011006 900000000000451002 +3360584026 20090731 0 900000000000207008 396356004 413675001 1 370133003 900000000000011006 900000000000451002 +3361081022 20080731 1 900000000000207008 122708000 4849008 1 118171006 900000000000011006 900000000000451002 +3361081022 20090131 0 900000000000207008 122708000 4849008 1 118171006 900000000000011006 900000000000451002 +3361106027 20080731 1 900000000000207008 122678008 81516001 1 118171006 900000000000011006 900000000000451002 +3361106027 20090731 0 900000000000207008 122678008 81516001 1 118171006 900000000000011006 900000000000451002 +3361633027 20080731 1 900000000000207008 430221008 2748008 0 118169006 900000000000011006 900000000000451002 +3361633027 20190731 1 900000000000207008 430221008 2748008 1 118169006 900000000000011006 900000000000451002 +3361693025 20080731 1 900000000000207008 433308004 78961009 0 118169006 900000000000011006 900000000000451002 +3361693025 20190731 1 900000000000207008 433308004 78961009 1 118169006 900000000000011006 900000000000451002 +3362072025 20080731 1 900000000000207008 122692002 413675001 1 370133003 900000000000011006 900000000000451002 +3362072025 20090131 0 900000000000207008 122692002 413675001 1 370133003 900000000000011006 900000000000451002 +3362243024 20080731 1 900000000000207008 258468009 32457005 1 370133003 900000000000011006 900000000000451002 +3362243024 20090131 0 900000000000207008 258468009 32457005 1 370133003 900000000000011006 900000000000451002 +3362379025 20080731 1 900000000000207008 309504008 39937001 1 118169006 900000000000011006 900000000000451002 +3362379025 20090731 0 900000000000207008 309504008 39937001 1 118169006 900000000000011006 900000000000451002 +3362379025 20100731 1 900000000000207008 309504008 39937001 1 118169006 900000000000011006 900000000000451002 +3362379025 20110131 0 900000000000207008 309504008 39937001 1 118169006 900000000000011006 900000000000451002 +3362615020 20080731 1 900000000000207008 128159001 413675001 1 370133003 900000000000011006 900000000000451002 +3362615020 20090131 0 900000000000207008 128159001 413675001 1 370133003 900000000000011006 900000000000451002 +3362836020 20080731 1 900000000000207008 396480004 413675001 1 370133003 900000000000011006 900000000000451002 +3362836020 20090731 0 900000000000207008 396480004 413675001 1 370133003 900000000000011006 900000000000451002 +3362977023 20080731 1 900000000000207008 128158009 413675001 1 370133003 900000000000011006 900000000000451002 +3362977023 20090131 0 900000000000207008 128158009 413675001 1 370133003 900000000000011006 900000000000451002 +3363049021 20080731 1 900000000000207008 122633005 69695003 1 118169006 900000000000011006 900000000000451002 +3363049021 20090131 0 900000000000207008 122633005 69695003 1 118169006 900000000000011006 900000000000451002 +3363231025 20080731 1 900000000000207008 396353007 39937001 1 118169006 900000000000011006 900000000000451002 +3363231025 20090131 0 900000000000207008 396353007 39937001 1 118169006 900000000000011006 900000000000451002 +3364013029 20080731 1 900000000000207008 122592007 32457005 0 370133003 900000000000011006 900000000000451002 +3364013029 20090131 0 900000000000207008 122592007 32457005 0 370133003 900000000000011006 900000000000451002 +3364013029 20090731 1 900000000000207008 122592007 32457005 0 370133003 900000000000011006 900000000000451002 +3364013029 20180131 0 900000000000207008 122592007 32457005 0 370133003 900000000000011006 900000000000451002 +3364176025 20080731 1 900000000000207008 432142005 176557003 1 118171006 900000000000011006 900000000000451002 +3364176025 20090131 0 900000000000207008 432142005 176557003 1 118171006 900000000000011006 900000000000451002 +3364341020 20080731 1 900000000000207008 309114009 52082005 0 118169006 900000000000011006 900000000000451002 +3364341020 20190731 1 900000000000207008 309114009 52082005 1 118169006 900000000000011006 900000000000451002 +3364392028 20080731 1 900000000000207008 127461003 413675001 1 370133003 900000000000011006 900000000000451002 +3364392028 20090731 0 900000000000207008 127461003 413675001 1 370133003 900000000000011006 900000000000451002 +3364413020 20080731 1 900000000000207008 396805001 413675001 1 370133003 900000000000011006 900000000000451002 +3364413020 20090131 0 900000000000207008 396805001 413675001 1 370133003 900000000000011006 900000000000451002 +3364629022 20080731 1 900000000000207008 122575003 78014005 1 370133003 900000000000011006 900000000000451002 +3364629022 20090131 0 900000000000207008 122575003 78014005 1 370133003 900000000000011006 900000000000451002 +3365010020 20080731 1 900000000000207008 122693007 413675001 1 370133003 900000000000011006 900000000000451002 +3365010020 20090731 0 900000000000207008 122693007 413675001 1 370133003 900000000000011006 900000000000451002 +3365507022 20080731 1 900000000000207008 399499009 413675001 1 370133003 900000000000011006 900000000000451002 +3365507022 20090131 0 900000000000207008 399499009 413675001 1 370133003 900000000000011006 900000000000451002 +3365521024 20080731 1 900000000000207008 430970004 413675001 0 370133003 900000000000011006 900000000000451002 +3365521024 20190731 1 900000000000207008 430970004 413675001 1 370133003 900000000000011006 900000000000451002 +3365565027 20080731 1 900000000000207008 430318008 78014005 0 370133003 900000000000011006 900000000000451002 +3365565027 20110731 0 900000000000207008 430318008 78014005 0 370133003 900000000000011006 900000000000451002 +3365629029 20080731 1 900000000000207008 309506005 312968005 1 118171006 900000000000011006 900000000000451002 +3365629029 20090131 0 900000000000207008 309506005 312968005 1 118171006 900000000000011006 900000000000451002 +3365879028 20080731 1 900000000000207008 122705002 413675001 1 370133003 900000000000011006 900000000000451002 +3365879028 20090131 0 900000000000207008 122705002 413675001 1 370133003 900000000000011006 900000000000451002 +3366383028 20080731 1 900000000000207008 422991009 235326000 2 118171006 900000000000011006 900000000000451002 +3366383028 20170731 0 900000000000207008 422991009 235326000 2 118171006 900000000000011006 900000000000451002 +3366384023 20080731 1 900000000000207008 422991009 413675001 2 370133003 900000000000011006 900000000000451002 +3366384023 20170731 0 900000000000207008 422991009 413675001 2 370133003 900000000000011006 900000000000451002 +3366409026 20080731 1 900000000000207008 399502008 413675001 1 370133003 900000000000011006 900000000000451002 +3366409026 20090731 0 900000000000207008 399502008 413675001 1 370133003 900000000000011006 900000000000451002 +3366906029 20080731 1 900000000000207008 396804002 413675001 1 370133003 900000000000011006 900000000000451002 +3366906029 20090131 0 900000000000207008 396804002 413675001 1 370133003 900000000000011006 900000000000451002 +3367038027 20080731 1 900000000000207008 309223002 413675001 1 370133003 900000000000011006 900000000000451002 +3367038027 20090731 0 900000000000207008 309223002 413675001 1 370133003 900000000000011006 900000000000451002 +3367147022 20080731 1 900000000000207008 128163008 413675001 1 370133003 900000000000011006 900000000000451002 +3367147022 20090131 0 900000000000207008 128163008 413675001 1 370133003 900000000000011006 900000000000451002 +3367182023 20080731 1 900000000000207008 122680002 413675001 1 370133003 900000000000011006 900000000000451002 +3367182023 20090131 0 900000000000207008 122680002 413675001 1 370133003 900000000000011006 900000000000451002 +3368032028 20080731 1 900000000000207008 433120004 431055006 1 118171006 900000000000011006 900000000000451002 +3368032028 20100131 0 900000000000207008 433120004 431055006 1 118171006 900000000000011006 900000000000451002 +3368035026 20080731 1 900000000000207008 122593002 56208002 1 118168003 900000000000011006 900000000000451002 +3368035026 20090131 0 900000000000207008 122593002 56208002 1 118168003 900000000000011006 900000000000451002 +3368408026 20080731 1 900000000000207008 122679000 413675001 1 370133003 900000000000011006 900000000000451002 +3368408026 20090731 0 900000000000207008 122679000 413675001 1 370133003 900000000000011006 900000000000451002 +3368428027 20080731 1 900000000000207008 258569003 39937001 0 118169006 900000000000011006 900000000000451002 +3368428027 20190731 1 900000000000207008 258569003 39937001 1 118169006 900000000000011006 900000000000451002 +3368525027 20080731 1 900000000000207008 397131006 413675001 1 370133003 900000000000011006 900000000000451002 +3368525027 20090731 0 900000000000207008 397131006 413675001 1 370133003 900000000000011006 900000000000451002 +3368544023 20080731 1 900000000000207008 122663001 413675001 1 370133003 900000000000011006 900000000000451002 +3368544023 20090131 0 900000000000207008 122663001 413675001 1 370133003 900000000000011006 900000000000451002 +3368589024 20080731 1 900000000000207008 432057001 64739004 1 118169006 900000000000011006 900000000000451002 +3368589024 20090131 0 900000000000207008 432057001 64739004 1 118169006 900000000000011006 900000000000451002 +3368589024 20090731 1 900000000000207008 432057001 64739004 1 118169006 900000000000011006 900000000000451002 +3368589024 20100131 0 900000000000207008 432057001 64739004 1 118169006 900000000000011006 900000000000451002 +3368877027 20080731 1 900000000000207008 431412004 22943007 1 118169006 900000000000011006 900000000000451002 +3368877027 20090131 0 900000000000207008 431412004 22943007 1 118169006 900000000000011006 900000000000451002 +3368903028 20080731 1 900000000000207008 309071005 35900000 1 118169006 900000000000011006 900000000000451002 +3368903028 20090131 0 900000000000207008 309071005 35900000 1 118169006 900000000000011006 900000000000451002 +3369461027 20080731 1 900000000000207008 397132004 45292006 1 118169006 900000000000011006 900000000000451002 +3369461027 20090731 0 900000000000207008 397132004 45292006 1 118169006 900000000000011006 900000000000451002 +3369775022 20080731 1 900000000000207008 432059003 119285001 1 118171006 900000000000011006 900000000000451002 +3369775022 20090131 0 900000000000207008 432059003 119285001 1 118171006 900000000000011006 900000000000451002 +3370156027 20080731 1 900000000000207008 399629006 69695003 1 118169006 900000000000011006 900000000000451002 +3370156027 20090731 0 900000000000207008 399629006 69695003 1 118169006 900000000000011006 900000000000451002 +3370204026 20080731 1 900000000000207008 432984003 24788003 1 118171006 900000000000011006 900000000000451002 +3370204026 20090131 0 900000000000207008 432984003 24788003 1 118171006 900000000000011006 900000000000451002 +3370205025 20080731 1 900000000000207008 432984003 69748006 1 118169006 900000000000011006 900000000000451002 +3370205025 20090131 0 900000000000207008 432984003 69748006 1 118169006 900000000000011006 900000000000451002 +3370610020 20080731 1 900000000000207008 399649002 312500006 1 118169006 900000000000011006 900000000000451002 +3370610020 20090131 0 900000000000207008 399649002 312500006 1 118169006 900000000000011006 900000000000451002 +3370611024 20080731 1 900000000000207008 399649002 413675001 1 370133003 900000000000011006 900000000000451002 +3370611024 20090131 0 900000000000207008 399649002 413675001 1 370133003 900000000000011006 900000000000451002 +3370817020 20080731 1 900000000000207008 122664007 413675001 1 370133003 900000000000011006 900000000000451002 +3370817020 20090131 0 900000000000207008 122664007 413675001 1 370133003 900000000000011006 900000000000451002 +3371132021 20080731 1 900000000000207008 258564008 74262004 1 118169006 900000000000011006 900000000000451002 +3371132021 20090131 0 900000000000207008 258564008 74262004 1 118169006 900000000000011006 900000000000451002 +3371516025 20080731 1 900000000000207008 258440005 430869004 0 370133003 900000000000011006 900000000000451002 +3371516025 20190731 1 900000000000207008 258440005 430869004 1 370133003 900000000000011006 900000000000451002 +3372270027 20080731 1 900000000000207008 432145007 1231004 1 118169006 900000000000011006 900000000000451002 +3372270027 20090131 0 900000000000207008 432145007 1231004 1 118169006 900000000000011006 900000000000451002 +3372535028 20080731 1 900000000000207008 397077004 413675001 1 370133003 900000000000011006 900000000000451002 +3372535028 20090731 0 900000000000207008 397077004 413675001 1 370133003 900000000000011006 900000000000451002 +3372651028 20080731 1 900000000000207008 122596005 69031006 2 118171006 900000000000011006 900000000000451002 +3372651028 20090731 1 900000000000207008 122596005 69031006 1 118171006 900000000000011006 900000000000451002 +3372651028 20100131 0 900000000000207008 122596005 69031006 1 118171006 900000000000011006 900000000000451002 +3372652024 20080731 1 900000000000207008 122596005 119184005 2 118169006 900000000000011006 900000000000451002 +3372652024 20090731 1 900000000000207008 122596005 119184005 1 118169006 900000000000011006 900000000000451002 +3372652024 20100131 0 900000000000207008 122596005 119184005 1 118169006 900000000000011006 900000000000451002 +3372894020 20080731 1 900000000000207008 127464006 413675001 1 370133003 900000000000011006 900000000000451002 +3372894020 20090131 0 900000000000207008 127464006 413675001 1 370133003 900000000000011006 900000000000451002 +3373056025 20080731 1 900000000000207008 309177006 39607008 1 118169006 900000000000011006 900000000000451002 +3373056025 20090131 0 900000000000207008 309177006 39607008 1 118169006 900000000000011006 900000000000451002 +3373081027 20080731 1 900000000000207008 122659008 413675001 1 370133003 900000000000011006 900000000000451002 +3373081027 20090131 0 900000000000207008 122659008 413675001 1 370133003 900000000000011006 900000000000451002 +3373209021 20080731 1 900000000000207008 309189008 177124000 1 118171006 900000000000011006 900000000000451002 +3373209021 20090131 0 900000000000207008 309189008 177124000 1 118171006 900000000000011006 900000000000451002 +3373252021 20080731 1 900000000000207008 433118002 82849001 1 118169006 900000000000011006 900000000000451002 +3373252021 20090131 0 900000000000207008 433118002 82849001 1 118169006 900000000000011006 900000000000451002 +3373293029 20080731 1 900000000000207008 122662006 287847009 1 118171006 900000000000011006 900000000000451002 +3373293029 20090131 0 900000000000207008 122662006 287847009 1 118171006 900000000000011006 900000000000451002 +3373438022 20080731 1 900000000000207008 309494003 119289007 1 118171006 900000000000011006 900000000000451002 +3373438022 20090131 0 900000000000207008 309494003 119289007 1 118171006 900000000000011006 900000000000451002 +3374042020 20080731 1 900000000000207008 432134009 39937001 1 118169006 900000000000011006 900000000000451002 +3374042020 20090131 0 900000000000207008 432134009 39937001 1 118169006 900000000000011006 900000000000451002 +3374107023 20080731 1 900000000000207008 309103006 413675001 1 370133003 900000000000011006 900000000000451002 +3374107023 20090731 0 900000000000207008 309103006 413675001 1 370133003 900000000000011006 900000000000451002 +3374386022 20080731 1 900000000000207008 309286008 41329004 1 118168003 900000000000011006 900000000000451002 +3374386022 20090131 0 900000000000207008 309286008 41329004 1 118168003 900000000000011006 900000000000451002 +3374435027 20080731 1 900000000000207008 433861002 34456002 1 118171006 900000000000011006 900000000000451002 +3374435027 20090131 0 900000000000207008 433861002 34456002 1 118171006 900000000000011006 900000000000451002 +3374436026 20080731 1 900000000000207008 433861002 2095001 1 118169006 900000000000011006 900000000000451002 +3374436026 20090131 0 900000000000207008 433861002 2095001 1 118169006 900000000000011006 900000000000451002 +3374704021 20080731 1 900000000000207008 396685001 413675001 1 370133003 900000000000011006 900000000000451002 +3374704021 20090131 0 900000000000207008 396685001 413675001 1 370133003 900000000000011006 900000000000451002 +3374787027 20080731 1 900000000000207008 122696004 35039007 1 118169006 900000000000011006 900000000000451002 +3374787027 20090131 0 900000000000207008 122696004 35039007 1 118169006 900000000000011006 900000000000451002 +3374787027 20110731 1 900000000000207008 122696004 35039007 1 118169006 900000000000011006 900000000000451002 +3375085022 20080731 1 900000000000207008 309210009 32849002 1 118169006 900000000000011006 900000000000451002 +3375085022 20090131 0 900000000000207008 309210009 32849002 1 118169006 900000000000011006 900000000000451002 +3375122020 20080731 1 900000000000207008 122574004 54024007 1 370133003 900000000000011006 900000000000451002 +3375122020 20090131 0 900000000000207008 122574004 54024007 1 370133003 900000000000011006 900000000000451002 +3375174023 20080731 1 900000000000207008 309101008 309312004 0 118169006 900000000000011006 900000000000451002 +3375174023 20190731 1 900000000000207008 309101008 309312004 1 118169006 900000000000011006 900000000000451002 +3375343027 20080731 1 900000000000207008 309207002 29481005 1 118171006 900000000000011006 900000000000451002 +3375343027 20090131 0 900000000000207008 309207002 29481005 1 118171006 900000000000011006 900000000000451002 +3375344022 20080731 1 900000000000207008 309495002 413675001 1 370133003 900000000000011006 900000000000451002 +3375344022 20090131 0 900000000000207008 309495002 413675001 1 370133003 900000000000011006 900000000000451002 +3376093029 20080731 1 900000000000207008 432910000 128393005 1 118171006 900000000000011006 900000000000451002 +3376093029 20090131 0 900000000000207008 432910000 128393005 1 118171006 900000000000011006 900000000000451002 +3376153029 20080731 1 900000000000207008 309112008 83876008 1 118171006 900000000000011006 900000000000451002 +3376153029 20090731 0 900000000000207008 309112008 83876008 1 118171006 900000000000011006 900000000000451002 +3376207026 20080731 1 900000000000207008 128165001 413675001 1 370133003 900000000000011006 900000000000451002 +3376207026 20090131 0 900000000000207008 128165001 413675001 1 370133003 900000000000011006 900000000000451002 +3376385023 20080731 1 900000000000207008 258458004 32457005 1 370133003 900000000000011006 900000000000451002 +3376385023 20090131 0 900000000000207008 258458004 32457005 1 370133003 900000000000011006 900000000000451002 +3376387026 20080731 1 900000000000207008 128164002 413675001 1 370133003 900000000000011006 900000000000451002 +3376387026 20090131 0 900000000000207008 128164002 413675001 1 370133003 900000000000011006 900000000000451002 +3376909024 20080731 1 900000000000207008 432061007 119553000 1 118169006 900000000000011006 900000000000451002 +3376909024 20090131 0 900000000000207008 432061007 119553000 1 118169006 900000000000011006 900000000000451002 +3377167028 20080731 1 900000000000207008 122634004 413675001 1 370133003 900000000000011006 900000000000451002 +3377167028 20090131 0 900000000000207008 122634004 413675001 1 370133003 900000000000011006 900000000000451002 +3377657023 20080731 1 900000000000207008 122739003 413675001 1 370133003 900000000000011006 900000000000451002 +3377657023 20090131 0 900000000000207008 122739003 413675001 1 370133003 900000000000011006 900000000000451002 +3377838027 20080731 1 900000000000207008 258453008 367643001 1 118168003 900000000000011006 900000000000451002 +3377838027 20090131 0 900000000000207008 258453008 367643001 1 118168003 900000000000011006 900000000000451002 +3378036029 20080731 1 900000000000207008 418564007 91381003 1 118169006 900000000000011006 900000000000451002 +3378036029 20090131 0 900000000000207008 418564007 91381003 1 118169006 900000000000011006 900000000000451002 +3378174024 20080731 1 900000000000207008 397130007 45292006 1 118169006 900000000000011006 900000000000451002 +3378174024 20090731 0 900000000000207008 397130007 45292006 1 118169006 900000000000011006 900000000000451002 +3378236021 20080731 1 900000000000207008 431697001 2748008 1 118169006 900000000000011006 900000000000451002 +3378236021 20090131 0 900000000000207008 431697001 2748008 1 118169006 900000000000011006 900000000000451002 +3378329022 20080731 1 900000000000207008 309113003 13024002 1 118169006 900000000000011006 900000000000451002 +3378329022 20090131 0 900000000000207008 309113003 13024002 1 118169006 900000000000011006 900000000000451002 +3378813023 20080731 1 900000000000207008 397436009 413675001 1 370133003 900000000000011006 900000000000451002 +3378813023 20090731 0 900000000000207008 397436009 413675001 1 370133003 900000000000011006 900000000000451002 +3378859020 20080731 1 900000000000207008 127460002 413675001 1 370133003 900000000000011006 900000000000451002 +3378859020 20090131 0 900000000000207008 127460002 413675001 1 370133003 900000000000011006 900000000000451002 +3379168029 20080731 1 900000000000207008 122618002 430860000 1 118171006 900000000000011006 900000000000451002 +3379168029 20090131 0 900000000000207008 122618002 430860000 1 118171006 900000000000011006 900000000000451002 +3379315027 20080731 1 900000000000207008 258607008 232595000 2 118171006 900000000000011006 900000000000451002 +3379315027 20090131 0 900000000000207008 258607008 232595000 2 118171006 900000000000011006 900000000000451002 +3379316026 20080731 1 900000000000207008 258607008 39607008 2 118169006 900000000000011006 900000000000451002 +3379316026 20090131 0 900000000000207008 258607008 39607008 2 118169006 900000000000011006 900000000000451002 +3379407029 20080731 1 900000000000207008 122730004 116169002 1 118171006 900000000000011006 900000000000451002 +3379407029 20090131 0 900000000000207008 122730004 116169002 1 118171006 900000000000011006 900000000000451002 +3379503027 20080731 1 900000000000207008 122624008 413675001 1 370133003 900000000000011006 900000000000451002 +3379503027 20090131 0 900000000000207008 122624008 413675001 1 370133003 900000000000011006 900000000000451002 +3379587028 20080731 1 900000000000207008 309485009 413675001 2 370133003 900000000000011006 900000000000451002 +3379587028 20090131 0 900000000000207008 309485009 413675001 2 370133003 900000000000011006 900000000000451002 +3380127023 20080731 1 900000000000207008 309188000 123851003 1 118169006 900000000000011006 900000000000451002 +3380127023 20090131 0 900000000000207008 309188000 123851003 1 118169006 900000000000011006 900000000000451002 +3380525023 20080731 1 900000000000207008 122632000 413675001 1 370133003 900000000000011006 900000000000451002 +3380525023 20090131 0 900000000000207008 122632000 413675001 1 370133003 900000000000011006 900000000000451002 +3380963024 20080731 1 900000000000207008 122682005 413675001 1 370133003 900000000000011006 900000000000451002 +3380963024 20090131 0 900000000000207008 122682005 413675001 1 370133003 900000000000011006 900000000000451002 +3381321024 20080731 1 900000000000207008 258561000 45289007 1 118169006 900000000000011006 900000000000451002 +3381321024 20090131 0 900000000000207008 258561000 45289007 1 118169006 900000000000011006 900000000000451002 +3381522027 20080731 1 900000000000207008 309075001 367643001 1 118168003 900000000000011006 900000000000451002 +3381522027 20090131 0 900000000000207008 309075001 367643001 1 118168003 900000000000011006 900000000000451002 +3381840022 20080731 1 900000000000207008 396273004 413675001 1 370133003 900000000000011006 900000000000451002 +3381840022 20090131 0 900000000000207008 396273004 413675001 1 370133003 900000000000011006 900000000000451002 +3381857021 20080731 1 900000000000207008 373101006 413675001 1 370133003 900000000000011006 900000000000451002 +3381857021 20090131 0 900000000000207008 373101006 413675001 1 370133003 900000000000011006 900000000000451002 +3382182020 20080731 1 900000000000207008 122658000 119288004 1 118171006 900000000000011006 900000000000451002 +3382182020 20090131 0 900000000000207008 122658000 119288004 1 118171006 900000000000011006 900000000000451002 +3382381023 20080731 1 900000000000207008 433860001 2095001 1 118169006 900000000000011006 900000000000451002 +3382381023 20090131 0 900000000000207008 433860001 2095001 1 118169006 900000000000011006 900000000000451002 +3382722027 20080731 1 900000000000207008 122706001 116142003 1 118171006 900000000000011006 900000000000451002 +3382722027 20090131 0 900000000000207008 122706001 116142003 1 118171006 900000000000011006 900000000000451002 +3382722027 20110731 1 900000000000207008 122706001 116142003 1 118171006 900000000000011006 900000000000451002 +3382829027 20080731 1 900000000000207008 122644002 413675001 1 370133003 900000000000011006 900000000000451002 +3382829027 20090131 0 900000000000207008 122644002 413675001 1 370133003 900000000000011006 900000000000451002 +3382873028 20080731 1 900000000000207008 122694001 413675001 1 370133003 900000000000011006 900000000000451002 +3382873028 20090131 0 900000000000207008 122694001 413675001 1 370133003 900000000000011006 900000000000451002 +3383040026 20080731 1 900000000000207008 309190004 385294005 1 118169006 900000000000011006 900000000000451002 +3383040026 20090731 0 900000000000207008 309190004 385294005 1 118169006 900000000000011006 900000000000451002 +3383157029 20080731 1 900000000000207008 432146008 39258002 1 118171006 900000000000011006 900000000000451002 +3383157029 20090131 0 900000000000207008 432146008 39258002 1 118171006 900000000000011006 900000000000451002 +3383355025 20080731 1 900000000000207008 119329007 53875002 1 370133003 900000000000011006 900000000000451002 +3383355025 20090131 0 900000000000207008 119329007 53875002 1 370133003 900000000000011006 900000000000451002 +3383454025 20080731 1 900000000000207008 373102004 44578009 1 118171006 900000000000011006 900000000000451002 +3383454025 20090131 0 900000000000207008 373102004 44578009 1 118171006 900000000000011006 900000000000451002 +3383520028 20080731 1 900000000000207008 309186001 74262004 1 118169006 900000000000011006 900000000000451002 +3383520028 20090131 0 900000000000207008 309186001 74262004 1 118169006 900000000000011006 900000000000451002 +3383552028 20080731 1 900000000000207008 122683000 413675001 1 370133003 900000000000011006 900000000000451002 +3383552028 20090731 0 900000000000207008 122683000 413675001 1 370133003 900000000000011006 900000000000451002 +3384090021 20080731 1 900000000000207008 373103009 237378001 1 118171006 900000000000011006 900000000000451002 +3384090021 20090131 0 900000000000207008 373103009 237378001 1 118171006 900000000000011006 900000000000451002 +3384240028 20080731 1 900000000000207008 432060008 35039007 1 118169006 900000000000011006 900000000000451002 +3384240028 20090131 0 900000000000207008 432060008 35039007 1 118169006 900000000000011006 900000000000451002 +3384240028 20090731 1 900000000000207008 432060008 35039007 1 118169006 900000000000011006 900000000000451002 +3384240028 20100131 0 900000000000207008 432060008 35039007 1 118169006 900000000000011006 900000000000451002 +3384356024 20080731 1 900000000000207008 309293007 78067005 1 118169006 900000000000011006 900000000000451002 +3384356024 20090131 0 900000000000207008 309293007 78067005 1 118169006 900000000000011006 900000000000451002 +3384504026 20080731 1 900000000000207008 431776009 285570007 0 118171006 900000000000011006 900000000000451002 +3384504026 20130131 0 900000000000207008 431776009 285570007 0 118171006 900000000000011006 900000000000451002 +3384523022 20080731 1 900000000000207008 309077009 78961009 1 118169006 900000000000011006 900000000000451002 +3384523022 20090131 0 900000000000207008 309077009 78961009 1 118169006 900000000000011006 900000000000451002 +3384591026 20080731 1 900000000000207008 119300005 116146000 0 118170007 900000000000011006 900000000000451002 +3384591026 20190731 1 900000000000207008 119300005 116146000 1 118170007 900000000000011006 900000000000451002 +3385265020 20080731 1 900000000000207008 258448003 13351007 1 118169006 900000000000011006 900000000000451002 +3385265020 20090131 0 900000000000207008 258448003 13351007 1 118169006 900000000000011006 900000000000451002 +3385266021 20080731 1 900000000000207008 258448003 6085005 1 370133003 900000000000011006 900000000000451002 +3385266021 20090131 0 900000000000207008 258448003 6085005 1 370133003 900000000000011006 900000000000451002 +3385705023 20080731 1 900000000000207008 258446004 955009 1 118169006 900000000000011006 900000000000451002 +3385705023 20090131 0 900000000000207008 258446004 955009 1 118169006 900000000000011006 900000000000451002 +3385718026 20080731 1 900000000000207008 122684006 81516001 1 118171006 900000000000011006 900000000000451002 +3385718026 20090731 0 900000000000207008 122684006 81516001 1 118171006 900000000000011006 900000000000451002 +3386069027 20080731 1 900000000000207008 119343002 86762007 0 118169006 900000000000011006 900000000000451002 +3386069027 20090131 0 900000000000207008 119343002 86762007 0 118169006 900000000000011006 900000000000451002 +3386082024 20080731 1 900000000000207008 434014007 119284002 1 118171006 900000000000011006 900000000000451002 +3386082024 20090131 0 900000000000207008 434014007 119284002 1 118171006 900000000000011006 900000000000451002 +3386112029 20080731 1 900000000000207008 309102001 429883000 1 118171006 900000000000011006 900000000000451002 +3386112029 20090131 0 900000000000207008 309102001 429883000 1 118171006 900000000000011006 900000000000451002 +3386282027 20080731 1 900000000000207008 258559009 386093002 1 370133003 900000000000011006 900000000000451002 +3386282027 20090131 0 900000000000207008 258559009 386093002 1 370133003 900000000000011006 900000000000451002 +3386282027 20090731 1 900000000000207008 258559009 386093002 1 370133003 900000000000011006 900000000000451002 +3386282027 20100131 0 900000000000207008 258559009 386093002 1 370133003 900000000000011006 900000000000451002 +3386372025 20080731 1 900000000000207008 258609006 45710003 1 370133003 900000000000011006 900000000000451002 +3386372025 20090131 0 900000000000207008 258609006 45710003 1 370133003 900000000000011006 900000000000451002 +3387580025 20080731 1 900000000000207008 309487001 413675001 1 370133003 900000000000011006 900000000000451002 +3387580025 20090131 0 900000000000207008 309487001 413675001 1 370133003 900000000000011006 900000000000451002 +3387947025 20080731 1 900000000000207008 309480004 119553000 0 118169006 900000000000011006 900000000000451002 +3387947025 20190731 1 900000000000207008 309480004 119553000 1 118169006 900000000000011006 900000000000451002 +3388005029 20080731 1 900000000000207008 418932006 74262004 1 118169006 900000000000011006 900000000000451002 +3388005029 20090131 0 900000000000207008 418932006 74262004 1 118169006 900000000000011006 900000000000451002 +3388095023 20080731 1 900000000000207008 423696009 80146002 1 118171006 900000000000011006 900000000000451002 +3388096024 20080731 1 900000000000207008 423696009 66754008 1 118169006 900000000000011006 900000000000451002 +3388254025 20080731 1 900000000000207008 258438000 426101004 1 370133003 900000000000011006 900000000000451002 +3388254025 20090131 0 900000000000207008 258438000 426101004 1 370133003 900000000000011006 900000000000451002 +3388475024 20080731 1 900000000000207008 258435002 108369006 1 118168003 900000000000011006 900000000000451002 +3388475024 20090131 0 900000000000207008 258435002 108369006 1 118168003 900000000000011006 900000000000451002 +3388580028 20080731 1 900000000000207008 122712006 413675001 1 370133003 900000000000011006 900000000000451002 +3388580028 20090131 0 900000000000207008 122712006 413675001 1 370133003 900000000000011006 900000000000451002 +3388985025 20080731 1 900000000000207008 258549008 39937001 1 118169006 900000000000011006 900000000000451002 +3388985025 20090131 0 900000000000207008 258549008 39937001 1 118169006 900000000000011006 900000000000451002 +3389361023 20080731 1 900000000000207008 122685007 81516001 1 118171006 900000000000011006 900000000000451002 +3389361023 20090731 0 900000000000207008 122685007 81516001 1 118171006 900000000000011006 900000000000451002 +3389602020 20080731 1 900000000000207008 430855004 430854000 0 118171006 900000000000011006 900000000000451002 +3389602020 20190731 1 900000000000207008 430855004 430854000 1 118171006 900000000000011006 900000000000451002 +3390187022 20080731 1 900000000000207008 258432004 1028005 1 118169006 900000000000011006 900000000000451002 +3390187022 20090131 0 900000000000207008 258432004 1028005 1 118169006 900000000000011006 900000000000451002 +3390530024 20080731 1 900000000000207008 309486005 385294005 2 118169006 900000000000011006 900000000000451002 +3390530024 20090131 0 900000000000207008 309486005 385294005 2 118169006 900000000000011006 900000000000451002 +3390531023 20080731 1 900000000000207008 309486005 47227006 1 118171006 900000000000011006 900000000000451002 +3390531023 20090131 0 900000000000207008 309486005 47227006 1 118171006 900000000000011006 900000000000451002 +3390802026 20080731 1 900000000000207008 122727006 413675001 1 370133003 900000000000011006 900000000000451002 +3390802026 20090131 0 900000000000207008 122727006 413675001 1 370133003 900000000000011006 900000000000451002 +3390882029 20080731 1 900000000000207008 399672000 413675001 1 370133003 900000000000011006 900000000000451002 +3390882029 20090131 0 900000000000207008 399672000 413675001 1 370133003 900000000000011006 900000000000451002 +3390883023 20080731 1 900000000000207008 433119005 385294005 1 118169006 900000000000011006 900000000000451002 +3390883023 20090131 0 900000000000207008 433119005 385294005 1 118169006 900000000000011006 900000000000451002 +3391079028 20080731 1 900000000000207008 432385009 430229005 1 118171006 900000000000011006 900000000000451002 +3391079028 20090131 0 900000000000207008 432385009 430229005 1 118171006 900000000000011006 900000000000451002 +3391547027 20080731 1 900000000000207008 258601009 81745001 0 118169006 900000000000011006 900000000000451002 +3391547027 20190731 1 900000000000207008 258601009 81745001 1 118169006 900000000000011006 900000000000451002 +3391547027 20220531 0 900000000000207008 258601009 81745001 1 118169006 900000000000011006 900000000000451002 +3391889025 20080731 1 900000000000207008 122697008 413675001 1 370133003 900000000000011006 900000000000451002 +3391889025 20090731 0 900000000000207008 122697008 413675001 1 370133003 900000000000011006 900000000000451002 +3392539029 20080731 1 900000000000207008 122578001 50473004 1 370133003 900000000000011006 900000000000451002 +3392539029 20090131 0 900000000000207008 122578001 50473004 1 370133003 900000000000011006 900000000000451002 +3393077020 20080731 1 900000000000207008 122877000 72869002 1 370133003 900000000000011006 900000000000451002 +3393077020 20090131 0 900000000000207008 122877000 72869002 1 370133003 900000000000011006 900000000000451002 +3393077020 20100731 1 900000000000207008 122877000 72869002 1 370133003 900000000000011006 900000000000451002 +3393077020 20110131 0 900000000000207008 122877000 72869002 1 370133003 900000000000011006 900000000000451002 +3393155023 20080731 1 900000000000207008 122686008 413675001 1 370133003 900000000000011006 900000000000451002 +3393155023 20090131 0 900000000000207008 122686008 413675001 1 370133003 900000000000011006 900000000000451002 +3393675029 20080731 1 900000000000207008 122637006 413675001 1 370133003 900000000000011006 900000000000451002 +3393675029 20090131 0 900000000000207008 122637006 413675001 1 370133003 900000000000011006 900000000000451002 +3393722024 20080731 1 900000000000207008 309275006 108034003 1 118171006 900000000000011006 900000000000451002 +3393722024 20090731 0 900000000000207008 309275006 108034003 1 118171006 900000000000011006 900000000000451002 +3394116025 20080731 1 900000000000207008 309272009 413675001 1 370133003 900000000000011006 900000000000451002 +3394116025 20090131 0 900000000000207008 309272009 413675001 1 370133003 900000000000011006 900000000000451002 +3394116025 20100131 1 900000000000207008 309272009 413675001 1 370133003 900000000000011006 900000000000451002 +3394116025 20100731 0 900000000000207008 309272009 413675001 1 370133003 900000000000011006 900000000000451002 +3394138028 20080731 1 900000000000207008 431889006 430223006 1 118171006 900000000000011006 900000000000451002 +3394138028 20090131 0 900000000000207008 431889006 430223006 1 118171006 900000000000011006 900000000000451002 +3394620027 20080731 1 900000000000207008 399741007 413675001 1 370133003 900000000000011006 900000000000451002 +3394620027 20090131 0 900000000000207008 399741007 413675001 1 370133003 900000000000011006 900000000000451002 +3395523026 20080731 1 900000000000207008 433326001 72410000 0 118169006 900000000000011006 900000000000451002 +3395523026 20190731 1 900000000000207008 433326001 72410000 1 118169006 900000000000011006 900000000000451002 +3396587020 20080731 1 900000000000207008 430157009 1231004 0 118169006 900000000000011006 900000000000451002 +3396587020 20190731 1 900000000000207008 430157009 1231004 1 118169006 900000000000011006 900000000000451002 +3396661025 20080731 1 900000000000207008 258420003 413675001 1 370133003 900000000000011006 900000000000451002 +3396661025 20090131 0 900000000000207008 258420003 413675001 1 370133003 900000000000011006 900000000000451002 +3396700022 20080731 1 900000000000207008 122625009 430457001 1 118171006 900000000000011006 900000000000451002 +3396700022 20090131 0 900000000000207008 122625009 430457001 1 118171006 900000000000011006 900000000000451002 +3396773023 20080731 1 900000000000207008 278020009 386099003 1 118171006 900000000000011006 900000000000451002 +3396773023 20090131 0 900000000000207008 278020009 386099003 1 118171006 900000000000011006 900000000000451002 +3397234025 20080731 1 900000000000207008 119376003 413675001 0 370133003 900000000000011006 900000000000451002 +3397234025 20190731 1 900000000000207008 119376003 413675001 1 370133003 900000000000011006 900000000000451002 +3397814021 20080731 1 900000000000207008 258436001 29870000 1 118169006 900000000000011006 900000000000451002 +3397814021 20090131 0 900000000000207008 258436001 29870000 1 118169006 900000000000011006 900000000000451002 +3397815022 20080731 1 900000000000207008 258436001 413675001 1 370133003 900000000000011006 900000000000451002 +3397815022 20090131 0 900000000000207008 258436001 413675001 1 370133003 900000000000011006 900000000000451002 +3397852022 20080731 1 900000000000207008 258603007 20139000 0 118169006 900000000000011006 900000000000451002 +3397852022 20190731 1 900000000000207008 258603007 20139000 1 118169006 900000000000011006 900000000000451002 +3398104029 20080731 1 900000000000207008 122732007 302338000 1 118171006 900000000000011006 900000000000451002 +3398104029 20090131 0 900000000000207008 122732007 302338000 1 118171006 900000000000011006 900000000000451002 +3398286021 20080731 1 900000000000207008 122698003 413675001 1 370133003 900000000000011006 900000000000451002 +3398286021 20090131 0 900000000000207008 122698003 413675001 1 370133003 900000000000011006 900000000000451002 +3399011023 20080731 1 900000000000207008 309484008 81870009 1 118171006 900000000000011006 900000000000451002 +3399011023 20090131 0 900000000000207008 309484008 81870009 1 118171006 900000000000011006 900000000000451002 +3399012027 20080731 1 900000000000207008 309484008 45289007 1 118169006 900000000000011006 900000000000451002 +3399012027 20090131 0 900000000000207008 309484008 45289007 1 118169006 900000000000011006 900000000000451002 +3399208026 20080731 1 900000000000207008 122711004 413675001 1 370133003 900000000000011006 900000000000451002 +3399208026 20090131 0 900000000000207008 122711004 413675001 1 370133003 900000000000011006 900000000000451002 +3399418023 20080731 1 900000000000207008 309481000 15672000 0 118169006 900000000000011006 900000000000451002 +3399418023 20190731 1 900000000000207008 309481000 15672000 1 118169006 900000000000011006 900000000000451002 +3399632025 20080731 1 900000000000207008 309482007 27204007 1 118171006 900000000000011006 900000000000451002 +3399632025 20090131 0 900000000000207008 309482007 27204007 1 118171006 900000000000011006 900000000000451002 +3400299020 20080731 1 900000000000207008 309211008 69695003 1 118169006 900000000000011006 900000000000451002 +3400299020 20090131 0 900000000000207008 309211008 69695003 1 118169006 900000000000011006 900000000000451002 +3400463028 20080731 1 900000000000207008 399451009 5665001 1 118169006 900000000000011006 900000000000451002 +3400463028 20090131 0 900000000000207008 399451009 5665001 1 118169006 900000000000011006 900000000000451002 +3400464023 20080731 1 900000000000207008 399451009 413675001 1 370133003 900000000000011006 900000000000451002 +3400464023 20090131 0 900000000000207008 399451009 413675001 1 370133003 900000000000011006 900000000000451002 +3400674028 20080731 1 900000000000207008 397078009 413675001 1 370133003 900000000000011006 900000000000451002 +3400674028 20090731 0 900000000000207008 397078009 413675001 1 370133003 900000000000011006 900000000000451002 +3400922028 20080731 1 900000000000207008 122709008 413675001 1 370133003 900000000000011006 900000000000451002 +3400922028 20090131 0 900000000000207008 122709008 413675001 1 370133003 900000000000011006 900000000000451002 +3401349027 20080731 1 900000000000207008 122646000 413675001 1 370133003 900000000000011006 900000000000451002 +3401349027 20090131 0 900000000000207008 122646000 413675001 1 370133003 900000000000011006 900000000000451002 +3401737025 20080731 1 900000000000207008 258428005 413675001 1 370133003 900000000000011006 900000000000451002 +3401737025 20090131 0 900000000000207008 258428005 413675001 1 370133003 900000000000011006 900000000000451002 +3401814026 20080731 1 900000000000207008 258434003 386100006 1 370133003 900000000000011006 900000000000451002 +3401814026 20090131 0 900000000000207008 258434003 386100006 1 370133003 900000000000011006 900000000000451002 +3401969029 20080731 1 900000000000207008 309476009 413675001 1 370133003 900000000000011006 900000000000451002 +3401969029 20090131 0 900000000000207008 309476009 413675001 1 370133003 900000000000011006 900000000000451002 +3402558024 20080731 1 900000000000207008 309268005 431938005 1 118169006 900000000000011006 900000000000451002 +3402558024 20090131 0 900000000000207008 309268005 431938005 1 118169006 900000000000011006 900000000000451002 +3402561020 20080731 1 900000000000207008 363328006 86762007 1 118169006 900000000000011006 900000000000451002 +3402561020 20090131 0 900000000000207008 363328006 86762007 1 118169006 900000000000011006 900000000000451002 +3402880025 20080731 1 900000000000207008 309079007 59441001 1 118169006 900000000000011006 900000000000451002 +3402880025 20090131 0 900000000000207008 309079007 59441001 1 118169006 900000000000011006 900000000000451002 +3403772023 20080731 1 900000000000207008 258429002 56757003 1 118171006 900000000000011006 900000000000451002 +3403772023 20090131 0 900000000000207008 258429002 56757003 1 118171006 900000000000011006 900000000000451002 +3403772023 20110731 1 900000000000207008 258429002 56757003 1 118171006 900000000000011006 900000000000451002 +3403840029 20080731 1 900000000000207008 309204009 386147002 1 118171006 900000000000011006 900000000000451002 +3403840029 20090131 0 900000000000207008 309204009 386147002 1 118171006 900000000000011006 900000000000451002 +3403967023 20080731 1 900000000000207008 399542003 413675001 1 370133003 900000000000011006 900000000000451002 +3403967023 20090131 0 900000000000207008 399542003 413675001 1 370133003 900000000000011006 900000000000451002 +3403974029 20080731 1 900000000000207008 309078004 59441001 1 118169006 900000000000011006 900000000000451002 +3403974029 20090131 0 900000000000207008 309078004 59441001 1 118169006 900000000000011006 900000000000451002 +3404432020 20080731 1 900000000000207008 431234000 55460000 1 118169006 900000000000011006 900000000000451002 +3404432020 20090131 0 900000000000207008 431234000 55460000 1 118169006 900000000000011006 900000000000451002 +3405077020 20080731 1 900000000000207008 396525008 23451007 1 118169006 900000000000011006 900000000000451002 +3405077020 20090131 0 900000000000207008 396525008 23451007 1 118169006 900000000000011006 900000000000451002 +3405716026 20080731 1 900000000000207008 309191000 90750001 1 118171006 900000000000011006 900000000000451002 +3405716026 20090131 0 900000000000207008 309191000 90750001 1 118171006 900000000000011006 900000000000451002 +3405716026 20090731 1 900000000000207008 309191000 90750001 1 118171006 900000000000011006 900000000000451002 +3405716026 20100131 0 900000000000207008 309191000 90750001 1 118171006 900000000000011006 900000000000451002 +3405881024 20080731 1 900000000000207008 309271002 87953007 1 118169006 900000000000011006 900000000000451002 +3405881024 20090131 0 900000000000207008 309271002 87953007 1 118169006 900000000000011006 900000000000451002 +3406143024 20080731 1 900000000000207008 128175003 413675001 1 370133003 900000000000011006 900000000000451002 +3406143024 20090131 0 900000000000207008 128175003 413675001 1 370133003 900000000000011006 900000000000451002 +3406586029 20080731 1 900000000000207008 122626005 80891009 1 118169006 900000000000011006 900000000000451002 +3406586029 20090131 0 900000000000207008 122626005 80891009 1 118169006 900000000000011006 900000000000451002 +3406876021 20080731 1 900000000000207008 122661004 413675001 1 370133003 900000000000011006 900000000000451002 +3406876021 20090131 0 900000000000207008 122661004 413675001 1 370133003 900000000000011006 900000000000451002 +3407392028 20080731 1 900000000000207008 127482009 413675001 1 370133003 900000000000011006 900000000000451002 +3407392028 20090131 0 900000000000207008 127482009 413675001 1 370133003 900000000000011006 900000000000451002 +3407675025 20080731 1 900000000000207008 309203003 10200004 1 118169006 900000000000011006 900000000000451002 +3407675025 20090131 0 900000000000207008 309203003 10200004 1 118169006 900000000000011006 900000000000451002 +3407893027 20080731 1 900000000000207008 258602002 81745001 0 118169006 900000000000011006 900000000000451002 +3407893027 20190731 1 900000000000207008 258602002 81745001 1 118169006 900000000000011006 900000000000451002 +3407893027 20220531 0 900000000000207008 258602002 81745001 1 118169006 900000000000011006 900000000000451002 +3408359021 20080731 1 900000000000207008 309192007 75573002 1 118169006 900000000000011006 900000000000451002 +3408359021 20090131 0 900000000000207008 309192007 75573002 1 118169006 900000000000011006 900000000000451002 +3408695023 20080731 1 900000000000207008 399640003 5665001 1 118169006 900000000000011006 900000000000451002 +3408695023 20090131 0 900000000000207008 399640003 5665001 1 118169006 900000000000011006 900000000000451002 +3408699028 20080731 1 900000000000207008 432608000 53912006 1 118169006 900000000000011006 900000000000451002 +3408699028 20090131 0 900000000000207008 432608000 53912006 1 118169006 900000000000011006 900000000000451002 +3409161025 20080731 1 900000000000207008 309276007 27204007 1 118171006 900000000000011006 900000000000451002 +3409161025 20090131 0 900000000000207008 309276007 27204007 1 118171006 900000000000011006 900000000000451002 +3409262029 20080731 1 900000000000207008 363329003 20139000 1 118169006 900000000000011006 900000000000451002 +3409262029 20090131 0 900000000000207008 363329003 20139000 1 118169006 900000000000011006 900000000000451002 +3409380024 20080731 1 900000000000207008 127483004 413675001 1 370133003 900000000000011006 900000000000451002 +3409380024 20090131 0 900000000000207008 127483004 413675001 1 370133003 900000000000011006 900000000000451002 +3409454024 20080731 1 900000000000207008 309167009 209055006 1 118171006 900000000000011006 900000000000451002 +3409454024 20090131 0 900000000000207008 309167009 209055006 1 118171006 900000000000011006 900000000000451002 +3409790029 20080731 1 900000000000207008 309264007 87677003 1 118171006 900000000000011006 900000000000451002 +3409790029 20090131 0 900000000000207008 309264007 87677003 1 118171006 900000000000011006 900000000000451002 +3409790029 20100131 1 900000000000207008 309264007 87677003 1 118171006 900000000000011006 900000000000451002 +3409790029 20100731 0 900000000000207008 309264007 87677003 1 118171006 900000000000011006 900000000000451002 +3410009026 20080731 1 900000000000207008 431406009 392157001 1 118171006 900000000000011006 900000000000451002 +3410009026 20090131 0 900000000000207008 431406009 392157001 1 118171006 900000000000011006 900000000000451002 +3410009026 20090731 1 900000000000207008 431406009 392157001 1 118171006 900000000000011006 900000000000451002 +3410009026 20100131 0 900000000000207008 431406009 392157001 1 118171006 900000000000011006 900000000000451002 +3410010020 20080731 1 900000000000207008 431406009 15776009 1 118169006 900000000000011006 900000000000451002 +3410010020 20090131 0 900000000000207008 431406009 15776009 1 118169006 900000000000011006 900000000000451002 +3410010020 20090731 1 900000000000207008 431406009 15776009 1 118169006 900000000000011006 900000000000451002 +3410010020 20100131 0 900000000000207008 431406009 15776009 1 118169006 900000000000011006 900000000000451002 +3410437026 20080731 1 900000000000207008 258419009 68688001 1 118171006 900000000000011006 900000000000451002 +3410437026 20090131 0 900000000000207008 258419009 68688001 1 118171006 900000000000011006 900000000000451002 +3410633020 20080731 1 900000000000207008 122710003 83152002 1 118171006 900000000000011006 900000000000451002 +3410633020 20090731 0 900000000000207008 122710003 83152002 1 118171006 900000000000011006 900000000000451002 +3410732022 20080731 1 900000000000207008 122620004 430927004 1 118171006 900000000000011006 900000000000451002 +3410732022 20090131 0 900000000000207008 122620004 430927004 1 118171006 900000000000011006 900000000000451002 +3411069021 20080731 1 900000000000207008 430387006 76784001 0 118169006 900000000000011006 900000000000451002 +3411069021 20190731 1 900000000000207008 430387006 76784001 3 118169006 900000000000011006 900000000000451002 +3411070022 20080731 1 900000000000207008 430387006 71252005 0 118169006 900000000000011006 900000000000451002 +3411070022 20190731 1 900000000000207008 430387006 71252005 2 118169006 900000000000011006 900000000000451002 +3411350021 20080731 1 900000000000207008 430312009 6085005 0 370133003 900000000000011006 900000000000451002 +3411350021 20180731 0 900000000000207008 430312009 6085005 0 370133003 900000000000011006 900000000000451002 +3411380027 20080731 1 900000000000207008 396527000 23451007 1 118169006 900000000000011006 900000000000451002 +3411380027 20090131 0 900000000000207008 396527000 23451007 1 118169006 900000000000011006 900000000000451002 +3411698021 20080731 1 900000000000207008 258529004 312880001 1 118171006 900000000000011006 900000000000451002 +3411698021 20090131 0 900000000000207008 258529004 312880001 1 118171006 900000000000011006 900000000000451002 +3411833028 20080731 1 900000000000207008 122665008 413675001 1 370133003 900000000000011006 900000000000451002 +3411833028 20090131 0 900000000000207008 122665008 413675001 1 370133003 900000000000011006 900000000000451002 +3412265022 20080731 1 900000000000207008 122598006 119184005 1 118169006 900000000000011006 900000000000451002 +3412265022 20090131 0 900000000000207008 122598006 119184005 1 118169006 900000000000011006 900000000000451002 +3412390022 20080731 1 900000000000207008 258591005 414387006 0 118169006 900000000000011006 900000000000451002 +3412390022 20090731 0 900000000000207008 258591005 414387006 0 118169006 900000000000011006 900000000000451002 +3412588022 20080731 1 900000000000207008 122636002 413675001 1 370133003 900000000000011006 900000000000451002 +3412588022 20090131 0 900000000000207008 122636002 413675001 1 370133003 900000000000011006 900000000000451002 +3412878028 20080731 1 900000000000207008 432139004 12738006 1 118169006 900000000000011006 900000000000451002 +3412878028 20090131 0 900000000000207008 432139004 12738006 1 118169006 900000000000011006 900000000000451002 +3413001029 20080731 1 900000000000207008 122699006 54535009 1 118171006 900000000000011006 900000000000451002 +3413001029 20090131 0 900000000000207008 122699006 54535009 1 118171006 900000000000011006 900000000000451002 +3413014028 20080731 1 900000000000207008 258527002 53505006 1 118169006 900000000000011006 900000000000451002 +3413014028 20090131 0 900000000000207008 258527002 53505006 1 118169006 900000000000011006 900000000000451002 +3413146026 20080731 1 900000000000207008 258412000 31389004 1 118169006 900000000000011006 900000000000451002 +3413146026 20090131 0 900000000000207008 258412000 31389004 1 118169006 900000000000011006 900000000000451002 +3413415023 20080731 1 900000000000207008 309267000 119894003 1 118171006 900000000000011006 900000000000451002 +3413415023 20090731 0 900000000000207008 309267000 119894003 1 118171006 900000000000011006 900000000000451002 +3413518023 20080731 1 900000000000207008 309179009 413675001 1 370133003 900000000000011006 900000000000451002 +3413518023 20090131 0 900000000000207008 309179009 413675001 1 370133003 900000000000011006 900000000000451002 +3413736021 20080731 1 900000000000207008 309269002 64033007 1 118169006 900000000000011006 900000000000451002 +3413736021 20090131 0 900000000000207008 309269002 64033007 1 118169006 900000000000011006 900000000000451002 +3413919024 20080731 1 900000000000207008 434249007 430116002 1 118171006 900000000000011006 900000000000451002 +3413919024 20090131 0 900000000000207008 434249007 430116002 1 118171006 900000000000011006 900000000000451002 +3413920029 20080731 1 900000000000207008 434249007 117590005 1 118169006 900000000000011006 900000000000451002 +3413920029 20090131 0 900000000000207008 434249007 117590005 1 118169006 900000000000011006 900000000000451002 +3414093026 20080731 1 900000000000207008 258418001 48333001 1 118168003 900000000000011006 900000000000451002 +3414093026 20090131 0 900000000000207008 258418001 48333001 1 118168003 900000000000011006 900000000000451002 +3414199029 20080731 1 900000000000207008 309265008 36488007 1 118171006 900000000000011006 900000000000451002 +3414199029 20090131 0 900000000000207008 309265008 36488007 1 118171006 900000000000011006 900000000000451002 +3414252025 20080731 1 900000000000207008 122635003 69695003 1 118169006 900000000000011006 900000000000451002 +3414252025 20090131 0 900000000000207008 122635003 69695003 1 118169006 900000000000011006 900000000000451002 +3414464024 20080731 1 900000000000207008 122595009 172043006 1 118171006 900000000000011006 900000000000451002 +3414464024 20090131 0 900000000000207008 122595009 172043006 1 118171006 900000000000011006 900000000000451002 +3414503028 20080731 1 900000000000207008 122666009 116242006 1 118171006 900000000000011006 900000000000451002 +3414503028 20090131 0 900000000000207008 122666009 116242006 1 118171006 900000000000011006 900000000000451002 +3414607021 20080731 1 900000000000207008 110896005 71966008 0 118169006 900000000000011006 900000000000451002 +3414607021 20190731 1 900000000000207008 110896005 71966008 1 118169006 900000000000011006 900000000000451002 +3414745028 20080731 1 900000000000207008 397326000 120053002 1 118171006 900000000000011006 900000000000451002 +3414745028 20090131 0 900000000000207008 397326000 120053002 1 118171006 900000000000011006 900000000000451002 +3414749023 20080731 1 900000000000207008 385340002 119894003 1 118171006 900000000000011006 900000000000451002 +3414749023 20090131 0 900000000000207008 385340002 119894003 1 118171006 900000000000011006 900000000000451002 +3414851026 20080731 1 900000000000207008 399572009 9875009 1 118169006 900000000000011006 900000000000451002 +3414851026 20090131 0 900000000000207008 399572009 9875009 1 118169006 900000000000011006 900000000000451002 +3414929022 20080731 1 900000000000207008 122594008 40431001 1 370133003 900000000000011006 900000000000451002 +3414929022 20090131 0 900000000000207008 122594008 40431001 1 370133003 900000000000011006 900000000000451002 +3415052029 20080731 1 900000000000207008 127475005 413675001 1 370133003 900000000000011006 900000000000451002 +3415052029 20090131 0 900000000000207008 127475005 413675001 1 370133003 900000000000011006 900000000000451002 +3415212020 20080731 1 900000000000207008 258587000 414387006 0 118169006 900000000000011006 900000000000451002 +3415212020 20090731 0 900000000000207008 258587000 414387006 0 118169006 900000000000011006 900000000000451002 +3415935025 20080731 1 900000000000207008 397326000 413675001 1 370133003 900000000000011006 900000000000451002 +3415935025 20090131 0 900000000000207008 397326000 413675001 1 370133003 900000000000011006 900000000000451002 +3416000024 20080731 1 900000000000207008 432141003 431054005 1 118171006 900000000000011006 900000000000451002 +3416000024 20090131 0 900000000000207008 432141003 431054005 1 118171006 900000000000011006 900000000000451002 +3416138020 20080731 1 900000000000207008 433760005 78961009 1 118169006 900000000000011006 900000000000451002 +3416138020 20090131 0 900000000000207008 433760005 78961009 1 118169006 900000000000011006 900000000000451002 +3416364022 20080731 1 900000000000207008 309287004 25811000 2 118171006 900000000000011006 900000000000451002 +3416364022 20090731 0 900000000000207008 309287004 25811000 2 118171006 900000000000011006 900000000000451002 +3416575022 20080731 1 900000000000207008 309287004 413675001 2 370133003 900000000000011006 900000000000451002 +3416575022 20090731 0 900000000000207008 309287004 413675001 2 370133003 900000000000011006 900000000000451002 +3416576023 20080731 1 900000000000207008 309287004 35039007 4 118169006 900000000000011006 900000000000451002 +3416576023 20090731 1 900000000000207008 309287004 35039007 6 118169006 900000000000011006 900000000000451002 +3416876027 20080731 1 900000000000207008 399689008 13619001 1 118171006 900000000000011006 900000000000451002 +3416876027 20090731 0 900000000000207008 399689008 13619001 1 118171006 900000000000011006 900000000000451002 +3416965025 20080731 1 900000000000207008 122647009 413675001 1 370133003 900000000000011006 900000000000451002 +3416965025 20090131 0 900000000000207008 122647009 413675001 1 370133003 900000000000011006 900000000000451002 +3417038025 20080731 1 900000000000207008 309058007 413675001 1 370133003 900000000000011006 900000000000451002 +3417038025 20090131 0 900000000000207008 309058007 413675001 1 370133003 900000000000011006 900000000000451002 +3417391029 20080731 1 900000000000207008 122734008 413675001 1 370133003 900000000000011006 900000000000451002 +3417391029 20090131 0 900000000000207008 122734008 413675001 1 370133003 900000000000011006 900000000000451002 +3417432023 20080731 1 900000000000207008 119341000 70150004 1 370133003 900000000000011006 900000000000451002 +3417432023 20090131 0 900000000000207008 119341000 70150004 1 370133003 900000000000011006 900000000000451002 +3417432023 20100131 1 900000000000207008 119341000 70150004 1 370133003 900000000000011006 900000000000451002 +3417432023 20100731 0 900000000000207008 119341000 70150004 1 370133003 900000000000011006 900000000000451002 +3417432023 20110731 1 900000000000207008 119341000 70150004 1 370133003 900000000000011006 900000000000451002 +3417489022 20080731 1 900000000000207008 397334006 113293009 1 118169006 900000000000011006 900000000000451002 +3417489022 20090731 0 900000000000207008 397334006 113293009 1 118169006 900000000000011006 900000000000451002 +3417632028 20080731 1 900000000000207008 430245007 53912006 0 118169006 900000000000011006 900000000000451002 +3417632028 20190731 1 900000000000207008 430245007 53912006 1 118169006 900000000000011006 900000000000451002 +3417765027 20080731 1 900000000000207008 258518003 20233005 1 118169006 900000000000011006 900000000000451002 +3417765027 20090131 0 900000000000207008 258518003 20233005 1 118169006 900000000000011006 900000000000451002 +3417877028 20080731 1 900000000000207008 309278008 53065001 1 118169006 900000000000011006 900000000000451002 +3417877028 20090131 0 900000000000207008 309278008 53065001 1 118169006 900000000000011006 900000000000451002 +3417978023 20080731 1 900000000000207008 127481002 413675001 1 370133003 900000000000011006 900000000000451002 +3417978023 20090131 0 900000000000207008 127481002 413675001 1 370133003 900000000000011006 900000000000451002 +3417996025 20080731 1 900000000000207008 309170008 82094008 1 118169006 900000000000011006 900000000000451002 +3417996025 20090131 0 900000000000207008 309170008 82094008 1 118169006 900000000000011006 900000000000451002 +3417997023 20080731 1 900000000000207008 309170008 413675001 1 370133003 900000000000011006 900000000000451002 +3417997023 20090131 0 900000000000207008 309170008 413675001 1 370133003 900000000000011006 900000000000451002 +3418174023 20080731 1 900000000000207008 397333000 413675001 1 370133003 900000000000011006 900000000000451002 +3418174023 20090731 0 900000000000207008 397333000 413675001 1 370133003 900000000000011006 900000000000451002 +3418776025 20080731 1 900000000000207008 433873002 54133007 1 118171006 900000000000011006 900000000000451002 +3418776025 20090131 0 900000000000207008 433873002 54133007 1 118171006 900000000000011006 900000000000451002 +3418962023 20080731 1 900000000000207008 258575007 225111001 1 118171006 900000000000011006 900000000000451002 +3418962023 20090131 0 900000000000207008 258575007 225111001 1 118171006 900000000000011006 900000000000451002 +3419423028 20080731 1 900000000000207008 127470000 413675001 1 370133003 900000000000011006 900000000000451002 +3419423028 20090131 0 900000000000207008 127470000 413675001 1 370133003 900000000000011006 900000000000451002 +3419440021 20080731 1 900000000000207008 399467003 413675001 1 370133003 900000000000011006 900000000000451002 +3419440021 20090131 0 900000000000207008 399467003 413675001 1 370133003 900000000000011006 900000000000451002 +3419749021 20080731 1 900000000000207008 309182004 433014002 1 118171006 900000000000011006 900000000000451002 +3419749021 20090131 0 900000000000207008 309182004 433014002 1 118171006 900000000000011006 900000000000451002 +3419750021 20080731 1 900000000000207008 309182004 4596009 1 118169006 900000000000011006 900000000000451002 +3419750021 20090131 0 900000000000207008 309182004 4596009 1 118169006 900000000000011006 900000000000451002 +3419935020 20080731 1 900000000000207008 309290005 81899004 1 118171006 900000000000011006 900000000000451002 +3419935020 20090131 0 900000000000207008 309290005 81899004 1 118171006 900000000000011006 900000000000451002 +3420061025 20080731 1 900000000000207008 430386002 90264002 0 118169006 900000000000011006 900000000000451002 +3420061025 20190731 1 900000000000207008 430386002 90264002 2 118169006 900000000000011006 900000000000451002 +3420731025 20080731 1 900000000000207008 258417006 413675001 1 370133003 900000000000011006 900000000000451002 +3420731025 20090131 0 900000000000207008 258417006 413675001 1 370133003 900000000000011006 900000000000451002 +3420742023 20080731 1 900000000000207008 258528007 285570007 1 118171006 900000000000011006 900000000000451002 +3420742023 20090131 0 900000000000207008 258528007 285570007 1 118171006 900000000000011006 900000000000451002 +3420742023 20110731 1 900000000000207008 258528007 285570007 1 118171006 900000000000011006 900000000000451002 +3421034023 20080731 1 900000000000207008 432657002 26107004 1 118169006 900000000000011006 900000000000451002 +3421034023 20090131 0 900000000000207008 432657002 26107004 1 118169006 900000000000011006 900000000000451002 +3421161020 20080731 1 900000000000207008 122669002 180055000 1 118171006 900000000000011006 900000000000451002 +3421161020 20090731 0 900000000000207008 122669002 180055000 1 118171006 900000000000011006 900000000000451002 +3421363025 20080731 1 900000000000207008 399559008 172132001 1 118171006 900000000000011006 900000000000451002 +3421363025 20090131 0 900000000000207008 399559008 172132001 1 118171006 900000000000011006 900000000000451002 +3421491021 20080731 1 900000000000207008 258426009 82530009 1 118169006 900000000000011006 900000000000451002 +3421491021 20090131 0 900000000000207008 258426009 82530009 1 118169006 900000000000011006 900000000000451002 +3421832021 20080731 1 900000000000207008 119357000 414387006 0 118169006 900000000000011006 900000000000451002 +3421832021 20090731 0 900000000000207008 119357000 414387006 0 118169006 900000000000011006 900000000000451002 +3421846021 20080731 1 900000000000207008 433117007 61685007 1 118169006 900000000000011006 900000000000451002 +3421846021 20090131 0 900000000000207008 433117007 61685007 1 118169006 900000000000011006 900000000000451002 +3422047027 20080731 1 900000000000207008 258538002 430865005 0 370133003 900000000000011006 900000000000451002 +3422047027 20190731 1 900000000000207008 258538002 430865005 1 370133003 900000000000011006 900000000000451002 +3422223026 20080731 1 900000000000207008 406101006 413675001 1 370133003 900000000000011006 900000000000451002 +3422223026 20090131 0 900000000000207008 406101006 413675001 1 370133003 900000000000011006 900000000000451002 +3422351022 20080731 1 900000000000207008 432143000 18911002 1 118169006 900000000000011006 900000000000451002 +3422351022 20090131 0 900000000000207008 432143000 18911002 1 118169006 900000000000011006 900000000000451002 +3422351022 20090731 1 900000000000207008 432143000 18911002 1 118169006 900000000000011006 900000000000451002 +3422351022 20100131 0 900000000000207008 432143000 18911002 1 118169006 900000000000011006 900000000000451002 +3422361026 20080731 1 900000000000207008 309274005 68688001 1 118171006 900000000000011006 900000000000451002 +3422361026 20090131 0 900000000000207008 309274005 68688001 1 118171006 900000000000011006 900000000000451002 +3422713020 20080731 1 900000000000207008 399512001 413675001 1 370133003 900000000000011006 900000000000451002 +3422713020 20090131 0 900000000000207008 399512001 413675001 1 370133003 900000000000011006 900000000000451002 +3422809020 20080731 1 900000000000207008 309266009 41329004 1 118168003 900000000000011006 900000000000451002 +3422809020 20090131 0 900000000000207008 309266009 41329004 1 118168003 900000000000011006 900000000000451002 +3422888026 20080731 1 900000000000207008 122619005 91602002 1 118171006 900000000000011006 900000000000451002 +3422888026 20090131 0 900000000000207008 122619005 91602002 1 118171006 900000000000011006 900000000000451002 +3423384025 20080731 1 900000000000207008 396526009 413675001 1 370133003 900000000000011006 900000000000451002 +3423384025 20090131 0 900000000000207008 396526009 413675001 1 370133003 900000000000011006 900000000000451002 +3423413026 20080731 1 900000000000207008 258422006 413675001 1 370133003 900000000000011006 900000000000451002 +3423413026 20090131 0 900000000000207008 258422006 413675001 1 370133003 900000000000011006 900000000000451002 +3423859020 20080731 1 900000000000207008 309168004 413675001 1 370133003 900000000000011006 900000000000451002 +3423859020 20090131 0 900000000000207008 309168004 413675001 1 370133003 900000000000011006 900000000000451002 +3424488020 20080731 1 900000000000207008 309178001 413650000 1 118171006 900000000000011006 900000000000451002 +3424488020 20090131 0 900000000000207008 309178001 413650000 1 118171006 900000000000011006 900000000000451002 +3424488020 20110131 1 900000000000207008 309178001 413650000 1 118171006 900000000000011006 900000000000451002 +3424488020 20110731 0 900000000000207008 309178001 413650000 1 118171006 900000000000011006 900000000000451002 +3424588022 20080731 1 900000000000207008 122670001 413675001 1 370133003 900000000000011006 900000000000451002 +3424588022 20090131 0 900000000000207008 122670001 413675001 1 370133003 900000000000011006 900000000000451002 +3424589025 20080731 1 900000000000207008 258525005 38864007 1 118169006 900000000000011006 900000000000451002 +3424589025 20090131 0 900000000000207008 258525005 38864007 1 118169006 900000000000011006 900000000000451002 +3424816022 20080731 1 900000000000207008 385338007 119894003 1 118171006 900000000000011006 900000000000451002 +3424816022 20090131 0 900000000000207008 385338007 119894003 1 118171006 900000000000011006 900000000000451002 +3424919025 20080731 1 900000000000207008 309067007 39937001 1 118169006 900000000000011006 900000000000451002 +3424919025 20090731 0 900000000000207008 309067007 39937001 1 118169006 900000000000011006 900000000000451002 +3425074023 20080731 1 900000000000207008 431235004 44567001 1 118169006 900000000000011006 900000000000451002 +3425074023 20090131 0 900000000000207008 431235004 44567001 1 118169006 900000000000011006 900000000000451002 +3425166020 20080731 1 900000000000207008 432986001 86273004 1 118171006 900000000000011006 900000000000451002 +3425166020 20090131 0 900000000000207008 432986001 86273004 1 118171006 900000000000011006 900000000000451002 +3425193023 20080731 1 900000000000207008 258523003 285570007 1 118171006 900000000000011006 900000000000451002 +3425193023 20090131 0 900000000000207008 258523003 285570007 1 118171006 900000000000011006 900000000000451002 +3425300022 20080731 1 900000000000207008 309285007 176779006 1 118171006 900000000000011006 900000000000451002 +3425300022 20090131 0 900000000000207008 309285007 176779006 1 118171006 900000000000011006 900000000000451002 +3425617024 20080731 1 900000000000207008 309066003 39937001 1 118169006 900000000000011006 900000000000451002 +3425617024 20090131 0 900000000000207008 309066003 39937001 1 118169006 900000000000011006 900000000000451002 +3425850021 20080731 1 900000000000207008 432136006 45292006 1 118169006 900000000000011006 900000000000451002 +3425850021 20090131 0 900000000000207008 432136006 45292006 1 118169006 900000000000011006 900000000000451002 +3425850021 20090731 1 900000000000207008 432136006 45292006 1 118169006 900000000000011006 900000000000451002 +3425850021 20100131 0 900000000000207008 432136006 45292006 1 118169006 900000000000011006 900000000000451002 +3425923028 20080731 1 900000000000207008 309183009 413675001 1 370133003 900000000000011006 900000000000451002 +3425923028 20090731 0 900000000000207008 309183009 413675001 1 370133003 900000000000011006 900000000000451002 +3426738029 20080731 1 900000000000207008 122580007 41508009 1 370133003 900000000000011006 900000000000451002 +3426738029 20090131 0 900000000000207008 122580007 41508009 1 370133003 900000000000011006 900000000000451002 +3426738029 20110131 1 900000000000207008 122580007 41508009 1 370133003 900000000000011006 900000000000451002 +3426738029 20110731 0 900000000000207008 122580007 41508009 1 370133003 900000000000011006 900000000000451002 +3426874028 20080731 1 900000000000207008 432981006 430110008 1 118171006 900000000000011006 900000000000451002 +3426874028 20090131 0 900000000000207008 432981006 430110008 1 118171006 900000000000011006 900000000000451002 +3427035026 20080731 1 900000000000207008 258526006 285570007 1 118171006 900000000000011006 900000000000451002 +3427035026 20090131 0 900000000000207008 258526006 285570007 1 118171006 900000000000011006 900000000000451002 +3427259027 20080731 1 900000000000207008 431205006 87644002 1 118169006 900000000000011006 900000000000451002 +3427259027 20090131 0 900000000000207008 431205006 87644002 1 118169006 900000000000011006 900000000000451002 +3427399026 20080731 1 900000000000207008 127472008 413675001 1 370133003 900000000000011006 900000000000451002 +3427399026 20090131 0 900000000000207008 127472008 413675001 1 370133003 900000000000011006 900000000000451002 +3427591027 20080731 1 900000000000207008 309288009 2739003 1 118169006 900000000000011006 900000000000451002 +3427591027 20090131 0 900000000000207008 309288009 2739003 1 118169006 900000000000011006 900000000000451002 +3427687026 20080731 1 900000000000207008 309289001 236897002 1 118171006 900000000000011006 900000000000451002 +3427687026 20090131 0 900000000000207008 309289001 236897002 1 118171006 900000000000011006 900000000000451002 +3427737028 20080731 1 900000000000207008 127471001 122489005 0 118169006 900000000000011006 900000000000451002 +3427737028 20190731 1 900000000000207008 127471001 122489005 1 118169006 900000000000011006 900000000000451002 +3427878021 20080731 1 900000000000207008 399447007 413675001 1 370133003 900000000000011006 900000000000451002 +3427878021 20090131 0 900000000000207008 399447007 413675001 1 370133003 900000000000011006 900000000000451002 +3428353025 20080731 1 900000000000207008 122600000 413675001 1 370133003 900000000000011006 900000000000451002 +3428353025 20090131 0 900000000000207008 122600000 413675001 1 370133003 900000000000011006 900000000000451002 +3428373024 20080731 1 900000000000207008 258517008 285570007 1 118171006 900000000000011006 900000000000451002 +3428373024 20090131 0 900000000000207008 258517008 285570007 1 118171006 900000000000011006 900000000000451002 +3428466026 20080731 1 900000000000207008 399732002 38829003 1 118171006 900000000000011006 900000000000451002 +3428466026 20090731 0 900000000000207008 399732002 38829003 1 118171006 900000000000011006 900000000000451002 +3428545021 20080731 1 900000000000207008 276833005 78014005 1 370133003 900000000000011006 900000000000451002 +3428545021 20090131 0 900000000000207008 276833005 78014005 1 370133003 900000000000011006 900000000000451002 +3428613024 20080731 1 900000000000207008 309057002 76752008 1 118169006 900000000000011006 900000000000451002 +3428613024 20090131 0 900000000000207008 309057002 76752008 1 118169006 900000000000011006 900000000000451002 +3428623026 20080731 1 900000000000207008 127474009 64033007 1 118169006 900000000000011006 900000000000451002 +3428623026 20090131 0 900000000000207008 127474009 64033007 1 118169006 900000000000011006 900000000000451002 +3428864022 20080731 1 900000000000207008 431405008 15497006 1 118169006 900000000000011006 900000000000451002 +3428864022 20090131 0 900000000000207008 431405008 15497006 1 118169006 900000000000011006 900000000000451002 +3428864022 20090731 1 900000000000207008 431405008 15497006 1 118169006 900000000000011006 900000000000451002 +3428864022 20100131 0 900000000000207008 431405008 15497006 1 118169006 900000000000011006 900000000000451002 +3428901028 20080731 1 900000000000207008 122733002 302338000 1 118171006 900000000000011006 900000000000451002 +3428901028 20090131 0 900000000000207008 122733002 302338000 1 118171006 900000000000011006 900000000000451002 +3429175026 20080731 1 900000000000207008 309176002 955009 1 118169006 900000000000011006 900000000000451002 +3429175026 20090131 0 900000000000207008 309176002 955009 1 118169006 900000000000011006 900000000000451002 +3429786021 20080731 1 900000000000207008 434140003 430105009 1 118171006 900000000000011006 900000000000451002 +3429786021 20090131 0 900000000000207008 434140003 430105009 1 118171006 900000000000011006 900000000000451002 +3429972029 20080731 1 900000000000207008 258580003 420135007 0 370133003 900000000000011006 900000000000451002 +3429972029 20190731 1 900000000000207008 258580003 420135007 1 370133003 900000000000011006 900000000000451002 +3430312025 20080731 1 900000000000207008 309169007 31232000 1 118171006 900000000000011006 900000000000451002 +3430312025 20090131 0 900000000000207008 309169007 31232000 1 118171006 900000000000011006 900000000000451002 +3430351024 20080731 1 900000000000207008 433854001 76311002 1 118171006 900000000000011006 900000000000451002 +3430351024 20090131 0 900000000000207008 433854001 76311002 1 118171006 900000000000011006 900000000000451002 +3431124021 20080731 1 900000000000207008 258414004 413675001 1 370133003 900000000000011006 900000000000451002 +3431124021 20090131 0 900000000000207008 258414004 413675001 1 370133003 900000000000011006 900000000000451002 +3431578026 20080731 1 900000000000207008 258411007 410579004 1 370133003 900000000000011006 900000000000451002 +3431578026 20090131 0 900000000000207008 258411007 410579004 1 370133003 900000000000011006 900000000000451002 +3431578026 20110131 1 900000000000207008 258411007 410579004 1 370133003 900000000000011006 900000000000451002 +3431578026 20110731 0 900000000000207008 258411007 410579004 1 370133003 900000000000011006 900000000000451002 +3431725028 20080731 1 900000000000207008 309068002 49755003 1 118168003 900000000000011006 900000000000451002 +3431725028 20090131 0 900000000000207008 309068002 49755003 1 118168003 900000000000011006 900000000000451002 +3431911020 20080731 1 900000000000207008 122648004 413675001 1 370133003 900000000000011006 900000000000451002 +3431911020 20090131 0 900000000000207008 122648004 413675001 1 370133003 900000000000011006 900000000000451002 +3432040023 20080731 1 900000000000207008 258407001 44132006 1 118168003 900000000000011006 900000000000451002 +3432040023 20090131 0 900000000000207008 258407001 44132006 1 118168003 900000000000011006 900000000000451002 +3432406027 20080731 1 900000000000207008 309059004 413675001 1 370133003 900000000000011006 900000000000451002 +3432406027 20090131 0 900000000000207008 309059004 413675001 1 370133003 900000000000011006 900000000000451002 +3432551025 20080731 1 900000000000207008 122880004 431938005 1 118169006 900000000000011006 900000000000451002 +3432551025 20090131 0 900000000000207008 122880004 431938005 1 118169006 900000000000011006 900000000000451002 +3432644029 20080731 1 900000000000207008 309173005 243685008 1 118171006 900000000000011006 900000000000451002 +3432644029 20090131 0 900000000000207008 309173005 243685008 1 118171006 900000000000011006 900000000000451002 +3432652026 20080731 1 900000000000207008 122597001 69031006 1 118171006 900000000000011006 900000000000451002 +3432652026 20090131 0 900000000000207008 122597001 69031006 1 118171006 900000000000011006 900000000000451002 +3432843021 20080731 1 900000000000207008 432865002 12552005 1 118171006 900000000000011006 900000000000451002 +3432843021 20090131 0 900000000000207008 432865002 12552005 1 118171006 900000000000011006 900000000000451002 +3432844026 20080731 1 900000000000207008 432865002 4596009 1 118169006 900000000000011006 900000000000451002 +3432844026 20090131 0 900000000000207008 432865002 4596009 1 118169006 900000000000011006 900000000000451002 +3432901026 20080731 1 900000000000207008 122713001 413675001 1 370133003 900000000000011006 900000000000451002 +3432901026 20090131 0 900000000000207008 122713001 413675001 1 370133003 900000000000011006 900000000000451002 +3432957024 20080731 1 900000000000207008 122581006 105470007 1 118170007 900000000000011006 900000000000451002 +3432957024 20090131 0 900000000000207008 122581006 105470007 1 118170007 900000000000011006 900000000000451002 +3432957024 20090731 1 900000000000207008 122581006 105470007 1 118170007 900000000000011006 900000000000451002 +3432957024 20100131 0 900000000000207008 122581006 105470007 1 118170007 900000000000011006 900000000000451002 +3432957024 20110131 1 900000000000207008 122581006 105470007 1 118170007 900000000000011006 900000000000451002 +3432957024 20110731 0 900000000000207008 122581006 105470007 1 118170007 900000000000011006 900000000000451002 +3433085025 20080731 1 900000000000207008 397456005 26058004 1 118171006 900000000000011006 900000000000451002 +3433085025 20090131 0 900000000000207008 397456005 26058004 1 118171006 900000000000011006 900000000000451002 +3433172025 20080731 1 900000000000207008 122668005 413675001 1 370133003 900000000000011006 900000000000451002 +3433172025 20090731 0 900000000000207008 122668005 413675001 1 370133003 900000000000011006 900000000000451002 +3433249021 20080731 1 900000000000207008 256889002 64778000 1 370133003 900000000000011006 900000000000451002 +3433249021 20090131 0 900000000000207008 256889002 64778000 1 370133003 900000000000011006 900000000000451002 +3433298028 20080731 1 900000000000207008 373193000 59441001 1 118169006 900000000000011006 900000000000451002 +3433298028 20090131 0 900000000000207008 373193000 59441001 1 118169006 900000000000011006 900000000000451002 +3433298028 20100731 1 900000000000207008 373193000 59441001 1 118169006 900000000000011006 900000000000451002 +3433298028 20110131 0 900000000000207008 373193000 59441001 1 118169006 900000000000011006 900000000000451002 +3433538025 20080731 1 900000000000207008 397111007 25473003 1 118171006 900000000000011006 900000000000451002 +3433538025 20090131 0 900000000000207008 397111007 25473003 1 118171006 900000000000011006 900000000000451002 +3433628027 20080731 1 900000000000207008 258572005 182750009 1 118171006 900000000000011006 900000000000451002 +3433628027 20090131 0 900000000000207008 258572005 182750009 1 118171006 900000000000011006 900000000000451002 +3433925026 20080731 1 900000000000207008 309280002 12125008 1 118171006 900000000000011006 900000000000451002 +3433925026 20090131 0 900000000000207008 309280002 12125008 1 118171006 900000000000011006 900000000000451002 +3434012028 20080731 1 900000000000207008 432985002 21974007 1 118169006 900000000000011006 900000000000451002 +3434012028 20090131 0 900000000000207008 432985002 21974007 1 118169006 900000000000011006 900000000000451002 +3434012028 20090731 1 900000000000207008 432985002 21974007 1 118169006 900000000000011006 900000000000451002 +3434012028 20100131 0 900000000000207008 432985002 21974007 1 118169006 900000000000011006 900000000000451002 +3434160028 20080731 1 900000000000207008 433323009 82849001 0 118169006 900000000000011006 900000000000451002 +3434160028 20190731 1 900000000000207008 433323009 82849001 1 118169006 900000000000011006 900000000000451002 +3434597027 20080731 1 900000000000207008 309175003 413675001 1 370133003 900000000000011006 900000000000451002 +3434597027 20090731 0 900000000000207008 309175003 413675001 1 370133003 900000000000011006 900000000000451002 +3434850024 20080731 1 900000000000207008 258516004 285570007 1 118171006 900000000000011006 900000000000451002 +3434850024 20090131 0 900000000000207008 258516004 285570007 1 118171006 900000000000011006 900000000000451002 +3434850024 20110731 1 900000000000207008 258516004 285570007 1 118171006 900000000000011006 900000000000451002 +3434902021 20080731 1 900000000000207008 309172000 116025006 1 118171006 900000000000011006 900000000000451002 +3434902021 20090131 0 900000000000207008 309172000 116025006 1 118171006 900000000000011006 900000000000451002 +3434953022 20080731 1 900000000000207008 122627001 413675001 1 370133003 900000000000011006 900000000000451002 +3434953022 20090131 0 900000000000207008 122627001 413675001 1 370133003 900000000000011006 900000000000451002 +3434958029 20080731 1 900000000000207008 309061008 387736007 1 118171006 900000000000011006 900000000000451002 +3434958029 20090131 0 900000000000207008 309061008 387736007 1 118171006 900000000000011006 900000000000451002 +3434958029 20110731 1 900000000000207008 309061008 387736007 1 118171006 900000000000011006 900000000000451002 +3435251023 20080731 1 900000000000207008 258574006 78014005 1 370133003 900000000000011006 900000000000451002 +3435251023 20090131 0 900000000000207008 258574006 78014005 1 370133003 900000000000011006 900000000000451002 +3435381029 20080731 1 900000000000207008 258515000 44981009 1 118169006 900000000000011006 900000000000451002 +3435381029 20090131 0 900000000000207008 258515000 44981009 1 118169006 900000000000011006 900000000000451002 +3435390020 20080731 1 900000000000207008 258571003 420051002 1 370133003 900000000000011006 900000000000451002 +3435390020 20090131 0 900000000000207008 258571003 420051002 1 370133003 900000000000011006 900000000000451002 +3435628025 20080731 1 900000000000207008 432144006 72410000 1 118169006 900000000000011006 900000000000451002 +3435628025 20090131 0 900000000000207008 432144006 72410000 1 118169006 900000000000011006 900000000000451002 +3435892021 20080731 1 900000000000207008 258514001 285570007 1 118171006 900000000000011006 900000000000451002 +3435892021 20090131 0 900000000000207008 258514001 285570007 1 118171006 900000000000011006 900000000000451002 +3436082024 20080731 1 900000000000207008 397455009 397384004 1 118169006 900000000000011006 900000000000451002 +3436082024 20090131 0 900000000000207008 397455009 397384004 1 118169006 900000000000011006 900000000000451002 +3436647022 20080731 1 900000000000207008 122649007 413675001 1 370133003 900000000000011006 900000000000451002 +3436647022 20090131 0 900000000000207008 122649007 413675001 1 370133003 900000000000011006 900000000000451002 +3436745024 20080731 1 900000000000207008 399484009 275006003 1 118171006 900000000000011006 900000000000451002 +3436745024 20090131 0 900000000000207008 399484009 275006003 1 118171006 900000000000011006 900000000000451002 +3436746020 20080731 1 900000000000207008 399484009 44989006 1 118169006 900000000000011006 900000000000451002 +3436746020 20090131 0 900000000000207008 399484009 44989006 1 118169006 900000000000011006 900000000000451002 +3437072027 20080731 1 900000000000207008 430131006 64739004 0 118169006 900000000000011006 900000000000451002 +3437072027 20190731 1 900000000000207008 430131006 64739004 1 118169006 900000000000011006 900000000000451002 +3437158022 20080731 1 900000000000207008 312494007 367611001 1 118169006 900000000000011006 900000000000451002 +3437158022 20090131 0 900000000000207008 312494007 367611001 1 118169006 900000000000011006 900000000000451002 +3437193026 20080731 1 900000000000207008 258585008 413675001 1 370133003 900000000000011006 900000000000451002 +3437193026 20090731 0 900000000000207008 258585008 413675001 1 370133003 900000000000011006 900000000000451002 +3437562023 20080731 1 900000000000207008 399713008 71252005 1 118169006 900000000000011006 900000000000451002 +3437562023 20090131 0 900000000000207008 399713008 71252005 1 118169006 900000000000011006 900000000000451002 +3437622025 20080731 1 900000000000207008 433115004 48477009 1 118169006 900000000000011006 900000000000451002 +3437622025 20090131 0 900000000000207008 433115004 48477009 1 118169006 900000000000011006 900000000000451002 +3437622025 20090731 1 900000000000207008 433115004 48477009 1 118169006 900000000000011006 900000000000451002 +3437622025 20100131 0 900000000000207008 433115004 48477009 1 118169006 900000000000011006 900000000000451002 +3437687022 20080731 1 900000000000207008 119358005 419397004 0 370133003 900000000000011006 900000000000451002 +3437687022 20090131 0 900000000000207008 119358005 419397004 0 370133003 900000000000011006 900000000000451002 +3437936021 20080731 1 900000000000207008 432099000 89837001 1 118169006 900000000000011006 900000000000451002 +3437936021 20090131 0 900000000000207008 432099000 89837001 1 118169006 900000000000011006 900000000000451002 +3437936021 20090731 1 900000000000207008 432099000 89837001 1 118169006 900000000000011006 900000000000451002 +3437936021 20100131 0 900000000000207008 432099000 89837001 1 118169006 900000000000011006 900000000000451002 +3438108029 20080731 1 900000000000207008 309180007 71836000 1 118169006 900000000000011006 900000000000451002 +3438108029 20090131 0 900000000000207008 309180007 71836000 1 118169006 900000000000011006 900000000000451002 +3438144023 20080731 1 900000000000207008 119328004 226789007 1 370133003 900000000000011006 900000000000451002 +3438144023 20090131 0 900000000000207008 119328004 226789007 1 370133003 900000000000011006 900000000000451002 +3440922026 20080731 1 900000000000207008 258411007 225711009 1 118171006 900000000000011006 900000000000451002 +3440922026 20090131 0 900000000000207008 258411007 225711009 1 118171006 900000000000011006 900000000000451002 +3440922026 20110131 1 900000000000207008 258411007 225711009 1 118171006 900000000000011006 900000000000451002 +3440922026 20110731 0 900000000000207008 258411007 225711009 1 118171006 900000000000011006 900000000000451002 +3440923020 20080731 1 900000000000207008 258430007 34402009 1 118169006 900000000000011006 900000000000451002 +3440923020 20090131 0 900000000000207008 258430007 34402009 1 118169006 900000000000011006 900000000000451002 +3440924025 20080731 1 900000000000207008 258459007 31773000 1 370133003 900000000000011006 900000000000451002 +3440924025 20090131 0 900000000000207008 258459007 31773000 1 370133003 900000000000011006 900000000000451002 +3440925029 20080731 1 900000000000207008 258465007 13561001 1 118169006 900000000000011006 900000000000451002 +3440925029 20090131 0 900000000000207008 258465007 13561001 1 118169006 900000000000011006 900000000000451002 +3440926028 20080731 1 900000000000207008 258479004 85756007 1 118169006 900000000000011006 900000000000451002 +3440926028 20090131 0 900000000000207008 258479004 85756007 1 118169006 900000000000011006 900000000000451002 +3440927021 20080731 1 900000000000207008 258505006 39937001 1 118169006 900000000000011006 900000000000451002 +3440927021 20090131 0 900000000000207008 258505006 39937001 1 118169006 900000000000011006 900000000000451002 +3440928027 20080731 1 900000000000207008 258523003 45292006 1 118169006 900000000000011006 900000000000451002 +3440928027 20090131 0 900000000000207008 258523003 45292006 1 118169006 900000000000011006 900000000000451002 +3440929024 20080731 1 900000000000207008 258559009 110597005 1 118169006 900000000000011006 900000000000451002 +3440929024 20090131 0 900000000000207008 258559009 110597005 1 118169006 900000000000011006 900000000000451002 +3440929024 20090731 1 900000000000207008 258559009 110597005 1 118169006 900000000000011006 900000000000451002 +3440929024 20100131 0 900000000000207008 258559009 110597005 1 118169006 900000000000011006 900000000000451002 +3442114028 20080731 1 900000000000207008 122614000 39607008 1 118169006 900000000000011006 900000000000451002 +3442114028 20090131 0 900000000000207008 122614000 39607008 1 118169006 900000000000011006 900000000000451002 +3442115027 20080731 1 900000000000207008 122689001 116033007 1 118171006 900000000000011006 900000000000451002 +3442115027 20110731 0 900000000000207008 122689001 116033007 1 118171006 900000000000011006 900000000000451002 +3442116026 20080731 1 900000000000207008 122692002 76784001 1 118169006 900000000000011006 900000000000451002 +3442116026 20090131 0 900000000000207008 122692002 76784001 1 118169006 900000000000011006 900000000000451002 +3442118025 20080731 1 900000000000207008 122722000 116028008 1 118171006 900000000000011006 900000000000451002 +3442118025 20090731 0 900000000000207008 122722000 116028008 1 118171006 900000000000011006 900000000000451002 +3442359026 20080731 1 900000000000207008 167871007 6085005 1 370133003 900000000000011006 900000000000451002 +3442359026 20090131 0 900000000000207008 167871007 6085005 1 370133003 900000000000011006 900000000000451002 +3442359026 20110131 1 900000000000207008 167871007 6085005 1 370133003 900000000000011006 900000000000451002 +3442359026 20110731 0 900000000000207008 167871007 6085005 1 370133003 900000000000011006 900000000000451002 +3444149023 20080731 1 900000000000207008 397234009 175907006 1 118171006 900000000000011006 900000000000451002 +3444149023 20090131 0 900000000000207008 397234009 175907006 1 118171006 900000000000011006 900000000000451002 +3444616026 20080731 1 900000000000207008 122690005 31904001 2 118171006 900000000000011006 900000000000451002 +3444616026 20100131 0 900000000000207008 122690005 31904001 2 118171006 900000000000011006 900000000000451002 +3447523027 20080731 1 900000000000207008 396273004 120038005 1 118171006 900000000000011006 900000000000451002 +3447523027 20090131 0 900000000000207008 396273004 120038005 1 118171006 900000000000011006 900000000000451002 +3447531021 20080731 1 900000000000207008 396478005 16777006 1 118169006 900000000000011006 900000000000451002 +3447531021 20090731 0 900000000000207008 396478005 16777006 1 118169006 900000000000011006 900000000000451002 +3447540020 20080731 1 900000000000207008 396898008 9875009 1 118169006 900000000000011006 900000000000451002 +3447540020 20090131 0 900000000000207008 396898008 9875009 1 118169006 900000000000011006 900000000000451002 +3447540020 20100731 1 900000000000207008 396898008 9875009 1 118169006 900000000000011006 900000000000451002 +3447540020 20110131 0 900000000000207008 396898008 9875009 1 118169006 900000000000011006 900000000000451002 +3447541024 20080731 1 900000000000207008 396899000 722009 1 118171006 900000000000011006 900000000000451002 +3447541024 20090131 0 900000000000207008 396899000 722009 1 118171006 900000000000011006 900000000000451002 +3447542028 20080731 1 900000000000207008 396928004 172132001 1 118171006 900000000000011006 900000000000451002 +3447542028 20090131 0 900000000000207008 396928004 172132001 1 118171006 900000000000011006 900000000000451002 +3447542028 20100731 1 900000000000207008 396928004 172132001 1 118171006 900000000000011006 900000000000451002 +3447542028 20110131 0 900000000000207008 396928004 172132001 1 118171006 900000000000011006 900000000000451002 +3447548029 20080731 1 900000000000207008 397130007 86743009 1 118171006 900000000000011006 900000000000451002 +3447548029 20090731 0 900000000000207008 397130007 86743009 1 118171006 900000000000011006 900000000000451002 +3447550021 20080731 1 900000000000207008 397132004 176599002 1 118171006 900000000000011006 900000000000451002 +3447550021 20090731 0 900000000000207008 397132004 176599002 1 118171006 900000000000011006 900000000000451002 +3447551020 20080731 1 900000000000207008 397133009 45292006 1 118169006 900000000000011006 900000000000451002 +3447551020 20090731 0 900000000000207008 397133009 45292006 1 118169006 900000000000011006 900000000000451002 +3447656022 20080731 1 900000000000207008 399407000 87953007 1 118169006 900000000000011006 900000000000451002 +3447656022 20090731 0 900000000000207008 399407000 87953007 1 118169006 900000000000011006 900000000000451002 +3447657029 20080731 1 900000000000207008 399443006 81745001 1 118169006 900000000000011006 900000000000451002 +3447657029 20090731 0 900000000000207008 399443006 81745001 1 118169006 900000000000011006 900000000000451002 +3447660020 20080731 1 900000000000207008 399541005 16014003 1 118169006 900000000000011006 900000000000451002 +3447660020 20090131 0 900000000000207008 399541005 16014003 1 118169006 900000000000011006 900000000000451002 +3447662028 20080731 1 900000000000207008 399619004 74862005 1 118169006 900000000000011006 900000000000451002 +3447662028 20090131 0 900000000000207008 399619004 74862005 1 118169006 900000000000011006 900000000000451002 +3447663022 20080731 1 900000000000207008 399624001 87953007 1 118169006 900000000000011006 900000000000451002 +3447663022 20090131 0 900000000000207008 399624001 87953007 1 118169006 900000000000011006 900000000000451002 +3447664027 20080731 1 900000000000207008 399645008 119282003 1 118169006 900000000000011006 900000000000451002 +3447664027 20090131 0 900000000000207008 399645008 119282003 1 118169006 900000000000011006 900000000000451002 +3448356028 20080731 1 900000000000207008 415563002 414158004 1 118171006 900000000000011006 900000000000451002 +3448356028 20090131 0 900000000000207008 415563002 414158004 1 118171006 900000000000011006 900000000000451002 +3448505022 20080731 1 900000000000207008 418564007 2778004 1 370133003 900000000000011006 900000000000451002 +3448505022 20090131 0 900000000000207008 418564007 2778004 1 370133003 900000000000011006 900000000000451002 +3448620022 20080731 1 900000000000207008 421615004 80146002 1 118171006 900000000000011006 900000000000451002 +3448620022 20090731 0 900000000000207008 421615004 80146002 1 118171006 900000000000011006 900000000000451002 +3449355022 20080731 1 900000000000207008 303248007 87612001 1 370133003 900000000000011006 900000000000451002 +3449355022 20090131 0 900000000000207008 303248007 87612001 1 370133003 900000000000011006 900000000000451002 +3449355022 20090731 1 900000000000207008 303248007 87612001 1 370133003 900000000000011006 900000000000451002 +3449355022 20100131 0 900000000000207008 303248007 87612001 1 370133003 900000000000011006 900000000000451002 +3450325028 20080731 1 900000000000207008 369617007 38102005 1 118171006 900000000000011006 900000000000451002 +3450487023 20080731 1 900000000000207008 309070006 240977001 1 118171006 900000000000011006 900000000000451002 +3450487023 20090131 0 900000000000207008 309070006 240977001 1 118171006 900000000000011006 900000000000451002 +3450488029 20080731 1 900000000000207008 309108002 74795009 1 118171006 900000000000011006 900000000000451002 +3450488029 20090731 0 900000000000207008 309108002 74795009 1 118171006 900000000000011006 900000000000451002 +3450489021 20080731 1 900000000000207008 309113003 427337008 1 118171006 900000000000011006 900000000000451002 +3450489021 20090131 0 900000000000207008 309113003 427337008 1 118171006 900000000000011006 900000000000451002 +3450490028 20080731 1 900000000000207008 309146009 69748006 1 118169006 900000000000011006 900000000000451002 +3450490028 20090131 0 900000000000207008 309146009 69748006 1 118169006 900000000000011006 900000000000451002 +3450491029 20080731 1 900000000000207008 309151003 87451000 1 118171006 900000000000011006 900000000000451002 +3450491029 20090131 0 900000000000207008 309151003 87451000 1 118171006 900000000000011006 900000000000451002 +3450492020 20080731 1 900000000000207008 309167009 25342003 1 118169006 900000000000011006 900000000000451002 +3450492020 20090131 0 900000000000207008 309167009 25342003 1 118169006 900000000000011006 900000000000451002 +3450493026 20080731 1 900000000000207008 309200000 34402009 1 118169006 900000000000011006 900000000000451002 +3450493026 20090131 0 900000000000207008 309200000 34402009 1 118169006 900000000000011006 900000000000451002 +3450493026 20110731 1 900000000000207008 309200000 34402009 1 118169006 900000000000011006 900000000000451002 +3450494021 20080731 1 900000000000207008 309202008 122865005 1 118169006 900000000000011006 900000000000451002 +3450494021 20090131 0 900000000000207008 309202008 122865005 1 118169006 900000000000011006 900000000000451002 +3450495022 20080731 1 900000000000207008 309209004 32218000 1 118171006 900000000000011006 900000000000451002 +3450495022 20090131 0 900000000000207008 309209004 32218000 1 118171006 900000000000011006 900000000000451002 +3450496023 20080731 1 900000000000207008 309220004 30315005 1 118169006 900000000000011006 900000000000451002 +3450496023 20090731 0 900000000000207008 309220004 30315005 1 118169006 900000000000011006 900000000000451002 +3450497025 20080731 1 900000000000207008 309226005 71854001 1 118169006 900000000000011006 900000000000451002 +3450497025 20090131 0 900000000000207008 309226005 71854001 1 118169006 900000000000011006 900000000000451002 +3450499027 20080731 1 900000000000207008 309269002 7246002 1 118171006 900000000000011006 900000000000451002 +3450499027 20090131 0 900000000000207008 309269002 7246002 1 118171006 900000000000011006 900000000000451002 +3450500020 20080731 1 900000000000207008 309283000 50796003 1 118171006 900000000000011006 900000000000451002 +3450500020 20090131 0 900000000000207008 309283000 50796003 1 118171006 900000000000011006 900000000000451002 +3450501024 20080731 1 900000000000207008 309288009 41329004 1 118168003 900000000000011006 900000000000451002 +3450501024 20090131 0 900000000000207008 309288009 41329004 1 118168003 900000000000011006 900000000000451002 +3450502028 20080731 1 900000000000207008 309291009 15497006 1 118169006 900000000000011006 900000000000451002 +3450502028 20090131 0 900000000000207008 309291009 15497006 1 118169006 900000000000011006 900000000000451002 +3450510027 20080731 1 900000000000207008 309483002 11570006 1 118171006 900000000000011006 900000000000451002 +3450510027 20090131 0 900000000000207008 309483002 11570006 1 118171006 900000000000011006 900000000000451002 +3450511028 20080731 1 900000000000207008 309485009 112881004 1 118171006 900000000000011006 900000000000451002 +3450511028 20090131 0 900000000000207008 309485009 112881004 1 118171006 900000000000011006 900000000000451002 +3450513025 20080731 1 900000000000207008 309493009 48508003 1 118171006 900000000000011006 900000000000451002 +3450513025 20090131 0 900000000000207008 309493009 48508003 1 118171006 900000000000011006 900000000000451002 +3450513025 20100131 1 900000000000207008 309493009 48508003 1 118171006 900000000000011006 900000000000451002 +3450513025 20100731 0 900000000000207008 309493009 48508003 1 118171006 900000000000011006 900000000000451002 +3450513025 20110731 1 900000000000207008 309493009 48508003 1 118171006 900000000000011006 900000000000451002 +3450514020 20080731 1 900000000000207008 309498000 81516001 1 118171006 900000000000011006 900000000000451002 +3450514020 20090131 0 900000000000207008 309498000 81516001 1 118171006 900000000000011006 900000000000451002 +3450515021 20080731 1 900000000000207008 309507001 178263003 1 118171006 900000000000011006 900000000000451002 +3450515021 20090131 0 900000000000207008 309507001 178263003 1 118171006 900000000000011006 900000000000451002 +3450516022 20080731 1 900000000000207008 309508006 49755003 1 118168003 900000000000011006 900000000000451002 +3450516022 20090131 0 900000000000207008 309508006 49755003 1 118168003 900000000000011006 900000000000451002 +3451136024 20080731 1 900000000000207008 384747005 39607008 1 118169006 900000000000011006 900000000000451002 +3451136024 20090131 0 900000000000207008 384747005 39607008 1 118169006 900000000000011006 900000000000451002 +3451806028 20080731 1 900000000000207008 122664007 15776009 1 118169006 900000000000011006 900000000000451002 +3451806028 20090131 0 900000000000207008 122664007 15776009 1 118169006 900000000000011006 900000000000451002 +3451915023 20080731 1 900000000000207008 309150002 111002 1 118169006 900000000000011006 900000000000451002 +3451915023 20090131 0 900000000000207008 309150002 111002 1 118169006 900000000000011006 900000000000451002 +3452136022 20080731 1 900000000000207008 122643008 14742008 1 118169006 900000000000011006 900000000000451002 +3452136022 20090131 0 900000000000207008 122643008 14742008 1 118169006 900000000000011006 900000000000451002 +3452279026 20080731 1 900000000000207008 127466008 122865005 1 118169006 900000000000011006 900000000000451002 +3452279026 20090131 0 900000000000207008 127466008 122865005 1 118169006 900000000000011006 900000000000451002 +3452317020 20080731 1 900000000000207008 258458004 118622000 1 118168003 900000000000011006 900000000000451002 +3452317020 20090131 0 900000000000207008 258458004 118622000 1 118168003 900000000000011006 900000000000451002 +3452344026 20080731 1 900000000000207008 309485009 88481005 1 118169006 900000000000011006 900000000000451002 +3452344026 20090131 0 900000000000207008 309485009 88481005 1 118169006 900000000000011006 900000000000451002 +3452377027 20080731 1 900000000000207008 122694001 76784001 1 118169006 900000000000011006 900000000000451002 +3452377027 20090131 0 900000000000207008 122694001 76784001 1 118169006 900000000000011006 900000000000451002 +3452441022 20080731 1 900000000000207008 258432004 51280008 1 370133003 900000000000011006 900000000000451002 +3452441022 20090131 0 900000000000207008 258432004 51280008 1 370133003 900000000000011006 900000000000451002 +3452617027 20080731 1 900000000000207008 303247002 23451007 1 118169006 900000000000011006 900000000000451002 +3452617027 20090731 0 900000000000207008 303247002 23451007 1 118169006 900000000000011006 900000000000451002 +3452733021 20080731 1 900000000000207008 309263001 34402009 1 118169006 900000000000011006 900000000000451002 +3452733021 20090131 0 900000000000207008 309263001 34402009 1 118169006 900000000000011006 900000000000451002 +3452843029 20080731 1 900000000000207008 122714007 302376006 1 118171006 900000000000011006 900000000000451002 +3452843029 20090131 0 900000000000207008 122714007 302376006 1 118171006 900000000000011006 900000000000451002 +3453174021 20080731 1 900000000000207008 309153000 111002 1 118169006 900000000000011006 900000000000451002 +3453174021 20090731 0 900000000000207008 309153000 111002 1 118169006 900000000000011006 900000000000451002 +3453332022 20080731 1 900000000000207008 309206006 15776009 1 118169006 900000000000011006 900000000000451002 +3453332022 20090131 0 900000000000207008 309206006 15776009 1 118169006 900000000000011006 900000000000451002 +3453446023 20080731 1 900000000000207008 119307008 26412008 1 118170007 900000000000011006 900000000000451002 +3453446023 20090131 0 900000000000207008 119307008 26412008 1 118170007 900000000000011006 900000000000451002 +3453658028 20080731 1 900000000000207008 258482009 82515000 1 118168003 900000000000011006 900000000000451002 +3453658028 20090131 0 900000000000207008 258482009 82515000 1 118168003 900000000000011006 900000000000451002 +3453675023 20080731 1 900000000000207008 122569007 10410005 1 118169006 900000000000011006 900000000000451002 +3453675023 20090131 0 900000000000207008 122569007 10410005 1 118169006 900000000000011006 900000000000451002 +3454142022 20080731 1 900000000000207008 309211008 79121003 1 118171006 900000000000011006 900000000000451002 +3454142022 20090131 0 900000000000207008 309211008 79121003 1 118171006 900000000000011006 900000000000451002 +3454360028 20080731 1 900000000000207008 122675006 116033007 1 118171006 900000000000011006 900000000000451002 +3454360028 20090131 0 900000000000207008 122675006 116033007 1 118171006 900000000000011006 900000000000451002 +3454574020 20080731 1 900000000000207008 258503004 39937001 1 118169006 900000000000011006 900000000000451002 +3454574020 20090131 0 900000000000207008 258503004 39937001 1 118169006 900000000000011006 900000000000451002 +3454841028 20080731 1 900000000000207008 258507003 386144009 1 118168003 900000000000011006 900000000000451002 +3454841028 20090131 0 900000000000207008 258507003 386144009 1 118168003 900000000000011006 900000000000451002 +3455221022 20080731 1 900000000000207008 309206006 32774009 1 118171006 900000000000011006 900000000000451002 +3455221022 20090131 0 900000000000207008 309206006 32774009 1 118171006 900000000000011006 900000000000451002 +3455327023 20080731 1 900000000000207008 258585008 14016003 1 118169006 900000000000011006 900000000000451002 +3455327023 20090731 0 900000000000207008 258585008 14016003 1 118169006 900000000000011006 900000000000451002 +3455373020 20080731 1 900000000000207008 396806000 15776009 1 118169006 900000000000011006 900000000000451002 +3455373020 20090131 0 900000000000207008 396806000 15776009 1 118169006 900000000000011006 900000000000451002 +3455549027 20080731 1 900000000000207008 127478007 69748006 1 118169006 900000000000011006 900000000000451002 +3455549027 20090131 0 900000000000207008 127478007 69748006 1 118169006 900000000000011006 900000000000451002 +3455611022 20080731 1 900000000000207008 369611008 119286000 1 118171006 900000000000011006 900000000000451002 +3455611022 20090131 0 900000000000207008 369611008 119286000 1 118171006 900000000000011006 900000000000451002 +3455759029 20080731 1 900000000000207008 119307008 410579004 1 370133003 900000000000011006 900000000000451002 +3455759029 20090131 0 900000000000207008 119307008 410579004 1 370133003 900000000000011006 900000000000451002 +3455951023 20080731 1 900000000000207008 122660003 67109009 1 118169006 900000000000011006 900000000000451002 +3455951023 20090131 0 900000000000207008 122660003 67109009 1 118169006 900000000000011006 900000000000451002 +3456097028 20080731 1 900000000000207008 258456000 66696003 1 118168003 900000000000011006 900000000000451002 +3456097028 20090131 0 900000000000207008 258456000 66696003 1 118168003 900000000000011006 900000000000451002 +3456198024 20080731 1 900000000000207008 122715008 176914002 1 118171006 900000000000011006 900000000000451002 +3456198024 20090131 0 900000000000207008 122715008 176914002 1 118171006 900000000000011006 900000000000451002 +3456395027 20080731 1 900000000000207008 122686008 89837001 1 118169006 900000000000011006 900000000000451002 +3456395027 20090131 0 900000000000207008 122686008 89837001 1 118169006 900000000000011006 900000000000451002 +3456517024 20080731 1 900000000000207008 399732002 21483005 1 118169006 900000000000011006 900000000000451002 +3456517024 20090731 0 900000000000207008 399732002 21483005 1 118169006 900000000000011006 900000000000451002 +3456564024 20080731 1 900000000000207008 127480001 35039007 1 118169006 900000000000011006 900000000000451002 +3456564024 20090131 0 900000000000207008 127480001 35039007 1 118169006 900000000000011006 900000000000451002 +3456576024 20080731 1 900000000000207008 309061008 76752008 1 118169006 900000000000011006 900000000000451002 +3456576024 20090131 0 900000000000207008 309061008 76752008 1 118169006 900000000000011006 900000000000451002 +3456576024 20110731 1 900000000000207008 309061008 76752008 1 118169006 900000000000011006 900000000000451002 +3456657027 20080731 1 900000000000207008 369611008 30315005 1 118169006 900000000000011006 900000000000451002 +3456657027 20090131 0 900000000000207008 369611008 30315005 1 118169006 900000000000011006 900000000000451002 +3456955021 20080731 1 900000000000207008 397221008 7246002 1 118171006 900000000000011006 900000000000451002 +3456955021 20090131 0 900000000000207008 397221008 7246002 1 118171006 900000000000011006 900000000000451002 +3456964027 20080731 1 900000000000207008 122610009 39607008 1 118169006 900000000000011006 900000000000451002 +3456964027 20090131 0 900000000000207008 122610009 39607008 1 118169006 900000000000011006 900000000000451002 +3457253028 20080731 1 900000000000207008 122676007 9846003 1 118169006 900000000000011006 900000000000451002 +3457253028 20090131 0 900000000000207008 122676007 9846003 1 118169006 900000000000011006 900000000000451002 +3457449028 20080731 1 900000000000207008 119343002 17387004 1 370133003 900000000000011006 900000000000451002 +3457449028 20090131 0 900000000000207008 119343002 17387004 1 370133003 900000000000011006 900000000000451002 +3457876022 20080731 1 900000000000207008 122701006 71252005 1 118169006 900000000000011006 900000000000451002 +3457876022 20090131 0 900000000000207008 122701006 71252005 1 118169006 900000000000011006 900000000000451002 +3457876022 20100131 1 900000000000207008 122701006 71252005 1 118169006 900000000000011006 900000000000451002 +3457876022 20100731 0 900000000000207008 122701006 71252005 1 118169006 900000000000011006 900000000000451002 +3457876022 20110731 1 900000000000207008 122701006 71252005 1 118169006 900000000000011006 900000000000451002 +3457880028 20080731 1 900000000000207008 397455009 274314005 1 118171006 900000000000011006 900000000000451002 +3457880028 20090131 0 900000000000207008 397455009 274314005 1 118171006 900000000000011006 900000000000451002 +3458204025 20080731 1 900000000000207008 396805001 15776009 1 118169006 900000000000011006 900000000000451002 +3458204025 20090131 0 900000000000207008 396805001 15776009 1 118169006 900000000000011006 900000000000451002 +3458231027 20080731 1 900000000000207008 396804002 116242006 1 118171006 900000000000011006 900000000000451002 +3458231027 20090131 0 900000000000207008 396804002 116242006 1 118171006 900000000000011006 900000000000451002 +3458284028 20080731 1 900000000000207008 122722000 2033006 1 118169006 900000000000011006 900000000000451002 +3458284028 20090731 0 900000000000207008 122722000 2033006 1 118169006 900000000000011006 900000000000451002 +3458546024 20080731 1 900000000000207008 396806000 116241004 1 118171006 900000000000011006 900000000000451002 +3458546024 20090131 0 900000000000207008 396806000 116241004 1 118171006 900000000000011006 900000000000451002 +3458788029 20080731 1 900000000000207008 309188000 304502009 1 118171006 900000000000011006 900000000000451002 +3458788029 20090131 0 900000000000207008 309188000 304502009 1 118171006 900000000000011006 900000000000451002 +3458922020 20080731 1 900000000000207008 309277003 217136007 1 118171006 900000000000011006 900000000000451002 +3458922020 20090131 0 900000000000207008 309277003 217136007 1 118171006 900000000000011006 900000000000451002 +3459058021 20080731 1 900000000000207008 418932006 418622002 1 118171006 900000000000011006 900000000000451002 +3459058021 20090131 0 900000000000207008 418932006 418622002 1 118171006 900000000000011006 900000000000451002 +3459742029 20080731 1 900000000000207008 397136001 234252001 1 118171006 900000000000011006 900000000000451002 +3459742029 20090131 0 900000000000207008 397136001 234252001 1 118171006 900000000000011006 900000000000451002 +3460547029 20080731 1 900000000000207008 122739003 76752008 1 118169006 900000000000011006 900000000000451002 +3460547029 20090131 0 900000000000207008 122739003 76752008 1 118169006 900000000000011006 900000000000451002 +3460734021 20080731 1 900000000000207008 309291009 367643001 1 118168003 900000000000011006 900000000000451002 +3460734021 20090131 0 900000000000207008 309291009 367643001 1 118168003 900000000000011006 900000000000451002 +3460948026 20080731 1 900000000000207008 128160006 29445007 1 118169006 900000000000011006 900000000000451002 +3460948026 20090131 0 900000000000207008 128160006 29445007 1 118169006 900000000000011006 900000000000451002 +3461203028 20080731 1 900000000000207008 122623002 80891009 1 118169006 900000000000011006 900000000000451002 +3461203028 20090131 0 900000000000207008 122623002 80891009 1 118169006 900000000000011006 900000000000451002 +3461398026 20080731 1 900000000000207008 122715008 20837000 1 118169006 900000000000011006 900000000000451002 +3461398026 20090131 0 900000000000207008 122715008 20837000 1 118169006 900000000000011006 900000000000451002 +3461538025 20080731 1 900000000000207008 122635003 49209004 1 118171006 900000000000011006 900000000000451002 +3461538025 20090131 0 900000000000207008 122635003 49209004 1 118171006 900000000000011006 900000000000451002 +3461731022 20080731 1 900000000000207008 122714007 20837000 1 118169006 900000000000011006 900000000000451002 +3461731022 20090131 0 900000000000207008 122714007 20837000 1 118169006 900000000000011006 900000000000451002 +3461911027 20080731 1 900000000000207008 122716009 302377002 1 118171006 900000000000011006 900000000000451002 +3461911027 20090131 0 900000000000207008 122716009 302377002 1 118171006 900000000000011006 900000000000451002 +3462074025 20080731 1 900000000000207008 128174004 13648007 1 118169006 900000000000011006 900000000000451002 +3462074025 20090131 0 900000000000207008 128174004 13648007 1 118169006 900000000000011006 900000000000451002 +3462837028 20080731 1 900000000000207008 309131002 25169009 1 118168003 900000000000011006 900000000000451002 +3462837028 20090131 0 900000000000207008 309131002 25169009 1 118168003 900000000000011006 900000000000451002 +3462964026 20080731 1 900000000000207008 168137004 14766002 1 118171006 900000000000011006 900000000000451002 +3462964026 20090131 0 900000000000207008 168137004 14766002 1 118171006 900000000000011006 900000000000451002 +3463192026 20080731 1 900000000000207008 396481000 10200004 1 118169006 900000000000011006 900000000000451002 +3463192026 20090131 0 900000000000207008 396481000 10200004 1 118169006 900000000000011006 900000000000451002 +3463451025 20080731 1 900000000000207008 309277003 13648007 1 118169006 900000000000011006 900000000000451002 +3463451025 20090131 0 900000000000207008 309277003 13648007 1 118169006 900000000000011006 900000000000451002 +3463619024 20080731 1 900000000000207008 122707005 2739003 1 118169006 900000000000011006 900000000000451002 +3463619024 20090131 0 900000000000207008 122707005 2739003 1 118169006 900000000000011006 900000000000451002 +3463770020 20080731 1 900000000000207008 168141000 279549004 1 118169006 900000000000011006 900000000000451002 +3463770020 20090131 0 900000000000207008 168141000 279549004 1 118169006 900000000000011006 900000000000451002 +3463796022 20080731 1 900000000000207008 397077004 70871006 1 118171006 900000000000011006 900000000000451002 +3463796022 20090731 0 900000000000207008 397077004 70871006 1 118171006 900000000000011006 900000000000451002 +3464059028 20080731 1 900000000000207008 397436009 59441001 1 118169006 900000000000011006 900000000000451002 +3464059028 20090731 0 900000000000207008 397436009 59441001 1 118169006 900000000000011006 900000000000451002 +3464214029 20080731 1 900000000000207008 384746001 39607008 1 118169006 900000000000011006 900000000000451002 +3464214029 20090731 0 900000000000207008 384746001 39607008 1 118169006 900000000000011006 900000000000451002 +3464340022 20080731 1 900000000000207008 122602008 122547000 1 118171006 900000000000011006 900000000000451002 +3464340022 20090131 0 900000000000207008 122602008 122547000 1 118171006 900000000000011006 900000000000451002 +3464343024 20080731 1 900000000000207008 127468009 67109009 1 118169006 900000000000011006 900000000000451002 +3464343024 20090131 0 900000000000207008 127468009 67109009 1 118169006 900000000000011006 900000000000451002 +3464446026 20080731 1 900000000000207008 122687004 89837001 1 118169006 900000000000011006 900000000000451002 +3464446026 20090131 0 900000000000207008 122687004 89837001 1 118169006 900000000000011006 900000000000451002 +3464528023 20080731 1 900000000000207008 122571007 76848001 1 118169006 900000000000011006 900000000000451002 +3464528023 20090131 0 900000000000207008 122571007 76848001 1 118169006 900000000000011006 900000000000451002 +3464907021 20080731 1 900000000000207008 309270001 64033007 1 118169006 900000000000011006 900000000000451002 +3464907021 20090731 0 900000000000207008 309270001 64033007 1 118169006 900000000000011006 900000000000451002 +3464998020 20080731 1 900000000000207008 122691009 76784001 1 118169006 900000000000011006 900000000000451002 +3464998020 20090131 0 900000000000207008 122691009 76784001 1 118169006 900000000000011006 900000000000451002 +3465027029 20080731 1 900000000000207008 122572000 1985008 1 370133003 900000000000011006 900000000000451002 +3465027029 20090131 0 900000000000207008 122572000 1985008 1 370133003 900000000000011006 900000000000451002 +3465239026 20080731 1 900000000000207008 309058007 303689004 1 118171006 900000000000011006 900000000000451002 +3465239026 20090131 0 900000000000207008 309058007 303689004 1 118171006 900000000000011006 900000000000451002 +3465248020 20080731 1 900000000000207008 258576008 78014005 1 370133003 900000000000011006 900000000000451002 +3465248020 20090131 0 900000000000207008 258576008 78014005 1 370133003 900000000000011006 900000000000451002 +3465248020 20100131 1 900000000000207008 258576008 78014005 1 370133003 900000000000011006 900000000000451002 +3465248020 20100731 0 900000000000207008 258576008 78014005 1 370133003 900000000000011006 900000000000451002 +3465313026 20080731 1 900000000000207008 399661005 54268001 1 118169006 900000000000011006 900000000000451002 +3465313026 20090131 0 900000000000207008 399661005 54268001 1 118169006 900000000000011006 900000000000451002 +3465448023 20080731 1 900000000000207008 399657004 25149004 1 118169006 900000000000011006 900000000000451002 +3465448023 20090131 0 900000000000207008 399657004 25149004 1 118169006 900000000000011006 900000000000451002 +3465494021 20080731 1 900000000000207008 276833005 2475000 1 118171006 900000000000011006 900000000000451002 +3465494021 20090131 0 900000000000207008 276833005 2475000 1 118171006 900000000000011006 900000000000451002 +3465714023 20080731 1 900000000000207008 122606006 39607008 1 118169006 900000000000011006 900000000000451002 +3465714023 20090131 0 900000000000207008 122606006 39607008 1 118169006 900000000000011006 900000000000451002 +3465749027 20080731 1 900000000000207008 258489000 386147002 1 118171006 900000000000011006 900000000000451002 +3465749027 20090131 0 900000000000207008 258489000 386147002 1 118171006 900000000000011006 900000000000451002 +3465781020 20080731 1 900000000000207008 167872000 6085005 1 370133003 900000000000011006 900000000000451002 +3465781020 20090131 0 900000000000207008 167872000 6085005 1 370133003 900000000000011006 900000000000451002 +3466049026 20080731 1 900000000000207008 122572000 122865005 1 118169006 900000000000011006 900000000000451002 +3466049026 20090131 0 900000000000207008 122572000 122865005 1 118169006 900000000000011006 900000000000451002 +3466101023 20080731 1 900000000000207008 168139001 409614007 1 370133003 900000000000011006 900000000000451002 +3466101023 20090131 0 900000000000207008 168139001 409614007 1 370133003 900000000000011006 900000000000451002 +3466101023 20100131 1 900000000000207008 168139001 409614007 1 370133003 900000000000011006 900000000000451002 +3466101023 20100731 0 900000000000207008 168139001 409614007 1 370133003 900000000000011006 900000000000451002 +3466135021 20080731 1 900000000000207008 122657005 116240003 1 118171006 900000000000011006 900000000000451002 +3466135021 20090131 0 900000000000207008 122657005 116240003 1 118171006 900000000000011006 900000000000451002 +3466250022 20080731 1 900000000000207008 258553005 38848004 1 118169006 900000000000011006 900000000000451002 +3466250022 20090131 0 900000000000207008 258553005 38848004 1 118169006 900000000000011006 900000000000451002 +3466282020 20080731 1 900000000000207008 309187005 38199008 1 118169006 900000000000011006 900000000000451002 +3466282020 20090131 0 900000000000207008 309187005 38199008 1 118169006 900000000000011006 900000000000451002 +3466282020 20110731 1 900000000000207008 309187005 38199008 1 118169006 900000000000011006 900000000000451002 +3466334028 20080731 1 900000000000207008 119342007 256897009 1 370133003 900000000000011006 900000000000451002 +3466334028 20090131 0 900000000000207008 119342007 256897009 1 370133003 900000000000011006 900000000000451002 +3466374023 20080731 1 900000000000207008 119347001 6993007 1 370133003 900000000000011006 900000000000451002 +3466374023 20090131 0 900000000000207008 119347001 6993007 1 370133003 900000000000011006 900000000000451002 +3466468022 20080731 1 900000000000207008 122667000 9409008 1 118171006 900000000000011006 900000000000451002 +3466468022 20090131 0 900000000000207008 122667000 9409008 1 118171006 900000000000011006 900000000000451002 +3467534020 20080731 1 900000000000207008 122624008 116217002 1 118171006 900000000000011006 900000000000451002 +3467534020 20090131 0 900000000000207008 122624008 116217002 1 118171006 900000000000011006 900000000000451002 +3467638027 20080731 1 900000000000207008 399559008 74862005 1 118169006 900000000000011006 900000000000451002 +3467638027 20090131 0 900000000000207008 399559008 74862005 1 118169006 900000000000011006 900000000000451002 +3467748023 20080731 1 900000000000207008 122682005 81516001 1 118171006 900000000000011006 900000000000451002 +3467748023 20090131 0 900000000000207008 122682005 81516001 1 118171006 900000000000011006 900000000000451002 +3467784027 20080731 1 900000000000207008 122577006 26859008 1 370133003 900000000000011006 900000000000451002 +3467784027 20090131 0 900000000000207008 122577006 26859008 1 370133003 900000000000011006 900000000000451002 +3467801029 20080731 1 900000000000207008 258609006 44567001 1 118169006 900000000000011006 900000000000451002 +3467801029 20090131 0 900000000000207008 258609006 44567001 1 118169006 900000000000011006 900000000000451002 +3467893024 20080731 1 900000000000207008 258476006 81745001 1 118169006 900000000000011006 900000000000451002 +3467893024 20090131 0 900000000000207008 258476006 81745001 1 118169006 900000000000011006 900000000000451002 +3468001025 20080731 1 900000000000207008 399622002 69748006 1 118169006 900000000000011006 900000000000451002 +3468001025 20090131 0 900000000000207008 399622002 69748006 1 118169006 900000000000011006 900000000000451002 +3468331026 20080731 1 900000000000207008 122645001 14742008 1 118169006 900000000000011006 900000000000451002 +3468331026 20090731 0 900000000000207008 122645001 14742008 1 118169006 900000000000011006 900000000000451002 +3468376026 20080731 1 900000000000207008 258424007 17401000 1 118169006 900000000000011006 900000000000451002 +3468376026 20090131 0 900000000000207008 258424007 17401000 1 118169006 900000000000011006 900000000000451002 +3468407021 20080731 1 900000000000207008 122611008 39607008 1 118169006 900000000000011006 900000000000451002 +3468407021 20090131 0 900000000000207008 122611008 39607008 1 118169006 900000000000011006 900000000000451002 +3468407021 20110731 1 900000000000207008 122611008 39607008 1 118169006 900000000000011006 900000000000451002 +3468607025 20080731 1 900000000000207008 399440009 87953007 1 118169006 900000000000011006 900000000000451002 +3468607025 20090131 0 900000000000207008 399440009 87953007 1 118169006 900000000000011006 900000000000451002 +3468618025 20080731 1 900000000000207008 309192007 173422009 1 118171006 900000000000011006 900000000000451002 +3468618025 20090131 0 900000000000207008 309192007 173422009 1 118171006 900000000000011006 900000000000451002 +3468650024 20080731 1 900000000000207008 309055005 76752008 1 118169006 900000000000011006 900000000000451002 +3468650024 20090131 0 900000000000207008 309055005 76752008 1 118169006 900000000000011006 900000000000451002 +3468686020 20080731 1 900000000000207008 396807009 15776009 1 118169006 900000000000011006 900000000000451002 +3468686020 20090131 0 900000000000207008 396807009 15776009 1 118169006 900000000000011006 900000000000451002 +3468771022 20080731 1 900000000000207008 415293009 423662002 1 370133003 900000000000011006 900000000000451002 +3468771022 20090131 0 900000000000207008 415293009 423662002 1 370133003 900000000000011006 900000000000451002 +3468781021 20080731 1 900000000000207008 167877006 6085005 1 370133003 900000000000011006 900000000000451002 +3468781021 20090131 0 900000000000207008 167877006 6085005 1 370133003 900000000000011006 900000000000451002 +3469423026 20080731 1 900000000000207008 122665008 15776009 1 118169006 900000000000011006 900000000000451002 +3469423026 20090131 0 900000000000207008 122665008 15776009 1 118169006 900000000000011006 900000000000451002 +3469519020 20080731 1 900000000000207008 258515000 285570007 1 118171006 900000000000011006 900000000000451002 +3469519020 20090131 0 900000000000207008 258515000 285570007 1 118171006 900000000000011006 900000000000451002 +3470428028 20080731 1 900000000000207008 119307008 321667001 1 118169006 900000000000011006 900000000000451002 +3470428028 20090131 0 900000000000207008 119307008 321667001 1 118169006 900000000000011006 900000000000451002 +3470429020 20080731 1 900000000000207008 119325001 413675001 1 370133003 900000000000011006 900000000000451002 +3470429020 20090131 0 900000000000207008 119325001 413675001 1 370133003 900000000000011006 900000000000451002 +3470430026 20080731 1 900000000000207008 119328004 76752008 1 118169006 900000000000011006 900000000000451002 +3470430026 20090131 0 900000000000207008 119328004 76752008 1 118169006 900000000000011006 900000000000451002 +3470431027 20080731 1 900000000000207008 119328004 72705000 1 118170007 900000000000011006 900000000000451002 +3470431027 20090131 0 900000000000207008 119328004 72705000 1 118170007 900000000000011006 900000000000451002 +3470432023 20080731 1 900000000000207008 119329007 76752008 1 118169006 900000000000011006 900000000000451002 +3470432023 20090131 0 900000000000207008 119329007 76752008 1 118169006 900000000000011006 900000000000451002 +3470433029 20080731 1 900000000000207008 119341000 34707002 1 118169006 900000000000011006 900000000000451002 +3470433029 20090131 0 900000000000207008 119341000 34707002 1 118169006 900000000000011006 900000000000451002 +3470433029 20100131 1 900000000000207008 119341000 34707002 1 118169006 900000000000011006 900000000000451002 +3470433029 20100731 0 900000000000207008 119341000 34707002 1 118169006 900000000000011006 900000000000451002 +3470433029 20110731 1 900000000000207008 119341000 34707002 1 118169006 900000000000011006 900000000000451002 +3470434024 20080731 1 900000000000207008 119342007 75535001 1 118169006 900000000000011006 900000000000451002 +3470434024 20090131 0 900000000000207008 119342007 75535001 1 118169006 900000000000011006 900000000000451002 +3470435020 20080731 1 900000000000207008 119343002 15776009 1 118169006 900000000000011006 900000000000451002 +3470435020 20090131 0 900000000000207008 119343002 15776009 1 118169006 900000000000011006 900000000000451002 +3470436021 20080731 1 900000000000207008 119347001 64739004 1 118169006 900000000000011006 900000000000451002 +3470436021 20090131 0 900000000000207008 119347001 64739004 1 118169006 900000000000011006 900000000000451002 +3470437028 20080731 1 900000000000207008 119351004 87612001 1 370133003 900000000000011006 900000000000451002 +3470437028 20090131 0 900000000000207008 119351004 87612001 1 370133003 900000000000011006 900000000000451002 +3470599026 20080731 1 900000000000207008 127457009 76752008 1 118169006 900000000000011006 900000000000451002 +3470599026 20090131 0 900000000000207008 127457009 76752008 1 118169006 900000000000011006 900000000000451002 +3470600028 20080731 1 900000000000207008 127460002 3120008 1 118169006 900000000000011006 900000000000451002 +3470600028 20090131 0 900000000000207008 127460002 3120008 1 118169006 900000000000011006 900000000000451002 +3470601029 20080731 1 900000000000207008 127461003 3120008 1 118169006 900000000000011006 900000000000451002 +3470601029 20090731 0 900000000000207008 127461003 3120008 1 118169006 900000000000011006 900000000000451002 +3470602020 20080731 1 900000000000207008 127461003 23979009 1 118171006 900000000000011006 900000000000451002 +3470602020 20090731 0 900000000000207008 127461003 23979009 1 118171006 900000000000011006 900000000000451002 +3470603026 20080731 1 900000000000207008 127464006 32849002 1 118169006 900000000000011006 900000000000451002 +3470603026 20090131 0 900000000000207008 127464006 32849002 1 118169006 900000000000011006 900000000000451002 +3470604021 20080731 1 900000000000207008 127466008 413675001 1 370133003 900000000000011006 900000000000451002 +3470604021 20090131 0 900000000000207008 127466008 413675001 1 370133003 900000000000011006 900000000000451002 +3470605022 20080731 1 900000000000207008 127468009 413675001 1 370133003 900000000000011006 900000000000451002 +3470605022 20090131 0 900000000000207008 127468009 413675001 1 370133003 900000000000011006 900000000000451002 +3470606023 20080731 1 900000000000207008 127470000 15776009 1 118169006 900000000000011006 900000000000451002 +3470606023 20090131 0 900000000000207008 127470000 15776009 1 118169006 900000000000011006 900000000000451002 +3470607025 20080731 1 900000000000207008 127472008 122489005 1 118169006 900000000000011006 900000000000451002 +3470607025 20090131 0 900000000000207008 127472008 122489005 1 118169006 900000000000011006 900000000000451002 +3470608024 20080731 1 900000000000207008 127474009 413675001 1 370133003 900000000000011006 900000000000451002 +3470608024 20090131 0 900000000000207008 127474009 413675001 1 370133003 900000000000011006 900000000000451002 +3470609027 20080731 1 900000000000207008 127475005 279572002 1 118169006 900000000000011006 900000000000451002 +3470609027 20090131 0 900000000000207008 127475005 279572002 1 118169006 900000000000011006 900000000000451002 +3470610021 20080731 1 900000000000207008 127478007 413675001 1 370133003 900000000000011006 900000000000451002 +3470610021 20090131 0 900000000000207008 127478007 413675001 1 370133003 900000000000011006 900000000000451002 +3470611020 20080731 1 900000000000207008 127480001 413675001 1 370133003 900000000000011006 900000000000451002 +3470611020 20090131 0 900000000000207008 127480001 413675001 1 370133003 900000000000011006 900000000000451002 +3470612029 20080731 1 900000000000207008 127481002 71252005 1 118169006 900000000000011006 900000000000451002 +3470612029 20090131 0 900000000000207008 127481002 71252005 1 118169006 900000000000011006 900000000000451002 +3470613023 20080731 1 900000000000207008 127482009 15497006 1 118169006 900000000000011006 900000000000451002 +3470613023 20090131 0 900000000000207008 127482009 15497006 1 118169006 900000000000011006 900000000000451002 +3470614028 20080731 1 900000000000207008 127483004 31435000 1 118169006 900000000000011006 900000000000451002 +3470614028 20090131 0 900000000000207008 127483004 31435000 1 118169006 900000000000011006 900000000000451002 +3470663029 20080731 1 900000000000207008 122553000 78220002 1 118169006 900000000000011006 900000000000451002 +3470663029 20090131 0 900000000000207008 122553000 78220002 1 118169006 900000000000011006 900000000000451002 +3470663029 20090731 1 900000000000207008 122553000 78220002 1 118169006 900000000000011006 900000000000451002 +3470663029 20100131 0 900000000000207008 122553000 78220002 1 118169006 900000000000011006 900000000000451002 +3470664024 20080731 1 900000000000207008 122565001 431938005 1 118169006 900000000000011006 900000000000451002 +3470664024 20090131 0 900000000000207008 122565001 431938005 1 118169006 900000000000011006 900000000000451002 +3470665020 20080731 1 900000000000207008 122565001 70777001 1 118171006 900000000000011006 900000000000451002 +3470665020 20090131 0 900000000000207008 122565001 70777001 1 118171006 900000000000011006 900000000000451002 +3470666021 20080731 1 900000000000207008 122565001 78014005 1 370133003 900000000000011006 900000000000451002 +3470666021 20090131 0 900000000000207008 122565001 78014005 1 370133003 900000000000011006 900000000000451002 +3470667028 20080731 1 900000000000207008 122566000 13924000 1 118168003 900000000000011006 900000000000451002 +3470667028 20090131 0 900000000000207008 122566000 13924000 1 118168003 900000000000011006 900000000000451002 +3470668022 20080731 1 900000000000207008 122567009 431938005 1 118169006 900000000000011006 900000000000451002 +3470668022 20090131 0 900000000000207008 122567009 431938005 1 118169006 900000000000011006 900000000000451002 +3470669025 20080731 1 900000000000207008 122568004 13924000 1 118168003 900000000000011006 900000000000451002 +3470669025 20090131 0 900000000000207008 122568004 13924000 1 118168003 900000000000011006 900000000000451002 +3470670029 20080731 1 900000000000207008 122571007 34429004 1 370133003 900000000000011006 900000000000451002 +3470670029 20090131 0 900000000000207008 122571007 34429004 1 370133003 900000000000011006 900000000000451002 +3470671025 20080731 1 900000000000207008 122573005 69695003 1 118169006 900000000000011006 900000000000451002 +3470671025 20090131 0 900000000000207008 122573005 69695003 1 118169006 900000000000011006 900000000000451002 +3470672021 20080731 1 900000000000207008 122573005 62059006 1 370133003 900000000000011006 900000000000451002 +3470672021 20090131 0 900000000000207008 122573005 62059006 1 370133003 900000000000011006 900000000000451002 +3470673027 20080731 1 900000000000207008 122574004 38848004 1 118169006 900000000000011006 900000000000451002 +3470673027 20090131 0 900000000000207008 122574004 38848004 1 118169006 900000000000011006 900000000000451002 +3470674022 20080731 1 900000000000207008 122575003 431938005 1 118169006 900000000000011006 900000000000451002 +3470674022 20090131 0 900000000000207008 122575003 431938005 1 118169006 900000000000011006 900000000000451002 +3470675023 20080731 1 900000000000207008 122577006 71252005 1 118169006 900000000000011006 900000000000451002 +3470675023 20090131 0 900000000000207008 122577006 71252005 1 118169006 900000000000011006 900000000000451002 +3470676024 20080731 1 900000000000207008 122578001 53065001 1 118169006 900000000000011006 900000000000451002 +3470676024 20090131 0 900000000000207008 122578001 53065001 1 118169006 900000000000011006 900000000000451002 +3470677026 20080731 1 900000000000207008 122580007 117590005 1 118169006 900000000000011006 900000000000451002 +3470677026 20090131 0 900000000000207008 122580007 117590005 1 118169006 900000000000011006 900000000000451002 +3470677026 20110131 1 900000000000207008 122580007 117590005 1 118169006 900000000000011006 900000000000451002 +3470677026 20110731 0 900000000000207008 122580007 117590005 1 118169006 900000000000011006 900000000000451002 +3470678020 20080731 1 900000000000207008 122581006 41898006 1 118169006 900000000000011006 900000000000451002 +3470678020 20090131 0 900000000000207008 122581006 41898006 1 118169006 900000000000011006 900000000000451002 +3470678020 20090731 1 900000000000207008 122581006 41898006 1 118169006 900000000000011006 900000000000451002 +3470678020 20100131 0 900000000000207008 122581006 41898006 1 118169006 900000000000011006 900000000000451002 +3470678020 20110131 1 900000000000207008 122581006 41898006 1 118169006 900000000000011006 900000000000451002 +3470678020 20110731 0 900000000000207008 122581006 41898006 1 118169006 900000000000011006 900000000000451002 +3470679028 20080731 1 900000000000207008 122584003 414387006 1 118169006 900000000000011006 900000000000451002 +3470679028 20090131 0 900000000000207008 122584003 414387006 1 118169006 900000000000011006 900000000000451002 +3470681026 20080731 1 900000000000207008 122593002 413675001 1 370133003 900000000000011006 900000000000451002 +3470681026 20090131 0 900000000000207008 122593002 413675001 1 370133003 900000000000011006 900000000000451002 +3470682022 20080731 1 900000000000207008 122594008 13561001 1 118169006 900000000000011006 900000000000451002 +3470682022 20090131 0 900000000000207008 122594008 13561001 1 118169006 900000000000011006 900000000000451002 +3470683028 20080731 1 900000000000207008 122595009 76752008 1 118169006 900000000000011006 900000000000451002 +3470683028 20090131 0 900000000000207008 122595009 76752008 1 118169006 900000000000011006 900000000000451002 +3470684023 20080731 1 900000000000207008 122595009 413675001 1 370133003 900000000000011006 900000000000451002 +3470684023 20090131 0 900000000000207008 122595009 413675001 1 370133003 900000000000011006 900000000000451002 +3470685024 20080731 1 900000000000207008 122596005 49755003 1 118168003 900000000000011006 900000000000451002 +3470685024 20090731 0 900000000000207008 122596005 49755003 1 118168003 900000000000011006 900000000000451002 +3470686020 20080731 1 900000000000207008 122596005 76752008 1 118169006 900000000000011006 900000000000451002 +3470686020 20090731 0 900000000000207008 122596005 76752008 1 118169006 900000000000011006 900000000000451002 +3470687027 20080731 1 900000000000207008 122596005 69031006 1 118171006 900000000000011006 900000000000451002 +3470687027 20090731 0 900000000000207008 122596005 69031006 1 118171006 900000000000011006 900000000000451002 +3470688021 20080731 1 900000000000207008 122596005 413675001 1 370133003 900000000000011006 900000000000451002 +3470688021 20090731 0 900000000000207008 122596005 413675001 1 370133003 900000000000011006 900000000000451002 +3470689029 20080731 1 900000000000207008 122596005 413675001 2 370133003 900000000000011006 900000000000451002 +3470689029 20090731 1 900000000000207008 122596005 413675001 1 370133003 900000000000011006 900000000000451002 +3470689029 20100131 0 900000000000207008 122596005 413675001 1 370133003 900000000000011006 900000000000451002 +3470690022 20080731 1 900000000000207008 122597001 119184005 1 118169006 900000000000011006 900000000000451002 +3470690022 20090131 0 900000000000207008 122597001 119184005 1 118169006 900000000000011006 900000000000451002 +3470691021 20080731 1 900000000000207008 122597001 413675001 1 370133003 900000000000011006 900000000000451002 +3470691021 20090131 0 900000000000207008 122597001 413675001 1 370133003 900000000000011006 900000000000451002 +3470692025 20080731 1 900000000000207008 122598006 69031006 1 118171006 900000000000011006 900000000000451002 +3470692025 20090131 0 900000000000207008 122598006 69031006 1 118171006 900000000000011006 900000000000451002 +3470693024 20080731 1 900000000000207008 122598006 413675001 1 370133003 900000000000011006 900000000000451002 +3470693024 20090131 0 900000000000207008 122598006 413675001 1 370133003 900000000000011006 900000000000451002 +3470694029 20080731 1 900000000000207008 122599003 76752008 1 118169006 900000000000011006 900000000000451002 +3470694029 20090131 0 900000000000207008 122599003 76752008 1 118169006 900000000000011006 900000000000451002 +3470695028 20080731 1 900000000000207008 122599003 413675001 1 370133003 900000000000011006 900000000000451002 +3470695028 20090131 0 900000000000207008 122599003 413675001 1 370133003 900000000000011006 900000000000451002 +3470696027 20080731 1 900000000000207008 122600000 76752008 1 118169006 900000000000011006 900000000000451002 +3470696027 20090131 0 900000000000207008 122600000 76752008 1 118169006 900000000000011006 900000000000451002 +3470697020 20080731 1 900000000000207008 122600000 406505007 1 118171006 900000000000011006 900000000000451002 +3470697020 20090131 0 900000000000207008 122600000 406505007 1 118171006 900000000000011006 900000000000451002 +3470698026 20080731 1 900000000000207008 122601001 76752008 1 118169006 900000000000011006 900000000000451002 +3470698026 20090131 0 900000000000207008 122601001 76752008 1 118169006 900000000000011006 900000000000451002 +3470699023 20080731 1 900000000000207008 122602008 119253004 1 118169006 900000000000011006 900000000000451002 +3470699023 20090131 0 900000000000207008 122602008 119253004 1 118169006 900000000000011006 900000000000451002 +3470700024 20080731 1 900000000000207008 122602008 413675001 1 370133003 900000000000011006 900000000000451002 +3470700024 20090131 0 900000000000207008 122602008 413675001 1 370133003 900000000000011006 900000000000451002 +3470701023 20080731 1 900000000000207008 122604009 39607008 1 118169006 900000000000011006 900000000000451002 +3470701023 20090131 0 900000000000207008 122604009 39607008 1 118169006 900000000000011006 900000000000451002 +3470702027 20080731 1 900000000000207008 122604009 413675001 1 370133003 900000000000011006 900000000000451002 +3470702027 20090131 0 900000000000207008 122604009 413675001 1 370133003 900000000000011006 900000000000451002 +3470703021 20080731 1 900000000000207008 122605005 39607008 1 118169006 900000000000011006 900000000000451002 +3470703021 20090131 0 900000000000207008 122605005 39607008 1 118169006 900000000000011006 900000000000451002 +3470704026 20080731 1 900000000000207008 122605005 413675001 1 370133003 900000000000011006 900000000000451002 +3470704026 20090131 0 900000000000207008 122605005 413675001 1 370133003 900000000000011006 900000000000451002 +3470705025 20080731 1 900000000000207008 122606006 173171007 1 118171006 900000000000011006 900000000000451002 +3470705025 20090131 0 900000000000207008 122606006 173171007 1 118171006 900000000000011006 900000000000451002 +3470706029 20080731 1 900000000000207008 122607002 119199005 1 118169006 900000000000011006 900000000000451002 +3470706029 20090131 0 900000000000207008 122607002 119199005 1 118169006 900000000000011006 900000000000451002 +3470707022 20080731 1 900000000000207008 122607002 413675001 1 370133003 900000000000011006 900000000000451002 +3470707022 20090131 0 900000000000207008 122607002 413675001 1 370133003 900000000000011006 900000000000451002 +3470708028 20080731 1 900000000000207008 122608007 39607008 1 118169006 900000000000011006 900000000000451002 +3470708028 20090731 0 900000000000207008 122608007 39607008 1 118169006 900000000000011006 900000000000451002 +3470709020 20080731 1 900000000000207008 122608007 122541004 1 118171006 900000000000011006 900000000000451002 +3470709020 20090731 0 900000000000207008 122608007 122541004 1 118171006 900000000000011006 900000000000451002 +3470710026 20080731 1 900000000000207008 122610009 78603008 1 118171006 900000000000011006 900000000000451002 +3470710026 20090131 0 900000000000207008 122610009 78603008 1 118171006 900000000000011006 900000000000451002 +3470711027 20080731 1 900000000000207008 122611008 243411004 1 118171006 900000000000011006 900000000000451002 +3470711027 20090131 0 900000000000207008 122611008 243411004 1 118171006 900000000000011006 900000000000451002 +3470711027 20110731 1 900000000000207008 122611008 243411004 1 118171006 900000000000011006 900000000000451002 +3470713029 20080731 1 900000000000207008 122614000 432231006 1 118171006 900000000000011006 900000000000451002 +3470713029 20090131 0 900000000000207008 122614000 432231006 1 118171006 900000000000011006 900000000000451002 +3470714024 20080731 1 900000000000207008 122618002 3120008 1 118169006 900000000000011006 900000000000451002 +3470714024 20090131 0 900000000000207008 122618002 3120008 1 118169006 900000000000011006 900000000000451002 +3470715020 20080731 1 900000000000207008 128156008 413675001 1 370133003 900000000000011006 900000000000451002 +3470715020 20090131 0 900000000000207008 128156008 413675001 1 370133003 900000000000011006 900000000000451002 +3470716021 20080731 1 900000000000207008 128157004 12738006 1 118169006 900000000000011006 900000000000451002 +3470716021 20090131 0 900000000000207008 128157004 12738006 1 118169006 900000000000011006 900000000000451002 +3470717028 20080731 1 900000000000207008 128158009 955009 1 118169006 900000000000011006 900000000000451002 +3470717028 20090131 0 900000000000207008 128158009 955009 1 118169006 900000000000011006 900000000000451002 +3470718022 20080731 1 900000000000207008 128159001 71854001 1 118169006 900000000000011006 900000000000451002 +3470718022 20090131 0 900000000000207008 128159001 71854001 1 118169006 900000000000011006 900000000000451002 +3470719025 20080731 1 900000000000207008 128160006 413675001 1 370133003 900000000000011006 900000000000451002 +3470719025 20090131 0 900000000000207008 128160006 413675001 1 370133003 900000000000011006 900000000000451002 +3470720020 20080731 1 900000000000207008 128161005 28726007 1 118169006 900000000000011006 900000000000451002 +3470720020 20090131 0 900000000000207008 128161005 28726007 1 118169006 900000000000011006 900000000000451002 +3470721024 20080731 1 900000000000207008 128162003 117590005 1 118169006 900000000000011006 900000000000451002 +3470721024 20090131 0 900000000000207008 128162003 117590005 1 118169006 900000000000011006 900000000000451002 +3470721024 20110131 1 900000000000207008 128162003 117590005 1 118169006 900000000000011006 900000000000451002 +3470721024 20110731 0 900000000000207008 128162003 117590005 1 118169006 900000000000011006 900000000000451002 +3470722028 20080731 1 900000000000207008 128163008 2739003 1 118169006 900000000000011006 900000000000451002 +3470722028 20090131 0 900000000000207008 128163008 2739003 1 118169006 900000000000011006 900000000000451002 +3470723022 20080731 1 900000000000207008 128164002 81745001 1 118169006 900000000000011006 900000000000451002 +3470723022 20090131 0 900000000000207008 128164002 81745001 1 118169006 900000000000011006 900000000000451002 +3470724027 20080731 1 900000000000207008 128165001 71934003 1 118169006 900000000000011006 900000000000451002 +3470724027 20090131 0 900000000000207008 128165001 71934003 1 118169006 900000000000011006 900000000000451002 +3470725026 20080731 1 900000000000207008 128166000 80891009 1 118169006 900000000000011006 900000000000451002 +3470725026 20090131 0 900000000000207008 128166000 80891009 1 118169006 900000000000011006 900000000000451002 +3470726025 20080731 1 900000000000207008 128167009 53342003 1 118169006 900000000000011006 900000000000451002 +3470726025 20090131 0 900000000000207008 128167009 53342003 1 118169006 900000000000011006 900000000000451002 +3470727023 20080731 1 900000000000207008 128168004 10200004 1 118169006 900000000000011006 900000000000451002 +3470727023 20090131 0 900000000000207008 128168004 10200004 1 118169006 900000000000011006 900000000000451002 +3470728029 20080731 1 900000000000207008 128169007 18911002 1 118169006 900000000000011006 900000000000451002 +3470728029 20090131 0 900000000000207008 128169007 18911002 1 118169006 900000000000011006 900000000000451002 +3470729021 20080731 1 900000000000207008 128170008 41216001 1 118169006 900000000000011006 900000000000451002 +3470729021 20090131 0 900000000000207008 128170008 41216001 1 118169006 900000000000011006 900000000000451002 +3470730027 20080731 1 900000000000207008 128171007 69695003 1 118169006 900000000000011006 900000000000451002 +3470730027 20090131 0 900000000000207008 128171007 69695003 1 118169006 900000000000011006 900000000000451002 +3470731028 20080731 1 900000000000207008 128172000 54066008 1 118169006 900000000000011006 900000000000451002 +3470731028 20090131 0 900000000000207008 128172000 54066008 1 118169006 900000000000011006 900000000000451002 +3470732024 20080731 1 900000000000207008 128173005 44567001 1 118169006 900000000000011006 900000000000451002 +3470732024 20090131 0 900000000000207008 128173005 44567001 1 118169006 900000000000011006 900000000000451002 +3470733025 20080731 1 900000000000207008 128174004 413675001 1 370133003 900000000000011006 900000000000451002 +3470733025 20090131 0 900000000000207008 128174004 413675001 1 370133003 900000000000011006 900000000000451002 +3470734020 20080731 1 900000000000207008 128175003 76784001 1 118169006 900000000000011006 900000000000451002 +3470734020 20090131 0 900000000000207008 128175003 76784001 1 118169006 900000000000011006 900000000000451002 +3470792022 20080731 1 900000000000207008 122619005 91381003 1 118169006 900000000000011006 900000000000451002 +3470792022 20090131 0 900000000000207008 122619005 91381003 1 118169006 900000000000011006 900000000000451002 +3470793028 20080731 1 900000000000207008 122619005 2778004 1 370133003 900000000000011006 900000000000451002 +3470793028 20090131 0 900000000000207008 122619005 2778004 1 370133003 900000000000011006 900000000000451002 +3470794023 20080731 1 900000000000207008 122620004 3120008 1 118169006 900000000000011006 900000000000451002 +3470794023 20090131 0 900000000000207008 122620004 3120008 1 118169006 900000000000011006 900000000000451002 +3470795024 20080731 1 900000000000207008 122623002 197042001 1 118171006 900000000000011006 900000000000451002 +3470795024 20090131 0 900000000000207008 122623002 197042001 1 118171006 900000000000011006 900000000000451002 +3470796020 20080731 1 900000000000207008 122624008 49755003 1 118168003 900000000000011006 900000000000451002 +3470796020 20090131 0 900000000000207008 122624008 49755003 1 118168003 900000000000011006 900000000000451002 +3470797027 20080731 1 900000000000207008 122624008 80891009 1 118169006 900000000000011006 900000000000451002 +3470797027 20090131 0 900000000000207008 122624008 80891009 1 118169006 900000000000011006 900000000000451002 +3470798021 20080731 1 900000000000207008 122625009 80891009 1 118169006 900000000000011006 900000000000451002 +3470798021 20090131 0 900000000000207008 122625009 80891009 1 118169006 900000000000011006 900000000000451002 +3470799029 20080731 1 900000000000207008 122625009 413675001 1 370133003 900000000000011006 900000000000451002 +3470799029 20090131 0 900000000000207008 122625009 413675001 1 370133003 900000000000011006 900000000000451002 +3470800025 20080731 1 900000000000207008 122626005 116218007 1 118171006 900000000000011006 900000000000451002 +3470800025 20090131 0 900000000000207008 122626005 116218007 1 118171006 900000000000011006 900000000000451002 +3470801026 20080731 1 900000000000207008 122627001 122865005 1 118169006 900000000000011006 900000000000451002 +3470801026 20090131 0 900000000000207008 122627001 122865005 1 118169006 900000000000011006 900000000000451002 +3470802022 20080731 1 900000000000207008 122627001 116222002 1 118171006 900000000000011006 900000000000451002 +3470802022 20090131 0 900000000000207008 122627001 116222002 1 118171006 900000000000011006 900000000000451002 +3470803028 20080731 1 900000000000207008 122628006 32849002 1 118169006 900000000000011006 900000000000451002 +3470803028 20090131 0 900000000000207008 122628006 32849002 1 118169006 900000000000011006 900000000000451002 +3470804023 20080731 1 900000000000207008 122628006 22673000 1 118171006 900000000000011006 900000000000451002 +3470804023 20090131 0 900000000000207008 122628006 22673000 1 118171006 900000000000011006 900000000000451002 +3470805024 20080731 1 900000000000207008 122629003 49755003 1 118168003 900000000000011006 900000000000451002 +3470805024 20090131 0 900000000000207008 122629003 49755003 1 118168003 900000000000011006 900000000000451002 +3470806020 20080731 1 900000000000207008 122629003 32849002 1 118169006 900000000000011006 900000000000451002 +3470806020 20090131 0 900000000000207008 122629003 32849002 1 118169006 900000000000011006 900000000000451002 +3470807027 20080731 1 900000000000207008 122629003 413675001 1 370133003 900000000000011006 900000000000451002 +3470807027 20090131 0 900000000000207008 122629003 413675001 1 370133003 900000000000011006 900000000000451002 +3470808021 20080731 1 900000000000207008 122630008 32849002 1 118169006 900000000000011006 900000000000451002 +3470808021 20090731 0 900000000000207008 122630008 32849002 1 118169006 900000000000011006 900000000000451002 +3470809029 20080731 1 900000000000207008 122630008 45900003 1 118171006 900000000000011006 900000000000451002 +3470809029 20090731 0 900000000000207008 122630008 45900003 1 118171006 900000000000011006 900000000000451002 +3470810023 20080731 1 900000000000207008 122631007 32849002 1 118169006 900000000000011006 900000000000451002 +3470810023 20090731 0 900000000000207008 122631007 32849002 1 118169006 900000000000011006 900000000000451002 +3470811022 20080731 1 900000000000207008 122631007 413675001 1 370133003 900000000000011006 900000000000451002 +3470811022 20090731 0 900000000000207008 122631007 413675001 1 370133003 900000000000011006 900000000000451002 +3470812026 20080731 1 900000000000207008 122632000 69695003 1 118169006 900000000000011006 900000000000451002 +3470812026 20090131 0 900000000000207008 122632000 69695003 1 118169006 900000000000011006 900000000000451002 +3470813020 20080731 1 900000000000207008 122632000 116227008 1 118171006 900000000000011006 900000000000451002 +3470813020 20090131 0 900000000000207008 122632000 116227008 1 118171006 900000000000011006 900000000000451002 +3470814025 20080731 1 900000000000207008 122633005 41329004 1 118168003 900000000000011006 900000000000451002 +3470814025 20090131 0 900000000000207008 122633005 41329004 1 118168003 900000000000011006 900000000000451002 +3470815029 20080731 1 900000000000207008 122633005 7797006 1 118171006 900000000000011006 900000000000451002 +3470815029 20090131 0 900000000000207008 122633005 7797006 1 118171006 900000000000011006 900000000000451002 +3470816028 20080731 1 900000000000207008 122633005 413675001 1 370133003 900000000000011006 900000000000451002 +3470816028 20090131 0 900000000000207008 122633005 413675001 1 370133003 900000000000011006 900000000000451002 +3470817021 20080731 1 900000000000207008 122634004 69695003 1 118169006 900000000000011006 900000000000451002 +3470817021 20090131 0 900000000000207008 122634004 69695003 1 118169006 900000000000011006 900000000000451002 +3470818027 20080731 1 900000000000207008 122634004 26452005 1 118171006 900000000000011006 900000000000451002 +3470818027 20090131 0 900000000000207008 122634004 26452005 1 118171006 900000000000011006 900000000000451002 +3470819024 20080731 1 900000000000207008 122635003 413675001 1 370133003 900000000000011006 900000000000451002 +3470819024 20090131 0 900000000000207008 122635003 413675001 1 370133003 900000000000011006 900000000000451002 +3470820029 20080731 1 900000000000207008 122636002 116209005 1 118169006 900000000000011006 900000000000451002 +3470820029 20090131 0 900000000000207008 122636002 116209005 1 118169006 900000000000011006 900000000000451002 +3470821025 20080731 1 900000000000207008 122636002 49209004 1 118171006 900000000000011006 900000000000451002 +3470821025 20090131 0 900000000000207008 122636002 49209004 1 118171006 900000000000011006 900000000000451002 +3470822021 20080731 1 900000000000207008 122637006 119212007 1 118169006 900000000000011006 900000000000451002 +3470822021 20090131 0 900000000000207008 122637006 119212007 1 118169006 900000000000011006 900000000000451002 +3470823027 20080731 1 900000000000207008 122637006 49209004 1 118171006 900000000000011006 900000000000451002 +3470823027 20090131 0 900000000000207008 122637006 49209004 1 118171006 900000000000011006 900000000000451002 +3470824022 20080731 1 900000000000207008 122638001 413675001 1 370133003 900000000000011006 900000000000451002 +3470824022 20090131 0 900000000000207008 122638001 413675001 1 370133003 900000000000011006 900000000000451002 +3470825023 20080731 1 900000000000207008 122639009 38848004 1 118169006 900000000000011006 900000000000451002 +3470825023 20090131 0 900000000000207008 122639009 38848004 1 118169006 900000000000011006 900000000000451002 +3470826024 20080731 1 900000000000207008 122639009 116241004 1 118171006 900000000000011006 900000000000451002 +3470826024 20090131 0 900000000000207008 122639009 116241004 1 118171006 900000000000011006 900000000000451002 +3470827026 20080731 1 900000000000207008 122640006 21306003 1 118169006 900000000000011006 900000000000451002 +3470827026 20090131 0 900000000000207008 122640006 21306003 1 118169006 900000000000011006 900000000000451002 +3470828020 20080731 1 900000000000207008 122640006 413675001 1 370133003 900000000000011006 900000000000451002 +3470828020 20090131 0 900000000000207008 122640006 413675001 1 370133003 900000000000011006 900000000000451002 +3470829028 20080731 1 900000000000207008 122641005 34516001 1 118169006 900000000000011006 900000000000451002 +3470829028 20090131 0 900000000000207008 122641005 34516001 1 118169006 900000000000011006 900000000000451002 +3470830022 20080731 1 900000000000207008 122641005 413675001 1 370133003 900000000000011006 900000000000451002 +3470830022 20090131 0 900000000000207008 122641005 413675001 1 370133003 900000000000011006 900000000000451002 +3470831021 20080731 1 900000000000207008 122642003 85774003 1 118169006 900000000000011006 900000000000451002 +3470831021 20090731 0 900000000000207008 122642003 85774003 1 118169006 900000000000011006 900000000000451002 +3470832025 20080731 1 900000000000207008 122642003 235326000 1 118171006 900000000000011006 900000000000451002 +3470832025 20090731 0 900000000000207008 122642003 235326000 1 118171006 900000000000011006 900000000000451002 +3470833024 20080731 1 900000000000207008 122643008 413675001 1 370133003 900000000000011006 900000000000451002 +3470833024 20090131 0 900000000000207008 122643008 413675001 1 370133003 900000000000011006 900000000000451002 +3470834029 20080731 1 900000000000207008 122644002 14742008 1 118169006 900000000000011006 900000000000451002 +3470834029 20090131 0 900000000000207008 122644002 14742008 1 118169006 900000000000011006 900000000000451002 +3470835028 20080731 1 900000000000207008 122644002 116229006 1 118171006 900000000000011006 900000000000451002 +3470835028 20090131 0 900000000000207008 122644002 116229006 1 118171006 900000000000011006 900000000000451002 +3470836027 20080731 1 900000000000207008 122645001 41329004 1 118168003 900000000000011006 900000000000451002 +3470836027 20090731 0 900000000000207008 122645001 41329004 1 118168003 900000000000011006 900000000000451002 +3470837020 20080731 1 900000000000207008 122645001 235340004 1 118171006 900000000000011006 900000000000451002 +3470837020 20090731 0 900000000000207008 122645001 235340004 1 118171006 900000000000011006 900000000000451002 +3470838026 20080731 1 900000000000207008 122645001 413675001 1 370133003 900000000000011006 900000000000451002 +3470838026 20090731 0 900000000000207008 122645001 413675001 1 370133003 900000000000011006 900000000000451002 +3470839023 20080731 1 900000000000207008 122646000 14742008 1 118169006 900000000000011006 900000000000451002 +3470839023 20090131 0 900000000000207008 122646000 14742008 1 118169006 900000000000011006 900000000000451002 +3470840020 20080731 1 900000000000207008 122647009 71854001 1 118169006 900000000000011006 900000000000451002 +3470840020 20090131 0 900000000000207008 122647009 71854001 1 118169006 900000000000011006 900000000000451002 +3470841024 20080731 1 900000000000207008 122647009 26390003 1 118171006 900000000000011006 900000000000451002 +3470841024 20090131 0 900000000000207008 122647009 26390003 1 118171006 900000000000011006 900000000000451002 +3470842028 20080731 1 900000000000207008 122648004 51342009 1 118169006 900000000000011006 900000000000451002 +3470842028 20090131 0 900000000000207008 122648004 51342009 1 118169006 900000000000011006 900000000000451002 +3470843022 20080731 1 900000000000207008 122648004 235326000 1 118171006 900000000000011006 900000000000451002 +3470843022 20090131 0 900000000000207008 122648004 235326000 1 118171006 900000000000011006 900000000000451002 +3470908022 20080731 1 900000000000207008 122649007 26925005 1 118171006 900000000000011006 900000000000451002 +3470908022 20090131 0 900000000000207008 122649007 26925005 1 118171006 900000000000011006 900000000000451002 +3470909025 20080731 1 900000000000207008 122650007 55572008 1 118169006 900000000000011006 900000000000451002 +3470909025 20090731 0 900000000000207008 122650007 55572008 1 118169006 900000000000011006 900000000000451002 +3470910024 20080731 1 900000000000207008 122650007 413675001 1 370133003 900000000000011006 900000000000451002 +3470910024 20090731 0 900000000000207008 122650007 413675001 1 370133003 900000000000011006 900000000000451002 +3470911023 20080731 1 900000000000207008 122651006 60184004 1 118169006 900000000000011006 900000000000451002 +3470911023 20090131 0 900000000000207008 122651006 60184004 1 118169006 900000000000011006 900000000000451002 +3470912027 20080731 1 900000000000207008 122651006 84604002 1 118171006 900000000000011006 900000000000451002 +3470912027 20090131 0 900000000000207008 122651006 84604002 1 118171006 900000000000011006 900000000000451002 +3470913021 20080731 1 900000000000207008 122652004 81922002 1 118169006 900000000000011006 900000000000451002 +3470913021 20090731 0 900000000000207008 122652004 81922002 1 118169006 900000000000011006 900000000000451002 +3470914026 20080731 1 900000000000207008 122652004 314592008 1 118171006 900000000000011006 900000000000451002 +3470914026 20090731 0 900000000000207008 122652004 314592008 1 118171006 900000000000011006 900000000000451002 +3470915025 20080731 1 900000000000207008 122653009 34402009 1 118169006 900000000000011006 900000000000451002 +3470915025 20090131 0 900000000000207008 122653009 34402009 1 118169006 900000000000011006 900000000000451002 +3470916029 20080731 1 900000000000207008 122654003 34402009 1 118169006 900000000000011006 900000000000451002 +3470916029 20090131 0 900000000000207008 122654003 34402009 1 118169006 900000000000011006 900000000000451002 +3470917022 20080731 1 900000000000207008 122655002 34402009 1 118169006 900000000000011006 900000000000451002 +3470917022 20090131 0 900000000000207008 122655002 34402009 1 118169006 900000000000011006 900000000000451002 +3470918028 20080731 1 900000000000207008 122656001 28231008 1 118169006 900000000000011006 900000000000451002 +3470918028 20090131 0 900000000000207008 122656001 28231008 1 118169006 900000000000011006 900000000000451002 +3470918028 20110731 1 900000000000207008 122656001 28231008 1 118169006 900000000000011006 900000000000451002 +3470919020 20080731 1 900000000000207008 122657005 67109009 1 118169006 900000000000011006 900000000000451002 +3470919020 20090131 0 900000000000207008 122657005 67109009 1 118169006 900000000000011006 900000000000451002 +3470920025 20080731 1 900000000000207008 122657005 413675001 1 370133003 900000000000011006 900000000000451002 +3470920025 20090131 0 900000000000207008 122657005 413675001 1 370133003 900000000000011006 900000000000451002 +3470921026 20080731 1 900000000000207008 122658000 67109009 1 118169006 900000000000011006 900000000000451002 +3470921026 20090131 0 900000000000207008 122658000 67109009 1 118169006 900000000000011006 900000000000451002 +3470922022 20080731 1 900000000000207008 122658000 413675001 1 370133003 900000000000011006 900000000000451002 +3470922022 20090131 0 900000000000207008 122658000 413675001 1 370133003 900000000000011006 900000000000451002 +3470923028 20080731 1 900000000000207008 122659008 67109009 1 118169006 900000000000011006 900000000000451002 +3470923028 20090131 0 900000000000207008 122659008 67109009 1 118169006 900000000000011006 900000000000451002 +3470924023 20080731 1 900000000000207008 122659008 116241004 1 118171006 900000000000011006 900000000000451002 +3470924023 20090131 0 900000000000207008 122659008 116241004 1 118171006 900000000000011006 900000000000451002 +3470925024 20080731 1 900000000000207008 122660003 116242006 1 118171006 900000000000011006 900000000000451002 +3470925024 20090131 0 900000000000207008 122660003 116242006 1 118171006 900000000000011006 900000000000451002 +3470926020 20080731 1 900000000000207008 122660003 413675001 1 370133003 900000000000011006 900000000000451002 +3470926020 20090131 0 900000000000207008 122660003 413675001 1 370133003 900000000000011006 900000000000451002 +3470927027 20080731 1 900000000000207008 122661004 15776009 1 118169006 900000000000011006 900000000000451002 +3470927027 20090131 0 900000000000207008 122661004 15776009 1 118169006 900000000000011006 900000000000451002 +3470928021 20080731 1 900000000000207008 122661004 287847009 1 118171006 900000000000011006 900000000000451002 +3470928021 20090131 0 900000000000207008 122661004 287847009 1 118171006 900000000000011006 900000000000451002 +3470929029 20080731 1 900000000000207008 122662006 40133006 1 118169006 900000000000011006 900000000000451002 +3470929029 20090131 0 900000000000207008 122662006 40133006 1 118169006 900000000000011006 900000000000451002 +3470930023 20080731 1 900000000000207008 122662006 413675001 1 370133003 900000000000011006 900000000000451002 +3470930023 20090131 0 900000000000207008 122662006 413675001 1 370133003 900000000000011006 900000000000451002 +3470931022 20080731 1 900000000000207008 122663001 73239005 1 118169006 900000000000011006 900000000000451002 +3470931022 20090131 0 900000000000207008 122663001 73239005 1 118169006 900000000000011006 900000000000451002 +3470932026 20080731 1 900000000000207008 122663001 287847009 1 118171006 900000000000011006 900000000000451002 +3470932026 20090131 0 900000000000207008 122663001 287847009 1 118171006 900000000000011006 900000000000451002 +3470933020 20080731 1 900000000000207008 122664007 9524002 1 118171006 900000000000011006 900000000000451002 +3470933020 20090131 0 900000000000207008 122664007 9524002 1 118171006 900000000000011006 900000000000451002 +3470934025 20080731 1 900000000000207008 122665008 116241004 1 118171006 900000000000011006 900000000000451002 +3470934025 20090131 0 900000000000207008 122665008 116241004 1 118171006 900000000000011006 900000000000451002 +3470935029 20080731 1 900000000000207008 122666009 15776009 1 118169006 900000000000011006 900000000000451002 +3470935029 20090131 0 900000000000207008 122666009 15776009 1 118169006 900000000000011006 900000000000451002 +3470936028 20080731 1 900000000000207008 122666009 413675001 1 370133003 900000000000011006 900000000000451002 +3470936028 20090131 0 900000000000207008 122666009 413675001 1 370133003 900000000000011006 900000000000451002 +3470937021 20080731 1 900000000000207008 122667000 15776009 1 118169006 900000000000011006 900000000000451002 +3470937021 20090131 0 900000000000207008 122667000 15776009 1 118169006 900000000000011006 900000000000451002 +3470938027 20080731 1 900000000000207008 122667000 413675001 1 370133003 900000000000011006 900000000000451002 +3470938027 20090131 0 900000000000207008 122667000 413675001 1 370133003 900000000000011006 900000000000451002 +3470939024 20080731 1 900000000000207008 122668005 431938005 1 118169006 900000000000011006 900000000000451002 +3470939024 20090731 0 900000000000207008 122668005 431938005 1 118169006 900000000000011006 900000000000451002 +3470940021 20080731 1 900000000000207008 122668005 116032002 1 118171006 900000000000011006 900000000000451002 +3470940021 20090731 0 900000000000207008 122668005 116032002 1 118171006 900000000000011006 900000000000451002 +3470941020 20080731 1 900000000000207008 122669002 89837001 1 118169006 900000000000011006 900000000000451002 +3470941020 20090731 0 900000000000207008 122669002 89837001 1 118169006 900000000000011006 900000000000451002 +3470942029 20080731 1 900000000000207008 122669002 413675001 1 370133003 900000000000011006 900000000000451002 +3470942029 20090731 0 900000000000207008 122669002 413675001 1 370133003 900000000000011006 900000000000451002 +3470943023 20080731 1 900000000000207008 122670001 64033007 1 118169006 900000000000011006 900000000000451002 +3470943023 20090131 0 900000000000207008 122670001 64033007 1 118169006 900000000000011006 900000000000451002 +3470944028 20080731 1 900000000000207008 122670001 10106002 1 118171006 900000000000011006 900000000000451002 +3470944028 20090131 0 900000000000207008 122670001 10106002 1 118171006 900000000000011006 900000000000451002 +3470945027 20080731 1 900000000000207008 122671002 48426002 1 118171006 900000000000011006 900000000000451002 +3470945027 20090131 0 900000000000207008 122671002 48426002 1 118171006 900000000000011006 900000000000451002 +3470945027 20090731 1 900000000000207008 122671002 48426002 1 118171006 900000000000011006 900000000000451002 +3470945027 20100131 0 900000000000207008 122671002 48426002 1 118171006 900000000000011006 900000000000451002 +3470946026 20080731 1 900000000000207008 122672009 64033007 1 118169006 900000000000011006 900000000000451002 +3470946026 20090131 0 900000000000207008 122672009 64033007 1 118169006 900000000000011006 900000000000451002 +3470947024 20080731 1 900000000000207008 122672009 116243001 1 118171006 900000000000011006 900000000000451002 +3470947024 20090131 0 900000000000207008 122672009 116243001 1 118171006 900000000000011006 900000000000451002 +3470948025 20080731 1 900000000000207008 122673004 116029000 1 118171006 900000000000011006 900000000000451002 +3470948025 20090131 0 900000000000207008 122673004 116029000 1 118171006 900000000000011006 900000000000451002 +3470949022 20080731 1 900000000000207008 122673004 413675001 1 370133003 900000000000011006 900000000000451002 +3470949022 20090131 0 900000000000207008 122673004 413675001 1 370133003 900000000000011006 900000000000451002 +3470950022 20080731 1 900000000000207008 122674005 9846003 1 118169006 900000000000011006 900000000000451002 +3470950022 20090131 0 900000000000207008 122674005 9846003 1 118169006 900000000000011006 900000000000451002 +3470951021 20080731 1 900000000000207008 122674005 413675001 1 370133003 900000000000011006 900000000000451002 +3470951021 20090131 0 900000000000207008 122674005 413675001 1 370133003 900000000000011006 900000000000451002 +3470952025 20080731 1 900000000000207008 122675006 9846003 1 118169006 900000000000011006 900000000000451002 +3470952025 20090131 0 900000000000207008 122675006 9846003 1 118169006 900000000000011006 900000000000451002 +3470953024 20080731 1 900000000000207008 122675006 413675001 1 370133003 900000000000011006 900000000000451002 +3470953024 20090131 0 900000000000207008 122675006 413675001 1 370133003 900000000000011006 900000000000451002 +3470954029 20080731 1 900000000000207008 122676007 81516001 1 118171006 900000000000011006 900000000000451002 +3470954029 20090131 0 900000000000207008 122676007 81516001 1 118171006 900000000000011006 900000000000451002 +3470955028 20080731 1 900000000000207008 122676007 413675001 1 370133003 900000000000011006 900000000000451002 +3470955028 20090131 0 900000000000207008 122676007 413675001 1 370133003 900000000000011006 900000000000451002 +3470956027 20080731 1 900000000000207008 122677003 81516001 1 118171006 900000000000011006 900000000000451002 +3470956027 20090731 0 900000000000207008 122677003 81516001 1 118171006 900000000000011006 900000000000451002 +3470957020 20080731 1 900000000000207008 122677003 413675001 1 370133003 900000000000011006 900000000000451002 +3470957020 20090731 0 900000000000207008 122677003 413675001 1 370133003 900000000000011006 900000000000451002 +3470958026 20080731 1 900000000000207008 122678008 119279008 1 118169006 900000000000011006 900000000000451002 +3470958026 20090731 0 900000000000207008 122678008 119279008 1 118169006 900000000000011006 900000000000451002 +3470959023 20080731 1 900000000000207008 122678008 413675001 1 370133003 900000000000011006 900000000000451002 +3470959023 20090731 0 900000000000207008 122678008 413675001 1 370133003 900000000000011006 900000000000451002 +3470960029 20080731 1 900000000000207008 122679000 119278000 1 118169006 900000000000011006 900000000000451002 +3470960029 20090731 0 900000000000207008 122679000 119278000 1 118169006 900000000000011006 900000000000451002 +3471027024 20080731 1 900000000000207008 122649007 485005 1 118169006 900000000000011006 900000000000451002 +3471027024 20090131 0 900000000000207008 122649007 485005 1 118169006 900000000000011006 900000000000451002 +3471028025 20080731 1 900000000000207008 122679000 81516001 1 118171006 900000000000011006 900000000000451002 +3471028025 20090731 0 900000000000207008 122679000 81516001 1 118171006 900000000000011006 900000000000451002 +3471029022 20080731 1 900000000000207008 122680002 18639004 1 118169006 900000000000011006 900000000000451002 +3471029022 20090131 0 900000000000207008 122680002 18639004 1 118169006 900000000000011006 900000000000451002 +3471030028 20080731 1 900000000000207008 122680002 116033007 1 118171006 900000000000011006 900000000000451002 +3471030028 20090131 0 900000000000207008 122680002 116033007 1 118171006 900000000000011006 900000000000451002 +3471031029 20080731 1 900000000000207008 122681003 18639004 1 118169006 900000000000011006 900000000000451002 +3471031029 20090131 0 900000000000207008 122681003 18639004 1 118169006 900000000000011006 900000000000451002 +3471032020 20080731 1 900000000000207008 122681003 413675001 1 370133003 900000000000011006 900000000000451002 +3471032020 20090131 0 900000000000207008 122681003 413675001 1 370133003 900000000000011006 900000000000451002 +3471033026 20080731 1 900000000000207008 122682005 18639004 1 118169006 900000000000011006 900000000000451002 +3471033026 20090131 0 900000000000207008 122682005 18639004 1 118169006 900000000000011006 900000000000451002 +3471034021 20080731 1 900000000000207008 122683000 119274003 1 118169006 900000000000011006 900000000000451002 +3471034021 20090731 0 900000000000207008 122683000 119274003 1 118169006 900000000000011006 900000000000451002 +3471035022 20080731 1 900000000000207008 122683000 81516001 1 118171006 900000000000011006 900000000000451002 +3471035022 20090731 0 900000000000207008 122683000 81516001 1 118171006 900000000000011006 900000000000451002 +3471036023 20080731 1 900000000000207008 122684006 119276001 1 118169006 900000000000011006 900000000000451002 +3471036023 20090731 0 900000000000207008 122684006 119276001 1 118169006 900000000000011006 900000000000451002 +3471037025 20080731 1 900000000000207008 122684006 413675001 1 370133003 900000000000011006 900000000000451002 +3471037025 20090731 0 900000000000207008 122684006 413675001 1 370133003 900000000000011006 900000000000451002 +3471038024 20080731 1 900000000000207008 122685007 119277005 1 118169006 900000000000011006 900000000000451002 +3471038024 20090731 0 900000000000207008 122685007 119277005 1 118169006 900000000000011006 900000000000451002 +3471039027 20080731 1 900000000000207008 122685007 413675001 1 370133003 900000000000011006 900000000000451002 +3471039027 20090731 0 900000000000207008 122685007 413675001 1 370133003 900000000000011006 900000000000451002 +3471040025 20080731 1 900000000000207008 122686008 112902005 1 118171006 900000000000011006 900000000000451002 +3471040025 20090131 0 900000000000207008 122686008 112902005 1 118171006 900000000000011006 900000000000451002 +3471041026 20080731 1 900000000000207008 122687004 63016009 1 118171006 900000000000011006 900000000000451002 +3471041026 20090131 0 900000000000207008 122687004 63016009 1 118171006 900000000000011006 900000000000451002 +3471042022 20080731 1 900000000000207008 122688009 89837001 1 118169006 900000000000011006 900000000000451002 +3471042022 20090131 0 900000000000207008 122688009 89837001 1 118169006 900000000000011006 900000000000451002 +3471043028 20080731 1 900000000000207008 122688009 81232004 1 118171006 900000000000011006 900000000000451002 +3471043028 20090131 0 900000000000207008 122688009 81232004 1 118171006 900000000000011006 900000000000451002 +3471044023 20080731 1 900000000000207008 122689001 29392005 2 118169006 900000000000011006 900000000000451002 +3471044023 20110731 0 900000000000207008 122689001 29392005 2 118169006 900000000000011006 900000000000451002 +3471045024 20080731 1 900000000000207008 122689001 9846003 1 118169006 900000000000011006 900000000000451002 +3471045024 20110731 0 900000000000207008 122689001 9846003 1 118169006 900000000000011006 900000000000451002 +3471046020 20080731 1 900000000000207008 122689001 413675001 1 370133003 900000000000011006 900000000000451002 +3471046020 20110731 0 900000000000207008 122689001 413675001 1 370133003 900000000000011006 900000000000451002 +3471047027 20080731 1 900000000000207008 122690005 12003004 2 118169006 900000000000011006 900000000000451002 +3471047027 20100131 0 900000000000207008 122690005 12003004 2 118169006 900000000000011006 900000000000451002 +3471048021 20080731 1 900000000000207008 122690005 18639004 1 118169006 900000000000011006 900000000000451002 +3471048021 20100131 0 900000000000207008 122690005 18639004 1 118169006 900000000000011006 900000000000451002 +3471049029 20080731 1 900000000000207008 122690005 413675001 2 370133003 900000000000011006 900000000000451002 +3471049029 20100131 0 900000000000207008 122690005 413675001 2 370133003 900000000000011006 900000000000451002 +3471050029 20080731 1 900000000000207008 122691009 116245008 1 118171006 900000000000011006 900000000000451002 +3471050029 20090131 0 900000000000207008 122691009 116245008 1 118171006 900000000000011006 900000000000451002 +3471051025 20080731 1 900000000000207008 122692002 49755003 1 118168003 900000000000011006 900000000000451002 +3471051025 20090131 0 900000000000207008 122692002 49755003 1 118168003 900000000000011006 900000000000451002 +3471052021 20080731 1 900000000000207008 122692002 116246009 1 118171006 900000000000011006 900000000000451002 +3471052021 20090131 0 900000000000207008 122692002 116246009 1 118171006 900000000000011006 900000000000451002 +3471053027 20080731 1 900000000000207008 122693007 76784001 1 118169006 900000000000011006 900000000000451002 +3471053027 20090731 0 900000000000207008 122693007 76784001 1 118169006 900000000000011006 900000000000451002 +3471054022 20080731 1 900000000000207008 122693007 65756000 1 118171006 900000000000011006 900000000000451002 +3471054022 20090731 0 900000000000207008 122693007 65756000 1 118171006 900000000000011006 900000000000451002 +3471055023 20080731 1 900000000000207008 122694001 116145001 1 118171006 900000000000011006 900000000000451002 +3471055023 20090131 0 900000000000207008 122694001 116145001 1 118171006 900000000000011006 900000000000451002 +3471058020 20080731 1 900000000000207008 122696004 116142003 1 118171006 900000000000011006 900000000000451002 +3471058020 20090131 0 900000000000207008 122696004 116142003 1 118171006 900000000000011006 900000000000451002 +3471058020 20110731 1 900000000000207008 122696004 116142003 1 118171006 900000000000011006 900000000000451002 +3471059028 20080731 1 900000000000207008 122696004 413675001 1 370133003 900000000000011006 900000000000451002 +3471059028 20090131 0 900000000000207008 122696004 413675001 1 370133003 900000000000011006 900000000000451002 +3471059028 20110731 1 900000000000207008 122696004 413675001 1 370133003 900000000000011006 900000000000451002 +3471060022 20080731 1 900000000000207008 122697008 55853002 1 118171006 900000000000011006 900000000000451002 +3471060022 20090731 0 900000000000207008 122697008 55853002 1 118171006 900000000000011006 900000000000451002 +3471061021 20080731 1 900000000000207008 122698003 71252005 1 118169006 900000000000011006 900000000000451002 +3471061021 20090131 0 900000000000207008 122698003 71252005 1 118169006 900000000000011006 900000000000451002 +3471062025 20080731 1 900000000000207008 122698003 116247000 1 118171006 900000000000011006 900000000000451002 +3471062025 20090131 0 900000000000207008 122698003 116247000 1 118171006 900000000000011006 900000000000451002 +3471063024 20080731 1 900000000000207008 122699006 49755003 1 118168003 900000000000011006 900000000000451002 +3471063024 20090131 0 900000000000207008 122699006 49755003 1 118168003 900000000000011006 900000000000451002 +3471064029 20080731 1 900000000000207008 122699006 71252005 1 118169006 900000000000011006 900000000000451002 +3471064029 20090131 0 900000000000207008 122699006 71252005 1 118169006 900000000000011006 900000000000451002 +3471065028 20080731 1 900000000000207008 122699006 413675001 1 370133003 900000000000011006 900000000000451002 +3471065028 20090131 0 900000000000207008 122699006 413675001 1 370133003 900000000000011006 900000000000451002 +3471066027 20080731 1 900000000000207008 122700007 71252005 1 118169006 900000000000011006 900000000000451002 +3471066027 20090131 0 900000000000207008 122700007 71252005 1 118169006 900000000000011006 900000000000451002 +3471067020 20080731 1 900000000000207008 122700007 236886002 1 118171006 900000000000011006 900000000000451002 +3471067020 20090131 0 900000000000207008 122700007 236886002 1 118171006 900000000000011006 900000000000451002 +3471068026 20080731 1 900000000000207008 122701006 116142003 1 118171006 900000000000011006 900000000000451002 +3471068026 20090131 0 900000000000207008 122701006 116142003 1 118171006 900000000000011006 900000000000451002 +3471068026 20100131 1 900000000000207008 122701006 116142003 1 118171006 900000000000011006 900000000000451002 +3471068026 20100731 0 900000000000207008 122701006 116142003 1 118171006 900000000000011006 900000000000451002 +3471068026 20110731 1 900000000000207008 122701006 116142003 1 118171006 900000000000011006 900000000000451002 +3471069023 20080731 1 900000000000207008 122701006 413675001 1 370133003 900000000000011006 900000000000451002 +3471069023 20090131 0 900000000000207008 122701006 413675001 1 370133003 900000000000011006 900000000000451002 +3471069023 20100131 1 900000000000207008 122701006 413675001 1 370133003 900000000000011006 900000000000451002 +3471069023 20100731 0 900000000000207008 122701006 413675001 1 370133003 900000000000011006 900000000000451002 +3471069023 20110731 1 900000000000207008 122701006 413675001 1 370133003 900000000000011006 900000000000451002 +3471070024 20080731 1 900000000000207008 122702004 71252005 1 118169006 900000000000011006 900000000000451002 +3471070024 20090731 0 900000000000207008 122702004 71252005 1 118169006 900000000000011006 900000000000451002 +3471071023 20080731 1 900000000000207008 122702004 413675001 1 370133003 900000000000011006 900000000000451002 +3471071023 20090731 0 900000000000207008 122702004 413675001 1 370133003 900000000000011006 900000000000451002 +3471072027 20080731 1 900000000000207008 122703009 2739003 1 118169006 900000000000011006 900000000000451002 +3471072027 20090131 0 900000000000207008 122703009 2739003 1 118169006 900000000000011006 900000000000451002 +3471073021 20080731 1 900000000000207008 122703009 413675001 1 370133003 900000000000011006 900000000000451002 +3471073021 20090131 0 900000000000207008 122703009 413675001 1 370133003 900000000000011006 900000000000451002 +3471074026 20080731 1 900000000000207008 122704003 2739003 1 118169006 900000000000011006 900000000000451002 +3471074026 20090131 0 900000000000207008 122704003 2739003 1 118169006 900000000000011006 900000000000451002 +3471075025 20080731 1 900000000000207008 122705002 2739003 1 118169006 900000000000011006 900000000000451002 +3471075025 20090131 0 900000000000207008 122705002 2739003 1 118169006 900000000000011006 900000000000451002 +3471076029 20080731 1 900000000000207008 122705002 236886002 1 118171006 900000000000011006 900000000000451002 +3471076029 20090131 0 900000000000207008 122705002 236886002 1 118171006 900000000000011006 900000000000451002 +3471077022 20080731 1 900000000000207008 122706001 2739003 1 118169006 900000000000011006 900000000000451002 +3471077022 20090131 0 900000000000207008 122706001 2739003 1 118169006 900000000000011006 900000000000451002 +3471077022 20110731 1 900000000000207008 122706001 2739003 1 118169006 900000000000011006 900000000000451002 +3471078028 20080731 1 900000000000207008 122706001 413675001 1 370133003 900000000000011006 900000000000451002 +3471078028 20090131 0 900000000000207008 122706001 413675001 1 370133003 900000000000011006 900000000000451002 +3471078028 20110731 1 900000000000207008 122706001 413675001 1 370133003 900000000000011006 900000000000451002 +3471161023 20080731 1 900000000000207008 122707005 55853002 1 118171006 900000000000011006 900000000000451002 +3471161023 20090131 0 900000000000207008 122707005 55853002 1 118171006 900000000000011006 900000000000451002 +3471162027 20080731 1 900000000000207008 122708000 15497006 1 118169006 900000000000011006 900000000000451002 +3471162027 20090131 0 900000000000207008 122708000 15497006 1 118169006 900000000000011006 900000000000451002 +3471163021 20080731 1 900000000000207008 122709008 15497006 1 118169006 900000000000011006 900000000000451002 +3471163021 20090131 0 900000000000207008 122709008 15497006 1 118169006 900000000000011006 900000000000451002 +3471164026 20080731 1 900000000000207008 122709008 116172009 1 118171006 900000000000011006 900000000000451002 +3471164026 20090131 0 900000000000207008 122709008 116172009 1 118171006 900000000000011006 900000000000451002 +3471165025 20080731 1 900000000000207008 122710003 15497006 1 118169006 900000000000011006 900000000000451002 +3471165025 20090731 0 900000000000207008 122710003 15497006 1 118169006 900000000000011006 900000000000451002 +3471166029 20080731 1 900000000000207008 122710003 413675001 1 370133003 900000000000011006 900000000000451002 +3471166029 20090731 0 900000000000207008 122710003 413675001 1 370133003 900000000000011006 900000000000451002 +3471167022 20080731 1 900000000000207008 122711004 15497006 1 118169006 900000000000011006 900000000000451002 +3471167022 20090131 0 900000000000207008 122711004 15497006 1 118169006 900000000000011006 900000000000451002 +3471168028 20080731 1 900000000000207008 122711004 116167000 1 118171006 900000000000011006 900000000000451002 +3471168028 20090131 0 900000000000207008 122711004 116167000 1 118171006 900000000000011006 900000000000451002 +3471169020 20080731 1 900000000000207008 122712006 15497006 1 118169006 900000000000011006 900000000000451002 +3471169020 20090131 0 900000000000207008 122712006 15497006 1 118169006 900000000000011006 900000000000451002 +3471170021 20080731 1 900000000000207008 122713001 20837000 1 118169006 900000000000011006 900000000000451002 +3471170021 20090131 0 900000000000207008 122713001 20837000 1 118169006 900000000000011006 900000000000451002 +3471171020 20080731 1 900000000000207008 122713001 29672006 1 118171006 900000000000011006 900000000000451002 +3471171020 20090131 0 900000000000207008 122713001 29672006 1 118171006 900000000000011006 900000000000451002 +3471172029 20080731 1 900000000000207008 122714007 413675001 1 370133003 900000000000011006 900000000000451002 +3471172029 20090131 0 900000000000207008 122714007 413675001 1 370133003 900000000000011006 900000000000451002 +3471173023 20080731 1 900000000000207008 122715008 413675001 1 370133003 900000000000011006 900000000000451002 +3471173023 20090131 0 900000000000207008 122715008 413675001 1 370133003 900000000000011006 900000000000451002 +3471174028 20080731 1 900000000000207008 122716009 43981004 1 118169006 900000000000011006 900000000000451002 +3471174028 20090131 0 900000000000207008 122716009 43981004 1 118169006 900000000000011006 900000000000451002 +3471175027 20080731 1 900000000000207008 122716009 413675001 1 370133003 900000000000011006 900000000000451002 +3471175027 20090131 0 900000000000207008 122716009 413675001 1 370133003 900000000000011006 900000000000451002 +3471176026 20080731 1 900000000000207008 122717000 43981004 1 118169006 900000000000011006 900000000000451002 +3471176026 20090131 0 900000000000207008 122717000 43981004 1 118169006 900000000000011006 900000000000451002 +3471177024 20080731 1 900000000000207008 122717000 29672006 1 118171006 900000000000011006 900000000000451002 +3471177024 20090131 0 900000000000207008 122717000 29672006 1 118171006 900000000000011006 900000000000451002 +3471178025 20080731 1 900000000000207008 122718005 43981004 1 118169006 900000000000011006 900000000000451002 +3471178025 20090131 0 900000000000207008 122718005 43981004 1 118169006 900000000000011006 900000000000451002 +3471179022 20080731 1 900000000000207008 122718005 176915001 1 118171006 900000000000011006 900000000000451002 +3471179022 20090131 0 900000000000207008 122718005 176915001 1 118171006 900000000000011006 900000000000451002 +3471180020 20080731 1 900000000000207008 122719002 31435000 1 118169006 900000000000011006 900000000000451002 +3471180020 20090731 0 900000000000207008 122719002 31435000 1 118169006 900000000000011006 900000000000451002 +3471181024 20080731 1 900000000000207008 122719002 120053002 1 118171006 900000000000011006 900000000000451002 +3471181024 20090731 0 900000000000207008 122719002 120053002 1 118171006 900000000000011006 900000000000451002 +3471182028 20080731 1 900000000000207008 122720008 119228002 1 118169006 900000000000011006 900000000000451002 +3471182028 20090731 0 900000000000207008 122720008 119228002 1 118169006 900000000000011006 900000000000451002 +3471183022 20080731 1 900000000000207008 122720008 14353000 1 118171006 900000000000011006 900000000000451002 +3471183022 20090731 0 900000000000207008 122720008 14353000 1 118171006 900000000000011006 900000000000451002 +3471184027 20080731 1 900000000000207008 122721007 31435000 1 118169006 900000000000011006 900000000000451002 +3471184027 20090731 0 900000000000207008 122721007 31435000 1 118169006 900000000000011006 900000000000451002 +3471185026 20080731 1 900000000000207008 122721007 52224004 1 118171006 900000000000011006 900000000000451002 +3471185026 20090731 0 900000000000207008 122721007 52224004 1 118171006 900000000000011006 900000000000451002 +3471186025 20080731 1 900000000000207008 122722000 413675001 1 370133003 900000000000011006 900000000000451002 +3471186025 20090731 0 900000000000207008 122722000 413675001 1 370133003 900000000000011006 900000000000451002 +3471187023 20080731 1 900000000000207008 122723005 113293009 1 118169006 900000000000011006 900000000000451002 +3471187023 20090731 0 900000000000207008 122723005 113293009 1 118169006 900000000000011006 900000000000451002 +3471188029 20080731 1 900000000000207008 122723005 116028008 1 118171006 900000000000011006 900000000000451002 +3471188029 20090731 0 900000000000207008 122723005 116028008 1 118171006 900000000000011006 900000000000451002 +3471189021 20080731 1 900000000000207008 122724004 41216001 1 118169006 900000000000011006 900000000000451002 +3471189021 20090131 0 900000000000207008 122724004 41216001 1 118169006 900000000000011006 900000000000451002 +3471190028 20080731 1 900000000000207008 122724004 413675001 1 370133003 900000000000011006 900000000000451002 +3471190028 20090131 0 900000000000207008 122724004 413675001 1 370133003 900000000000011006 900000000000451002 +3471191029 20080731 1 900000000000207008 122725003 41216001 1 118169006 900000000000011006 900000000000451002 +3471191029 20090131 0 900000000000207008 122725003 41216001 1 118169006 900000000000011006 900000000000451002 +3471192020 20080731 1 900000000000207008 122725003 26294005 1 118171006 900000000000011006 900000000000451002 +3471192020 20090131 0 900000000000207008 122725003 26294005 1 118171006 900000000000011006 900000000000451002 +3471193026 20080731 1 900000000000207008 122726002 41216001 1 118169006 900000000000011006 900000000000451002 +3471193026 20090131 0 900000000000207008 122726002 41216001 1 118169006 900000000000011006 900000000000451002 +3471194021 20080731 1 900000000000207008 122727006 41216001 1 118169006 900000000000011006 900000000000451002 +3471194021 20090131 0 900000000000207008 122727006 41216001 1 118169006 900000000000011006 900000000000451002 +3471195022 20080731 1 900000000000207008 122727006 36253005 1 118171006 900000000000011006 900000000000451002 +3471195022 20090131 0 900000000000207008 122727006 36253005 1 118171006 900000000000011006 900000000000451002 +3471196023 20080731 1 900000000000207008 122730004 279572002 1 118169006 900000000000011006 900000000000451002 +3471196023 20090131 0 900000000000207008 122730004 279572002 1 118169006 900000000000011006 900000000000451002 +3471197025 20080731 1 900000000000207008 122732007 69748006 1 118169006 900000000000011006 900000000000451002 +3471197025 20090131 0 900000000000207008 122732007 69748006 1 118169006 900000000000011006 900000000000451002 +3471198024 20080731 1 900000000000207008 122732007 413675001 1 370133003 900000000000011006 900000000000451002 +3471198024 20090131 0 900000000000207008 122732007 413675001 1 370133003 900000000000011006 900000000000451002 +3471199027 20080731 1 900000000000207008 122733002 29565003 1 118169006 900000000000011006 900000000000451002 +3471199027 20090131 0 900000000000207008 122733002 29565003 1 118169006 900000000000011006 900000000000451002 +3471200029 20080731 1 900000000000207008 122733002 413675001 1 370133003 900000000000011006 900000000000451002 +3471200029 20090131 0 900000000000207008 122733002 413675001 1 370133003 900000000000011006 900000000000451002 +3471201025 20080731 1 900000000000207008 122734008 79163004 1 118169006 900000000000011006 900000000000451002 +3471201025 20090131 0 900000000000207008 122734008 79163004 1 118169006 900000000000011006 900000000000451002 +3471202021 20080731 1 900000000000207008 122734008 302338000 1 118171006 900000000000011006 900000000000451002 +3471202021 20090131 0 900000000000207008 122734008 302338000 1 118171006 900000000000011006 900000000000451002 +3471203027 20080731 1 900000000000207008 122735009 91276009 1 118171006 900000000000011006 900000000000451002 +3471203027 20090131 0 900000000000207008 122735009 91276009 1 118171006 900000000000011006 900000000000451002 +3471204022 20080731 1 900000000000207008 122735009 413675001 1 370133003 900000000000011006 900000000000451002 +3471204022 20090131 0 900000000000207008 122735009 413675001 1 370133003 900000000000011006 900000000000451002 +3471205023 20080731 1 900000000000207008 122736005 78067005 1 118169006 900000000000011006 900000000000451002 +3471205023 20090131 0 900000000000207008 122736005 78067005 1 118169006 900000000000011006 900000000000451002 +3471206024 20080731 1 900000000000207008 122737001 44578009 1 118171006 900000000000011006 900000000000451002 +3471206024 20090131 0 900000000000207008 122737001 44578009 1 118171006 900000000000011006 900000000000451002 +3471207026 20080731 1 900000000000207008 122737001 413675001 1 370133003 900000000000011006 900000000000451002 +3471207026 20090131 0 900000000000207008 122737001 413675001 1 370133003 900000000000011006 900000000000451002 +3471208020 20080731 1 900000000000207008 122738006 76752008 1 118169006 900000000000011006 900000000000451002 +3471208020 20090131 0 900000000000207008 122738006 76752008 1 118169006 900000000000011006 900000000000451002 +3471209028 20080731 1 900000000000207008 122738006 413675001 1 370133003 900000000000011006 900000000000451002 +3471209028 20090131 0 900000000000207008 122738006 413675001 1 370133003 900000000000011006 900000000000451002 +3471210022 20080731 1 900000000000207008 122739003 28768007 1 118171006 900000000000011006 900000000000451002 +3471210022 20090131 0 900000000000207008 122739003 28768007 1 118171006 900000000000011006 900000000000451002 +3471280026 20080731 1 900000000000207008 167868004 85537004 1 118169006 900000000000011006 900000000000451002 +3471280026 20090131 0 900000000000207008 167868004 85537004 1 118169006 900000000000011006 900000000000451002 +3471280026 20110131 1 900000000000207008 167868004 85537004 1 118169006 900000000000011006 900000000000451002 +3471280026 20110731 0 900000000000207008 167868004 85537004 1 118169006 900000000000011006 900000000000451002 +3471281027 20080731 1 900000000000207008 167869007 16953009 1 118169006 900000000000011006 900000000000451002 +3471281027 20090131 0 900000000000207008 167869007 16953009 1 118169006 900000000000011006 900000000000451002 +3471281027 20110131 1 900000000000207008 167869007 16953009 1 118169006 900000000000011006 900000000000451002 +3471281027 20110731 0 900000000000207008 167869007 16953009 1 118169006 900000000000011006 900000000000451002 +3471282023 20080731 1 900000000000207008 167870008 6085005 1 370133003 900000000000011006 900000000000451002 +3471282023 20090131 0 900000000000207008 167870008 6085005 1 370133003 900000000000011006 900000000000451002 +3471282023 20110131 1 900000000000207008 167870008 6085005 1 370133003 900000000000011006 900000000000451002 +3471282023 20110731 0 900000000000207008 167870008 6085005 1 370133003 900000000000011006 900000000000451002 +3471283029 20080731 1 900000000000207008 167871007 40238009 1 118169006 900000000000011006 900000000000451002 +3471283029 20090131 0 900000000000207008 167871007 40238009 1 118169006 900000000000011006 900000000000451002 +3471283029 20110131 1 900000000000207008 167871007 40238009 1 118169006 900000000000011006 900000000000451002 +3471283029 20110731 0 900000000000207008 167871007 40238009 1 118169006 900000000000011006 900000000000451002 +3471284024 20080731 1 900000000000207008 167872000 125682004 1 118169006 900000000000011006 900000000000451002 +3471284024 20090131 0 900000000000207008 167872000 125682004 1 118169006 900000000000011006 900000000000451002 +3471285020 20080731 1 900000000000207008 167873005 24136001 1 118169006 900000000000011006 900000000000451002 +3471285020 20090131 0 900000000000207008 167873005 24136001 1 118169006 900000000000011006 900000000000451002 +3471285020 20110131 1 900000000000207008 167873005 24136001 1 118169006 900000000000011006 900000000000451002 +3471285020 20110731 0 900000000000207008 167873005 24136001 1 118169006 900000000000011006 900000000000451002 +3471286021 20080731 1 900000000000207008 167874004 49076000 1 118169006 900000000000011006 900000000000451002 +3471286021 20090131 0 900000000000207008 167874004 49076000 1 118169006 900000000000011006 900000000000451002 +3471286021 20110131 1 900000000000207008 167874004 49076000 1 118169006 900000000000011006 900000000000451002 +3471286021 20110731 0 900000000000207008 167874004 49076000 1 118169006 900000000000011006 900000000000451002 +3471287028 20080731 1 900000000000207008 167874004 6085005 1 370133003 900000000000011006 900000000000451002 +3471287028 20090131 0 900000000000207008 167874004 6085005 1 370133003 900000000000011006 900000000000451002 +3471287028 20110131 1 900000000000207008 167874004 6085005 1 370133003 900000000000011006 900000000000451002 +3471287028 20110731 0 900000000000207008 167874004 6085005 1 370133003 900000000000011006 900000000000451002 +3471288022 20080731 1 900000000000207008 167875003 70258002 1 118169006 900000000000011006 900000000000451002 +3471288022 20090131 0 900000000000207008 167875003 70258002 1 118169006 900000000000011006 900000000000451002 +3471288022 20110131 1 900000000000207008 167875003 70258002 1 118169006 900000000000011006 900000000000451002 +3471288022 20110731 0 900000000000207008 167875003 70258002 1 118169006 900000000000011006 900000000000451002 +3471289025 20080731 1 900000000000207008 167876002 26552008 1 118169006 900000000000011006 900000000000451002 +3471289025 20090131 0 900000000000207008 167876002 26552008 1 118169006 900000000000011006 900000000000451002 +3471289025 20110131 1 900000000000207008 167876002 26552008 1 118169006 900000000000011006 900000000000451002 +3471289025 20110731 0 900000000000207008 167876002 26552008 1 118169006 900000000000011006 900000000000451002 +3471290023 20080731 1 900000000000207008 167877006 122477008 1 118169006 900000000000011006 900000000000451002 +3471290023 20090131 0 900000000000207008 167877006 122477008 1 118169006 900000000000011006 900000000000451002 +3471301028 20080731 1 900000000000207008 168136008 264585001 1 118168003 900000000000011006 900000000000451002 +3471301028 20090131 0 900000000000207008 168136008 264585001 1 118168003 900000000000011006 900000000000451002 +3471302024 20080731 1 900000000000207008 168136008 71854001 1 118169006 900000000000011006 900000000000451002 +3471302024 20090131 0 900000000000207008 168136008 71854001 1 118169006 900000000000011006 900000000000451002 +3471303025 20080731 1 900000000000207008 168137004 69695003 1 118169006 900000000000011006 900000000000451002 +3471303025 20090131 0 900000000000207008 168137004 69695003 1 118169006 900000000000011006 900000000000451002 +3471304020 20080731 1 900000000000207008 168138009 69695003 1 118169006 900000000000011006 900000000000451002 +3471304020 20090731 0 900000000000207008 168138009 69695003 1 118169006 900000000000011006 900000000000451002 +3471305021 20080731 1 900000000000207008 168138009 173830003 1 118171006 900000000000011006 900000000000451002 +3471305021 20090731 0 900000000000207008 168138009 173830003 1 118171006 900000000000011006 900000000000451002 +3471306022 20080731 1 900000000000207008 168141000 410582009 1 370133003 900000000000011006 900000000000451002 +3471306022 20090131 0 900000000000207008 168141000 410582009 1 370133003 900000000000011006 900000000000451002 +3471315026 20080731 1 900000000000207008 122877000 44567001 1 118169006 900000000000011006 900000000000451002 +3471315026 20090131 0 900000000000207008 122877000 44567001 1 118169006 900000000000011006 900000000000451002 +3471315026 20100731 1 900000000000207008 122877000 44567001 1 118169006 900000000000011006 900000000000451002 +3471315026 20110131 0 900000000000207008 122877000 44567001 1 118169006 900000000000011006 900000000000451002 +3471316025 20080731 1 900000000000207008 122877000 129112001 1 118171006 900000000000011006 900000000000451002 +3471316025 20090131 0 900000000000207008 122877000 129112001 1 118171006 900000000000011006 900000000000451002 +3471316025 20100731 1 900000000000207008 122877000 129112001 1 118171006 900000000000011006 900000000000451002 +3471316025 20110131 0 900000000000207008 122877000 129112001 1 118171006 900000000000011006 900000000000451002 +3471317023 20080731 1 900000000000207008 122880004 73416001 1 118171006 900000000000011006 900000000000451002 +3471317023 20090131 0 900000000000207008 122880004 73416001 1 118171006 900000000000011006 900000000000451002 +3471318029 20080731 1 900000000000207008 122880004 78014005 1 370133003 900000000000011006 900000000000451002 +3471318029 20090131 0 900000000000207008 122880004 78014005 1 370133003 900000000000011006 900000000000451002 +3471486023 20080731 1 900000000000207008 122726002 67598001 1 118171006 900000000000011006 900000000000451002 +3471486023 20090131 0 900000000000207008 122726002 67598001 1 118171006 900000000000011006 900000000000451002 +3471681023 20080731 1 900000000000207008 110897001 14016003 1 118169006 900000000000011006 900000000000451002 +3471681023 20090131 0 900000000000207008 110897001 14016003 1 118169006 900000000000011006 900000000000451002 +3471682027 20080731 1 900000000000207008 110897001 413679007 1 370133003 900000000000011006 900000000000451002 +3471682027 20090131 0 900000000000207008 110897001 413679007 1 370133003 900000000000011006 900000000000451002 +3471761029 20080731 1 900000000000207008 116161004 29872008 1 118171006 900000000000011006 900000000000451002 +3471761029 20090131 0 900000000000207008 116161004 29872008 1 118171006 900000000000011006 900000000000451002 +3471907021 20080731 1 900000000000207008 122569007 74616000 1 370133003 900000000000011006 900000000000451002 +3471907021 20090131 0 900000000000207008 122569007 74616000 1 370133003 900000000000011006 900000000000451002 +3472068029 20080731 1 900000000000207008 423671006 83670000 1 118169006 900000000000011006 900000000000451002 +3472068029 20090131 0 900000000000207008 423671006 83670000 1 118169006 900000000000011006 900000000000451002 +3472068029 20100131 1 900000000000207008 423671006 83670000 1 118169006 900000000000011006 900000000000451002 +3472068029 20100731 0 900000000000207008 423671006 83670000 1 118169006 900000000000011006 900000000000451002 +3472099028 20080731 1 900000000000207008 373101006 265253005 1 118171006 900000000000011006 900000000000451002 +3472099028 20090131 0 900000000000207008 373101006 265253005 1 118171006 900000000000011006 900000000000451002 +3472409028 20080731 1 900000000000207008 122697008 35039007 1 118169006 900000000000011006 900000000000451002 +3472409028 20090731 0 900000000000207008 122697008 35039007 1 118169006 900000000000011006 900000000000451002 +3472500026 20080731 1 900000000000207008 122690005 116033007 1 118171006 900000000000011006 900000000000451002 +3472500026 20100131 0 900000000000207008 122690005 116033007 1 118171006 900000000000011006 900000000000451002 +3472570027 20080731 1 900000000000207008 399713008 54535009 1 118171006 900000000000011006 900000000000451002 +3472570027 20090131 0 900000000000207008 399713008 54535009 1 118171006 900000000000011006 900000000000451002 +3473279021 20080731 1 900000000000207008 399689008 69748006 1 118169006 900000000000011006 900000000000451002 +3473279021 20090731 0 900000000000207008 399689008 69748006 1 118169006 900000000000011006 900000000000451002 +3473460021 20080731 1 900000000000207008 122711004 108369006 1 118168003 900000000000011006 900000000000451002 +3473460021 20090131 0 900000000000207008 122711004 108369006 1 118168003 900000000000011006 900000000000451002 +3473525029 20080731 1 900000000000207008 399658009 25149004 1 118169006 900000000000011006 900000000000451002 +3473525029 20090731 0 900000000000207008 399658009 25149004 1 118169006 900000000000011006 900000000000451002 +3473555020 20080731 1 900000000000207008 309285007 71252005 1 118169006 900000000000011006 900000000000451002 +3473555020 20090131 0 900000000000207008 309285007 71252005 1 118169006 900000000000011006 900000000000451002 +3473559025 20080731 1 900000000000207008 385339004 53505006 1 118169006 900000000000011006 900000000000451002 +3473559025 20090131 0 900000000000207008 385339004 53505006 1 118169006 900000000000011006 900000000000451002 +3473569020 20080731 1 900000000000207008 309181006 59066005 1 118169006 900000000000011006 900000000000451002 +3473569020 20090731 0 900000000000207008 309181006 59066005 1 118169006 900000000000011006 900000000000451002 +3473760022 20080731 1 900000000000207008 309273004 36503003 1 118171006 900000000000011006 900000000000451002 +3473760022 20090131 0 900000000000207008 309273004 36503003 1 118171006 900000000000011006 900000000000451002 +3473760022 20100131 1 900000000000207008 309273004 36503003 1 118171006 900000000000011006 900000000000451002 +3473760022 20100731 0 900000000000207008 309273004 36503003 1 118171006 900000000000011006 900000000000451002 +3473833020 20080731 1 900000000000207008 258577004 3318003 1 370133003 900000000000011006 900000000000451002 +3473833020 20090131 0 900000000000207008 258577004 3318003 1 370133003 900000000000011006 900000000000451002 +3473841020 20080731 1 900000000000207008 122581006 87612001 1 370133003 900000000000011006 900000000000451002 +3473841020 20090131 0 900000000000207008 122581006 87612001 1 370133003 900000000000011006 900000000000451002 +3473841020 20090731 1 900000000000207008 122581006 87612001 1 370133003 900000000000011006 900000000000451002 +3473841020 20100131 0 900000000000207008 122581006 87612001 1 370133003 900000000000011006 900000000000451002 +3473841020 20110131 1 900000000000207008 122581006 87612001 1 370133003 900000000000011006 900000000000451002 +3473841020 20110731 0 900000000000207008 122581006 87612001 1 370133003 900000000000011006 900000000000451002 +3474196022 20080731 1 900000000000207008 122673004 64033007 1 118169006 900000000000011006 900000000000451002 +3474196022 20090131 0 900000000000207008 122673004 64033007 1 118169006 900000000000011006 900000000000451002 +3474439023 20080731 1 900000000000207008 122737001 76752008 1 118169006 900000000000011006 900000000000451002 +3474439023 20090131 0 900000000000207008 122737001 76752008 1 118169006 900000000000011006 900000000000451002 +3474445026 20080731 1 900000000000207008 399752001 53505006 1 118169006 900000000000011006 900000000000451002 +3474445026 20090131 0 900000000000207008 399752001 53505006 1 118169006 900000000000011006 900000000000451002 +3474587026 20080731 1 900000000000207008 122568004 247450001 1 370133003 900000000000011006 900000000000451002 +3474587026 20090131 0 900000000000207008 122568004 247450001 1 370133003 900000000000011006 900000000000451002 +3477891020 20080731 1 900000000000207008 276833005 431938005 1 118169006 900000000000011006 900000000000451002 +3477891020 20090131 0 900000000000207008 276833005 431938005 1 118169006 900000000000011006 900000000000451002 +3478271022 20080731 1 900000000000207008 278020009 431938005 1 118169006 900000000000011006 900000000000451002 +3478271022 20090131 0 900000000000207008 278020009 431938005 1 118169006 900000000000011006 900000000000451002 +3478272026 20080731 1 900000000000207008 278020009 78014005 1 370133003 900000000000011006 900000000000451002 +3478272026 20090131 0 900000000000207008 278020009 78014005 1 370133003 900000000000011006 900000000000451002 +3478632027 20080731 1 900000000000207008 258407001 413675001 1 370133003 900000000000011006 900000000000451002 +3478632027 20090131 0 900000000000207008 258407001 413675001 1 370133003 900000000000011006 900000000000451002 +3478633021 20080731 1 900000000000207008 258411007 18962004 1 118169006 900000000000011006 900000000000451002 +3478633021 20090131 0 900000000000207008 258411007 18962004 1 118169006 900000000000011006 900000000000451002 +3478633021 20110131 1 900000000000207008 258411007 18962004 1 118169006 900000000000011006 900000000000451002 +3478633021 20110731 0 900000000000207008 258411007 18962004 1 118169006 900000000000011006 900000000000451002 +3478634026 20080731 1 900000000000207008 258412000 14766002 1 118171006 900000000000011006 900000000000451002 +3478634026 20090131 0 900000000000207008 258412000 14766002 1 118171006 900000000000011006 900000000000451002 +3478635025 20080731 1 900000000000207008 258412000 72869002 1 370133003 900000000000011006 900000000000451002 +3478635025 20090131 0 900000000000207008 258412000 72869002 1 370133003 900000000000011006 900000000000451002 +3478636029 20080731 1 900000000000207008 258414004 55603005 1 118169006 900000000000011006 900000000000451002 +3478636029 20090131 0 900000000000207008 258414004 55603005 1 118169006 900000000000011006 900000000000451002 +3478637022 20080731 1 900000000000207008 258417006 272673000 1 118169006 900000000000011006 900000000000451002 +3478637022 20090131 0 900000000000207008 258417006 272673000 1 118169006 900000000000011006 900000000000451002 +3478638028 20080731 1 900000000000207008 258418001 413675001 1 370133003 900000000000011006 900000000000451002 +3478638028 20090131 0 900000000000207008 258418001 413675001 1 370133003 900000000000011006 900000000000451002 +3478639020 20080731 1 900000000000207008 258419009 413675001 1 370133003 900000000000011006 900000000000451002 +3478639020 20090131 0 900000000000207008 258419009 413675001 1 370133003 900000000000011006 900000000000451002 +3478640022 20080731 1 900000000000207008 258420003 367643001 1 118168003 900000000000011006 900000000000451002 +3478640022 20090131 0 900000000000207008 258420003 367643001 1 118168003 900000000000011006 900000000000451002 +3478641021 20080731 1 900000000000207008 258422006 43174007 1 118169006 900000000000011006 900000000000451002 +3478641021 20090131 0 900000000000207008 258422006 43174007 1 118169006 900000000000011006 900000000000451002 +3478642025 20080731 1 900000000000207008 258424007 413675001 1 370133003 900000000000011006 900000000000451002 +3478642025 20090131 0 900000000000207008 258424007 413675001 1 370133003 900000000000011006 900000000000451002 +3478643024 20080731 1 900000000000207008 258426009 413675001 1 370133003 900000000000011006 900000000000451002 +3478643024 20090131 0 900000000000207008 258426009 413675001 1 370133003 900000000000011006 900000000000451002 +3478644029 20080731 1 900000000000207008 258428005 26864007 1 118169006 900000000000011006 900000000000451002 +3478644029 20090131 0 900000000000207008 258428005 26864007 1 118169006 900000000000011006 900000000000451002 +3478645028 20080731 1 900000000000207008 258429002 34402009 1 118169006 900000000000011006 900000000000451002 +3478645028 20090131 0 900000000000207008 258429002 34402009 1 118169006 900000000000011006 900000000000451002 +3478645028 20110731 1 900000000000207008 258429002 34402009 1 118169006 900000000000011006 900000000000451002 +3478646027 20080731 1 900000000000207008 258430007 413675001 1 370133003 900000000000011006 900000000000451002 +3478646027 20090131 0 900000000000207008 258430007 413675001 1 370133003 900000000000011006 900000000000451002 +3478647020 20080731 1 900000000000207008 258434003 431938005 1 118169006 900000000000011006 900000000000451002 +3478647020 20090131 0 900000000000207008 258434003 431938005 1 118169006 900000000000011006 900000000000451002 +3478648026 20080731 1 900000000000207008 258434003 85457002 1 118171006 900000000000011006 900000000000451002 +3478648026 20090131 0 900000000000207008 258434003 85457002 1 118171006 900000000000011006 900000000000451002 +3478649023 20080731 1 900000000000207008 258435002 413675001 1 370133003 900000000000011006 900000000000451002 +3478649023 20090131 0 900000000000207008 258435002 413675001 1 370133003 900000000000011006 900000000000451002 +3478650023 20080731 1 900000000000207008 258438000 47538007 1 118169006 900000000000011006 900000000000451002 +3478650023 20090131 0 900000000000207008 258438000 47538007 1 118169006 900000000000011006 900000000000451002 +3478651022 20080731 1 900000000000207008 258446004 87200008 1 370133003 900000000000011006 900000000000451002 +3478651022 20090131 0 900000000000207008 258446004 87200008 1 370133003 900000000000011006 900000000000451002 +3478652026 20080731 1 900000000000207008 258452003 113276009 1 118169006 900000000000011006 900000000000451002 +3478652026 20090131 0 900000000000207008 258452003 113276009 1 118169006 900000000000011006 900000000000451002 +3478652026 20100131 1 900000000000207008 258452003 113276009 1 118169006 900000000000011006 900000000000451002 +3478652026 20100731 0 900000000000207008 258452003 113276009 1 118169006 900000000000011006 900000000000451002 +3478653020 20080731 1 900000000000207008 258452003 18368008 1 370133003 900000000000011006 900000000000451002 +3478653020 20090131 0 900000000000207008 258452003 18368008 1 370133003 900000000000011006 900000000000451002 +3478653020 20100131 1 900000000000207008 258452003 18368008 1 370133003 900000000000011006 900000000000451002 +3478653020 20100731 0 900000000000207008 258452003 18368008 1 370133003 900000000000011006 900000000000451002 +3478654025 20080731 1 900000000000207008 258453008 32457005 1 370133003 900000000000011006 900000000000451002 +3478654025 20090131 0 900000000000207008 258453008 32457005 1 370133003 900000000000011006 900000000000451002 +3478655029 20080731 1 900000000000207008 258456000 11311000 1 370133003 900000000000011006 900000000000451002 +3478655029 20090131 0 900000000000207008 258456000 11311000 1 370133003 900000000000011006 900000000000451002 +3478656028 20080731 1 900000000000207008 258459007 69695003 1 118169006 900000000000011006 900000000000451002 +3478656028 20090131 0 900000000000207008 258459007 69695003 1 118169006 900000000000011006 900000000000451002 +3478657021 20080731 1 900000000000207008 258461003 386152007 1 118168003 900000000000011006 900000000000451002 +3478657021 20090131 0 900000000000207008 258461003 386152007 1 118168003 900000000000011006 900000000000451002 +3478658027 20080731 1 900000000000207008 258462005 34516001 1 118169006 900000000000011006 900000000000451002 +3478658027 20090131 0 900000000000207008 258462005 34516001 1 118169006 900000000000011006 900000000000451002 +3478659024 20080731 1 900000000000207008 258462005 11220007 1 370133003 900000000000011006 900000000000451002 +3478659024 20090131 0 900000000000207008 258462005 11220007 1 370133003 900000000000011006 900000000000451002 +3478660025 20080731 1 900000000000207008 258463000 21306003 1 118169006 900000000000011006 900000000000451002 +3478660025 20090131 0 900000000000207008 258463000 21306003 1 118169006 900000000000011006 900000000000451002 +3478661026 20080731 1 900000000000207008 258465007 33463005 1 370133003 900000000000011006 900000000000451002 +3478661026 20090131 0 900000000000207008 258465007 33463005 1 370133003 900000000000011006 900000000000451002 +3478662022 20080731 1 900000000000207008 258466008 25342003 1 118169006 900000000000011006 900000000000451002 +3478662022 20090131 0 900000000000207008 258466008 25342003 1 118169006 900000000000011006 900000000000451002 +3478663028 20080731 1 900000000000207008 258467004 18962004 1 118169006 900000000000011006 900000000000451002 +3478663028 20090731 0 900000000000207008 258467004 18962004 1 118169006 900000000000011006 900000000000451002 +3478664023 20080731 1 900000000000207008 258467004 72869002 1 370133003 900000000000011006 900000000000451002 +3478664023 20090731 0 900000000000207008 258467004 72869002 1 370133003 900000000000011006 900000000000451002 +3478665024 20080731 1 900000000000207008 258468009 79654002 1 118168003 900000000000011006 900000000000451002 +3478665024 20090131 0 900000000000207008 258468009 79654002 1 118168003 900000000000011006 900000000000451002 +3478666020 20080731 1 900000000000207008 258470000 41216001 1 118169006 900000000000011006 900000000000451002 +3478666020 20090131 0 900000000000207008 258470000 41216001 1 118169006 900000000000011006 900000000000451002 +3478667027 20080731 1 900000000000207008 258471001 41216001 1 118169006 900000000000011006 900000000000451002 +3478667027 20090131 0 900000000000207008 258471001 41216001 1 118169006 900000000000011006 900000000000451002 +3478668021 20080731 1 900000000000207008 258471001 64663002 1 118171006 900000000000011006 900000000000451002 +3478668021 20090131 0 900000000000207008 258471001 64663002 1 118171006 900000000000011006 900000000000451002 +3478669029 20080731 1 900000000000207008 258472008 25990002 1 118169006 900000000000011006 900000000000451002 +3478669029 20090131 0 900000000000207008 258472008 25990002 1 118169006 900000000000011006 900000000000451002 +3478670028 20080731 1 900000000000207008 258474009 410583004 1 370133003 900000000000011006 900000000000451002 +3478670028 20090131 0 900000000000207008 258474009 410583004 1 370133003 900000000000011006 900000000000451002 +3478671029 20080731 1 900000000000207008 258475005 2095001 1 118169006 900000000000011006 900000000000451002 +3478671029 20090731 0 900000000000207008 258475005 2095001 1 118169006 900000000000011006 900000000000451002 +3478672020 20080731 1 900000000000207008 258475005 53496003 1 118171006 900000000000011006 900000000000451002 +3478672020 20090731 0 900000000000207008 258475005 53496003 1 118171006 900000000000011006 900000000000451002 +3478673026 20080731 1 900000000000207008 258484005 168461002 1 118171006 900000000000011006 900000000000451002 +3478673026 20090131 0 900000000000207008 258484005 168461002 1 118171006 900000000000011006 900000000000451002 +3478674021 20080731 1 900000000000207008 258489000 39937001 1 118169006 900000000000011006 900000000000451002 +3478674021 20090131 0 900000000000207008 258489000 39937001 1 118169006 900000000000011006 900000000000451002 +3478675022 20080731 1 900000000000207008 258499005 58675001 1 118169006 900000000000011006 900000000000451002 +3478675022 20090131 0 900000000000207008 258499005 58675001 1 118169006 900000000000011006 900000000000451002 +3478676023 20080731 1 900000000000207008 258500001 71836000 1 118169006 900000000000011006 900000000000451002 +3478676023 20090131 0 900000000000207008 258500001 71836000 1 118169006 900000000000011006 900000000000451002 +3478677025 20080731 1 900000000000207008 258505006 312881002 1 118171006 900000000000011006 900000000000451002 +3478677025 20090131 0 900000000000207008 258505006 312881002 1 118171006 900000000000011006 900000000000451002 +3478678024 20080731 1 900000000000207008 258506007 386143003 1 118168003 900000000000011006 900000000000451002 +3478678024 20090131 0 900000000000207008 258506007 386143003 1 118168003 900000000000011006 900000000000451002 +3478679027 20080731 1 900000000000207008 258510005 18911002 1 118169006 900000000000011006 900000000000451002 +3478679027 20090131 0 900000000000207008 258510005 18911002 1 118169006 900000000000011006 900000000000451002 +3478680029 20080731 1 900000000000207008 258514001 119230000 1 118169006 900000000000011006 900000000000451002 +3478680029 20090131 0 900000000000207008 258514001 119230000 1 118169006 900000000000011006 900000000000451002 +3478681025 20080731 1 900000000000207008 258516004 46636005 1 118169006 900000000000011006 900000000000451002 +3478681025 20090131 0 900000000000207008 258516004 46636005 1 118169006 900000000000011006 900000000000451002 +3478681025 20110731 1 900000000000207008 258516004 46636005 1 118169006 900000000000011006 900000000000451002 +3478682021 20080731 1 900000000000207008 258517008 75279004 1 118169006 900000000000011006 900000000000451002 +3478682021 20090131 0 900000000000207008 258517008 75279004 1 118169006 900000000000011006 900000000000451002 +3478687026 20080731 1 900000000000207008 258518003 285570007 1 118171006 900000000000011006 900000000000451002 +3478687026 20090131 0 900000000000207008 258518003 285570007 1 118171006 900000000000011006 900000000000451002 +3478897021 20080731 1 900000000000207008 258525005 285570007 1 118171006 900000000000011006 900000000000451002 +3478897021 20090131 0 900000000000207008 258525005 285570007 1 118171006 900000000000011006 900000000000451002 +3478898027 20080731 1 900000000000207008 258526006 397158004 1 118169006 900000000000011006 900000000000451002 +3478898027 20090131 0 900000000000207008 258526006 397158004 1 118169006 900000000000011006 900000000000451002 +3478899024 20080731 1 900000000000207008 258527002 285570007 1 118171006 900000000000011006 900000000000451002 +3478899024 20090131 0 900000000000207008 258527002 285570007 1 118171006 900000000000011006 900000000000451002 +3478900025 20080731 1 900000000000207008 258528007 34402009 1 118169006 900000000000011006 900000000000451002 +3478900025 20090131 0 900000000000207008 258528007 34402009 1 118169006 900000000000011006 900000000000451002 +3478900025 20110731 1 900000000000207008 258528007 34402009 1 118169006 900000000000011006 900000000000451002 +3478901026 20080731 1 900000000000207008 258529004 54066008 1 118169006 900000000000011006 900000000000451002 +3478901026 20090131 0 900000000000207008 258529004 54066008 1 118169006 900000000000011006 900000000000451002 +3478903028 20080731 1 900000000000207008 258549008 413675001 1 370133003 900000000000011006 900000000000451002 +3478903028 20090131 0 900000000000207008 258549008 413675001 1 370133003 900000000000011006 900000000000451002 +3478904023 20080731 1 900000000000207008 258553005 252670003 1 118171006 900000000000011006 900000000000451002 +3478904023 20090131 0 900000000000207008 258553005 252670003 1 118171006 900000000000011006 900000000000451002 +3478906020 20080731 1 900000000000207008 258561000 386094008 1 370133003 900000000000011006 900000000000451002 +3478906020 20090131 0 900000000000207008 258561000 386094008 1 370133003 900000000000011006 900000000000451002 +3478907027 20080731 1 900000000000207008 258564008 303995001 1 118171006 900000000000011006 900000000000451002 +3478907027 20090131 0 900000000000207008 258564008 303995001 1 118171006 900000000000011006 900000000000451002 +3478908021 20080731 1 900000000000207008 258571003 302497006 1 118171006 900000000000011006 900000000000451002 +3478908021 20090131 0 900000000000207008 258571003 302497006 1 118171006 900000000000011006 900000000000451002 +3478909029 20080731 1 900000000000207008 258572005 33463005 1 370133003 900000000000011006 900000000000451002 +3478909029 20090131 0 900000000000207008 258572005 33463005 1 370133003 900000000000011006 900000000000451002 +3478910023 20080731 1 900000000000207008 258574006 431938005 1 118169006 900000000000011006 900000000000451002 +3478910023 20090131 0 900000000000207008 258574006 431938005 1 118169006 900000000000011006 900000000000451002 +3478911022 20080731 1 900000000000207008 258574006 225271002 1 118171006 900000000000011006 900000000000451002 +3478911022 20090131 0 900000000000207008 258574006 225271002 1 118171006 900000000000011006 900000000000451002 +3478912026 20080731 1 900000000000207008 258575007 431938005 1 118169006 900000000000011006 900000000000451002 +3478912026 20090131 0 900000000000207008 258575007 431938005 1 118169006 900000000000011006 900000000000451002 +3478913020 20080731 1 900000000000207008 258575007 78014005 1 370133003 900000000000011006 900000000000451002 +3478913020 20090131 0 900000000000207008 258575007 78014005 1 370133003 900000000000011006 900000000000451002 +3478914025 20080731 1 900000000000207008 258576008 48367006 1 118169006 900000000000011006 900000000000451002 +3478914025 20090131 0 900000000000207008 258576008 48367006 1 118169006 900000000000011006 900000000000451002 +3478914025 20100131 1 900000000000207008 258576008 48367006 1 118169006 900000000000011006 900000000000451002 +3478914025 20100731 0 900000000000207008 258576008 48367006 1 118169006 900000000000011006 900000000000451002 +3478915029 20080731 1 900000000000207008 258576008 58088002 1 118171006 900000000000011006 900000000000451002 +3478915029 20090131 0 900000000000207008 258576008 58088002 1 118171006 900000000000011006 900000000000451002 +3478915029 20100131 1 900000000000207008 258576008 58088002 1 118171006 900000000000011006 900000000000451002 +3478915029 20100731 0 900000000000207008 258576008 58088002 1 118171006 900000000000011006 900000000000451002 +3478916028 20080731 1 900000000000207008 258577004 76784001 1 118169006 900000000000011006 900000000000451002 +3478916028 20090131 0 900000000000207008 258577004 76784001 1 118169006 900000000000011006 900000000000451002 +3478917021 20080731 1 900000000000207008 258585008 234328006 1 118171006 900000000000011006 900000000000451002 +3478917021 20090731 0 900000000000207008 258585008 234328006 1 118171006 900000000000011006 900000000000451002 +3478918027 20080731 1 900000000000207008 258607008 82094008 1 118169006 900000000000011006 900000000000451002 +3478918027 20090731 0 900000000000207008 258607008 82094008 1 118169006 900000000000011006 900000000000451002 +3478919024 20080731 1 900000000000207008 258607008 397394009 1 118171006 900000000000011006 900000000000451002 +3478919024 20090731 0 900000000000207008 258607008 397394009 1 118171006 900000000000011006 900000000000451002 +3478920029 20080731 1 900000000000207008 258607008 87200008 1 370133003 900000000000011006 900000000000451002 +3478920029 20090731 0 900000000000207008 258607008 87200008 1 370133003 900000000000011006 900000000000451002 +3478921025 20080731 1 900000000000207008 258609006 386087005 1 118171006 900000000000011006 900000000000451002 +3478921025 20090131 0 900000000000207008 258609006 386087005 1 118171006 900000000000011006 900000000000451002 +3479342027 20080731 1 900000000000207008 256889002 367643001 1 118168003 900000000000011006 900000000000451002 +3479342027 20090131 0 900000000000207008 256889002 367643001 1 118168003 900000000000011006 900000000000451002 +3479343021 20080731 1 900000000000207008 256889002 76752008 1 118169006 900000000000011006 900000000000451002 +3479343021 20090131 0 900000000000207008 256889002 76752008 1 118169006 900000000000011006 900000000000451002 +3479387028 20080731 1 900000000000207008 369611008 413675001 1 370133003 900000000000011006 900000000000451002 +3479387028 20090131 0 900000000000207008 369611008 413675001 1 370133003 900000000000011006 900000000000451002 +3479388022 20080731 1 900000000000207008 369614000 16014003 1 118169006 900000000000011006 900000000000451002 +3479388022 20090131 0 900000000000207008 369614000 16014003 1 118169006 900000000000011006 900000000000451002 +3479389025 20080731 1 900000000000207008 369614000 48508003 1 118171006 900000000000011006 900000000000451002 +3479389025 20090131 0 900000000000207008 369614000 48508003 1 118171006 900000000000011006 900000000000451002 +3479390023 20080731 1 900000000000207008 369614000 413675001 1 370133003 900000000000011006 900000000000451002 +3479390023 20090131 0 900000000000207008 369614000 413675001 1 370133003 900000000000011006 900000000000451002 +3479391022 20080731 1 900000000000207008 369615004 16014003 1 118169006 900000000000011006 900000000000451002 +3479391022 20090731 0 900000000000207008 369615004 16014003 1 118169006 900000000000011006 900000000000451002 +3479392026 20080731 1 900000000000207008 369615004 413675001 1 370133003 900000000000011006 900000000000451002 +3479392026 20090731 0 900000000000207008 369615004 413675001 1 370133003 900000000000011006 900000000000451002 +3479393020 20080731 1 900000000000207008 369616003 56031009 1 118171006 900000000000011006 900000000000451002 +3479393020 20090131 0 900000000000207008 369616003 56031009 1 118171006 900000000000011006 900000000000451002 +3479394025 20080731 1 900000000000207008 369616003 413675001 1 370133003 900000000000011006 900000000000451002 +3479394025 20090131 0 900000000000207008 369616003 413675001 1 370133003 900000000000011006 900000000000451002 +3479395029 20080731 1 900000000000207008 369617007 28231008 1 118169006 900000000000011006 900000000000451002 +3479396028 20080731 1 900000000000207008 369617007 71273005 2 118171006 900000000000011006 900000000000451002 +3479396028 20110731 0 900000000000207008 369617007 71273005 2 118171006 900000000000011006 900000000000451002 +3479411020 20080731 1 900000000000207008 369617007 413675001 2 370133003 900000000000011006 900000000000451002 +3479411020 20110731 0 900000000000207008 369617007 413675001 2 370133003 900000000000011006 900000000000451002 +3479446028 20080731 1 900000000000207008 406101006 91470000 1 118169006 900000000000011006 900000000000451002 +3479446028 20090131 0 900000000000207008 406101006 91470000 1 118169006 900000000000011006 900000000000451002 +3479481026 20080731 1 900000000000207008 409821005 225113003 1 118171006 900000000000011006 900000000000451002 +3479481026 20090131 0 900000000000207008 409821005 225113003 1 118171006 900000000000011006 900000000000451002 +3479525023 20080731 1 900000000000207008 409821005 431938005 1 118169006 900000000000011006 900000000000451002 +3479525023 20090131 0 900000000000207008 409821005 431938005 1 118169006 900000000000011006 900000000000451002 +3479623021 20080731 1 900000000000207008 369618002 45292006 1 118169006 900000000000011006 900000000000451002 +3479623021 20090131 0 900000000000207008 369618002 45292006 1 118169006 900000000000011006 900000000000451002 +3479624026 20080731 1 900000000000207008 369618002 413675001 1 370133003 900000000000011006 900000000000451002 +3479624026 20090131 0 900000000000207008 369618002 413675001 1 370133003 900000000000011006 900000000000451002 +3479697026 20080731 1 900000000000207008 373101006 76752008 1 118169006 900000000000011006 900000000000451002 +3479697026 20090131 0 900000000000207008 373101006 76752008 1 118169006 900000000000011006 900000000000451002 +3479698020 20080731 1 900000000000207008 373102004 76752008 1 118169006 900000000000011006 900000000000451002 +3479698020 20090131 0 900000000000207008 373102004 76752008 1 118169006 900000000000011006 900000000000451002 +3479699028 20080731 1 900000000000207008 373102004 413675001 1 370133003 900000000000011006 900000000000451002 +3479699028 20090131 0 900000000000207008 373102004 413675001 1 370133003 900000000000011006 900000000000451002 +3479700027 20080731 1 900000000000207008 373103009 76752008 1 118169006 900000000000011006 900000000000451002 +3479700027 20090131 0 900000000000207008 373103009 76752008 1 118169006 900000000000011006 900000000000451002 +3479701028 20080731 1 900000000000207008 373103009 413675001 1 370133003 900000000000011006 900000000000451002 +3479701028 20090131 0 900000000000207008 373103009 413675001 1 370133003 900000000000011006 900000000000451002 +3479702024 20080731 1 900000000000207008 373192005 68171009 1 118169006 900000000000011006 900000000000451002 +3479702024 20090131 0 900000000000207008 373192005 68171009 1 118169006 900000000000011006 900000000000451002 +3479702024 20100731 1 900000000000207008 373192005 68171009 1 118169006 900000000000011006 900000000000451002 +3479702024 20110131 0 900000000000207008 373192005 68171009 1 118169006 900000000000011006 900000000000451002 +3479703025 20080731 1 900000000000207008 373192005 122459003 1 118171006 900000000000011006 900000000000451002 +3479703025 20090131 0 900000000000207008 373192005 122459003 1 118171006 900000000000011006 900000000000451002 +3479703025 20100731 1 900000000000207008 373192005 122459003 1 118171006 900000000000011006 900000000000451002 +3479703025 20110131 0 900000000000207008 373192005 122459003 1 118171006 900000000000011006 900000000000451002 +3479704020 20080731 1 900000000000207008 373192005 413675001 1 370133003 900000000000011006 900000000000451002 +3479704020 20090131 0 900000000000207008 373192005 413675001 1 370133003 900000000000011006 900000000000451002 +3479704020 20100731 1 900000000000207008 373192005 413675001 1 370133003 900000000000011006 900000000000451002 +3479704020 20110131 0 900000000000207008 373192005 413675001 1 370133003 900000000000011006 900000000000451002 +3479705021 20080731 1 900000000000207008 373193000 122459003 1 118171006 900000000000011006 900000000000451002 +3479705021 20090131 0 900000000000207008 373193000 122459003 1 118171006 900000000000011006 900000000000451002 +3479705021 20100731 1 900000000000207008 373193000 122459003 1 118171006 900000000000011006 900000000000451002 +3479705021 20110131 0 900000000000207008 373193000 122459003 1 118171006 900000000000011006 900000000000451002 +3479706022 20080731 1 900000000000207008 373193000 413675001 1 370133003 900000000000011006 900000000000451002 +3479706022 20090131 0 900000000000207008 373193000 413675001 1 370133003 900000000000011006 900000000000451002 +3479706022 20100731 1 900000000000207008 373193000 413675001 1 370133003 900000000000011006 900000000000451002 +3479706022 20110131 0 900000000000207008 373193000 413675001 1 370133003 900000000000011006 900000000000451002 +3479725020 20080731 1 900000000000207008 399388008 113293009 1 118169006 900000000000011006 900000000000451002 +3479725020 20090131 0 900000000000207008 399388008 113293009 1 118169006 900000000000011006 900000000000451002 +3479726021 20080731 1 900000000000207008 399388008 120053002 1 118171006 900000000000011006 900000000000451002 +3479726021 20090131 0 900000000000207008 399388008 120053002 1 118171006 900000000000011006 900000000000451002 +3479727028 20080731 1 900000000000207008 399396003 11401008 1 118171006 900000000000011006 900000000000451002 +3479727028 20090131 0 900000000000207008 399396003 11401008 1 118171006 900000000000011006 900000000000451002 +3479728022 20080731 1 900000000000207008 399396003 413675001 1 370133003 900000000000011006 900000000000451002 +3479728022 20090131 0 900000000000207008 399396003 413675001 1 370133003 900000000000011006 900000000000451002 +3479729025 20080731 1 900000000000207008 399407000 108028005 1 118171006 900000000000011006 900000000000451002 +3479729025 20090731 0 900000000000207008 399407000 108028005 1 118171006 900000000000011006 900000000000451002 +3479730024 20080731 1 900000000000207008 399407000 413675001 1 370133003 900000000000011006 900000000000451002 +3479730024 20090731 0 900000000000207008 399407000 413675001 1 370133003 900000000000011006 900000000000451002 +3479731023 20080731 1 900000000000207008 399440009 175907006 1 118171006 900000000000011006 900000000000451002 +3479731023 20090131 0 900000000000207008 399440009 175907006 1 118171006 900000000000011006 900000000000451002 +3479732027 20080731 1 900000000000207008 399440009 413675001 1 370133003 900000000000011006 900000000000451002 +3479732027 20090131 0 900000000000207008 399440009 413675001 1 370133003 900000000000011006 900000000000451002 +3479733021 20080731 1 900000000000207008 399443006 397896001 1 118171006 900000000000011006 900000000000451002 +3479733021 20090731 0 900000000000207008 399443006 397896001 1 118171006 900000000000011006 900000000000451002 +3479734026 20080731 1 900000000000207008 399443006 413675001 1 370133003 900000000000011006 900000000000451002 +3479734026 20090731 0 900000000000207008 399443006 413675001 1 370133003 900000000000011006 900000000000451002 +3479735025 20080731 1 900000000000207008 399447007 25149004 1 118169006 900000000000011006 900000000000451002 +3479735025 20090131 0 900000000000207008 399447007 25149004 1 118169006 900000000000011006 900000000000451002 +3479736029 20080731 1 900000000000207008 399447007 116142003 1 118171006 900000000000011006 900000000000451002 +3479736029 20090131 0 900000000000207008 399447007 116142003 1 118171006 900000000000011006 900000000000451002 +3479755029 20080731 1 900000000000207008 399467003 74862005 1 118169006 900000000000011006 900000000000451002 +3479755029 20090131 0 900000000000207008 399467003 74862005 1 118169006 900000000000011006 900000000000451002 +3479756028 20080731 1 900000000000207008 399484009 385294005 2 118169006 900000000000011006 900000000000451002 +3479756028 20090131 0 900000000000207008 399484009 385294005 2 118169006 900000000000011006 900000000000451002 +3479757021 20080731 1 900000000000207008 399484009 71735005 2 118171006 900000000000011006 900000000000451002 +3479757021 20090131 0 900000000000207008 399484009 71735005 2 118171006 900000000000011006 900000000000451002 +3479758027 20080731 1 900000000000207008 399484009 413675001 2 370133003 900000000000011006 900000000000451002 +3479758027 20090131 0 900000000000207008 399484009 413675001 2 370133003 900000000000011006 900000000000451002 +3479759024 20080731 1 900000000000207008 399486006 413675001 1 370133003 900000000000011006 900000000000451002 +3479759024 20090131 0 900000000000207008 399486006 413675001 1 370133003 900000000000011006 900000000000451002 +3479760025 20080731 1 900000000000207008 399492000 413675001 1 370133003 900000000000011006 900000000000451002 +3479760025 20090131 0 900000000000207008 399492000 413675001 1 370133003 900000000000011006 900000000000451002 +3479761026 20080731 1 900000000000207008 399499009 74862005 1 118169006 900000000000011006 900000000000451002 +3479761026 20090131 0 900000000000207008 399499009 74862005 1 118169006 900000000000011006 900000000000451002 +3479762022 20080731 1 900000000000207008 399499009 397896001 1 118171006 900000000000011006 900000000000451002 +3479762022 20090131 0 900000000000207008 399499009 397896001 1 118171006 900000000000011006 900000000000451002 +3479763028 20080731 1 900000000000207008 399502008 25149004 1 118169006 900000000000011006 900000000000451002 +3479763028 20090731 0 900000000000207008 399502008 25149004 1 118169006 900000000000011006 900000000000451002 +3479764023 20080731 1 900000000000207008 399502008 55853002 1 118171006 900000000000011006 900000000000451002 +3479764023 20090731 0 900000000000207008 399502008 55853002 1 118171006 900000000000011006 900000000000451002 +3479765024 20080731 1 900000000000207008 399512001 5665001 1 118169006 900000000000011006 900000000000451002 +3479765024 20090131 0 900000000000207008 399512001 5665001 1 118169006 900000000000011006 900000000000451002 +3479766020 20080731 1 900000000000207008 399512001 172132001 1 118171006 900000000000011006 900000000000451002 +3479766020 20090131 0 900000000000207008 399512001 172132001 1 118171006 900000000000011006 900000000000451002 +3479767027 20080731 1 900000000000207008 399532000 25990002 1 118169006 900000000000011006 900000000000451002 +3479767027 20090731 0 900000000000207008 399532000 25990002 1 118169006 900000000000011006 900000000000451002 +3479768021 20080731 1 900000000000207008 399542003 21483005 1 118169006 900000000000011006 900000000000451002 +3479768021 20090131 0 900000000000207008 399542003 21483005 1 118169006 900000000000011006 900000000000451002 +3479769029 20080731 1 900000000000207008 399551006 21483005 1 118169006 900000000000011006 900000000000451002 +3479769029 20090131 0 900000000000207008 399551006 21483005 1 118169006 900000000000011006 900000000000451002 +3479769029 20100731 1 900000000000207008 399551006 21483005 1 118169006 900000000000011006 900000000000451002 +3479769029 20110131 0 900000000000207008 399551006 21483005 1 118169006 900000000000011006 900000000000451002 +3479770028 20080731 1 900000000000207008 399559008 413675001 1 370133003 900000000000011006 900000000000451002 +3479770028 20090131 0 900000000000207008 399559008 413675001 1 370133003 900000000000011006 900000000000451002 +3479771029 20080731 1 900000000000207008 399572009 413675001 1 370133003 900000000000011006 900000000000451002 +3479771029 20090131 0 900000000000207008 399572009 413675001 1 370133003 900000000000011006 900000000000451002 +3479772020 20080731 1 900000000000207008 399603006 5665001 1 118169006 900000000000011006 900000000000451002 +3479772020 20090131 0 900000000000207008 399603006 5665001 1 118169006 900000000000011006 900000000000451002 +3479773026 20080731 1 900000000000207008 399603006 413675001 1 370133003 900000000000011006 900000000000451002 +3479773026 20090131 0 900000000000207008 399603006 413675001 1 370133003 900000000000011006 900000000000451002 +3479774021 20080731 1 900000000000207008 399614009 108369006 1 118168003 900000000000011006 900000000000451002 +3479774021 20090731 0 900000000000207008 399614009 108369006 1 118168003 900000000000011006 900000000000451002 +3479775022 20080731 1 900000000000207008 399614009 21483005 1 118169006 900000000000011006 900000000000451002 +3479775022 20090731 0 900000000000207008 399614009 21483005 1 118169006 900000000000011006 900000000000451002 +3479776023 20080731 1 900000000000207008 399614009 413675001 1 370133003 900000000000011006 900000000000451002 +3479776023 20090731 0 900000000000207008 399614009 413675001 1 370133003 900000000000011006 900000000000451002 +3479777025 20080731 1 900000000000207008 399619004 413675001 1 370133003 900000000000011006 900000000000451002 +3479777025 20090131 0 900000000000207008 399619004 413675001 1 370133003 900000000000011006 900000000000451002 +3479778024 20080731 1 900000000000207008 399622002 24443003 1 118171006 900000000000011006 900000000000451002 +3479778024 20090131 0 900000000000207008 399622002 24443003 1 118171006 900000000000011006 900000000000451002 +3479779027 20080731 1 900000000000207008 399622002 413675001 1 370133003 900000000000011006 900000000000451002 +3479779027 20090131 0 900000000000207008 399622002 413675001 1 370133003 900000000000011006 900000000000451002 +3479780029 20080731 1 900000000000207008 399624001 413675001 1 370133003 900000000000011006 900000000000451002 +3479780029 20090131 0 900000000000207008 399624001 413675001 1 370133003 900000000000011006 900000000000451002 +3479781025 20080731 1 900000000000207008 399629006 53442002 1 118171006 900000000000011006 900000000000451002 +3479781025 20090731 0 900000000000207008 399629006 53442002 1 118171006 900000000000011006 900000000000451002 +3479782021 20080731 1 900000000000207008 399629006 413675001 1 370133003 900000000000011006 900000000000451002 +3479782021 20090731 0 900000000000207008 399629006 413675001 1 370133003 900000000000011006 900000000000451002 +3479783027 20080731 1 900000000000207008 399633004 9875009 1 118169006 900000000000011006 900000000000451002 +3479783027 20090131 0 900000000000207008 399633004 9875009 1 118169006 900000000000011006 900000000000451002 +3479784022 20080731 1 900000000000207008 399640003 413675001 1 370133003 900000000000011006 900000000000451002 +3479784022 20090131 0 900000000000207008 399640003 413675001 1 370133003 900000000000011006 900000000000451002 +3479787026 20080731 1 900000000000207008 399649002 58347006 1 118171006 900000000000011006 900000000000451002 +3479787026 20090131 0 900000000000207008 399649002 58347006 1 118171006 900000000000011006 900000000000451002 +3479788020 20080731 1 900000000000207008 399658009 236886002 1 118171006 900000000000011006 900000000000451002 +3479788020 20090731 0 900000000000207008 399658009 236886002 1 118171006 900000000000011006 900000000000451002 +3479789028 20080731 1 900000000000207008 399658009 413675001 1 370133003 900000000000011006 900000000000451002 +3479789028 20090731 0 900000000000207008 399658009 413675001 1 370133003 900000000000011006 900000000000451002 +3479790021 20080731 1 900000000000207008 399661005 413675001 1 370133003 900000000000011006 900000000000451002 +3479790021 20090131 0 900000000000207008 399661005 413675001 1 370133003 900000000000011006 900000000000451002 +3479791020 20080731 1 900000000000207008 399672000 397384004 1 118169006 900000000000011006 900000000000451002 +3479791020 20090131 0 900000000000207008 399672000 397384004 1 118169006 900000000000011006 900000000000451002 +3479792029 20080731 1 900000000000207008 399689008 413675001 1 370133003 900000000000011006 900000000000451002 +3479792029 20090731 0 900000000000207008 399689008 413675001 1 370133003 900000000000011006 900000000000451002 +3479793023 20080731 1 900000000000207008 399693002 385294005 2 118169006 900000000000011006 900000000000451002 +3479793023 20090131 0 900000000000207008 399693002 385294005 2 118169006 900000000000011006 900000000000451002 +3479794028 20080731 1 900000000000207008 399693002 45289007 1 118169006 900000000000011006 900000000000451002 +3479794028 20090131 0 900000000000207008 399693002 45289007 1 118169006 900000000000011006 900000000000451002 +3479795027 20080731 1 900000000000207008 399693002 71735005 2 118171006 900000000000011006 900000000000451002 +3479795027 20090131 0 900000000000207008 399693002 71735005 2 118171006 900000000000011006 900000000000451002 +3479796026 20080731 1 900000000000207008 399693002 413675001 2 370133003 900000000000011006 900000000000451002 +3479796026 20090131 0 900000000000207008 399693002 413675001 2 370133003 900000000000011006 900000000000451002 +3479797024 20080731 1 900000000000207008 399713008 413675001 1 370133003 900000000000011006 900000000000451002 +3479797024 20090131 0 900000000000207008 399713008 413675001 1 370133003 900000000000011006 900000000000451002 +3479798025 20080731 1 900000000000207008 399728008 21483005 1 118169006 900000000000011006 900000000000451002 +3479798025 20090131 0 900000000000207008 399728008 21483005 1 118169006 900000000000011006 900000000000451002 +3479799022 20080731 1 900000000000207008 399728008 413675001 1 370133003 900000000000011006 900000000000451002 +3479799022 20090131 0 900000000000207008 399728008 413675001 1 370133003 900000000000011006 900000000000451002 +3479800021 20080731 1 900000000000207008 399731009 41329004 1 118168003 900000000000011006 900000000000451002 +3479800021 20090131 0 900000000000207008 399731009 41329004 1 118168003 900000000000011006 900000000000451002 +3479801020 20080731 1 900000000000207008 399731009 53505006 1 118169006 900000000000011006 900000000000451002 +3479801020 20090131 0 900000000000207008 399731009 53505006 1 118169006 900000000000011006 900000000000451002 +3479802029 20080731 1 900000000000207008 399731009 174334007 1 118171006 900000000000011006 900000000000451002 +3479802029 20090131 0 900000000000207008 399731009 174334007 1 118171006 900000000000011006 900000000000451002 +3479803023 20080731 1 900000000000207008 399732002 108369006 1 118168003 900000000000011006 900000000000451002 +3479803023 20090731 0 900000000000207008 399732002 108369006 1 118168003 900000000000011006 900000000000451002 +3479804028 20080731 1 900000000000207008 399732002 413675001 1 370133003 900000000000011006 900000000000451002 +3479804028 20090731 0 900000000000207008 399732002 413675001 1 370133003 900000000000011006 900000000000451002 +3479805027 20080731 1 900000000000207008 399741007 64033007 1 118169006 900000000000011006 900000000000451002 +3479805027 20090131 0 900000000000207008 399741007 64033007 1 118169006 900000000000011006 900000000000451002 +3479838020 20080731 1 900000000000207008 399741007 116033007 1 118171006 900000000000011006 900000000000451002 +3479838020 20090131 0 900000000000207008 399741007 116033007 1 118171006 900000000000011006 900000000000451002 +3479839028 20080731 1 900000000000207008 399751008 35039007 1 118169006 900000000000011006 900000000000451002 +3479839028 20090131 0 900000000000207008 399751008 35039007 1 118169006 900000000000011006 900000000000451002 +3479839028 20110131 1 900000000000207008 399751008 35039007 1 118169006 900000000000011006 900000000000451002 +3479839028 20110731 0 900000000000207008 399751008 35039007 1 118169006 900000000000011006 900000000000451002 +3479840026 20080731 1 900000000000207008 399751008 413675001 1 370133003 900000000000011006 900000000000451002 +3479840026 20090131 0 900000000000207008 399751008 413675001 1 370133003 900000000000011006 900000000000451002 +3479840026 20110131 1 900000000000207008 399751008 413675001 1 370133003 900000000000011006 900000000000451002 +3479840026 20110731 0 900000000000207008 399751008 413675001 1 370133003 900000000000011006 900000000000451002 +3479841027 20080731 1 900000000000207008 399752001 413675001 1 370133003 900000000000011006 900000000000451002 +3479841027 20090131 0 900000000000207008 399752001 413675001 1 370133003 900000000000011006 900000000000451002 +3479936023 20080731 1 900000000000207008 396273004 71252005 1 118169006 900000000000011006 900000000000451002 +3479936023 20090131 0 900000000000207008 396273004 71252005 1 118169006 900000000000011006 900000000000451002 +3479937025 20080731 1 900000000000207008 396353007 363318002 1 118171006 900000000000011006 900000000000451002 +3479937025 20090131 0 900000000000207008 396353007 363318002 1 118171006 900000000000011006 900000000000451002 +3479938024 20080731 1 900000000000207008 396353007 413675001 1 370133003 900000000000011006 900000000000451002 +3479938024 20090131 0 900000000000207008 396353007 413675001 1 370133003 900000000000011006 900000000000451002 +3479939027 20080731 1 900000000000207008 396354001 363318002 1 118171006 900000000000011006 900000000000451002 +3479939027 20090131 0 900000000000207008 396354001 363318002 1 118171006 900000000000011006 900000000000451002 +3479940025 20080731 1 900000000000207008 396354001 413675001 1 370133003 900000000000011006 900000000000451002 +3479940025 20090131 0 900000000000207008 396354001 413675001 1 370133003 900000000000011006 900000000000451002 +3479941026 20080731 1 900000000000207008 396355000 39937001 1 118169006 900000000000011006 900000000000451002 +3479941026 20090131 0 900000000000207008 396355000 39937001 1 118169006 900000000000011006 900000000000451002 +3479942022 20080731 1 900000000000207008 396355000 363318002 1 118171006 900000000000011006 900000000000451002 +3479942022 20090131 0 900000000000207008 396355000 363318002 1 118171006 900000000000011006 900000000000451002 +3479947027 20080731 1 900000000000207008 363328006 413675001 1 370133003 900000000000011006 900000000000451002 +3479947027 20090131 0 900000000000207008 363328006 413675001 1 370133003 900000000000011006 900000000000451002 +3479948021 20080731 1 900000000000207008 363329003 413675001 1 370133003 900000000000011006 900000000000451002 +3479948021 20090131 0 900000000000207008 363329003 413675001 1 370133003 900000000000011006 900000000000451002 +3479957026 20080731 1 900000000000207008 384744003 68171009 1 118169006 900000000000011006 900000000000451002 +3479957026 20090131 0 900000000000207008 384744003 68171009 1 118169006 900000000000011006 900000000000451002 +3479958020 20080731 1 900000000000207008 384744003 122459003 1 118171006 900000000000011006 900000000000451002 +3479958020 20090131 0 900000000000207008 384744003 122459003 1 118171006 900000000000011006 900000000000451002 +3479959028 20080731 1 900000000000207008 384746001 116030005 1 118171006 900000000000011006 900000000000451002 +3479959028 20090731 0 900000000000207008 384746001 116030005 1 118171006 900000000000011006 900000000000451002 +3479960022 20080731 1 900000000000207008 384820007 41216001 1 118169006 900000000000011006 900000000000451002 +3479960022 20090131 0 900000000000207008 384820007 41216001 1 118169006 900000000000011006 900000000000451002 +3479961021 20080731 1 900000000000207008 384820007 413675001 1 370133003 900000000000011006 900000000000451002 +3479961021 20090131 0 900000000000207008 384820007 413675001 1 370133003 900000000000011006 900000000000451002 +3479962025 20080731 1 900000000000207008 385338007 53505006 1 118169006 900000000000011006 900000000000451002 +3479962025 20090131 0 900000000000207008 385338007 53505006 1 118169006 900000000000011006 900000000000451002 +3479963024 20080731 1 900000000000207008 385338007 413675001 1 370133003 900000000000011006 900000000000451002 +3479963024 20090131 0 900000000000207008 385338007 413675001 1 370133003 900000000000011006 900000000000451002 +3479964029 20080731 1 900000000000207008 385339004 119894003 1 118171006 900000000000011006 900000000000451002 +3479964029 20090131 0 900000000000207008 385339004 119894003 1 118171006 900000000000011006 900000000000451002 +3479965028 20080731 1 900000000000207008 385339004 413675001 1 370133003 900000000000011006 900000000000451002 +3479965028 20090131 0 900000000000207008 385339004 413675001 1 370133003 900000000000011006 900000000000451002 +3479966027 20080731 1 900000000000207008 385340002 53505006 1 118169006 900000000000011006 900000000000451002 +3479966027 20090131 0 900000000000207008 385340002 53505006 1 118169006 900000000000011006 900000000000451002 +3479967020 20080731 1 900000000000207008 385340002 413675001 1 370133003 900000000000011006 900000000000451002 +3479967020 20090131 0 900000000000207008 385340002 413675001 1 370133003 900000000000011006 900000000000451002 +3479971023 20080731 1 900000000000207008 396356004 39937001 1 118169006 900000000000011006 900000000000451002 +3479971023 20090731 0 900000000000207008 396356004 39937001 1 118169006 900000000000011006 900000000000451002 +3479972027 20080731 1 900000000000207008 396356004 65854006 1 118171006 900000000000011006 900000000000451002 +3479972027 20090731 0 900000000000207008 396356004 65854006 1 118171006 900000000000011006 900000000000451002 +3479973021 20080731 1 900000000000207008 396357008 39937001 1 118169006 900000000000011006 900000000000451002 +3479973021 20090131 0 900000000000207008 396357008 39937001 1 118169006 900000000000011006 900000000000451002 +3479974026 20080731 1 900000000000207008 396357008 65854006 1 118171006 900000000000011006 900000000000451002 +3479974026 20090131 0 900000000000207008 396357008 65854006 1 118171006 900000000000011006 900000000000451002 +3479975025 20080731 1 900000000000207008 396358003 39937001 1 118169006 900000000000011006 900000000000451002 +3479975025 20090131 0 900000000000207008 396358003 39937001 1 118169006 900000000000011006 900000000000451002 +3479976029 20080731 1 900000000000207008 396358003 413675001 1 370133003 900000000000011006 900000000000451002 +3479976029 20090131 0 900000000000207008 396358003 413675001 1 370133003 900000000000011006 900000000000451002 +3479977022 20080731 1 900000000000207008 396359006 312500006 1 118169006 900000000000011006 900000000000451002 +3479977022 20090131 0 900000000000207008 396359006 312500006 1 118169006 900000000000011006 900000000000451002 +3479978028 20080731 1 900000000000207008 396359006 413675001 1 370133003 900000000000011006 900000000000451002 +3479978028 20090131 0 900000000000207008 396359006 413675001 1 370133003 900000000000011006 900000000000451002 +3479983020 20080731 1 900000000000207008 396476009 48521005 1 118169006 900000000000011006 900000000000451002 +3479983020 20090731 0 900000000000207008 396476009 48521005 1 118169006 900000000000011006 900000000000451002 +3479984025 20080731 1 900000000000207008 396476009 413675001 1 370133003 900000000000011006 900000000000451002 +3479984025 20090731 0 900000000000207008 396476009 413675001 1 370133003 900000000000011006 900000000000451002 +3479985029 20080731 1 900000000000207008 396477000 48521005 1 118169006 900000000000011006 900000000000451002 +3479985029 20090131 0 900000000000207008 396477000 48521005 1 118169006 900000000000011006 900000000000451002 +3479986028 20080731 1 900000000000207008 396477000 307010009 1 118171006 900000000000011006 900000000000451002 +3479986028 20090131 0 900000000000207008 396477000 307010009 1 118171006 900000000000011006 900000000000451002 +3479987021 20080731 1 900000000000207008 396478005 174430004 1 118171006 900000000000011006 900000000000451002 +3479987021 20090731 0 900000000000207008 396478005 174430004 1 118171006 900000000000011006 900000000000451002 +3479988027 20080731 1 900000000000207008 396479002 80303005 1 118169006 900000000000011006 900000000000451002 +3479988027 20090731 0 900000000000207008 396479002 80303005 1 118169006 900000000000011006 900000000000451002 +3479989024 20080731 1 900000000000207008 396479002 174430004 1 118171006 900000000000011006 900000000000451002 +3479989024 20090731 0 900000000000207008 396479002 174430004 1 118171006 900000000000011006 900000000000451002 +3479990026 20080731 1 900000000000207008 396480004 69842003 1 118169006 900000000000011006 900000000000451002 +3479990026 20090731 0 900000000000207008 396480004 69842003 1 118169006 900000000000011006 900000000000451002 +3479991027 20080731 1 900000000000207008 396480004 63816008 1 118171006 900000000000011006 900000000000451002 +3479991027 20090731 0 900000000000207008 396480004 63816008 1 118171006 900000000000011006 900000000000451002 +3479992023 20080731 1 900000000000207008 396481000 413675001 1 370133003 900000000000011006 900000000000451002 +3479992023 20090131 0 900000000000207008 396481000 413675001 1 370133003 900000000000011006 900000000000451002 +3479993029 20080731 1 900000000000207008 396483002 39937001 1 118169006 900000000000011006 900000000000451002 +3479993029 20090131 0 900000000000207008 396483002 39937001 1 118169006 900000000000011006 900000000000451002 +3479993029 20100731 1 900000000000207008 396483002 39937001 1 118169006 900000000000011006 900000000000451002 +3479993029 20110131 0 900000000000207008 396483002 39937001 1 118169006 900000000000011006 900000000000451002 +3479994024 20080731 1 900000000000207008 396483002 72342005 1 118171006 900000000000011006 900000000000451002 +3479994024 20090131 0 900000000000207008 396483002 72342005 1 118171006 900000000000011006 900000000000451002 +3479994024 20100731 1 900000000000207008 396483002 72342005 1 118171006 900000000000011006 900000000000451002 +3479994024 20110131 0 900000000000207008 396483002 72342005 1 118171006 900000000000011006 900000000000451002 +3479995020 20080731 1 900000000000207008 396525008 129249002 1 118171006 900000000000011006 900000000000451002 +3479995020 20090131 0 900000000000207008 396525008 129249002 1 118171006 900000000000011006 900000000000451002 +3479996021 20080731 1 900000000000207008 396526009 23451007 1 118169006 900000000000011006 900000000000451002 +3479996021 20090131 0 900000000000207008 396526009 23451007 1 118169006 900000000000011006 900000000000451002 +3479997028 20080731 1 900000000000207008 396526009 33756006 1 118171006 900000000000011006 900000000000451002 +3479997028 20090131 0 900000000000207008 396526009 33756006 1 118171006 900000000000011006 900000000000451002 +3479998022 20080731 1 900000000000207008 396527000 367531007 1 118171006 900000000000011006 900000000000451002 +3479998022 20090131 0 900000000000207008 396527000 367531007 1 118171006 900000000000011006 900000000000451002 +3479999025 20080731 1 900000000000207008 396527000 413675001 1 370133003 900000000000011006 900000000000451002 +3479999025 20090131 0 900000000000207008 396527000 413675001 1 370133003 900000000000011006 900000000000451002 +3480004025 20080731 1 900000000000207008 396685001 89837001 1 118169006 900000000000011006 900000000000451002 +3480004025 20090131 0 900000000000207008 396685001 89837001 1 118169006 900000000000011006 900000000000451002 +3480005029 20080731 1 900000000000207008 396685001 64063003 1 118171006 900000000000011006 900000000000451002 +3480005029 20090131 0 900000000000207008 396685001 64063003 1 118171006 900000000000011006 900000000000451002 +3480009024 20080731 1 900000000000207008 396804002 15776009 1 118169006 900000000000011006 900000000000451002 +3480009024 20090131 0 900000000000207008 396804002 15776009 1 118169006 900000000000011006 900000000000451002 +3480010025 20080731 1 900000000000207008 396805001 116242006 1 118171006 900000000000011006 900000000000451002 +3480010025 20090131 0 900000000000207008 396805001 116242006 1 118171006 900000000000011006 900000000000451002 +3480011026 20080731 1 900000000000207008 396806000 413675001 1 370133003 900000000000011006 900000000000451002 +3480011026 20090131 0 900000000000207008 396806000 413675001 1 370133003 900000000000011006 900000000000451002 +3480012022 20080731 1 900000000000207008 396807009 116241004 1 118171006 900000000000011006 900000000000451002 +3480012022 20090131 0 900000000000207008 396807009 116241004 1 118171006 900000000000011006 900000000000451002 +3480014023 20080731 1 900000000000207008 396898008 177765008 1 118171006 900000000000011006 900000000000451002 +3480014023 20090131 0 900000000000207008 396898008 177765008 1 118171006 900000000000011006 900000000000451002 +3480014023 20100731 1 900000000000207008 396898008 177765008 1 118171006 900000000000011006 900000000000451002 +3480014023 20110131 0 900000000000207008 396898008 177765008 1 118171006 900000000000011006 900000000000451002 +3480015024 20080731 1 900000000000207008 396899000 9875009 1 118169006 900000000000011006 900000000000451002 +3480015024 20090131 0 900000000000207008 396899000 9875009 1 118169006 900000000000011006 900000000000451002 +3480048024 20080731 1 900000000000207008 396928004 81745001 1 118169006 900000000000011006 900000000000451002 +3480048024 20090131 0 900000000000207008 396928004 81745001 1 118169006 900000000000011006 900000000000451002 +3480048024 20100731 1 900000000000207008 396928004 81745001 1 118169006 900000000000011006 900000000000451002 +3480048024 20110131 0 900000000000207008 396928004 81745001 1 118169006 900000000000011006 900000000000451002 +3480049027 20080731 1 900000000000207008 396928004 413675001 1 370133003 900000000000011006 900000000000451002 +3480049027 20090131 0 900000000000207008 396928004 413675001 1 370133003 900000000000011006 900000000000451002 +3480049027 20100731 1 900000000000207008 396928004 413675001 1 370133003 900000000000011006 900000000000451002 +3480049027 20110131 0 900000000000207008 396928004 413675001 1 370133003 900000000000011006 900000000000451002 +3480050027 20080731 1 900000000000207008 396998007 14016003 2 118169006 900000000000011006 900000000000451002 +3480051028 20080731 1 900000000000207008 396998007 234326005 2 118171006 900000000000011006 900000000000451002 +3480052024 20080731 1 900000000000207008 397053005 41329004 1 118168003 900000000000011006 900000000000451002 +3480052024 20090131 0 900000000000207008 397053005 41329004 1 118168003 900000000000011006 900000000000451002 +3480053025 20080731 1 900000000000207008 397053005 235298005 1 118171006 900000000000011006 900000000000451002 +3480053025 20090131 0 900000000000207008 397053005 235298005 1 118171006 900000000000011006 900000000000451002 +3480054020 20080731 1 900000000000207008 397053005 413675001 1 370133003 900000000000011006 900000000000451002 +3480054020 20090131 0 900000000000207008 397053005 413675001 1 370133003 900000000000011006 900000000000451002 +3480055021 20080731 1 900000000000207008 397055003 30315005 1 118169006 900000000000011006 900000000000451002 +3480055021 20090131 0 900000000000207008 397055003 30315005 1 118169006 900000000000011006 900000000000451002 +3480056022 20080731 1 900000000000207008 397055003 413675001 1 370133003 900000000000011006 900000000000451002 +3480056022 20090131 0 900000000000207008 397055003 413675001 1 370133003 900000000000011006 900000000000451002 +3480057029 20080731 1 900000000000207008 397056002 116241004 1 118171006 900000000000011006 900000000000451002 +3480057029 20090131 0 900000000000207008 397056002 116241004 1 118171006 900000000000011006 900000000000451002 +3480058023 20080731 1 900000000000207008 397056002 413675001 1 370133003 900000000000011006 900000000000451002 +3480058023 20090131 0 900000000000207008 397056002 413675001 1 370133003 900000000000011006 900000000000451002 +3480059026 20080731 1 900000000000207008 397078009 8889005 1 118171006 900000000000011006 900000000000451002 +3480059026 20090731 0 900000000000207008 397078009 8889005 1 118171006 900000000000011006 900000000000451002 +3480060020 20080731 1 900000000000207008 397111007 76784001 1 118169006 900000000000011006 900000000000451002 +3480060020 20090131 0 900000000000207008 397111007 76784001 1 118169006 900000000000011006 900000000000451002 +3480061024 20080731 1 900000000000207008 397111007 413675001 1 370133003 900000000000011006 900000000000451002 +3480061024 20090131 0 900000000000207008 397111007 413675001 1 370133003 900000000000011006 900000000000451002 +3480062028 20080731 1 900000000000207008 397130007 413675001 1 370133003 900000000000011006 900000000000451002 +3480062028 20090731 0 900000000000207008 397130007 413675001 1 370133003 900000000000011006 900000000000451002 +3480065026 20080731 1 900000000000207008 397131006 45292006 1 118169006 900000000000011006 900000000000451002 +3480065026 20090731 0 900000000000207008 397131006 45292006 1 118169006 900000000000011006 900000000000451002 +3480066025 20080731 1 900000000000207008 397131006 236828004 1 118171006 900000000000011006 900000000000451002 +3480066025 20090731 0 900000000000207008 397131006 236828004 1 118171006 900000000000011006 900000000000451002 +3480067023 20080731 1 900000000000207008 397132004 413675001 1 370133003 900000000000011006 900000000000451002 +3480067023 20090731 0 900000000000207008 397132004 413675001 1 370133003 900000000000011006 900000000000451002 +3480068029 20080731 1 900000000000207008 397133009 413675001 1 370133003 900000000000011006 900000000000451002 +3480068029 20090731 0 900000000000207008 397133009 413675001 1 370133003 900000000000011006 900000000000451002 +3480069021 20080731 1 900000000000207008 397134003 45292006 1 118169006 900000000000011006 900000000000451002 +3480069021 20090131 0 900000000000207008 397134003 45292006 1 118169006 900000000000011006 900000000000451002 +3480070022 20080731 1 900000000000207008 397134003 413675001 1 370133003 900000000000011006 900000000000451002 +3480070022 20090131 0 900000000000207008 397134003 413675001 1 370133003 900000000000011006 900000000000451002 +3480071021 20080731 1 900000000000207008 397136001 279763008 1 118169006 900000000000011006 900000000000451002 +3480071021 20090131 0 900000000000207008 397136001 279763008 1 118169006 900000000000011006 900000000000451002 +3480072025 20080731 1 900000000000207008 397136001 413675001 1 370133003 900000000000011006 900000000000451002 +3480072025 20090131 0 900000000000207008 397136001 413675001 1 370133003 900000000000011006 900000000000451002 +3480073024 20080731 1 900000000000207008 397199005 119184005 1 118169006 900000000000011006 900000000000451002 +3480073024 20090131 0 900000000000207008 397199005 119184005 1 118169006 900000000000011006 900000000000451002 +3480074029 20080731 1 900000000000207008 397199005 413675001 1 370133003 900000000000011006 900000000000451002 +3480074029 20090131 0 900000000000207008 397199005 413675001 1 370133003 900000000000011006 900000000000451002 +3480075028 20080731 1 900000000000207008 397232008 175907006 1 118171006 900000000000011006 900000000000451002 +3480075028 20090131 0 900000000000207008 397232008 175907006 1 118171006 900000000000011006 900000000000451002 +3480076027 20080731 1 900000000000207008 397232008 413675001 1 370133003 900000000000011006 900000000000451002 +3480076027 20090131 0 900000000000207008 397232008 413675001 1 370133003 900000000000011006 900000000000451002 +3480077020 20080731 1 900000000000207008 397234009 25990002 1 118169006 900000000000011006 900000000000451002 +3480077020 20090131 0 900000000000207008 397234009 25990002 1 118169006 900000000000011006 900000000000451002 +3480078026 20080731 1 900000000000207008 397235005 175907006 1 118171006 900000000000011006 900000000000451002 +3480078026 20090131 0 900000000000207008 397235005 175907006 1 118171006 900000000000011006 900000000000451002 +3480079023 20080731 1 900000000000207008 397235005 413675001 1 370133003 900000000000011006 900000000000451002 +3480079023 20090131 0 900000000000207008 397235005 413675001 1 370133003 900000000000011006 900000000000451002 +3480080021 20080731 1 900000000000207008 397245007 15497006 1 118169006 900000000000011006 900000000000451002 +3480080021 20090131 0 900000000000207008 397245007 15497006 1 118169006 900000000000011006 900000000000451002 +3480081020 20080731 1 900000000000207008 397246008 15497006 1 118169006 900000000000011006 900000000000451002 +3480081020 20090131 0 900000000000207008 397246008 15497006 1 118169006 900000000000011006 900000000000451002 +3480082029 20080731 1 900000000000207008 397326000 2033006 1 118169006 900000000000011006 900000000000451002 +3480082029 20090131 0 900000000000207008 397326000 2033006 1 118169006 900000000000011006 900000000000451002 +3480083023 20080731 1 900000000000207008 397333000 2033006 1 118169006 900000000000011006 900000000000451002 +3480083023 20090731 0 900000000000207008 397333000 2033006 1 118169006 900000000000011006 900000000000451002 +3480145024 20080731 1 900000000000207008 397333000 176916000 1 118171006 900000000000011006 900000000000451002 +3480145024 20090731 0 900000000000207008 397333000 176916000 1 118171006 900000000000011006 900000000000451002 +3480146020 20080731 1 900000000000207008 397334006 176917009 1 118171006 900000000000011006 900000000000451002 +3480146020 20090731 0 900000000000207008 397334006 176917009 1 118171006 900000000000011006 900000000000451002 +3480147027 20080731 1 900000000000207008 397334006 413675001 1 370133003 900000000000011006 900000000000451002 +3480147027 20090731 0 900000000000207008 397334006 413675001 1 370133003 900000000000011006 900000000000451002 +3480148021 20080731 1 900000000000207008 397436009 58347006 1 118171006 900000000000011006 900000000000451002 +3480148021 20090731 0 900000000000207008 397436009 58347006 1 118171006 900000000000011006 900000000000451002 +3480149029 20080731 1 900000000000207008 397456005 397384004 1 118169006 900000000000011006 900000000000451002 +3480149029 20090131 0 900000000000207008 397456005 397384004 1 118169006 900000000000011006 900000000000451002 +3480150029 20080731 1 900000000000207008 397458006 177765008 1 118171006 900000000000011006 900000000000451002 +3480150029 20090131 0 900000000000207008 397458006 177765008 1 118171006 900000000000011006 900000000000451002 +3480150029 20100731 1 900000000000207008 397458006 177765008 1 118171006 900000000000011006 900000000000451002 +3480150029 20110131 0 900000000000207008 397458006 177765008 1 118171006 900000000000011006 900000000000451002 +3480151025 20080731 1 900000000000207008 397462000 76848001 1 118169006 900000000000011006 900000000000451002 +3480151025 20090731 0 900000000000207008 397462000 76848001 1 118169006 900000000000011006 900000000000451002 +3480152021 20080731 1 900000000000207008 397462000 413675001 1 370133003 900000000000011006 900000000000451002 +3480152021 20090731 0 900000000000207008 397462000 413675001 1 370133003 900000000000011006 900000000000451002 +3480153027 20080731 1 900000000000207008 397482001 16014003 1 118169006 900000000000011006 900000000000451002 +3480153027 20090731 0 900000000000207008 397482001 16014003 1 118169006 900000000000011006 900000000000451002 +3480154022 20080731 1 900000000000207008 397482001 413675001 1 370133003 900000000000011006 900000000000451002 +3480154022 20090731 0 900000000000207008 397482001 413675001 1 370133003 900000000000011006 900000000000451002 +3480155023 20080731 1 900000000000207008 397483006 16014003 1 118169006 900000000000011006 900000000000451002 +3480155023 20090731 0 900000000000207008 397483006 16014003 1 118169006 900000000000011006 900000000000451002 +3480156024 20080731 1 900000000000207008 397483006 399472007 1 118171006 900000000000011006 900000000000451002 +3480156024 20090731 0 900000000000207008 397483006 399472007 1 118171006 900000000000011006 900000000000451002 +3480206022 20080731 1 900000000000207008 312494007 177075000 1 118171006 900000000000011006 900000000000451002 +3480206022 20090131 0 900000000000207008 312494007 177075000 1 118171006 900000000000011006 900000000000451002 +3480495029 20080731 1 900000000000207008 309055005 64778000 1 370133003 900000000000011006 900000000000451002 +3480495029 20090131 0 900000000000207008 309055005 64778000 1 370133003 900000000000011006 900000000000451002 +3480496028 20080731 1 900000000000207008 309057002 386147002 1 118171006 900000000000011006 900000000000451002 +3480496028 20090131 0 900000000000207008 309057002 386147002 1 118171006 900000000000011006 900000000000451002 +3480497021 20080731 1 900000000000207008 309058007 76752008 1 118169006 900000000000011006 900000000000451002 +3480497021 20090131 0 900000000000207008 309058007 76752008 1 118169006 900000000000011006 900000000000451002 +3480498027 20080731 1 900000000000207008 309059004 76752008 1 118169006 900000000000011006 900000000000451002 +3480498027 20090131 0 900000000000207008 309059004 76752008 1 118169006 900000000000011006 900000000000451002 +3480499024 20080731 1 900000000000207008 309059004 27204007 1 118171006 900000000000011006 900000000000451002 +3480499024 20090131 0 900000000000207008 309059004 27204007 1 118171006 900000000000011006 900000000000451002 +3480501027 20080731 1 900000000000207008 309066003 240977001 1 118171006 900000000000011006 900000000000451002 +3480501027 20090131 0 900000000000207008 309066003 240977001 1 118171006 900000000000011006 900000000000451002 +3480502023 20080731 1 900000000000207008 309067007 87591000 1 118171006 900000000000011006 900000000000451002 +3480502023 20090731 0 900000000000207008 309067007 87591000 1 118171006 900000000000011006 900000000000451002 +3480503029 20080731 1 900000000000207008 309067007 413675001 1 370133003 900000000000011006 900000000000451002 +3480503029 20090731 0 900000000000207008 309067007 413675001 1 370133003 900000000000011006 900000000000451002 +3480657025 20080731 1 900000000000207008 309068002 39937001 1 118169006 900000000000011006 900000000000451002 +3480657025 20090131 0 900000000000207008 309068002 39937001 1 118169006 900000000000011006 900000000000451002 +3480658024 20080731 1 900000000000207008 309070006 45292006 1 118169006 900000000000011006 900000000000451002 +3480658024 20090131 0 900000000000207008 309070006 45292006 1 118169006 900000000000011006 900000000000451002 +3480659027 20080731 1 900000000000207008 309071005 240977001 1 118171006 900000000000011006 900000000000451002 +3480659027 20090131 0 900000000000207008 309071005 240977001 1 118171006 900000000000011006 900000000000451002 +3480660021 20080731 1 900000000000207008 309073008 134328007 1 118168003 900000000000011006 900000000000451002 +3480660021 20090131 0 900000000000207008 309073008 134328007 1 118168003 900000000000011006 900000000000451002 +3480661020 20080731 1 900000000000207008 309073008 86273004 1 118171006 900000000000011006 900000000000451002 +3480661020 20090131 0 900000000000207008 309073008 86273004 1 118171006 900000000000011006 900000000000451002 +3480662029 20080731 1 900000000000207008 309075001 39937001 1 118169006 900000000000011006 900000000000451002 +3480662029 20090131 0 900000000000207008 309075001 39937001 1 118169006 900000000000011006 900000000000451002 +3480663023 20080731 1 900000000000207008 309077009 234319005 1 118171006 900000000000011006 900000000000451002 +3480663023 20090131 0 900000000000207008 309077009 234319005 1 118171006 900000000000011006 900000000000451002 +3480664028 20080731 1 900000000000207008 309078004 413675001 1 370133003 900000000000011006 900000000000451002 +3480664028 20090131 0 900000000000207008 309078004 413675001 1 370133003 900000000000011006 900000000000451002 +3480665027 20080731 1 900000000000207008 309079007 21911005 1 118171006 900000000000011006 900000000000451002 +3480665027 20090131 0 900000000000207008 309079007 21911005 1 118171006 900000000000011006 900000000000451002 +3480667024 20080731 1 900000000000207008 309102001 309312004 1 118169006 900000000000011006 900000000000451002 +3480667024 20090131 0 900000000000207008 309102001 309312004 1 118169006 900000000000011006 900000000000451002 +3480668025 20080731 1 900000000000207008 309103006 309312004 1 118169006 900000000000011006 900000000000451002 +3480668025 20090731 0 900000000000207008 309103006 309312004 1 118169006 900000000000011006 900000000000451002 +3480669022 20080731 1 900000000000207008 309103006 122479006 1 118171006 900000000000011006 900000000000451002 +3480669022 20090731 0 900000000000207008 309103006 122479006 1 118171006 900000000000011006 900000000000451002 +3480670023 20080731 1 900000000000207008 309108002 13024002 1 118169006 900000000000011006 900000000000451002 +3480670023 20090731 0 900000000000207008 309108002 13024002 1 118169006 900000000000011006 900000000000451002 +3480671022 20080731 1 900000000000207008 309108002 413675001 1 370133003 900000000000011006 900000000000451002 +3480671022 20090731 0 900000000000207008 309108002 413675001 1 370133003 900000000000011006 900000000000451002 +3480672026 20080731 1 900000000000207008 309110000 413675001 1 370133003 900000000000011006 900000000000451002 +3480672026 20090131 0 900000000000207008 309110000 413675001 1 370133003 900000000000011006 900000000000451002 +3480673020 20080731 1 900000000000207008 309111001 429882005 1 118171006 900000000000011006 900000000000451002 +3480673020 20090131 0 900000000000207008 309111001 429882005 1 118171006 900000000000011006 900000000000451002 +3480674025 20080731 1 900000000000207008 309112008 13351007 1 118169006 900000000000011006 900000000000451002 +3480674025 20090731 0 900000000000207008 309112008 13351007 1 118169006 900000000000011006 900000000000451002 +3480675029 20080731 1 900000000000207008 309112008 413675001 1 370133003 900000000000011006 900000000000451002 +3480675029 20090731 0 900000000000207008 309112008 413675001 1 370133003 900000000000011006 900000000000451002 +3480676028 20080731 1 900000000000207008 309115005 52082005 1 118169006 900000000000011006 900000000000451002 +3480676028 20090131 0 900000000000207008 309115005 52082005 1 118169006 900000000000011006 900000000000451002 +3480677021 20080731 1 900000000000207008 309115005 429893007 1 118171006 900000000000011006 900000000000451002 +3480677021 20090131 0 900000000000207008 309115005 429893007 1 118171006 900000000000011006 900000000000451002 +3480678027 20080731 1 900000000000207008 309116006 52082005 1 118169006 900000000000011006 900000000000451002 +3480678027 20090731 0 900000000000207008 309116006 52082005 1 118169006 900000000000011006 900000000000451002 +3480679024 20080731 1 900000000000207008 309116006 433016000 1 118171006 900000000000011006 900000000000451002 +3480679024 20090731 0 900000000000207008 309116006 433016000 1 118171006 900000000000011006 900000000000451002 +3480680022 20080731 1 900000000000207008 309118007 84820005 1 118169006 900000000000011006 900000000000451002 +3480680022 20090131 0 900000000000207008 309118007 84820005 1 118169006 900000000000011006 900000000000451002 +3480681021 20080731 1 900000000000207008 309119004 74422001 1 118171006 900000000000011006 900000000000451002 +3480681021 20090731 0 900000000000207008 309119004 74422001 1 118171006 900000000000011006 900000000000451002 +3480682025 20080731 1 900000000000207008 309119004 413675001 1 370133003 900000000000011006 900000000000451002 +3480682025 20090731 0 900000000000207008 309119004 413675001 1 370133003 900000000000011006 900000000000451002 +3480683024 20080731 1 900000000000207008 309121009 64331004 1 118169006 900000000000011006 900000000000451002 +3480683024 20090131 0 900000000000207008 309121009 64331004 1 118169006 900000000000011006 900000000000451002 +3480684029 20080731 1 900000000000207008 309121009 413675001 1 370133003 900000000000011006 900000000000451002 +3480684029 20090131 0 900000000000207008 309121009 413675001 1 370133003 900000000000011006 900000000000451002 +3480685028 20080731 1 900000000000207008 309122002 64331004 1 118169006 900000000000011006 900000000000451002 +3480685028 20090131 0 900000000000207008 309122002 64331004 1 118169006 900000000000011006 900000000000451002 +3480686027 20080731 1 900000000000207008 309124001 39352004 1 118169006 900000000000011006 900000000000451002 +3480686027 20090131 0 900000000000207008 309124001 39352004 1 118169006 900000000000011006 900000000000451002 +3480687020 20080731 1 900000000000207008 309127008 431348003 1 118171006 900000000000011006 900000000000451002 +3480687020 20090731 0 900000000000207008 309127008 431348003 1 118171006 900000000000011006 900000000000451002 +3480688026 20080731 1 900000000000207008 309127008 413675001 1 370133003 900000000000011006 900000000000451002 +3480688026 20090731 0 900000000000207008 309127008 413675001 1 370133003 900000000000011006 900000000000451002 +3480689023 20080731 1 900000000000207008 309128003 426513002 1 370133003 900000000000011006 900000000000451002 +3480689023 20090131 0 900000000000207008 309128003 426513002 1 370133003 900000000000011006 900000000000451002 +3480690025 20080731 1 900000000000207008 309129006 413675001 1 370133003 900000000000011006 900000000000451002 +3480690025 20090131 0 900000000000207008 309129006 413675001 1 370133003 900000000000011006 900000000000451002 +3480691026 20080731 1 900000000000207008 309130001 171612001 1 118171006 900000000000011006 900000000000451002 +3480691026 20090131 0 900000000000207008 309130001 171612001 1 118171006 900000000000011006 900000000000451002 +3480692022 20080731 1 900000000000207008 309131002 3057000 1 118169006 900000000000011006 900000000000451002 +3480692022 20090131 0 900000000000207008 309131002 3057000 1 118169006 900000000000011006 900000000000451002 +3480693028 20080731 1 900000000000207008 309132009 65575008 1 118171006 900000000000011006 900000000000451002 +3480693028 20090131 0 900000000000207008 309132009 65575008 1 118171006 900000000000011006 900000000000451002 +3480694023 20080731 1 900000000000207008 309133004 41216001 1 118169006 900000000000011006 900000000000451002 +3480694023 20090731 0 900000000000207008 309133004 41216001 1 118169006 900000000000011006 900000000000451002 +3480695024 20080731 1 900000000000207008 309133004 413675001 1 370133003 900000000000011006 900000000000451002 +3480695024 20090731 0 900000000000207008 309133004 413675001 1 370133003 900000000000011006 900000000000451002 +3480696020 20080731 1 900000000000207008 309134005 301759007 1 118171006 900000000000011006 900000000000451002 +3480696020 20090131 0 900000000000207008 309134005 301759007 1 118171006 900000000000011006 900000000000451002 +3480697027 20080731 1 900000000000207008 309134005 413675001 1 370133003 900000000000011006 900000000000451002 +3480697027 20090131 0 900000000000207008 309134005 413675001 1 370133003 900000000000011006 900000000000451002 +3480698021 20080731 1 900000000000207008 309137003 118958009 1 118171006 900000000000011006 900000000000451002 +3480698021 20090131 0 900000000000207008 309137003 118958009 1 118171006 900000000000011006 900000000000451002 +3480699029 20080731 1 900000000000207008 309138008 279572002 1 118169006 900000000000011006 900000000000451002 +3480699029 20090731 0 900000000000207008 309138008 279572002 1 118169006 900000000000011006 900000000000451002 +3480700028 20080731 1 900000000000207008 309138008 120001005 1 118171006 900000000000011006 900000000000451002 +3480700028 20090731 0 900000000000207008 309138008 120001005 1 118171006 900000000000011006 900000000000451002 +3480701029 20080731 1 900000000000207008 309142006 23451007 1 118169006 900000000000011006 900000000000451002 +3480701029 20090131 0 900000000000207008 309142006 23451007 1 118169006 900000000000011006 900000000000451002 +3480702020 20080731 1 900000000000207008 309143001 31904001 1 118171006 900000000000011006 900000000000451002 +3480702020 20090731 0 900000000000207008 309143001 31904001 1 118171006 900000000000011006 900000000000451002 +3480703026 20080731 1 900000000000207008 309143001 413675001 1 370133003 900000000000011006 900000000000451002 +3480703026 20090731 0 900000000000207008 309143001 413675001 1 370133003 900000000000011006 900000000000451002 +3480704021 20080731 1 900000000000207008 309148005 69748006 1 118169006 900000000000011006 900000000000451002 +3480704021 20090131 0 900000000000207008 309148005 69748006 1 118169006 900000000000011006 900000000000451002 +3480705022 20080731 1 900000000000207008 309151003 111002 1 118169006 900000000000011006 900000000000451002 +3480705022 20090131 0 900000000000207008 309151003 111002 1 118169006 900000000000011006 900000000000451002 +3480706023 20080731 1 900000000000207008 309153000 413675001 1 370133003 900000000000011006 900000000000451002 +3480706023 20090731 0 900000000000207008 309153000 413675001 1 370133003 900000000000011006 900000000000451002 +3480707025 20080731 1 900000000000207008 309168004 58675001 1 118169006 900000000000011006 900000000000451002 +3480707025 20090131 0 900000000000207008 309168004 58675001 1 118169006 900000000000011006 900000000000451002 +3480708024 20080731 1 900000000000207008 309169007 44567001 1 118169006 900000000000011006 900000000000451002 +3480708024 20090131 0 900000000000207008 309169007 44567001 1 118169006 900000000000011006 900000000000451002 +3480709027 20080731 1 900000000000207008 309172000 3120008 1 118169006 900000000000011006 900000000000451002 +3480709027 20090131 0 900000000000207008 309172000 3120008 1 118169006 900000000000011006 900000000000451002 +3480710021 20080731 1 900000000000207008 309173005 955009 1 118169006 900000000000011006 900000000000451002 +3480710021 20090131 0 900000000000207008 309173005 955009 1 118169006 900000000000011006 900000000000451002 +3480711020 20080731 1 900000000000207008 309174004 955009 1 118169006 900000000000011006 900000000000451002 +3480711020 20090131 0 900000000000207008 309174004 955009 1 118169006 900000000000011006 900000000000451002 +3480847029 20080731 1 900000000000207008 309174004 312849006 1 118171006 900000000000011006 900000000000451002 +3480847029 20090131 0 900000000000207008 309174004 312849006 1 118171006 900000000000011006 900000000000451002 +3480848023 20080731 1 900000000000207008 309175003 39607008 1 118169006 900000000000011006 900000000000451002 +3480848023 20090731 0 900000000000207008 309175003 39607008 1 118169006 900000000000011006 900000000000451002 +3480849026 20080731 1 900000000000207008 309175003 119746007 1 118171006 900000000000011006 900000000000451002 +3480849026 20090731 0 900000000000207008 309175003 119746007 1 118171006 900000000000011006 900000000000451002 +3480850026 20080731 1 900000000000207008 309176002 80657008 1 118171006 900000000000011006 900000000000451002 +3480850026 20090131 0 900000000000207008 309176002 80657008 1 118171006 900000000000011006 900000000000451002 +3480851027 20080731 1 900000000000207008 309177006 386147002 1 118171006 900000000000011006 900000000000451002 +3480851027 20090131 0 900000000000207008 309177006 386147002 1 118171006 900000000000011006 900000000000451002 +3480852023 20080731 1 900000000000207008 309178001 45206002 1 118169006 900000000000011006 900000000000451002 +3480852023 20090131 0 900000000000207008 309178001 45206002 1 118169006 900000000000011006 900000000000451002 +3480852023 20110131 1 900000000000207008 309178001 45206002 1 118169006 900000000000011006 900000000000451002 +3480852023 20110731 0 900000000000207008 309178001 45206002 1 118169006 900000000000011006 900000000000451002 +3480853029 20080731 1 900000000000207008 309179009 41329004 1 118168003 900000000000011006 900000000000451002 +3480853029 20090131 0 900000000000207008 309179009 41329004 1 118168003 900000000000011006 900000000000451002 +3480854024 20080731 1 900000000000207008 309179009 53342003 1 118169006 900000000000011006 900000000000451002 +3480854024 20090131 0 900000000000207008 309179009 53342003 1 118169006 900000000000011006 900000000000451002 +3480855020 20080731 1 900000000000207008 309180007 232539009 1 118171006 900000000000011006 900000000000451002 +3480855020 20090131 0 900000000000207008 309180007 232539009 1 118171006 900000000000011006 900000000000451002 +3480859025 20080731 1 900000000000207008 309181006 172659005 1 118171006 900000000000011006 900000000000451002 +3480859025 20090731 0 900000000000207008 309181006 172659005 1 118171006 900000000000011006 900000000000451002 +3480860024 20080731 1 900000000000207008 309183009 4596009 1 118169006 900000000000011006 900000000000451002 +3480860024 20090731 0 900000000000207008 309183009 4596009 1 118169006 900000000000011006 900000000000451002 +3480861023 20080731 1 900000000000207008 309183009 72791001 1 118171006 900000000000011006 900000000000451002 +3480861023 20090731 0 900000000000207008 309183009 72791001 1 118171006 900000000000011006 900000000000451002 +3480862027 20080731 1 900000000000207008 309184003 46105003 1 118169006 900000000000011006 900000000000451002 +3480862027 20090131 0 900000000000207008 309184003 46105003 1 118169006 900000000000011006 900000000000451002 +3480863021 20080731 1 900000000000207008 309186001 413675001 1 370133003 900000000000011006 900000000000451002 +3480863021 20090131 0 900000000000207008 309186001 413675001 1 370133003 900000000000011006 900000000000451002 +3480864026 20080731 1 900000000000207008 309187005 413675001 1 370133003 900000000000011006 900000000000451002 +3480864026 20090131 0 900000000000207008 309187005 413675001 1 370133003 900000000000011006 900000000000451002 +3480864026 20110731 1 900000000000207008 309187005 413675001 1 370133003 900000000000011006 900000000000451002 +3480865025 20080731 1 900000000000207008 309189008 21974007 1 118169006 900000000000011006 900000000000451002 +3480865025 20090131 0 900000000000207008 309189008 21974007 1 118169006 900000000000011006 900000000000451002 +3480866029 20080731 1 900000000000207008 309190004 71735005 1 118171006 900000000000011006 900000000000451002 +3480866029 20090731 0 900000000000207008 309190004 71735005 1 118171006 900000000000011006 900000000000451002 +3480867022 20080731 1 900000000000207008 309190004 413675001 1 370133003 900000000000011006 900000000000451002 +3480867022 20090731 0 900000000000207008 309190004 413675001 1 370133003 900000000000011006 900000000000451002 +3480868028 20080731 1 900000000000207008 309191000 17861009 1 118169006 900000000000011006 900000000000451002 +3480868028 20090131 0 900000000000207008 309191000 17861009 1 118169006 900000000000011006 900000000000451002 +3480868028 20090731 1 900000000000207008 309191000 17861009 1 118169006 900000000000011006 900000000000451002 +3480868028 20100131 0 900000000000207008 309191000 17861009 1 118169006 900000000000011006 900000000000451002 +3480869020 20080731 1 900000000000207008 309193002 54066008 1 118169006 900000000000011006 900000000000451002 +3480869020 20090131 0 900000000000207008 309193002 54066008 1 118169006 900000000000011006 900000000000451002 +3480870021 20080731 1 900000000000207008 309193002 16299004 1 118171006 900000000000011006 900000000000451002 +3480870021 20090131 0 900000000000207008 309193002 16299004 1 118171006 900000000000011006 900000000000451002 +3480871020 20080731 1 900000000000207008 309200000 413675001 1 370133003 900000000000011006 900000000000451002 +3480871020 20090131 0 900000000000207008 309200000 413675001 1 370133003 900000000000011006 900000000000451002 +3480871020 20110731 1 900000000000207008 309200000 413675001 1 370133003 900000000000011006 900000000000451002 +3480872029 20080731 1 900000000000207008 309202008 386147002 1 118171006 900000000000011006 900000000000451002 +3480872029 20090131 0 900000000000207008 309202008 386147002 1 118171006 900000000000011006 900000000000451002 +3480873023 20080731 1 900000000000207008 309203003 86259008 1 118171006 900000000000011006 900000000000451002 +3480873023 20090131 0 900000000000207008 309203003 86259008 1 118171006 900000000000011006 900000000000451002 +3480874028 20080731 1 900000000000207008 309204009 10200004 1 118169006 900000000000011006 900000000000451002 +3480874028 20090131 0 900000000000207008 309204009 10200004 1 118169006 900000000000011006 900000000000451002 +3480875027 20080731 1 900000000000207008 309205005 28231008 1 118169006 900000000000011006 900000000000451002 +3480875027 20090731 0 900000000000207008 309205005 28231008 1 118169006 900000000000011006 900000000000451002 +3480876026 20080731 1 900000000000207008 309205005 413675001 1 370133003 900000000000011006 900000000000451002 +3480876026 20090731 0 900000000000207008 309205005 413675001 1 370133003 900000000000011006 900000000000451002 +3480877024 20080731 1 900000000000207008 309207002 15425007 1 118169006 900000000000011006 900000000000451002 +3480877024 20090131 0 900000000000207008 309207002 15425007 1 118169006 900000000000011006 900000000000451002 +3480878025 20080731 1 900000000000207008 309208007 27398004 1 118169006 900000000000011006 900000000000451002 +3480878025 20090131 0 900000000000207008 309208007 27398004 1 118169006 900000000000011006 900000000000451002 +3480879022 20080731 1 900000000000207008 309209004 32849002 1 118169006 900000000000011006 900000000000451002 +3480879022 20090131 0 900000000000207008 309209004 32849002 1 118169006 900000000000011006 900000000000451002 +3480880020 20080731 1 900000000000207008 309210009 36213007 1 118171006 900000000000011006 900000000000451002 +3480880020 20090131 0 900000000000207008 309210009 36213007 1 118171006 900000000000011006 900000000000451002 +3480881024 20080731 1 900000000000207008 309215004 69695003 1 118169006 900000000000011006 900000000000451002 +3480881024 20090131 0 900000000000207008 309215004 69695003 1 118169006 900000000000011006 900000000000451002 +3480882028 20080731 1 900000000000207008 309216003 235261009 1 118171006 900000000000011006 900000000000451002 +3480882028 20090131 0 900000000000207008 309216003 235261009 1 118171006 900000000000011006 900000000000451002 +3480883022 20080731 1 900000000000207008 309217007 34516001 1 118169006 900000000000011006 900000000000451002 +3480883022 20090131 0 900000000000207008 309217007 34516001 1 118169006 900000000000011006 900000000000451002 +3480884027 20080731 1 900000000000207008 309217007 299694009 1 118171006 900000000000011006 900000000000451002 +3480884027 20090131 0 900000000000207008 309217007 299694009 1 118171006 900000000000011006 900000000000451002 +3480885026 20080731 1 900000000000207008 309218002 34516001 1 118169006 900000000000011006 900000000000451002 +3480885026 20090131 0 900000000000207008 309218002 34516001 1 118169006 900000000000011006 900000000000451002 +3480886025 20080731 1 900000000000207008 309218002 413675001 1 370133003 900000000000011006 900000000000451002 +3480886025 20090131 0 900000000000207008 309218002 413675001 1 370133003 900000000000011006 900000000000451002 +3480887023 20080731 1 900000000000207008 309219005 21306003 1 118169006 900000000000011006 900000000000451002 +3480887023 20090131 0 900000000000207008 309219005 21306003 1 118169006 900000000000011006 900000000000451002 +3480888029 20080731 1 900000000000207008 309219005 299693003 1 118171006 900000000000011006 900000000000451002 +3480888029 20090131 0 900000000000207008 309219005 299693003 1 118171006 900000000000011006 900000000000451002 +3480889021 20080731 1 900000000000207008 309220004 413675001 1 370133003 900000000000011006 900000000000451002 +3480889021 20090731 0 900000000000207008 309220004 413675001 1 370133003 900000000000011006 900000000000451002 +3480890028 20080731 1 900000000000207008 309221000 85774003 1 118169006 900000000000011006 900000000000451002 +3480890028 20090131 0 900000000000207008 309221000 85774003 1 118169006 900000000000011006 900000000000451002 +3480891029 20080731 1 900000000000207008 309221000 413675001 1 370133003 900000000000011006 900000000000451002 +3480891029 20090131 0 900000000000207008 309221000 413675001 1 370133003 900000000000011006 900000000000451002 +3480892020 20080731 1 900000000000207008 309223002 71854001 1 118169006 900000000000011006 900000000000451002 +3480892020 20090731 0 900000000000207008 309223002 71854001 1 118169006 900000000000011006 900000000000451002 +3480893026 20080731 1 900000000000207008 309223002 23968004 1 118171006 900000000000011006 900000000000451002 +3480893026 20090731 0 900000000000207008 309223002 23968004 1 118171006 900000000000011006 900000000000451002 +3480894021 20080731 1 900000000000207008 309224008 413675001 1 370133003 900000000000011006 900000000000451002 +3480894021 20090131 0 900000000000207008 309224008 413675001 1 370133003 900000000000011006 900000000000451002 +3480895022 20080731 1 900000000000207008 309225009 76164006 1 118171006 900000000000011006 900000000000451002 +3480895022 20090131 0 900000000000207008 309225009 76164006 1 118171006 900000000000011006 900000000000451002 +3480896023 20080731 1 900000000000207008 309227001 41329004 1 118168003 900000000000011006 900000000000451002 +3480896023 20090131 0 900000000000207008 309227001 41329004 1 118168003 900000000000011006 900000000000451002 +3480897025 20080731 1 900000000000207008 309227001 60184004 1 118169006 900000000000011006 900000000000451002 +3480897025 20090131 0 900000000000207008 309227001 60184004 1 118169006 900000000000011006 900000000000451002 +3480901020 20080731 1 900000000000207008 309261004 60184004 1 118169006 900000000000011006 900000000000451002 +3480901020 20090131 0 900000000000207008 309261004 60184004 1 118169006 900000000000011006 900000000000451002 +3481014027 20080731 1 900000000000207008 309262006 54686006 1 118171006 900000000000011006 900000000000451002 +3481014027 20090131 0 900000000000207008 309262006 54686006 1 118171006 900000000000011006 900000000000451002 +3481014027 20110731 1 900000000000207008 309262006 54686006 1 118171006 900000000000011006 900000000000451002 +3481015026 20080731 1 900000000000207008 309263001 41329004 1 118168003 900000000000011006 900000000000451002 +3481015026 20090131 0 900000000000207008 309263001 41329004 1 118168003 900000000000011006 900000000000451002 +3481016025 20080731 1 900000000000207008 309263001 413675001 1 370133003 900000000000011006 900000000000451002 +3481016025 20090131 0 900000000000207008 309263001 413675001 1 370133003 900000000000011006 900000000000451002 +3481017023 20080731 1 900000000000207008 309264007 34402009 1 118169006 900000000000011006 900000000000451002 +3481017023 20090131 0 900000000000207008 309264007 34402009 1 118169006 900000000000011006 900000000000451002 +3481017023 20100131 1 900000000000207008 309264007 34402009 1 118169006 900000000000011006 900000000000451002 +3481017023 20100731 0 900000000000207008 309264007 34402009 1 118169006 900000000000011006 900000000000451002 +3481018029 20080731 1 900000000000207008 309264007 413675001 1 370133003 900000000000011006 900000000000451002 +3481018029 20090131 0 900000000000207008 309264007 413675001 1 370133003 900000000000011006 900000000000451002 +3481018029 20100131 1 900000000000207008 309264007 413675001 1 370133003 900000000000011006 900000000000451002 +3481018029 20100731 0 900000000000207008 309264007 413675001 1 370133003 900000000000011006 900000000000451002 +3481019021 20080731 1 900000000000207008 309265008 53505006 1 118169006 900000000000011006 900000000000451002 +3481019021 20090131 0 900000000000207008 309265008 53505006 1 118169006 900000000000011006 900000000000451002 +3481020026 20080731 1 900000000000207008 309266009 53505006 1 118169006 900000000000011006 900000000000451002 +3481020026 20090131 0 900000000000207008 309266009 53505006 1 118169006 900000000000011006 900000000000451002 +3481021027 20080731 1 900000000000207008 309266009 413675001 1 370133003 900000000000011006 900000000000451002 +3481021027 20090131 0 900000000000207008 309266009 413675001 1 370133003 900000000000011006 900000000000451002 +3481022023 20080731 1 900000000000207008 309267000 53505006 1 118169006 900000000000011006 900000000000451002 +3481022023 20090731 0 900000000000207008 309267000 53505006 1 118169006 900000000000011006 900000000000451002 +3481023029 20080731 1 900000000000207008 309267000 413675001 1 370133003 900000000000011006 900000000000451002 +3481023029 20090731 0 900000000000207008 309267000 413675001 1 370133003 900000000000011006 900000000000451002 +3481024024 20080731 1 900000000000207008 309268005 33463005 1 370133003 900000000000011006 900000000000451002 +3481024024 20090131 0 900000000000207008 309268005 33463005 1 370133003 900000000000011006 900000000000451002 +3481025020 20080731 1 900000000000207008 309270001 108022006 1 118171006 900000000000011006 900000000000451002 +3481025020 20090731 0 900000000000207008 309270001 108022006 1 118171006 900000000000011006 900000000000451002 +3481026021 20080731 1 900000000000207008 309270001 413675001 1 370133003 900000000000011006 900000000000451002 +3481026021 20090731 0 900000000000207008 309270001 413675001 1 370133003 900000000000011006 900000000000451002 +3481027028 20080731 1 900000000000207008 309271002 429894001 1 118171006 900000000000011006 900000000000451002 +3481027028 20090131 0 900000000000207008 309271002 429894001 1 118171006 900000000000011006 900000000000451002 +3481028022 20080731 1 900000000000207008 309272009 89837001 1 118169006 900000000000011006 900000000000451002 +3481028022 20090131 0 900000000000207008 309272009 89837001 1 118169006 900000000000011006 900000000000451002 +3481028022 20100131 1 900000000000207008 309272009 89837001 1 118169006 900000000000011006 900000000000451002 +3481028022 20100731 0 900000000000207008 309272009 89837001 1 118169006 900000000000011006 900000000000451002 +3481029025 20080731 1 900000000000207008 309273004 89837001 1 118169006 900000000000011006 900000000000451002 +3481029025 20090131 0 900000000000207008 309273004 89837001 1 118169006 900000000000011006 900000000000451002 +3481029025 20100131 1 900000000000207008 309273004 89837001 1 118169006 900000000000011006 900000000000451002 +3481029025 20100731 0 900000000000207008 309273004 89837001 1 118169006 900000000000011006 900000000000451002 +3481030024 20080731 1 900000000000207008 309274005 89837001 1 118169006 900000000000011006 900000000000451002 +3481030024 20090131 0 900000000000207008 309274005 89837001 1 118169006 900000000000011006 900000000000451002 +3481031023 20080731 1 900000000000207008 309274005 413675001 1 370133003 900000000000011006 900000000000451002 +3481031023 20090131 0 900000000000207008 309274005 413675001 1 370133003 900000000000011006 900000000000451002 +3481032027 20080731 1 900000000000207008 309275006 89837001 1 118169006 900000000000011006 900000000000451002 +3481032027 20090731 0 900000000000207008 309275006 89837001 1 118169006 900000000000011006 900000000000451002 +3481033021 20080731 1 900000000000207008 309275006 413675001 1 370133003 900000000000011006 900000000000451002 +3481033021 20090731 0 900000000000207008 309275006 413675001 1 370133003 900000000000011006 900000000000451002 +3481034026 20080731 1 900000000000207008 309276007 89837001 1 118169006 900000000000011006 900000000000451002 +3481034026 20090131 0 900000000000207008 309276007 89837001 1 118169006 900000000000011006 900000000000451002 +3481035025 20080731 1 900000000000207008 309276007 413675001 1 370133003 900000000000011006 900000000000451002 +3481035025 20090131 0 900000000000207008 309276007 413675001 1 370133003 900000000000011006 900000000000451002 +3481036029 20080731 1 900000000000207008 309278008 413675001 1 370133003 900000000000011006 900000000000451002 +3481036029 20090131 0 900000000000207008 309278008 413675001 1 370133003 900000000000011006 900000000000451002 +3481037022 20080731 1 900000000000207008 309280002 76784001 1 118169006 900000000000011006 900000000000451002 +3481037022 20090131 0 900000000000207008 309280002 76784001 1 118169006 900000000000011006 900000000000451002 +3481038028 20080731 1 900000000000207008 309283000 71252005 1 118169006 900000000000011006 900000000000451002 +3481038028 20090131 0 900000000000207008 309283000 71252005 1 118169006 900000000000011006 900000000000451002 +3481039020 20080731 1 900000000000207008 309285007 413675001 1 370133003 900000000000011006 900000000000451002 +3481039020 20090131 0 900000000000207008 309285007 413675001 1 370133003 900000000000011006 900000000000451002 +3481040022 20080731 1 900000000000207008 309286008 71252005 1 118169006 900000000000011006 900000000000451002 +3481040022 20090131 0 900000000000207008 309286008 71252005 1 118169006 900000000000011006 900000000000451002 +3481041021 20080731 1 900000000000207008 309286008 413675001 1 370133003 900000000000011006 900000000000451002 +3481041021 20090131 0 900000000000207008 309286008 413675001 1 370133003 900000000000011006 900000000000451002 +3481042025 20080731 1 900000000000207008 309287004 32987009 2 118169006 900000000000011006 900000000000451002 +3481042025 20090731 0 900000000000207008 309287004 32987009 2 118169006 900000000000011006 900000000000451002 +3481043024 20080731 1 900000000000207008 309287004 83238006 3 118169006 900000000000011006 900000000000451002 +3481043024 20090731 0 900000000000207008 309287004 83238006 3 118169006 900000000000011006 900000000000451002 +3481044029 20080731 1 900000000000207008 309287004 236886002 4 118171006 900000000000011006 900000000000451002 +3481044029 20090731 1 900000000000207008 309287004 236886002 6 118171006 900000000000011006 900000000000451002 +3481045028 20080731 1 900000000000207008 309287004 76876009 3 118171006 900000000000011006 900000000000451002 +3481045028 20090731 0 900000000000207008 309287004 76876009 3 118171006 900000000000011006 900000000000451002 +3481046027 20080731 1 900000000000207008 309287004 413675001 3 370133003 900000000000011006 900000000000451002 +3481046027 20090731 0 900000000000207008 309287004 413675001 3 370133003 900000000000011006 900000000000451002 +3481047020 20080731 1 900000000000207008 309287004 413675001 4 370133003 900000000000011006 900000000000451002 +3481047020 20090731 1 900000000000207008 309287004 413675001 6 370133003 900000000000011006 900000000000451002 +3481048026 20080731 1 900000000000207008 309288009 413675001 1 370133003 900000000000011006 900000000000451002 +3481048026 20090131 0 900000000000207008 309288009 413675001 1 370133003 900000000000011006 900000000000451002 +3481049023 20080731 1 900000000000207008 309289001 2739003 1 118169006 900000000000011006 900000000000451002 +3481049023 20090131 0 900000000000207008 309289001 2739003 1 118169006 900000000000011006 900000000000451002 +3481050023 20080731 1 900000000000207008 309289001 413675001 1 370133003 900000000000011006 900000000000451002 +3481050023 20090131 0 900000000000207008 309289001 413675001 1 370133003 900000000000011006 900000000000451002 +3481051022 20080731 1 900000000000207008 309290005 31435000 1 118169006 900000000000011006 900000000000451002 +3481051022 20090131 0 900000000000207008 309290005 31435000 1 118169006 900000000000011006 900000000000451002 +3481052026 20080731 1 900000000000207008 309293007 302381002 1 118171006 900000000000011006 900000000000451002 +3481052026 20090131 0 900000000000207008 309293007 302381002 1 118171006 900000000000011006 900000000000451002 +3481185021 20080731 1 900000000000207008 309476009 59441001 1 118169006 900000000000011006 900000000000451002 +3481185021 20090131 0 900000000000207008 309476009 59441001 1 118169006 900000000000011006 900000000000451002 +3481186022 20080731 1 900000000000207008 309482007 59441001 1 118169006 900000000000011006 900000000000451002 +3481186022 20090131 0 900000000000207008 309482007 59441001 1 118169006 900000000000011006 900000000000451002 +3481187029 20080731 1 900000000000207008 309482007 413675001 1 370133003 900000000000011006 900000000000451002 +3481187029 20090131 0 900000000000207008 309482007 413675001 1 370133003 900000000000011006 900000000000451002 +3481188023 20080731 1 900000000000207008 309483002 48477009 1 118169006 900000000000011006 900000000000451002 +3481188023 20090131 0 900000000000207008 309483002 48477009 1 118169006 900000000000011006 900000000000451002 +3481189026 20080731 1 900000000000207008 309484008 385294005 2 118169006 900000000000011006 900000000000451002 +3481189026 20090131 0 900000000000207008 309484008 385294005 2 118169006 900000000000011006 900000000000451002 +3481190024 20080731 1 900000000000207008 309484008 71735005 2 118171006 900000000000011006 900000000000451002 +3481190024 20090131 0 900000000000207008 309484008 71735005 2 118171006 900000000000011006 900000000000451002 +3481191023 20080731 1 900000000000207008 309484008 413675001 2 370133003 900000000000011006 900000000000451002 +3481191023 20090131 0 900000000000207008 309484008 413675001 2 370133003 900000000000011006 900000000000451002 +3481192027 20080731 1 900000000000207008 309485009 385294005 2 118169006 900000000000011006 900000000000451002 +3481192027 20090131 0 900000000000207008 309485009 385294005 2 118169006 900000000000011006 900000000000451002 +3481193021 20080731 1 900000000000207008 309485009 71735005 2 118171006 900000000000011006 900000000000451002 +3481193021 20090131 0 900000000000207008 309485009 71735005 2 118171006 900000000000011006 900000000000451002 +3481194026 20080731 1 900000000000207008 309486005 385296007 1 118169006 900000000000011006 900000000000451002 +3481194026 20090131 0 900000000000207008 309486005 385296007 1 118169006 900000000000011006 900000000000451002 +3481195025 20080731 1 900000000000207008 309486005 71735005 2 118171006 900000000000011006 900000000000451002 +3481195025 20090131 0 900000000000207008 309486005 71735005 2 118171006 900000000000011006 900000000000451002 +3481196029 20080731 1 900000000000207008 309486005 413675001 2 370133003 900000000000011006 900000000000451002 +3481196029 20090131 0 900000000000207008 309486005 413675001 2 370133003 900000000000011006 900000000000451002 +3481197022 20080731 1 900000000000207008 309487001 71854001 1 118169006 900000000000011006 900000000000451002 +3481197022 20090131 0 900000000000207008 309487001 71854001 1 118169006 900000000000011006 900000000000451002 +3481198028 20080731 1 900000000000207008 309487001 26390003 1 118171006 900000000000011006 900000000000451002 +3481198028 20090131 0 900000000000207008 309487001 26390003 1 118171006 900000000000011006 900000000000451002 +3481199020 20080731 1 900000000000207008 309488006 71854001 1 118169006 900000000000011006 900000000000451002 +3481199020 20090131 0 900000000000207008 309488006 71854001 1 118169006 900000000000011006 900000000000451002 +3481200023 20080731 1 900000000000207008 309488006 43075005 1 118171006 900000000000011006 900000000000451002 +3481200023 20090131 0 900000000000207008 309488006 43075005 1 118171006 900000000000011006 900000000000451002 +3481201022 20080731 1 900000000000207008 309489003 34402009 1 118169006 900000000000011006 900000000000451002 +3481201022 20090731 0 900000000000207008 309489003 34402009 1 118169006 900000000000011006 900000000000451002 +3481202026 20080731 1 900000000000207008 309489003 4558008 1 118171006 900000000000011006 900000000000451002 +3481202026 20090731 0 900000000000207008 309489003 4558008 1 118171006 900000000000011006 900000000000451002 +3481203020 20080731 1 900000000000207008 309490007 15776009 1 118169006 900000000000011006 900000000000451002 +3481203020 20090731 0 900000000000207008 309490007 15776009 1 118169006 900000000000011006 900000000000451002 +3481204025 20080731 1 900000000000207008 309490007 33149006 1 118171006 900000000000011006 900000000000451002 +3481204025 20090731 0 900000000000207008 309490007 33149006 1 118171006 900000000000011006 900000000000451002 +3481205029 20080731 1 900000000000207008 309491006 34707002 1 118169006 900000000000011006 900000000000451002 +3481205029 20090131 0 900000000000207008 309491006 34707002 1 118169006 900000000000011006 900000000000451002 +3481205029 20100131 1 900000000000207008 309491006 34707002 1 118169006 900000000000011006 900000000000451002 +3481205029 20100731 0 900000000000207008 309491006 34707002 1 118169006 900000000000011006 900000000000451002 +3481205029 20110731 1 900000000000207008 309491006 34707002 1 118169006 900000000000011006 900000000000451002 +3481206028 20080731 1 900000000000207008 309494003 67109009 1 118169006 900000000000011006 900000000000451002 +3481206028 20090131 0 900000000000207008 309494003 67109009 1 118169006 900000000000011006 900000000000451002 +3481207021 20080731 1 900000000000207008 309495002 27398004 1 118169006 900000000000011006 900000000000451002 +3481207021 20090131 0 900000000000207008 309495002 27398004 1 118169006 900000000000011006 900000000000451002 +3481208027 20080731 1 900000000000207008 309496001 27398004 1 118169006 900000000000011006 900000000000451002 +3481208027 20090731 0 900000000000207008 309496001 27398004 1 118169006 900000000000011006 900000000000451002 +3481209024 20080731 1 900000000000207008 309496001 413675001 1 370133003 900000000000011006 900000000000451002 +3481209024 20090731 0 900000000000207008 309496001 413675001 1 370133003 900000000000011006 900000000000451002 +3481210025 20080731 1 900000000000207008 309497005 64033007 1 118169006 900000000000011006 900000000000451002 +3481210025 20090131 0 900000000000207008 309497005 64033007 1 118169006 900000000000011006 900000000000451002 +3481211026 20080731 1 900000000000207008 309497005 175905003 1 118171006 900000000000011006 900000000000451002 +3481211026 20090131 0 900000000000207008 309497005 175905003 1 118171006 900000000000011006 900000000000451002 +3481212022 20080731 1 900000000000207008 309497005 413675001 1 370133003 900000000000011006 900000000000451002 +3481212022 20090131 0 900000000000207008 309497005 413675001 1 370133003 900000000000011006 900000000000451002 +3481213028 20080731 1 900000000000207008 309498000 64033007 1 118169006 900000000000011006 900000000000451002 +3481213028 20090131 0 900000000000207008 309498000 64033007 1 118169006 900000000000011006 900000000000451002 +3481220024 20080731 1 900000000000207008 309501000 35039007 1 118169006 900000000000011006 900000000000451002 +3481220024 20090731 0 900000000000207008 309501000 35039007 1 118169006 900000000000011006 900000000000451002 +3481221023 20080731 1 900000000000207008 309501000 236886002 1 118171006 900000000000011006 900000000000451002 +3481221023 20090731 0 900000000000207008 309501000 236886002 1 118171006 900000000000011006 900000000000451002 +3481222027 20080731 1 900000000000207008 309504008 87697008 1 118171006 900000000000011006 900000000000451002 +3481222027 20090731 0 900000000000207008 309504008 87697008 1 118171006 900000000000011006 900000000000451002 +3481222027 20100731 1 900000000000207008 309504008 87697008 1 118171006 900000000000011006 900000000000451002 +3481222027 20110131 0 900000000000207008 309504008 87697008 1 118171006 900000000000011006 900000000000451002 +3481223021 20080731 1 900000000000207008 309504008 413675001 1 370133003 900000000000011006 900000000000451002 +3481223021 20090731 0 900000000000207008 309504008 413675001 1 370133003 900000000000011006 900000000000451002 +3481223021 20100731 1 900000000000207008 309504008 413675001 1 370133003 900000000000011006 900000000000451002 +3481223021 20110131 0 900000000000207008 309504008 413675001 1 370133003 900000000000011006 900000000000451002 +3481224026 20080731 1 900000000000207008 309505009 39937001 1 118169006 900000000000011006 900000000000451002 +3481224026 20090131 0 900000000000207008 309505009 39937001 1 118169006 900000000000011006 900000000000451002 +3481225025 20080731 1 900000000000207008 309505009 282014007 1 118171006 900000000000011006 900000000000451002 +3481225025 20090131 0 900000000000207008 309505009 282014007 1 118171006 900000000000011006 900000000000451002 +3481226029 20080731 1 900000000000207008 309506005 39937001 1 118169006 900000000000011006 900000000000451002 +3481226029 20090131 0 900000000000207008 309506005 39937001 1 118169006 900000000000011006 900000000000451002 +3481227022 20080731 1 900000000000207008 309506005 413675001 1 370133003 900000000000011006 900000000000451002 +3481227022 20090131 0 900000000000207008 309506005 413675001 1 370133003 900000000000011006 900000000000451002 +3481228028 20080731 1 900000000000207008 309508006 87784001 1 118169006 900000000000011006 900000000000451002 +3481228028 20090131 0 900000000000207008 309508006 87784001 1 118169006 900000000000011006 900000000000451002 +3481229020 20080731 1 900000000000207008 309508006 48635004 1 118171006 900000000000011006 900000000000451002 +3481229020 20090131 0 900000000000207008 309508006 48635004 1 118171006 900000000000011006 900000000000451002 +3481290029 20080731 1 900000000000207008 309546004 76752008 1 118169006 900000000000011006 900000000000451002 +3481290029 20090131 0 900000000000207008 309546004 76752008 1 118169006 900000000000011006 900000000000451002 +3481291025 20080731 1 900000000000207008 309546004 392021009 1 118171006 900000000000011006 900000000000451002 +3481291025 20090131 0 900000000000207008 309546004 392021009 1 118171006 900000000000011006 900000000000451002 +3481292021 20080731 1 900000000000207008 309547008 76752008 1 118169006 900000000000011006 900000000000451002 +3481292021 20090131 0 900000000000207008 309547008 76752008 1 118169006 900000000000011006 900000000000451002 +3481293027 20080731 1 900000000000207008 309547008 237370008 1 118171006 900000000000011006 900000000000451002 +3481293027 20090131 0 900000000000207008 309547008 237370008 1 118171006 900000000000011006 900000000000451002 +3481429023 20080731 1 900000000000207008 303247002 413675001 1 370133003 900000000000011006 900000000000451002 +3481429023 20090731 0 900000000000207008 303247002 413675001 1 370133003 900000000000011006 900000000000451002 +3481430029 20080731 1 900000000000207008 303248007 386147002 1 118171006 900000000000011006 900000000000451002 +3481430029 20090131 0 900000000000207008 303248007 386147002 1 118171006 900000000000011006 900000000000451002 +3481430029 20090731 1 900000000000207008 303248007 386147002 1 118171006 900000000000011006 900000000000451002 +3481430029 20100131 0 900000000000207008 303248007 386147002 1 118171006 900000000000011006 900000000000451002 +3481714022 20080731 1 900000000000207008 421615004 413675001 1 370133003 900000000000011006 900000000000451002 +3481714022 20090731 0 900000000000207008 421615004 413675001 1 370133003 900000000000011006 900000000000451002 +3482443026 20080731 1 900000000000207008 433854001 64739004 1 118169006 900000000000011006 900000000000451002 +3482443026 20090131 0 900000000000207008 433854001 64739004 1 118169006 900000000000011006 900000000000451002 +3482454020 20080731 1 900000000000207008 433859006 431047004 1 118171006 900000000000011006 900000000000451002 +3482454020 20090131 0 900000000000207008 433859006 431047004 1 118171006 900000000000011006 900000000000451002 +3482455021 20080731 1 900000000000207008 433860001 86823009 1 118171006 900000000000011006 900000000000451002 +3482455021 20090131 0 900000000000207008 433860001 86823009 1 118171006 900000000000011006 900000000000451002 +3482486026 20080731 1 900000000000207008 434140003 89679009 1 118169006 900000000000011006 900000000000451002 +3482486026 20090131 0 900000000000207008 434140003 89679009 1 118169006 900000000000011006 900000000000451002 +3482522025 20080731 1 900000000000207008 434244002 430212007 1 118171006 900000000000011006 900000000000451002 +3482522025 20090131 0 900000000000207008 434244002 430212007 1 118171006 900000000000011006 900000000000451002 +3482533027 20080731 1 900000000000207008 434250007 76848001 1 118169006 900000000000011006 900000000000451002 +3482533027 20090131 0 900000000000207008 434250007 76848001 1 118169006 900000000000011006 900000000000451002 +3482661027 20080731 1 900000000000207008 433760005 32534001 1 118171006 900000000000011006 900000000000451002 +3482661027 20090131 0 900000000000207008 433760005 32534001 1 118171006 900000000000011006 900000000000451002 +3482781021 20080731 1 900000000000207008 433873002 49957000 1 118169006 900000000000011006 900000000000451002 +3482781021 20090131 0 900000000000207008 433873002 49957000 1 118169006 900000000000011006 900000000000451002 +3482810023 20080731 1 900000000000207008 434014007 72410000 1 118169006 900000000000011006 900000000000451002 +3482810023 20090131 0 900000000000207008 434014007 72410000 1 118169006 900000000000011006 900000000000451002 +3482828020 20080731 1 900000000000207008 415563002 15776009 1 118169006 900000000000011006 900000000000451002 +3482828020 20090131 0 900000000000207008 415563002 15776009 1 118169006 900000000000011006 900000000000451002 +3482844027 20080731 1 900000000000207008 422991009 51342009 2 118169006 900000000000011006 900000000000451002 +3482844027 20170731 0 900000000000207008 422991009 51342009 2 118169006 900000000000011006 900000000000451002 +3482845026 20080731 1 900000000000207008 422991009 66754008 3 118169006 900000000000011006 900000000000451002 +3482846025 20080731 1 900000000000207008 422991009 80146002 3 118171006 900000000000011006 900000000000451002 +3482847023 20080731 1 900000000000207008 422991009 413675001 3 370133003 900000000000011006 900000000000451002 +3483073023 20080731 1 900000000000207008 432657002 71307009 1 118168003 900000000000011006 900000000000451002 +3483073023 20090131 0 900000000000207008 432657002 71307009 1 118168003 900000000000011006 900000000000451002 +3483139026 20080731 1 900000000000207008 423671006 14799000 1 118168003 900000000000011006 900000000000451002 +3483139026 20090131 0 900000000000207008 423671006 14799000 1 118168003 900000000000011006 900000000000451002 +3483139026 20100131 1 900000000000207008 423671006 14799000 1 118168003 900000000000011006 900000000000451002 +3483139026 20100731 0 900000000000207008 423671006 14799000 1 118168003 900000000000011006 900000000000451002 +3483140029 20080731 1 900000000000207008 423696009 71854001 2 118169006 900000000000011006 900000000000451002 +3483141025 20080731 1 900000000000207008 423696009 359571009 2 118171006 900000000000011006 900000000000451002 +3483142021 20080731 1 900000000000207008 423696009 413675001 1 370133003 900000000000011006 900000000000451002 +3483143027 20080731 1 900000000000207008 423696009 413675001 2 370133003 900000000000011006 900000000000451002 +3483171022 20080731 1 900000000000207008 430309006 64778000 1 370133003 900000000000011006 900000000000451002 +3483171022 20090131 0 900000000000207008 430309006 64778000 1 370133003 900000000000011006 900000000000451002 +3483172026 20080731 1 900000000000207008 430310001 45710003 1 370133003 900000000000011006 900000000000451002 +3483172026 20090131 0 900000000000207008 430310001 45710003 1 370133003 900000000000011006 900000000000451002 +3483288024 20080731 1 900000000000207008 431697001 302332004 1 118171006 900000000000011006 900000000000451002 +3483288024 20090131 0 900000000000207008 431697001 302332004 1 118171006 900000000000011006 900000000000451002 +3483331020 20080731 1 900000000000207008 432057001 63293007 1 118171006 900000000000011006 900000000000451002 +3483331020 20090131 0 900000000000207008 432057001 63293007 1 118171006 900000000000011006 900000000000451002 +3483331020 20090731 1 900000000000207008 432057001 63293007 1 118171006 900000000000011006 900000000000451002 +3483331020 20100131 0 900000000000207008 432057001 63293007 1 118171006 900000000000011006 900000000000451002 +3483332029 20080731 1 900000000000207008 432058006 127954009 1 118169006 900000000000011006 900000000000451002 +3483332029 20090131 0 900000000000207008 432058006 127954009 1 118169006 900000000000011006 900000000000451002 +3483333023 20080731 1 900000000000207008 432058006 430213002 1 118171006 900000000000011006 900000000000451002 +3483333023 20090131 0 900000000000207008 432058006 430213002 1 118171006 900000000000011006 900000000000451002 +3483334028 20080731 1 900000000000207008 432059003 35039007 1 118169006 900000000000011006 900000000000451002 +3483334028 20090131 0 900000000000207008 432059003 35039007 1 118169006 900000000000011006 900000000000451002 +3483335027 20080731 1 900000000000207008 432060008 65343009 1 118171006 900000000000011006 900000000000451002 +3483335027 20090131 0 900000000000207008 432060008 65343009 1 118171006 900000000000011006 900000000000451002 +3483335027 20090731 1 900000000000207008 432060008 65343009 1 118171006 900000000000011006 900000000000451002 +3483335027 20100131 0 900000000000207008 432060008 65343009 1 118171006 900000000000011006 900000000000451002 +3483336026 20080731 1 900000000000207008 432061007 233463008 1 118171006 900000000000011006 900000000000451002 +3483336026 20090131 0 900000000000207008 432061007 233463008 1 118171006 900000000000011006 900000000000451002 +3483540020 20080731 1 900000000000207008 431404007 431053004 1 118171006 900000000000011006 900000000000451002 +3483540020 20090131 0 900000000000207008 431404007 431053004 1 118171006 900000000000011006 900000000000451002 +3483541024 20080731 1 900000000000207008 431405008 67497009 1 118171006 900000000000011006 900000000000451002 +3483541024 20090131 0 900000000000207008 431405008 67497009 1 118171006 900000000000011006 900000000000451002 +3483541024 20090731 1 900000000000207008 431405008 67497009 1 118171006 900000000000011006 900000000000451002 +3483541024 20100131 0 900000000000207008 431405008 67497009 1 118171006 900000000000011006 900000000000451002 +3483548029 20080731 1 900000000000207008 431412004 430230000 1 118171006 900000000000011006 900000000000451002 +3483548029 20090131 0 900000000000207008 431412004 430230000 1 118171006 900000000000011006 900000000000451002 +3483549021 20080731 1 900000000000207008 431413009 279603000 1 118169006 900000000000011006 900000000000451002 +3483549021 20090131 0 900000000000207008 431413009 279603000 1 118169006 900000000000011006 900000000000451002 +3483550021 20080731 1 900000000000207008 431413009 52732006 1 118171006 900000000000011006 900000000000451002 +3483550021 20090131 0 900000000000207008 431413009 52732006 1 118171006 900000000000011006 900000000000451002 +3483658023 20080731 1 900000000000207008 432097003 51114001 1 118169006 900000000000011006 900000000000451002 +3483658023 20090131 0 900000000000207008 432097003 51114001 1 118169006 900000000000011006 900000000000451002 +3483659026 20080731 1 900000000000207008 432097003 274373006 1 118171006 900000000000011006 900000000000451002 +3483659026 20090131 0 900000000000207008 432097003 274373006 1 118171006 900000000000011006 900000000000451002 +3483660020 20080731 1 900000000000207008 432098008 28273000 1 118169006 900000000000011006 900000000000451002 +3483660020 20090131 0 900000000000207008 432098008 28273000 1 118169006 900000000000011006 900000000000451002 +3483660020 20090731 1 900000000000207008 432098008 28273000 1 118169006 900000000000011006 900000000000451002 +3483660020 20100131 0 900000000000207008 432098008 28273000 1 118169006 900000000000011006 900000000000451002 +3483661024 20080731 1 900000000000207008 432098008 235542006 1 118171006 900000000000011006 900000000000451002 +3483661024 20090131 0 900000000000207008 432098008 235542006 1 118171006 900000000000011006 900000000000451002 +3483661024 20090731 1 900000000000207008 432098008 235542006 1 118171006 900000000000011006 900000000000451002 +3483661024 20100131 0 900000000000207008 432098008 235542006 1 118171006 900000000000011006 900000000000451002 +3483662028 20080731 1 900000000000207008 432099000 50980006 1 118171006 900000000000011006 900000000000451002 +3483662028 20090131 0 900000000000207008 432099000 50980006 1 118171006 900000000000011006 900000000000451002 +3483662028 20090731 1 900000000000207008 432099000 50980006 1 118171006 900000000000011006 900000000000451002 +3483662028 20100131 0 900000000000207008 432099000 50980006 1 118171006 900000000000011006 900000000000451002 +3484194027 20080731 1 900000000000207008 432134009 430107001 1 118171006 900000000000011006 900000000000451002 +3484194027 20090131 0 900000000000207008 432134009 430107001 1 118171006 900000000000011006 900000000000451002 +3484195026 20080731 1 900000000000207008 432135005 359539002 1 118171006 900000000000011006 900000000000451002 +3484195026 20090131 0 900000000000207008 432135005 359539002 1 118171006 900000000000011006 900000000000451002 +3484195026 20090731 1 900000000000207008 432135005 359539002 1 118171006 900000000000011006 900000000000451002 +3484195026 20100131 0 900000000000207008 432135005 359539002 1 118171006 900000000000011006 900000000000451002 +3484196025 20080731 1 900000000000207008 432136006 430106005 1 118171006 900000000000011006 900000000000451002 +3484196025 20090131 0 900000000000207008 432136006 430106005 1 118171006 900000000000011006 900000000000451002 +3484196025 20090731 1 900000000000207008 432136006 430106005 1 118171006 900000000000011006 900000000000451002 +3484196025 20100131 0 900000000000207008 432136006 430106005 1 118171006 900000000000011006 900000000000451002 +3484197023 20080731 1 900000000000207008 432139004 230842002 1 118171006 900000000000011006 900000000000451002 +3484197023 20090131 0 900000000000207008 432139004 230842002 1 118171006 900000000000011006 900000000000451002 +3484198029 20080731 1 900000000000207008 432140002 59325001 1 118171006 900000000000011006 900000000000451002 +3484198029 20090131 0 900000000000207008 432140002 59325001 1 118171006 900000000000011006 900000000000451002 +3484199021 20080731 1 900000000000207008 432141003 111002 1 118169006 900000000000011006 900000000000451002 +3484199021 20090131 0 900000000000207008 432141003 111002 1 118169006 900000000000011006 900000000000451002 +3484200024 20080731 1 900000000000207008 432142005 18911002 1 118169006 900000000000011006 900000000000451002 +3484200024 20090131 0 900000000000207008 432142005 18911002 1 118169006 900000000000011006 900000000000451002 +3484201023 20080731 1 900000000000207008 432143000 72731003 1 118171006 900000000000011006 900000000000451002 +3484201023 20090131 0 900000000000207008 432143000 72731003 1 118171006 900000000000011006 900000000000451002 +3484201023 20090731 1 900000000000207008 432143000 72731003 1 118171006 900000000000011006 900000000000451002 +3484201023 20100131 0 900000000000207008 432143000 72731003 1 118171006 900000000000011006 900000000000451002 +3484202027 20080731 1 900000000000207008 432144006 47499004 1 118171006 900000000000011006 900000000000451002 +3484202027 20090131 0 900000000000207008 432144006 47499004 1 118171006 900000000000011006 900000000000451002 +3484203021 20080731 1 900000000000207008 432145007 430112000 1 118171006 900000000000011006 900000000000451002 +3484203021 20090131 0 900000000000207008 432145007 430112000 1 118171006 900000000000011006 900000000000451002 +3484204026 20080731 1 900000000000207008 432146008 89679009 1 118169006 900000000000011006 900000000000451002 +3484204026 20090131 0 900000000000207008 432146008 89679009 1 118169006 900000000000011006 900000000000451002 +3484544023 20080731 1 900000000000207008 432864003 14742008 1 118169006 900000000000011006 900000000000451002 +3484544023 20090131 0 900000000000207008 432864003 14742008 1 118169006 900000000000011006 900000000000451002 +3484544023 20090731 1 900000000000207008 432864003 14742008 1 118169006 900000000000011006 900000000000451002 +3484544023 20100131 0 900000000000207008 432864003 14742008 1 118169006 900000000000011006 900000000000451002 +3484545024 20080731 1 900000000000207008 432864003 18329001 1 118171006 900000000000011006 900000000000451002 +3484545024 20090131 0 900000000000207008 432864003 18329001 1 118171006 900000000000011006 900000000000451002 +3484545024 20090731 1 900000000000207008 432864003 18329001 1 118171006 900000000000011006 900000000000451002 +3484545024 20100131 0 900000000000207008 432864003 18329001 1 118171006 900000000000011006 900000000000451002 +3484871026 20080731 1 900000000000207008 432910000 117590005 1 118169006 900000000000011006 900000000000451002 +3484871026 20090131 0 900000000000207008 432910000 117590005 1 118169006 900000000000011006 900000000000451002 +3485215028 20080731 1 900000000000207008 429832000 34707002 1 118169006 900000000000011006 900000000000451002 +3485215028 20090131 0 900000000000207008 429832000 34707002 1 118169006 900000000000011006 900000000000451002 +3485215028 20100131 1 900000000000207008 429832000 34707002 1 118169006 900000000000011006 900000000000451002 +3485215028 20100731 0 900000000000207008 429832000 34707002 1 118169006 900000000000011006 900000000000451002 +3485215028 20110731 1 900000000000207008 429832000 34707002 1 118169006 900000000000011006 900000000000451002 +3485216027 20080731 1 900000000000207008 429832000 33463005 1 370133003 900000000000011006 900000000000451002 +3485216027 20090131 0 900000000000207008 429832000 33463005 1 370133003 900000000000011006 900000000000451002 +3485216027 20100131 1 900000000000207008 429832000 33463005 1 370133003 900000000000011006 900000000000451002 +3485216027 20100731 0 900000000000207008 429832000 33463005 1 370133003 900000000000011006 900000000000451002 +3485216027 20110731 1 900000000000207008 429832000 33463005 1 370133003 900000000000011006 900000000000451002 +3485217020 20080731 1 900000000000207008 429836002 303633008 1 118171006 900000000000011006 900000000000451002 +3485217020 20090131 0 900000000000207008 429836002 303633008 1 118171006 900000000000011006 900000000000451002 +3485217020 20100731 1 900000000000207008 429836002 303633008 1 118171006 900000000000011006 900000000000451002 +3485217020 20110131 0 900000000000207008 429836002 303633008 1 118171006 900000000000011006 900000000000451002 +3485218026 20080731 1 900000000000207008 429836002 410583004 1 370133003 900000000000011006 900000000000451002 +3485218026 20090131 0 900000000000207008 429836002 410583004 1 370133003 900000000000011006 900000000000451002 +3485218026 20100731 1 900000000000207008 429836002 410583004 1 370133003 900000000000011006 900000000000451002 +3485218026 20110131 0 900000000000207008 429836002 410583004 1 370133003 900000000000011006 900000000000451002 +3485389028 20080731 1 900000000000207008 432383002 42361003 1 118171006 900000000000011006 900000000000451002 +3485389028 20090131 0 900000000000207008 432383002 42361003 1 118171006 900000000000011006 900000000000451002 +3485389028 20090731 1 900000000000207008 432383002 42361003 1 118171006 900000000000011006 900000000000451002 +3485389028 20100131 0 900000000000207008 432383002 42361003 1 118171006 900000000000011006 900000000000451002 +3485390021 20080731 1 900000000000207008 432384008 89163009 1 118171006 900000000000011006 900000000000451002 +3485390021 20090131 0 900000000000207008 432384008 89163009 1 118171006 900000000000011006 900000000000451002 +3485390021 20090731 1 900000000000207008 432384008 89163009 1 118171006 900000000000011006 900000000000451002 +3485390021 20100131 0 900000000000207008 432384008 89163009 1 118171006 900000000000011006 900000000000451002 +3485391020 20080731 1 900000000000207008 432385009 55139000 1 118169006 900000000000011006 900000000000451002 +3485391020 20090131 0 900000000000207008 432385009 55139000 1 118169006 900000000000011006 900000000000451002 +3485437021 20080731 1 900000000000207008 432419006 430108006 1 118171006 900000000000011006 900000000000451002 +3485437021 20090131 0 900000000000207008 432419006 430108006 1 118171006 900000000000011006 900000000000451002 +3485437021 20110731 1 900000000000207008 432419006 430108006 1 118171006 900000000000011006 900000000000451002 +3485438027 20080731 1 900000000000207008 432420000 87953007 1 118169006 900000000000011006 900000000000451002 +3485438027 20090131 0 900000000000207008 432420000 87953007 1 118169006 900000000000011006 900000000000451002 +3485438027 20090731 1 900000000000207008 432420000 87953007 1 118169006 900000000000011006 900000000000451002 +3485438027 20100131 0 900000000000207008 432420000 87953007 1 118169006 900000000000011006 900000000000451002 +3485439024 20080731 1 900000000000207008 432420000 21550001 1 118171006 900000000000011006 900000000000451002 +3485439024 20090131 0 900000000000207008 432420000 21550001 1 118171006 900000000000011006 900000000000451002 +3485439024 20090731 1 900000000000207008 432420000 21550001 1 118171006 900000000000011006 900000000000451002 +3485439024 20100131 0 900000000000207008 432420000 21550001 1 118171006 900000000000011006 900000000000451002 +3485480028 20080731 1 900000000000207008 432980007 76148003 1 118171006 900000000000011006 900000000000451002 +3485480028 20090131 0 900000000000207008 432980007 76148003 1 118171006 900000000000011006 900000000000451002 +3485480028 20090731 1 900000000000207008 432980007 76148003 1 118171006 900000000000011006 900000000000451002 +3485480028 20100131 0 900000000000207008 432980007 76148003 1 118171006 900000000000011006 900000000000451002 +3485481029 20080731 1 900000000000207008 432981006 81745001 1 118169006 900000000000011006 900000000000451002 +3485481029 20090131 0 900000000000207008 432981006 81745001 1 118169006 900000000000011006 900000000000451002 +3485482020 20080731 1 900000000000207008 432982004 15425007 1 118169006 900000000000011006 900000000000451002 +3485482020 20090131 0 900000000000207008 432982004 15425007 1 118169006 900000000000011006 900000000000451002 +3485482020 20090731 1 900000000000207008 432982004 15425007 1 118169006 900000000000011006 900000000000451002 +3485482020 20100131 0 900000000000207008 432982004 15425007 1 118169006 900000000000011006 900000000000451002 +3485483026 20080731 1 900000000000207008 432982004 430104008 1 118171006 900000000000011006 900000000000451002 +3485483026 20090131 0 900000000000207008 432982004 430104008 1 118171006 900000000000011006 900000000000451002 +3485483026 20090731 1 900000000000207008 432982004 430104008 1 118171006 900000000000011006 900000000000451002 +3485483026 20100131 0 900000000000207008 432982004 430104008 1 118171006 900000000000011006 900000000000451002 +3485484021 20080731 1 900000000000207008 432983009 56329008 1 118169006 900000000000011006 900000000000451002 +3485484021 20090131 0 900000000000207008 432983009 56329008 1 118169006 900000000000011006 900000000000451002 +3485485022 20080731 1 900000000000207008 432983009 20094006 1 118171006 900000000000011006 900000000000451002 +3485485022 20090131 0 900000000000207008 432983009 20094006 1 118171006 900000000000011006 900000000000451002 +3485486023 20080731 1 900000000000207008 432985002 79755009 1 118171006 900000000000011006 900000000000451002 +3485486023 20090131 0 900000000000207008 432985002 79755009 1 118171006 900000000000011006 900000000000451002 +3485486023 20090731 1 900000000000207008 432985002 79755009 1 118171006 900000000000011006 900000000000451002 +3485486023 20100131 0 900000000000207008 432985002 79755009 1 118171006 900000000000011006 900000000000451002 +3485487025 20080731 1 900000000000207008 432986001 38199008 1 118169006 900000000000011006 900000000000451002 +3485487025 20090131 0 900000000000207008 432986001 38199008 1 118169006 900000000000011006 900000000000451002 +3485691028 20080731 1 900000000000207008 431884001 28231008 1 118169006 900000000000011006 900000000000451002 +3485691028 20090131 0 900000000000207008 431884001 28231008 1 118169006 900000000000011006 900000000000451002 +3485691028 20090731 1 900000000000207008 431884001 28231008 1 118169006 900000000000011006 900000000000451002 +3485691028 20100131 0 900000000000207008 431884001 28231008 1 118169006 900000000000011006 900000000000451002 +3485691028 20110731 1 900000000000207008 431884001 28231008 1 118169006 900000000000011006 900000000000451002 +3485692024 20080731 1 900000000000207008 431884001 235523007 1 118171006 900000000000011006 900000000000451002 +3485692024 20090131 0 900000000000207008 431884001 235523007 1 118171006 900000000000011006 900000000000451002 +3485692024 20090731 1 900000000000207008 431884001 235523007 1 118171006 900000000000011006 900000000000451002 +3485692024 20100131 0 900000000000207008 431884001 235523007 1 118171006 900000000000011006 900000000000451002 +3485692024 20110731 1 900000000000207008 431884001 235523007 1 118171006 900000000000011006 900000000000451002 +3485697029 20080731 1 900000000000207008 431889006 53120007 1 118169006 900000000000011006 900000000000451002 +3485697029 20090131 0 900000000000207008 431889006 53120007 1 118169006 900000000000011006 900000000000451002 +3485780027 20080731 1 900000000000207008 432436003 386152007 1 118168003 900000000000011006 900000000000451002 +3485780027 20090131 0 900000000000207008 432436003 386152007 1 118168003 900000000000011006 900000000000451002 +3485781028 20080731 1 900000000000207008 432436003 49957000 1 118169006 900000000000011006 900000000000451002 +3485781028 20090131 0 900000000000207008 432436003 49957000 1 118169006 900000000000011006 900000000000451002 +3485842021 20080731 1 900000000000207008 419695002 276339004 1 118170007 900000000000011006 900000000000451002 +3485842021 20090731 0 900000000000207008 419695002 276339004 1 118170007 900000000000011006 900000000000451002 +3485843027 20080731 1 900000000000207008 419695002 285570007 1 118171006 900000000000011006 900000000000451002 +3485843027 20090731 0 900000000000207008 419695002 285570007 1 118171006 900000000000011006 900000000000451002 +3485964027 20080731 1 900000000000207008 431205006 265607007 1 118171006 900000000000011006 900000000000451002 +3485964027 20090131 0 900000000000207008 431205006 265607007 1 118171006 900000000000011006 900000000000451002 +3486070027 20080731 1 900000000000207008 432441006 12817009 1 118169006 900000000000011006 900000000000451002 +3486070027 20090131 0 900000000000207008 432441006 12817009 1 118169006 900000000000011006 900000000000451002 +3486513028 20080731 1 900000000000207008 427558003 9911007 1 118171006 900000000000011006 900000000000451002 +3486513028 20090131 0 900000000000207008 427558003 9911007 1 118171006 900000000000011006 900000000000451002 +3486601026 20080731 1 900000000000207008 431232001 371398005 1 118169006 900000000000011006 900000000000451002 +3486601026 20090131 0 900000000000207008 431232001 371398005 1 118169006 900000000000011006 900000000000451002 +3486602022 20080731 1 900000000000207008 431233006 31435000 1 118169006 900000000000011006 900000000000451002 +3486602022 20090131 0 900000000000207008 431233006 31435000 1 118169006 900000000000011006 900000000000451002 +3486602022 20090731 1 900000000000207008 431233006 31435000 1 118169006 900000000000011006 900000000000451002 +3486602022 20100131 0 900000000000207008 431233006 31435000 1 118169006 900000000000011006 900000000000451002 +3486603028 20080731 1 900000000000207008 431233006 431046008 1 118171006 900000000000011006 900000000000451002 +3486603028 20090131 0 900000000000207008 431233006 431046008 1 118171006 900000000000011006 900000000000451002 +3486603028 20090731 1 900000000000207008 431233006 431046008 1 118171006 900000000000011006 900000000000451002 +3486603028 20100131 0 900000000000207008 431233006 431046008 1 118171006 900000000000011006 900000000000451002 +3486604023 20080731 1 900000000000207008 431234000 430123001 1 118171006 900000000000011006 900000000000451002 +3486604023 20090131 0 900000000000207008 431234000 430123001 1 118171006 900000000000011006 900000000000451002 +3486605024 20080731 1 900000000000207008 431235004 87910007 1 118171006 900000000000011006 900000000000451002 +3486605024 20090131 0 900000000000207008 431235004 87910007 1 118171006 900000000000011006 900000000000451002 +3486770020 20080731 1 900000000000207008 432607005 123851003 1 118169006 900000000000011006 900000000000451002 +3486770020 20090131 0 900000000000207008 432607005 123851003 1 118169006 900000000000011006 900000000000451002 +3486771024 20080731 1 900000000000207008 432608000 430251002 1 118171006 900000000000011006 900000000000451002 +3486771024 20090131 0 900000000000207008 432608000 430251002 1 118171006 900000000000011006 900000000000451002 +3486803025 20080731 1 900000000000207008 433115004 431052009 1 118171006 900000000000011006 900000000000451002 +3486803025 20090131 0 900000000000207008 433115004 431052009 1 118171006 900000000000011006 900000000000451002 +3486803025 20090731 1 900000000000207008 433115004 431052009 1 118171006 900000000000011006 900000000000451002 +3486803025 20100131 0 900000000000207008 433115004 431052009 1 118171006 900000000000011006 900000000000451002 +3486804020 20080731 1 900000000000207008 433116003 430239004 1 118171006 900000000000011006 900000000000451002 +3486804020 20090131 0 900000000000207008 433116003 430239004 1 118171006 900000000000011006 900000000000451002 +3486804020 20090731 1 900000000000207008 433116003 430239004 1 118171006 900000000000011006 900000000000451002 +3486804020 20100131 0 900000000000207008 433116003 430239004 1 118171006 900000000000011006 900000000000451002 +3486805021 20080731 1 900000000000207008 433117007 430233003 1 118171006 900000000000011006 900000000000451002 +3486805021 20090131 0 900000000000207008 433117007 430233003 1 118171006 900000000000011006 900000000000451002 +3486806022 20080731 1 900000000000207008 433118002 431051002 1 118171006 900000000000011006 900000000000451002 +3486806022 20090131 0 900000000000207008 433118002 431051002 1 118171006 900000000000011006 900000000000451002 +3486807029 20080731 1 900000000000207008 433119005 31343006 1 118171006 900000000000011006 900000000000451002 +3486807029 20090131 0 900000000000207008 433119005 31343006 1 118171006 900000000000011006 900000000000451002 +3486808023 20080731 1 900000000000207008 433120004 13648007 1 118169006 900000000000011006 900000000000451002 +3486808023 20100131 0 900000000000207008 433120004 13648007 1 118169006 900000000000011006 900000000000451002 +3487036024 20080731 1 900000000000207008 434406008 323083008 1 118171006 900000000000011006 900000000000451002 +3487036024 20090131 0 900000000000207008 434406008 323083008 1 118171006 900000000000011006 900000000000451002 +3490964027 20090131 1 900000000000207008 122652004 439479000 0 116680003 900000000000011006 900000000000451002 +3491517025 20090131 1 900000000000207008 397462000 439479000 0 116680003 900000000000011006 900000000000451002 +3491675023 20090131 1 900000000000207008 399532000 438803004 0 116680003 900000000000011006 900000000000451002 +3491675023 20140131 0 900000000000207008 399532000 438803004 0 116680003 900000000000011006 900000000000451002 +3492177027 20090131 1 900000000000207008 309138008 439479000 0 116680003 900000000000011006 900000000000451002 +3492755024 20090131 1 900000000000207008 439628000 127454002 0 116680003 900000000000011006 900000000000451002 +3492755024 20130131 0 900000000000207008 439628000 127454002 0 116680003 900000000000011006 900000000000451002 +3492797029 20090131 1 900000000000207008 399614009 439479000 0 116680003 900000000000011006 900000000000451002 +3492815026 20090131 1 900000000000207008 309127008 439479000 0 116680003 900000000000011006 900000000000451002 +3493199026 20090131 1 900000000000207008 399407000 439479000 0 116680003 900000000000011006 900000000000451002 +3493808027 20090131 1 900000000000207008 440493002 119299002 0 116680003 900000000000011006 900000000000451002 +3493871021 20090131 1 900000000000207008 122630008 439479000 0 116680003 900000000000011006 900000000000451002 +3494062020 20090131 1 900000000000207008 438660002 127454002 0 116680003 900000000000011006 900000000000451002 +3494062020 20210131 0 900000000000207008 438660002 127454002 0 116680003 900000000000011006 900000000000451002 +3494165020 20090131 1 900000000000207008 438336007 122643008 0 116680003 900000000000011006 900000000000451002 +3494165020 20220630 0 900000000000207008 438336007 122643008 0 116680003 900000000000011006 900000000000451002 +3494166021 20090131 1 900000000000207008 438336007 309049000 0 116680003 900000000000011006 900000000000451002 +3494166021 20220630 0 900000000000207008 438336007 309049000 0 116680003 900000000000011006 900000000000451002 +3494167028 20090131 1 900000000000207008 438336007 309072003 0 116680003 900000000000011006 900000000000451002 +3494168022 20090131 1 900000000000207008 438336007 309480004 0 116680003 900000000000011006 900000000000451002 +3494518020 20090131 1 900000000000207008 440468004 127454002 0 116680003 900000000000011006 900000000000451002 +3494518020 20130131 0 900000000000207008 440468004 127454002 0 116680003 900000000000011006 900000000000451002 +3494734021 20090131 1 900000000000207008 122719002 439479000 0 116680003 900000000000011006 900000000000451002 +3495053029 20090131 1 900000000000207008 439479000 119376003 0 116680003 900000000000011006 900000000000451002 +3495054024 20090131 1 900000000000207008 439479000 373826004 0 116680003 900000000000011006 900000000000451002 +3495122028 20090131 1 900000000000207008 122702004 439479000 0 116680003 900000000000011006 900000000000451002 +3495122028 20230901 0 900000000000207008 122702004 439479000 0 116680003 900000000000011006 900000000000451002 +3495193028 20090131 1 900000000000207008 397483006 439479000 0 116680003 900000000000011006 900000000000451002 +3495193028 20211031 0 900000000000207008 397483006 439479000 0 116680003 900000000000011006 900000000000451002 +3495255028 20090131 1 900000000000207008 122720008 439479000 0 116680003 900000000000011006 900000000000451002 +3495277029 20090131 1 900000000000207008 369615004 439479000 0 116680003 900000000000011006 900000000000451002 +3495277029 20211031 0 900000000000207008 369615004 439479000 0 116680003 900000000000011006 900000000000451002 +3495361028 20090131 1 900000000000207008 309153000 439479000 0 116680003 900000000000011006 900000000000451002 +3495837026 20090131 1 900000000000207008 397482001 439479000 0 116680003 900000000000011006 900000000000451002 +3495837026 20211031 0 900000000000207008 397482001 439479000 0 116680003 900000000000011006 900000000000451002 +3496332021 20090131 1 900000000000207008 309496001 440502004 0 116680003 900000000000011006 900000000000451002 +3496491029 20090131 1 900000000000207008 122721007 439479000 0 116680003 900000000000011006 900000000000451002 +3496681025 20090131 1 900000000000207008 258481002 440674008 0 116680003 900000000000011006 900000000000451002 +3496694028 20090131 1 900000000000207008 369617007 439034006 0 116680003 900000000000011006 900000000000451002 +3496694028 20110731 0 900000000000207008 369617007 439034006 0 116680003 900000000000011006 900000000000451002 +3496920029 20090131 1 900000000000207008 309116006 439479000 0 116680003 900000000000011006 900000000000451002 +3497038022 20090131 1 900000000000207008 258475005 440674008 0 116680003 900000000000011006 900000000000451002 +3497190026 20090131 1 900000000000207008 122722000 439479000 0 116680003 900000000000011006 900000000000451002 +3497213022 20090131 1 900000000000207008 309143001 439479000 0 116680003 900000000000011006 900000000000451002 +3497415028 20090131 1 900000000000207008 258649003 119319000 0 116680003 900000000000011006 900000000000451002 +3497890028 20090131 1 900000000000207008 309501000 439479000 0 116680003 900000000000011006 900000000000451002 +3498081023 20090131 1 900000000000207008 438545007 432825001 0 116680003 900000000000011006 900000000000451002 +3498081023 20170731 0 900000000000207008 438545007 432825001 0 116680003 900000000000011006 900000000000451002 +3498082027 20090131 1 900000000000207008 438545007 309140003 0 116680003 900000000000011006 900000000000451002 +3498082027 20170731 0 900000000000207008 438545007 309140003 0 116680003 900000000000011006 900000000000451002 +3498083021 20090131 1 900000000000207008 438545007 258453008 0 116680003 900000000000011006 900000000000451002 +3498540024 20090131 1 900000000000207008 258469001 440674008 0 116680003 900000000000011006 900000000000451002 +3498640027 20090131 1 900000000000207008 438454007 122610009 0 116680003 900000000000011006 900000000000451002 +3498705020 20090131 1 900000000000207008 396476009 439034006 0 116680003 900000000000011006 900000000000451002 +3498705020 20160131 0 900000000000207008 396476009 439034006 0 116680003 900000000000011006 900000000000451002 +3498779026 20090131 1 900000000000207008 309108002 440502004 0 116680003 900000000000011006 900000000000451002 +3498779026 20140131 0 900000000000207008 309108002 440502004 0 116680003 900000000000011006 900000000000451002 +3498779026 20190131 1 900000000000207008 309108002 440502004 0 116680003 900000000000011006 900000000000451002 +3498792028 20090131 1 900000000000207008 309205005 439479000 0 116680003 900000000000011006 900000000000451002 +3498795026 20090131 1 900000000000207008 309490007 439479000 0 116680003 900000000000011006 900000000000451002 +3498805026 20090131 1 900000000000207008 440138003 309050000 0 116680003 900000000000011006 900000000000451002 +3498806025 20090131 1 900000000000207008 440138003 309125000 0 116680003 900000000000011006 900000000000451002 +3498878028 20090131 1 900000000000207008 421615004 439479000 0 116680003 900000000000011006 900000000000451002 +3498938023 20090131 1 900000000000207008 440473005 127454002 0 116680003 900000000000011006 900000000000451002 +3498938023 20130131 0 900000000000207008 440473005 127454002 0 116680003 900000000000011006 900000000000451002 +3498941025 20090131 1 900000000000207008 309489003 439479000 0 116680003 900000000000011006 900000000000451002 +3498941025 20100131 0 900000000000207008 309489003 439479000 0 116680003 900000000000011006 900000000000451002 +3499103028 20090131 1 900000000000207008 399443006 439479000 0 116680003 900000000000011006 900000000000451002 +3499365028 20090131 1 900000000000207008 122642003 439479000 0 116680003 900000000000011006 900000000000451002 +3499469024 20090131 1 900000000000207008 309119004 440502004 0 116680003 900000000000011006 900000000000451002 +3499540029 20090131 1 900000000000207008 309504008 119325001 0 116680003 900000000000011006 900000000000451002 +3499555022 20090131 1 900000000000207008 122631007 438351003 0 116680003 900000000000011006 900000000000451002 +3499590025 20090131 1 900000000000207008 122723005 439479000 0 116680003 900000000000011006 900000000000451002 +3499739029 20090131 1 900000000000207008 438343001 257261003 0 116680003 900000000000011006 900000000000451002 +3499739029 20130131 0 900000000000207008 438343001 257261003 0 116680003 900000000000011006 900000000000451002 +3499740027 20090131 1 900000000000207008 438343001 309068002 0 116680003 900000000000011006 900000000000451002 +3499740027 20130131 0 900000000000207008 438343001 309068002 0 116680003 900000000000011006 900000000000451002 +3499824020 20090131 1 900000000000207008 438661003 309269002 0 116680003 900000000000011006 900000000000451002 +3499891021 20090131 1 900000000000207008 309133004 439479000 0 116680003 900000000000011006 900000000000451002 +3499953022 20090131 1 900000000000207008 396355000 439479000 0 116680003 900000000000011006 900000000000451002 +3499953022 20120131 0 900000000000207008 396355000 439479000 0 116680003 900000000000011006 900000000000451002 +3500187027 20090131 1 900000000000207008 396479002 439034006 0 116680003 900000000000011006 900000000000451002 +3500187027 20160131 0 900000000000207008 396479002 439034006 0 116680003 900000000000011006 900000000000451002 +3500199023 20090131 1 900000000000207008 438351003 127466008 0 116680003 900000000000011006 900000000000451002 +3500200021 20090131 1 900000000000207008 438351003 439479000 0 116680003 900000000000011006 900000000000451002 +3500220022 20090131 1 900000000000207008 122608007 439479000 0 116680003 900000000000011006 900000000000451002 +3500319029 20090131 1 900000000000207008 258467004 440674008 0 116680003 900000000000011006 900000000000451002 +3500435021 20090131 1 900000000000207008 396480004 439034006 0 116680003 900000000000011006 900000000000451002 +3500435021 20160131 0 900000000000207008 396480004 439034006 0 116680003 900000000000011006 900000000000451002 +3500649020 20090131 1 900000000000207008 440472000 309175003 0 116680003 900000000000011006 900000000000451002 +3500738024 20090131 1 900000000000207008 396478005 439034006 0 116680003 900000000000011006 900000000000451002 +3500738024 20160131 0 900000000000207008 396478005 439034006 0 116680003 900000000000011006 900000000000451002 +3500895026 20090131 1 900000000000207008 122677003 438803004 0 116680003 900000000000011006 900000000000451002 +3500895026 20140131 0 900000000000207008 122677003 438803004 0 116680003 900000000000011006 900000000000451002 +3500910020 20090131 1 900000000000207008 122609004 440674008 0 116680003 900000000000011006 900000000000451002 +3500932027 20090131 1 900000000000207008 396356004 439479000 0 116680003 900000000000011006 900000000000451002 +3501052022 20090131 1 900000000000207008 439034006 439479000 0 116680003 900000000000011006 900000000000451002 +3501053028 20090131 1 900000000000207008 439034006 128168004 0 116680003 900000000000011006 900000000000451002 +3501080024 20090131 1 900000000000207008 309112008 440502004 0 116680003 900000000000011006 900000000000451002 +3501084026 20090131 1 900000000000207008 122678008 438803004 0 116680003 900000000000011006 900000000000451002 +3501084026 20140131 0 900000000000207008 122678008 438803004 0 116680003 900000000000011006 900000000000451002 +3501412028 20090131 1 900000000000207008 440502004 439479000 0 116680003 900000000000011006 900000000000451002 +3501413022 20090131 1 900000000000207008 440502004 309072003 0 116680003 900000000000011006 900000000000451002 +3501548028 20090131 1 900000000000207008 438542005 430236006 0 116680003 900000000000011006 900000000000451002 +3501567029 20090131 1 900000000000207008 440136004 430268003 0 116680003 900000000000011006 900000000000451002 +3501568023 20090131 1 900000000000207008 440136004 430220009 0 116680003 900000000000011006 900000000000451002 +3501568023 20240701 0 900000000000207008 440136004 430220009 0 116680003 900000000000011006 900000000000451002 +3501681024 20090131 1 900000000000207008 440674008 123038009 0 116680003 900000000000011006 900000000000451002 +3501681024 20240701 0 900000000000207008 440674008 123038009 0 116680003 900000000000011006 900000000000451002 +3501764022 20090131 1 900000000000207008 384746001 439479000 0 116680003 900000000000011006 900000000000451002 +3501764022 20240901 0 900000000000207008 384746001 439479000 0 116680003 900000000000011006 900000000000451002 +3501801024 20090131 1 900000000000207008 309223002 439479000 0 116680003 900000000000011006 900000000000451002 +3501819026 20090131 1 900000000000207008 309220004 439479000 0 116680003 900000000000011006 900000000000451002 +3501823023 20090131 1 900000000000207008 440469007 119376003 0 116680003 900000000000011006 900000000000451002 +3501907022 20090131 1 900000000000207008 440500007 119297000 0 116680003 900000000000011006 900000000000451002 +3502094023 20090131 1 900000000000207008 440137008 430232008 0 116680003 900000000000011006 900000000000451002 +3502094023 20100131 0 900000000000207008 440137008 430232008 0 116680003 900000000000011006 900000000000451002 +3502095024 20090131 1 900000000000207008 440137008 440674008 0 116680003 900000000000011006 900000000000451002 +3502424022 20090131 1 900000000000207008 122592007 119297000 0 116680003 900000000000011006 900000000000451002 +3502424022 20200131 0 900000000000207008 122592007 119297000 0 116680003 900000000000011006 900000000000451002 +3502497022 20090131 1 900000000000207008 127461003 439479000 0 116680003 900000000000011006 900000000000451002 +3502592029 20090131 1 900000000000207008 397132004 439479000 0 116680003 900000000000011006 900000000000451002 +3502701025 20090131 1 900000000000207008 122693007 439479000 0 116680003 900000000000011006 900000000000451002 +3502898020 20090131 1 900000000000207008 433120004 119393003 0 116680003 900000000000011006 900000000000451002 +3502899028 20090131 1 900000000000207008 433120004 431412004 0 116680003 900000000000011006 900000000000451002 +3502899028 20090731 0 900000000000207008 433120004 431412004 0 116680003 900000000000011006 900000000000451002 +3503026020 20090131 1 900000000000207008 397131006 439479000 0 116680003 900000000000011006 900000000000451002 +3503026020 20211031 0 900000000000207008 397131006 439479000 0 116680003 900000000000011006 900000000000451002 +3503565026 20090131 1 900000000000207008 122679000 438803004 0 116680003 900000000000011006 900000000000451002 +3503565026 20140131 0 900000000000207008 122679000 438803004 0 116680003 900000000000011006 900000000000451002 +3503630022 20090131 1 900000000000207008 399629006 439479000 0 116680003 900000000000011006 900000000000451002 +3503676021 20090131 1 900000000000207008 399502008 439479000 0 116680003 900000000000011006 900000000000451002 +3503825020 20090131 1 900000000000207008 168138009 440674008 0 116680003 900000000000011006 900000000000451002 +3503840022 20090131 1 900000000000207008 397133009 439479000 0 116680003 900000000000011006 900000000000451002 +3503960026 20090131 1 900000000000207008 122683000 438803004 0 116680003 900000000000011006 900000000000451002 +3503960026 20140131 0 900000000000207008 122683000 438803004 0 116680003 900000000000011006 900000000000451002 +3504139029 20090131 1 900000000000207008 397130007 439479000 0 116680003 900000000000011006 900000000000451002 +3504518025 20090131 1 900000000000207008 122684006 438803004 0 116680003 900000000000011006 900000000000451002 +3504518025 20140131 0 900000000000207008 122684006 438803004 0 116680003 900000000000011006 900000000000451002 +3504592025 20090131 1 900000000000207008 309190004 439479000 0 116680003 900000000000011006 900000000000451002 +3505160029 20090131 1 900000000000207008 258564008 309074002 0 116680003 900000000000011006 900000000000451002 +3505160029 20110731 0 900000000000207008 258564008 309074002 0 116680003 900000000000011006 900000000000451002 +3505206029 20090131 1 900000000000207008 122645001 439479000 0 116680003 900000000000011006 900000000000451002 +3505206029 20211031 0 900000000000207008 122645001 439479000 0 116680003 900000000000011006 900000000000451002 +3505255022 20090131 1 900000000000207008 122685007 438803004 0 116680003 900000000000011006 900000000000451002 +3505255022 20140131 0 900000000000207008 122685007 438803004 0 116680003 900000000000011006 900000000000451002 +3505671029 20090131 1 900000000000207008 439895009 439479000 0 116680003 900000000000011006 900000000000451002 +3505672020 20090131 1 900000000000207008 439895009 430220009 0 116680003 900000000000011006 900000000000451002 +3505672020 20110131 0 900000000000207008 439895009 430220009 0 116680003 900000000000011006 900000000000451002 +3505796024 20090131 1 900000000000207008 440675009 127471001 0 116680003 900000000000011006 900000000000451002 +3505797026 20090131 1 900000000000207008 440675009 440674008 0 116680003 900000000000011006 900000000000451002 +3506120020 20090131 1 900000000000207008 309103006 439479000 0 116680003 900000000000011006 900000000000451002 +3506288024 20090131 1 900000000000207008 397077004 439479000 0 116680003 900000000000011006 900000000000451002 +3506288024 20190131 0 900000000000207008 397077004 439479000 0 116680003 900000000000011006 900000000000451002 +3506547023 20090131 1 900000000000207008 419695002 440229008 0 116680003 900000000000011006 900000000000451002 +3506549021 20090131 1 900000000000207008 440135000 258415003 0 116680003 900000000000011006 900000000000451002 +3506572023 20090131 1 900000000000207008 440135000 110960005 0 116680003 900000000000011006 900000000000451002 +3506701028 20090131 1 900000000000207008 397436009 439479000 0 116680003 900000000000011006 900000000000451002 +3506757021 20090131 1 900000000000207008 439580004 127454002 0 116680003 900000000000011006 900000000000451002 +3506757021 20130131 0 900000000000207008 439580004 127454002 0 116680003 900000000000011006 900000000000451002 +3506788020 20090131 1 900000000000207008 438352005 439479000 0 116680003 900000000000011006 900000000000451002 +3506789028 20090131 1 900000000000207008 438352005 128173005 0 116680003 900000000000011006 900000000000451002 +3506965028 20090131 1 900000000000207008 258607008 440674008 0 116680003 900000000000011006 900000000000451002 +3507012028 20090131 1 900000000000207008 397078009 439479000 0 116680003 900000000000011006 900000000000451002 +3507060025 20090131 1 900000000000207008 309486005 399645008 0 116680003 900000000000011006 900000000000451002 +3507191023 20090131 1 900000000000207008 309484008 399645008 0 116680003 900000000000011006 900000000000451002 +3507221023 20090131 1 900000000000207008 122697008 439479000 0 116680003 900000000000011006 900000000000451002 +3507445020 20090131 1 900000000000207008 258545002 438660002 0 116680003 900000000000011006 900000000000451002 +3507445020 20210131 0 900000000000207008 258545002 438660002 0 116680003 900000000000011006 900000000000451002 +3507841022 20090131 1 900000000000207008 309485009 440502004 0 116680003 900000000000011006 900000000000451002 +3507842026 20090131 1 900000000000207008 309485009 399645008 0 116680003 900000000000011006 900000000000451002 +3507843020 20090131 1 900000000000207008 309485009 309186001 0 116680003 900000000000011006 900000000000451002 +3507843020 20140131 0 900000000000207008 309485009 309186001 0 116680003 900000000000011006 900000000000451002 +3508368028 20090131 1 900000000000207008 309270001 439479000 0 116680003 900000000000011006 900000000000451002 +3508865022 20090131 1 900000000000207008 309275006 439479000 0 116680003 900000000000011006 900000000000451002 +3508898028 20090131 1 900000000000207008 303247002 438803004 0 116680003 900000000000011006 900000000000451002 +3509099028 20090131 1 900000000000207008 409876003 309072003 0 116680003 900000000000011006 900000000000451002 +3509099028 20210131 0 900000000000207008 409876003 309072003 0 116680003 900000000000011006 900000000000451002 +3509100020 20090131 1 900000000000207008 409876003 258538002 0 116680003 900000000000011006 900000000000451002 +3509223029 20090131 1 900000000000207008 122669002 439479000 0 116680003 900000000000011006 900000000000451002 +3509232027 20090131 1 900000000000207008 399658009 439479000 0 116680003 900000000000011006 900000000000451002 +3509257021 20090131 1 900000000000207008 438960000 309125000 0 116680003 900000000000011006 900000000000451002 +3510325024 20090131 1 900000000000207008 438659007 439034006 0 116680003 900000000000011006 900000000000451002 +3510325024 20160131 0 900000000000207008 438659007 439034006 0 116680003 900000000000011006 900000000000451002 +3510326020 20090131 1 900000000000207008 438659007 309203003 0 116680003 900000000000011006 900000000000451002 +3510380028 20090131 1 900000000000207008 309267000 439479000 0 116680003 900000000000011006 900000000000451002 +3510411022 20090131 1 900000000000207008 439961009 127454002 0 116680003 900000000000011006 900000000000451002 +3510411022 20130131 0 900000000000207008 439961009 127454002 0 116680003 900000000000011006 900000000000451002 +3510446025 20090131 1 900000000000207008 399732002 439479000 0 116680003 900000000000011006 900000000000451002 +3510496029 20090131 1 900000000000207008 309181006 440136004 0 116680003 900000000000011006 900000000000451002 +3510542025 20090131 1 900000000000207008 122710003 439479000 0 116680003 900000000000011006 900000000000451002 +3510900022 20090131 1 900000000000207008 438543000 309203003 0 116680003 900000000000011006 900000000000451002 +3511295024 20090131 1 900000000000207008 438805006 309185002 0 116680003 900000000000011006 900000000000451002 +3511295024 20110731 0 900000000000207008 438805006 309185002 0 116680003 900000000000011006 900000000000451002 +3511300021 20090131 1 900000000000207008 397333000 439479000 0 116680003 900000000000011006 900000000000451002 +3511367021 20090131 1 900000000000207008 399689008 439479000 0 116680003 900000000000011006 900000000000451002 +3511399026 20090131 1 900000000000207008 397334006 439479000 0 116680003 900000000000011006 900000000000451002 +3512248022 20090131 1 900000000000207008 258585008 439479000 0 116680003 900000000000011006 900000000000451002 +3512276025 20090131 1 900000000000207008 309183009 439479000 0 116680003 900000000000011006 900000000000451002 +3512326029 20090131 1 900000000000207008 438803004 119376003 0 116680003 900000000000011006 900000000000451002 +3512327022 20090131 1 900000000000207008 438803004 433323009 0 116680003 900000000000011006 900000000000451002 +3512793029 20090131 1 900000000000207008 122668005 439479000 0 116680003 900000000000011006 900000000000451002 +3513302022 20090131 1 900000000000207008 438595008 258453008 0 116680003 900000000000011006 900000000000451002 +3513373029 20090131 1 900000000000207008 440515008 258415003 0 116680003 900000000000011006 900000000000451002 +3513374024 20090131 1 900000000000207008 440515008 309049000 0 116680003 900000000000011006 900000000000451002 +3513631028 20090131 1 900000000000207008 438804005 127474009 0 116680003 900000000000011006 900000000000451002 +3513727029 20090131 1 900000000000207008 433859006 431047004 1 118171006 900000000000011006 900000000000451002 +3514011021 20090131 1 900000000000207008 440229008 123038009 0 116680003 900000000000011006 900000000000451002 +3514088022 20090131 1 900000000000207008 432384008 89163009 1 118171006 900000000000011006 900000000000451002 +3514088022 20090731 0 900000000000207008 432384008 89163009 1 118171006 900000000000011006 900000000000451002 +3514088022 20100131 1 900000000000207008 432384008 89163009 1 118171006 900000000000011006 900000000000451002 +3514089025 20090131 1 900000000000207008 432384008 69695003 1 118169006 900000000000011006 900000000000451002 +3514089025 20090731 0 900000000000207008 432384008 69695003 1 118169006 900000000000011006 900000000000451002 +3514089025 20100131 1 900000000000207008 432384008 69695003 1 118169006 900000000000011006 900000000000451002 +3514155029 20090131 1 900000000000207008 309175003 439479000 0 116680003 900000000000011006 900000000000451002 +3514189028 20090131 1 900000000000207008 399731009 413675001 1 370133003 900000000000011006 900000000000451002 +3514241026 20090131 1 900000000000207008 309134005 413675001 1 370133003 900000000000011006 900000000000451002 +3514282026 20090131 1 900000000000207008 122602008 119253004 1 118169006 900000000000011006 900000000000451002 +3514283020 20090131 1 900000000000207008 122602008 413675001 1 370133003 900000000000011006 900000000000451002 +3514302025 20090131 1 900000000000207008 399735000 413675001 1 370133003 900000000000011006 900000000000451002 +3514363021 20090131 1 900000000000207008 399693002 45289007 1 118169006 900000000000011006 900000000000451002 +3514403020 20090131 1 900000000000207008 122651006 60184004 1 118169006 900000000000011006 900000000000451002 +3514443026 20090131 1 900000000000207008 122629003 49755003 1 118168003 900000000000011006 900000000000451002 +3514443026 20220630 0 900000000000207008 122629003 49755003 1 118168003 900000000000011006 900000000000451002 +3514464027 20090131 1 900000000000207008 432980007 76148003 1 118171006 900000000000011006 900000000000451002 +3514464027 20090731 0 900000000000207008 432980007 76148003 1 118171006 900000000000011006 900000000000451002 +3514464027 20100131 1 900000000000207008 432980007 76148003 1 118171006 900000000000011006 900000000000451002 +3514490029 20090131 1 900000000000207008 434406008 385294005 1 118169006 900000000000011006 900000000000451002 +3514491025 20090131 1 900000000000207008 434406008 323083008 1 118171006 900000000000011006 900000000000451002 +3514502029 20090131 1 900000000000207008 122703009 413675001 1 370133003 900000000000011006 900000000000451002 +3514618025 20090131 1 900000000000207008 399541005 413675001 1 370133003 900000000000011006 900000000000451002 +3514639021 20090131 1 900000000000207008 119325001 39937001 1 118169006 900000000000011006 900000000000451002 +3514663029 20090131 1 900000000000207008 122638001 413675001 1 370133003 900000000000011006 900000000000451002 +3514974020 20090131 1 900000000000207008 427558003 413675001 1 370133003 900000000000011006 900000000000451002 +3515031025 20090131 1 900000000000207008 433116003 430239004 1 118171006 900000000000011006 900000000000451002 +3515031025 20090731 0 900000000000207008 433116003 430239004 1 118171006 900000000000011006 900000000000451002 +3515031025 20100131 1 900000000000207008 433116003 430239004 1 118171006 900000000000011006 900000000000451002 +3515032021 20090131 1 900000000000207008 433116003 10200004 1 118169006 900000000000011006 900000000000451002 +3515032021 20090731 0 900000000000207008 433116003 10200004 1 118169006 900000000000011006 900000000000451002 +3515032021 20100131 1 900000000000207008 433116003 10200004 1 118169006 900000000000011006 900000000000451002 +3515113028 20090131 1 900000000000207008 384820007 413675001 1 370133003 900000000000011006 900000000000451002 +3515150027 20090131 1 900000000000207008 432140002 955009 1 118169006 900000000000011006 900000000000451002 +3515151028 20090131 1 900000000000207008 432140002 59325001 1 118171006 900000000000011006 900000000000451002 +3515208021 20090131 1 900000000000207008 430309006 24142002 1 118169006 900000000000011006 900000000000451002 +3515328023 20090131 1 900000000000207008 122717000 413675001 1 370133003 900000000000011006 900000000000451002 +3515329026 20090131 1 900000000000207008 122717000 29672006 1 118171006 900000000000011006 900000000000451002 +3515359020 20090131 1 900000000000207008 167872000 125682004 1 118169006 900000000000011006 900000000000451002 +3515359020 20170731 0 900000000000207008 167872000 125682004 1 118169006 900000000000011006 900000000000451002 +3515378020 20090131 1 900000000000207008 122700007 413675001 1 370133003 900000000000011006 900000000000451002 +3515445028 20090131 1 900000000000207008 432382007 234279002 1 118171006 900000000000011006 900000000000451002 +3515446027 20090131 1 900000000000207008 432382007 59441001 1 118169006 900000000000011006 900000000000451002 +3515456028 20090131 1 900000000000207008 122737001 413675001 1 370133003 900000000000011006 900000000000451002 +3515467027 20090131 1 900000000000207008 432983009 20094006 1 118171006 900000000000011006 900000000000451002 +3515468021 20090131 1 900000000000207008 432983009 56329008 1 118169006 900000000000011006 900000000000451002 +3515469029 20090131 1 900000000000207008 399486006 413675001 1 370133003 900000000000011006 900000000000451002 +3515522020 20090131 1 900000000000207008 122673004 413675001 1 370133003 900000000000011006 900000000000451002 +3515554027 20090131 1 900000000000207008 397232008 413675001 1 370133003 900000000000011006 900000000000451002 +3515607020 20090131 1 900000000000207008 409821005 225113003 1 118171006 900000000000011006 900000000000451002 +3515608026 20090131 1 900000000000207008 409821005 431938005 1 118169006 900000000000011006 900000000000451002 +3515644020 20090131 1 900000000000207008 167871007 40238009 1 118169006 900000000000011006 900000000000451002 +3515644020 20110131 0 900000000000207008 167871007 40238009 1 118169006 900000000000011006 900000000000451002 +3515644020 20110731 1 900000000000207008 167871007 40238009 1 118169006 900000000000011006 900000000000451002 +3515644020 20170731 0 900000000000207008 167871007 40238009 1 118169006 900000000000011006 900000000000451002 +3515877022 20090131 1 900000000000207008 258507003 285570007 1 118171006 900000000000011006 900000000000451002 +3515943027 20090131 1 900000000000207008 397234009 413675001 1 370133003 900000000000011006 900000000000451002 +3515949028 20090131 1 900000000000207008 258506007 285570007 1 118171006 900000000000011006 900000000000451002 +3515997027 20090131 1 900000000000207008 369611008 413675001 1 370133003 900000000000011006 900000000000451002 +3516025020 20090131 1 900000000000207008 431696005 49957000 1 118169006 900000000000011006 900000000000451002 +3516025020 20090731 0 900000000000207008 431696005 49957000 1 118169006 900000000000011006 900000000000451002 +3516025020 20100131 1 900000000000207008 431696005 49957000 1 118169006 900000000000011006 900000000000451002 +3516060025 20090131 1 900000000000207008 431771004 409615008 1 370133003 900000000000011006 900000000000451002 +3516061026 20090131 1 900000000000207008 431771004 83670000 1 118169006 900000000000011006 900000000000451002 +3516085023 20090131 1 900000000000207008 399603006 413675001 1 370133003 900000000000011006 900000000000451002 +3516086024 20090131 1 900000000000207008 399603006 397896001 1 118171006 900000000000011006 900000000000451002 +3516311028 20090131 1 900000000000207008 258499005 225709000 1 118171006 900000000000011006 900000000000451002 +3516344023 20090131 1 900000000000207008 439628000 41323003 0 118170007 900000000000011006 900000000000451002 +3516344023 20130131 0 900000000000207008 439628000 41323003 0 118170007 900000000000011006 900000000000451002 +3516389024 20090131 1 900000000000207008 309126004 413675001 1 370133003 900000000000011006 900000000000451002 +3516486029 20090131 1 900000000000207008 432383002 42361003 1 118171006 900000000000011006 900000000000451002 +3516486029 20090731 0 900000000000207008 432383002 42361003 1 118171006 900000000000011006 900000000000451002 +3516486029 20100131 1 900000000000207008 432383002 42361003 1 118171006 900000000000011006 900000000000451002 +3516487022 20090131 1 900000000000207008 432383002 78961009 1 118169006 900000000000011006 900000000000451002 +3516487022 20090731 0 900000000000207008 432383002 78961009 1 118169006 900000000000011006 900000000000451002 +3516487022 20100131 1 900000000000207008 432383002 78961009 1 118169006 900000000000011006 900000000000451002 +3516595024 20090131 1 900000000000207008 122735009 413675001 1 370133003 900000000000011006 900000000000451002 +3516611023 20090131 1 900000000000207008 432607005 123851003 1 118169006 900000000000011006 900000000000451002 +3516612027 20090131 1 900000000000207008 432607005 430113005 1 118171006 900000000000011006 900000000000451002 +3516636028 20090131 1 900000000000207008 309129006 413675001 1 370133003 900000000000011006 900000000000451002 +3516677029 20090131 1 900000000000207008 438336007 40724001 1 118169006 900000000000011006 900000000000451002 +3516677029 20090731 0 900000000000207008 438336007 40724001 1 118169006 900000000000011006 900000000000451002 +3516842026 20090131 1 900000000000207008 399661005 413675001 1 370133003 900000000000011006 900000000000451002 +3516847021 20090131 1 900000000000207008 167876002 26552008 1 118169006 900000000000011006 900000000000451002 +3516847021 20110131 0 900000000000207008 167876002 26552008 1 118169006 900000000000011006 900000000000451002 +3516847021 20110731 1 900000000000207008 167876002 26552008 1 118169006 900000000000011006 900000000000451002 +3516847021 20170731 0 900000000000207008 167876002 26552008 1 118169006 900000000000011006 900000000000451002 +3516940024 20090131 1 900000000000207008 397235005 413675001 1 370133003 900000000000011006 900000000000451002 +3516954027 20090131 1 900000000000207008 122654003 413675001 1 370133003 900000000000011006 900000000000451002 +3516954027 20100131 0 900000000000207008 122654003 413675001 1 370133003 900000000000011006 900000000000451002 +3516954027 20100731 1 900000000000207008 122654003 413675001 1 370133003 900000000000011006 900000000000451002 +3517026028 20090131 1 900000000000207008 397245007 413675001 1 370133003 900000000000011006 900000000000451002 +3517026028 20110731 0 900000000000207008 397245007 413675001 1 370133003 900000000000011006 900000000000451002 +3517187020 20090131 1 900000000000207008 438660002 53350007 0 118170007 900000000000011006 900000000000451002 +3517187020 20190731 1 900000000000207008 438660002 53350007 1 118170007 900000000000011006 900000000000451002 +3517211023 20090131 1 900000000000207008 309148005 386147002 1 118171006 900000000000011006 900000000000451002 +3517211023 20110731 0 900000000000207008 309148005 386147002 1 118171006 900000000000011006 900000000000451002 +3517301025 20090131 1 900000000000207008 167877006 122477008 1 118169006 900000000000011006 900000000000451002 +3517301025 20170731 0 900000000000207008 167877006 122477008 1 118169006 900000000000011006 900000000000451002 +3517304022 20090131 1 900000000000207008 309150002 413675001 1 370133003 900000000000011006 900000000000451002 +3517362024 20090131 1 900000000000207008 122599003 413675001 1 370133003 900000000000011006 900000000000451002 +3517365021 20090131 1 900000000000207008 397199005 413675001 1 370133003 900000000000011006 900000000000451002 +3517366022 20090131 1 900000000000207008 397199005 69031006 1 118171006 900000000000011006 900000000000451002 +3517366022 20220731 0 900000000000207008 397199005 69031006 1 118171006 900000000000011006 900000000000451002 +3517469025 20090131 1 900000000000207008 399751008 413675001 1 370133003 900000000000011006 900000000000451002 +3517469025 20110131 0 900000000000207008 399751008 413675001 1 370133003 900000000000011006 900000000000451002 +3517469025 20110731 1 900000000000207008 399751008 413675001 1 370133003 900000000000011006 900000000000451002 +3517491021 20090131 1 900000000000207008 167868004 85537004 1 118169006 900000000000011006 900000000000451002 +3517491021 20110131 0 900000000000207008 167868004 85537004 1 118169006 900000000000011006 900000000000451002 +3517491021 20110731 1 900000000000207008 167868004 85537004 1 118169006 900000000000011006 900000000000451002 +3517491021 20170731 0 900000000000207008 167868004 85537004 1 118169006 900000000000011006 900000000000451002 +3517563026 20090131 1 900000000000207008 122716009 413675001 1 370133003 900000000000011006 900000000000451002 +3517584020 20090131 1 900000000000207008 309546004 413675001 1 370133003 900000000000011006 900000000000451002 +3517585021 20090131 1 900000000000207008 309546004 392021009 1 118171006 900000000000011006 900000000000451002 +3517794028 20090131 1 900000000000207008 122606006 413675001 1 370133003 900000000000011006 900000000000451002 +3518043028 20090131 1 900000000000207008 122567009 431938005 1 118169006 900000000000011006 900000000000451002 +3518060022 20090131 1 900000000000207008 122628006 413675001 1 370133003 900000000000011006 900000000000451002 +3518123020 20090131 1 900000000000207008 122718005 413675001 1 370133003 900000000000011006 900000000000451002 +3518124025 20090131 1 900000000000207008 122640006 413675001 1 370133003 900000000000011006 900000000000451002 +3518125029 20090131 1 900000000000207008 122640006 21306003 1 118169006 900000000000011006 900000000000451002 +3518159025 20090131 1 900000000000207008 122641005 413675001 1 370133003 900000000000011006 900000000000451002 +3518160024 20090131 1 900000000000207008 122641005 34516001 1 118169006 900000000000011006 900000000000451002 +3518217020 20090131 1 900000000000207008 369614000 413675001 1 370133003 900000000000011006 900000000000451002 +3518232029 20090131 1 900000000000207008 309261004 36213007 1 118171006 900000000000011006 900000000000451002 +3518280026 20090131 1 900000000000207008 432419006 39352004 1 118169006 900000000000011006 900000000000451002 +3518280026 20110731 0 900000000000207008 432419006 39352004 1 118169006 900000000000011006 900000000000451002 +3518281027 20090131 1 900000000000207008 432419006 430108006 1 118171006 900000000000011006 900000000000451002 +3518281027 20110731 0 900000000000207008 432419006 430108006 1 118171006 900000000000011006 900000000000451002 +3518333021 20090131 1 900000000000207008 167873005 24136001 1 118169006 900000000000011006 900000000000451002 +3518333021 20110131 0 900000000000207008 167873005 24136001 1 118169006 900000000000011006 900000000000451002 +3518333021 20110731 1 900000000000207008 167873005 24136001 1 118169006 900000000000011006 900000000000451002 +3518333021 20170731 0 900000000000207008 167873005 24136001 1 118169006 900000000000011006 900000000000451002 +3518377025 20090131 1 900000000000207008 122604009 413675001 1 370133003 900000000000011006 900000000000451002 +3518411023 20090131 1 900000000000207008 122736005 413675001 1 370133003 900000000000011006 900000000000451002 +3518543020 20090131 1 900000000000207008 440493002 116154003 1 118170007 900000000000011006 900000000000451002 +3518543020 20090731 0 900000000000207008 440493002 116154003 1 118170007 900000000000011006 900000000000451002 +3518685025 20090131 1 900000000000207008 122738006 413675001 1 370133003 900000000000011006 900000000000451002 +3518831028 20090131 1 900000000000207008 309547008 413675001 1 370133003 900000000000011006 900000000000451002 +3519004024 20090131 1 900000000000207008 440468004 79287008 0 118170007 900000000000011006 900000000000451002 +3519004024 20130131 0 900000000000207008 440468004 79287008 0 118170007 900000000000011006 900000000000451002 +3519070027 20090131 1 900000000000207008 439479000 65801008 1 118171006 900000000000011006 900000000000451002 +3519070027 20090731 0 900000000000207008 439479000 65801008 1 118171006 900000000000011006 900000000000451002 +3519095026 20090131 1 900000000000207008 397246008 413675001 1 370133003 900000000000011006 900000000000451002 +3519095026 20110731 0 900000000000207008 397246008 413675001 1 370133003 900000000000011006 900000000000451002 +3519106024 20090131 1 900000000000207008 122671002 48426002 1 118171006 900000000000011006 900000000000451002 +3519106024 20090731 0 900000000000207008 122671002 48426002 1 118171006 900000000000011006 900000000000451002 +3519106024 20100131 1 900000000000207008 122671002 48426002 1 118171006 900000000000011006 900000000000451002 +3519170025 20090131 1 900000000000207008 122674005 413675001 1 370133003 900000000000011006 900000000000451002 +3519413025 20090131 1 900000000000207008 258484005 406139003 1 118169006 900000000000011006 900000000000451002 +3519477022 20090131 1 900000000000207008 369616003 56031009 1 118171006 900000000000011006 900000000000451002 +3519610023 20090131 1 900000000000207008 432441006 12817009 1 118169006 900000000000011006 900000000000451002 +3519641024 20090131 1 900000000000207008 122584003 414387006 1 118169006 900000000000011006 900000000000451002 +3519641024 20090731 0 900000000000207008 122584003 414387006 1 118169006 900000000000011006 900000000000451002 +3519740026 20090131 1 900000000000207008 309115005 52082005 1 118169006 900000000000011006 900000000000451002 +3519741027 20090131 1 900000000000207008 309115005 429893007 1 118171006 900000000000011006 900000000000451002 +3519788028 20090131 1 900000000000207008 122675006 413675001 1 370133003 900000000000011006 900000000000451002 +3519788028 20100131 0 900000000000207008 122675006 413675001 1 370133003 900000000000011006 900000000000451002 +3519788028 20100731 1 900000000000207008 122675006 413675001 1 370133003 900000000000011006 900000000000451002 +3519844029 20090131 1 900000000000207008 258481002 50473004 1 370133003 900000000000011006 900000000000451002 +3519844029 20090731 0 900000000000207008 258481002 50473004 1 370133003 900000000000011006 900000000000451002 +3519902020 20090131 1 900000000000207008 128174004 413675001 1 370133003 900000000000011006 900000000000451002 +3519906023 20090131 1 900000000000207008 122588000 87612001 0 370133003 900000000000011006 900000000000451002 +3519906023 20090731 0 900000000000207008 122588000 87612001 0 370133003 900000000000011006 900000000000451002 +3519907025 20090131 1 900000000000207008 122588000 116154003 1 118170007 900000000000011006 900000000000451002 +3519907025 20090731 0 900000000000207008 122588000 116154003 1 118170007 900000000000011006 900000000000451002 +3519907025 20110131 1 900000000000207008 122588000 116154003 1 118170007 900000000000011006 900000000000451002 +3519907025 20110731 0 900000000000207008 122588000 116154003 1 118170007 900000000000011006 900000000000451002 +3519963029 20090131 1 900000000000207008 122639009 413675001 1 370133003 900000000000011006 900000000000451002 +3519983028 20090131 1 900000000000207008 309498000 413675001 1 370133003 900000000000011006 900000000000451002 +3520007023 20090131 1 900000000000207008 122656001 413675001 1 370133003 900000000000011006 900000000000451002 +3520007023 20110731 0 900000000000207008 122656001 413675001 1 370133003 900000000000011006 900000000000451002 +3520029022 20090131 1 900000000000207008 122672009 413675001 1 370133003 900000000000011006 900000000000451002 +3520246029 20090131 1 900000000000207008 309224008 413675001 1 370133003 900000000000011006 900000000000451002 +3520435029 20090131 1 900000000000207008 122688009 413675001 1 370133003 900000000000011006 900000000000451002 +3520482020 20090131 1 900000000000207008 432436003 49957000 1 118169006 900000000000011006 900000000000451002 +3520483026 20090131 1 900000000000207008 432436003 386152007 1 118168003 900000000000011006 900000000000451002 +3520573027 20090131 1 900000000000207008 122605005 413675001 1 370133003 900000000000011006 900000000000451002 +3520678029 20090131 1 900000000000207008 309226005 413675001 1 370133003 900000000000011006 900000000000451002 +3520699026 20090131 1 900000000000207008 399728008 413675001 1 370133003 900000000000011006 900000000000451002 +3520724022 20090131 1 900000000000207008 309118007 84820005 1 118169006 900000000000011006 900000000000451002 +3520725023 20090131 1 900000000000207008 309118007 429889001 1 118171006 900000000000011006 900000000000451002 +3520743022 20090131 1 900000000000207008 128173005 413675001 1 370133003 900000000000011006 900000000000451002 +3520803021 20090131 1 900000000000207008 122724004 413675001 1 370133003 900000000000011006 900000000000451002 +3520890025 20090131 1 900000000000207008 309216003 38848004 1 118169006 900000000000011006 900000000000451002 +3520946023 20090131 1 900000000000207008 309105004 272673000 1 118169006 900000000000011006 900000000000451002 +3521126021 20090131 1 900000000000207008 438545007 367643001 1 118168003 900000000000011006 900000000000451002 +3521126021 20090731 0 900000000000207008 438545007 367643001 1 118168003 900000000000011006 900000000000451002 +3521265028 20090131 1 900000000000207008 309497005 413675001 1 370133003 900000000000011006 900000000000451002 +3521394021 20090131 1 900000000000207008 122687004 413675001 1 370133003 900000000000011006 900000000000451002 +3521439025 20090131 1 900000000000207008 128161005 413675001 1 370133003 900000000000011006 900000000000451002 +3521472025 20090131 1 900000000000207008 309110000 413675001 1 370133003 900000000000011006 900000000000451002 +3521473024 20090131 1 900000000000207008 309110000 13351007 1 118169006 900000000000011006 900000000000451002 +3521474029 20090131 1 900000000000207008 258469001 54066008 1 118169006 900000000000011006 900000000000451002 +3521474029 20090731 0 900000000000207008 258469001 54066008 1 118169006 900000000000011006 900000000000451002 +3521504028 20090131 1 900000000000207008 258479004 32457005 1 370133003 900000000000011006 900000000000451002 +3521504028 20221130 0 900000000000207008 258479004 32457005 1 370133003 900000000000011006 900000000000451002 +3521632028 20090131 1 900000000000207008 122587005 87612001 0 370133003 900000000000011006 900000000000451002 +3521632028 20090731 0 900000000000207008 122587005 87612001 0 370133003 900000000000011006 900000000000451002 +3521649024 20090131 1 900000000000207008 309491006 413675001 1 370133003 900000000000011006 900000000000451002 +3521649024 20100131 0 900000000000207008 309491006 413675001 1 370133003 900000000000011006 900000000000451002 +3521649024 20100731 1 900000000000207008 309491006 413675001 1 370133003 900000000000011006 900000000000451002 +3521649024 20110731 0 900000000000207008 309491006 413675001 1 370133003 900000000000011006 900000000000451002 +3521689029 20090131 1 900000000000207008 309219005 21306003 1 118169006 900000000000011006 900000000000451002 +3521773020 20090131 1 900000000000207008 429836002 303633008 1 118171006 900000000000011006 900000000000451002 +3521773020 20100731 0 900000000000207008 429836002 303633008 1 118171006 900000000000011006 900000000000451002 +3521773020 20110131 1 900000000000207008 429836002 303633008 1 118171006 900000000000011006 900000000000451002 +3521774025 20090131 1 900000000000207008 429836002 15924003 1 118169006 900000000000011006 900000000000451002 +3521774025 20100731 0 900000000000207008 429836002 15924003 1 118169006 900000000000011006 900000000000451002 +3521774025 20110131 1 900000000000207008 429836002 15924003 1 118169006 900000000000011006 900000000000451002 +3521854028 20090131 1 900000000000207008 438343001 419351001 1 118168003 900000000000011006 900000000000451002 +3521854028 20090731 0 900000000000207008 438343001 419351001 1 118168003 900000000000011006 900000000000451002 +3521888023 20090131 1 900000000000207008 122565001 431938005 1 118169006 900000000000011006 900000000000451002 +3521949022 20090131 1 900000000000207008 122609004 39607008 1 118169006 900000000000011006 900000000000451002 +3521949022 20090731 0 900000000000207008 122609004 39607008 1 118169006 900000000000011006 900000000000451002 +3521974020 20090131 1 900000000000207008 440473005 57368009 0 118170007 900000000000011006 900000000000451002 +3521974020 20130131 0 900000000000207008 440473005 57368009 0 118170007 900000000000011006 900000000000451002 +3521978023 20090131 1 900000000000207008 399657004 413675001 1 370133003 900000000000011006 900000000000451002 +3521998029 20090131 1 900000000000207008 309217007 34516001 1 118169006 900000000000011006 900000000000451002 +3522018028 20090131 1 900000000000207008 309488006 413675001 1 370133003 900000000000011006 900000000000451002 +3522098029 20090131 1 900000000000207008 128160006 413675001 1 370133003 900000000000011006 900000000000451002 +3522103027 20090131 1 900000000000207008 122653009 413675001 1 370133003 900000000000011006 900000000000451002 +3522103027 20100131 0 900000000000207008 122653009 413675001 1 370133003 900000000000011006 900000000000451002 +3522103027 20100731 1 900000000000207008 122653009 413675001 1 370133003 900000000000011006 900000000000451002 +3522174023 20090131 1 900000000000207008 440138003 334886004 1 118169006 900000000000011006 900000000000451002 +3522174023 20090731 0 900000000000207008 440138003 334886004 1 118169006 900000000000011006 900000000000451002 +3522183029 20090131 1 900000000000207008 128171007 69695003 1 118169006 900000000000011006 900000000000451002 +3522185020 20090131 1 900000000000207008 309218002 34516001 1 118169006 900000000000011006 900000000000451002 +3522206027 20090131 1 900000000000207008 438661003 70948008 1 118169006 900000000000011006 900000000000451002 +3522206027 20090731 0 900000000000207008 438661003 70948008 1 118169006 900000000000011006 900000000000451002 +3522304026 20090131 1 900000000000207008 429832000 235566000 1 118171006 900000000000011006 900000000000451002 +3522304026 20100131 0 900000000000207008 429832000 235566000 1 118171006 900000000000011006 900000000000451002 +3522304026 20100731 1 900000000000207008 429832000 235566000 1 118171006 900000000000011006 900000000000451002 +3522304026 20110731 0 900000000000207008 429832000 235566000 1 118171006 900000000000011006 900000000000451002 +3522305025 20090131 1 900000000000207008 429832000 34707002 1 118169006 900000000000011006 900000000000451002 +3522305025 20100131 0 900000000000207008 429832000 34707002 1 118169006 900000000000011006 900000000000451002 +3522305025 20100731 1 900000000000207008 429832000 34707002 1 118169006 900000000000011006 900000000000451002 +3522305025 20110731 0 900000000000207008 429832000 34707002 1 118169006 900000000000011006 900000000000451002 +3522362029 20090131 1 900000000000207008 119364003 87612001 0 370133003 900000000000011006 900000000000451002 +3522362029 20090731 0 900000000000207008 119364003 87612001 0 370133003 900000000000011006 900000000000451002 +3522415021 20090131 1 900000000000207008 384744003 122459003 1 118171006 900000000000011006 900000000000451002 +3522416022 20090131 1 900000000000207008 384744003 68171009 1 118169006 900000000000011006 900000000000451002 +3522443028 20090131 1 900000000000207008 309215004 69695003 1 118169006 900000000000011006 900000000000451002 +3522545022 20090131 1 900000000000207008 438454007 10047002 1 118169006 900000000000011006 900000000000451002 +3522545022 20090731 0 900000000000207008 438454007 10047002 1 118169006 900000000000011006 900000000000451002 +3522562028 20090131 1 900000000000207008 122725003 413675001 1 370133003 900000000000011006 900000000000451002 +3522715022 20090131 1 900000000000207008 396477000 413675001 1 370133003 900000000000011006 900000000000451002 +3522781023 20090131 1 900000000000207008 258472008 38922008 1 370133003 900000000000011006 900000000000451002 +3522799026 20090131 1 900000000000207008 438351003 122865005 1 118169006 900000000000011006 900000000000451002 +3522799026 20090731 0 900000000000207008 438351003 122865005 1 118169006 900000000000011006 900000000000451002 +3522884022 20090131 1 900000000000207008 309121009 413675001 1 370133003 900000000000011006 900000000000451002 +3523040029 20090131 1 900000000000207008 399396003 413675001 1 370133003 900000000000011006 900000000000451002 +3523099029 20090131 1 900000000000207008 399619004 413675001 1 370133003 900000000000011006 900000000000451002 +3523200028 20090131 1 900000000000207008 396353007 440258006 1 118171006 900000000000011006 900000000000451002 +3523200028 20090731 0 900000000000207008 396353007 440258006 1 118171006 900000000000011006 900000000000451002 +3523205022 20090131 1 900000000000207008 399645008 413675001 1 370133003 900000000000011006 900000000000451002 +3523281026 20090131 1 900000000000207008 258468009 32457005 0 370133003 900000000000011006 900000000000451002 +3523281026 20110731 0 900000000000207008 258468009 32457005 0 370133003 900000000000011006 900000000000451002 +3523306021 20090131 1 900000000000207008 128158009 413675001 1 370133003 900000000000011006 900000000000451002 +3523332026 20090131 1 900000000000207008 397055003 413675001 1 370133003 900000000000011006 900000000000451002 +3523342029 20090131 1 900000000000207008 128157004 413675001 1 370133003 900000000000011006 900000000000451002 +3523342029 20210930 0 900000000000207008 128157004 413675001 1 370133003 900000000000011006 900000000000451002 +3523346026 20090131 1 900000000000207008 440502004 413675001 1 370133003 900000000000011006 900000000000451002 +3523346026 20090731 0 900000000000207008 440502004 413675001 1 370133003 900000000000011006 900000000000451002 +3523421025 20090131 1 900000000000207008 396359006 413675001 1 370133003 900000000000011006 900000000000451002 +3523422021 20090131 1 900000000000207008 396359006 21525004 1 118171006 900000000000011006 900000000000451002 +3523430022 20090131 1 900000000000207008 122607002 49795001 1 118171006 900000000000011006 900000000000451002 +3523430022 20090731 0 900000000000207008 122607002 49795001 1 118171006 900000000000011006 900000000000451002 +3523475020 20090131 1 900000000000207008 396928004 413675001 1 370133003 900000000000011006 900000000000451002 +3523475020 20100731 0 900000000000207008 396928004 413675001 1 370133003 900000000000011006 900000000000451002 +3523475020 20110131 1 900000000000207008 396928004 413675001 1 370133003 900000000000011006 900000000000451002 +3523476021 20090131 1 900000000000207008 396928004 81745001 1 118169006 900000000000011006 900000000000451002 +3523476021 20100731 0 900000000000207008 396928004 81745001 1 118169006 900000000000011006 900000000000451002 +3523476021 20110131 1 900000000000207008 396928004 81745001 1 118169006 900000000000011006 900000000000451002 +3523504020 20090131 1 900000000000207008 128162003 413675001 1 370133003 900000000000011006 900000000000451002 +3523504020 20110131 0 900000000000207008 128162003 413675001 1 370133003 900000000000011006 900000000000451002 +3523504020 20110731 1 900000000000207008 128162003 413675001 1 370133003 900000000000011006 900000000000451002 +3523512028 20090131 1 900000000000207008 258465007 33463005 1 370133003 900000000000011006 900000000000451002 +3523522023 20090131 1 900000000000207008 396354001 39937001 1 118169006 900000000000011006 900000000000451002 +3523522023 20090731 0 900000000000207008 396354001 39937001 1 118169006 900000000000011006 900000000000451002 +3523555029 20090131 1 900000000000207008 309227001 413675001 1 370133003 900000000000011006 900000000000451002 +3523556028 20090131 1 900000000000207008 309227001 41329004 1 118168003 900000000000011006 900000000000451002 +3523604027 20090131 1 900000000000207008 122681003 413675001 1 370133003 900000000000011006 900000000000451002 +3523604027 20100131 0 900000000000207008 122681003 413675001 1 370133003 900000000000011006 900000000000451002 +3523604027 20100731 1 900000000000207008 122681003 413675001 1 370133003 900000000000011006 900000000000451002 +3523624028 20090131 1 900000000000207008 122691009 413675001 1 370133003 900000000000011006 900000000000451002 +3523646020 20090131 1 900000000000207008 430310001 45710003 1 370133003 900000000000011006 900000000000451002 +3523647027 20090131 1 900000000000207008 430310001 82094008 1 118169006 900000000000011006 900000000000451002 +3523677022 20090131 1 900000000000207008 309122002 122478003 1 118171006 900000000000011006 900000000000451002 +3523678028 20090131 1 900000000000207008 309122002 64331004 1 118169006 900000000000011006 900000000000451002 +3523771026 20090131 1 900000000000207008 122657005 413675001 1 370133003 900000000000011006 900000000000451002 +3523807021 20090131 1 900000000000207008 440472000 10047002 1 118169006 900000000000011006 900000000000451002 +3523807021 20090731 0 900000000000207008 440472000 10047002 1 118169006 900000000000011006 900000000000451002 +3523853025 20090131 1 900000000000207008 396483002 413675001 1 370133003 900000000000011006 900000000000451002 +3523853025 20100731 0 900000000000207008 396483002 413675001 1 370133003 900000000000011006 900000000000451002 +3523853025 20110131 1 900000000000207008 396483002 413675001 1 370133003 900000000000011006 900000000000451002 +3523854020 20090131 1 900000000000207008 396483002 72342005 1 118171006 900000000000011006 900000000000451002 +3523854020 20100731 0 900000000000207008 396483002 72342005 1 118171006 900000000000011006 900000000000451002 +3523854020 20110131 1 900000000000207008 396483002 72342005 1 118171006 900000000000011006 900000000000451002 +3523855021 20090131 1 900000000000207008 396483002 39937001 1 118169006 900000000000011006 900000000000451002 +3523855021 20100731 0 900000000000207008 396483002 39937001 1 118169006 900000000000011006 900000000000451002 +3523855021 20110131 1 900000000000207008 396483002 39937001 1 118169006 900000000000011006 900000000000451002 +3523865026 20090131 1 900000000000207008 399492000 413675001 1 370133003 900000000000011006 900000000000451002 +3523869021 20090131 1 900000000000207008 258461003 386152007 1 118168003 900000000000011006 900000000000451002 +3523869021 20110731 0 900000000000207008 258461003 386152007 1 118168003 900000000000011006 900000000000451002 +3523882029 20090131 1 900000000000207008 396358003 413675001 1 370133003 900000000000011006 900000000000451002 +3523883023 20090131 1 900000000000207008 396358003 65854006 1 118171006 900000000000011006 900000000000451002 +3523884028 20090131 1 900000000000207008 396358003 39937001 1 118169006 900000000000011006 900000000000451002 +3523913027 20090131 1 900000000000207008 396357008 413675001 1 370133003 900000000000011006 900000000000451002 +3523914022 20090131 1 900000000000207008 396357008 39937001 1 118169006 900000000000011006 900000000000451002 +3523916024 20090131 1 900000000000207008 440500007 87612001 0 370133003 900000000000011006 900000000000451002 +3523916024 20090731 0 900000000000207008 440500007 87612001 0 370133003 900000000000011006 900000000000451002 +3523951027 20090131 1 900000000000207008 122633005 413675001 1 370133003 900000000000011006 900000000000451002 +3523952023 20090131 1 900000000000207008 122633005 69695003 1 118169006 900000000000011006 900000000000451002 +3523953029 20090131 1 900000000000207008 122633005 41329004 1 118168003 900000000000011006 900000000000451002 +3523980020 20090131 1 900000000000207008 168136008 264585001 1 118168003 900000000000011006 900000000000451002 +3523985026 20090131 1 900000000000207008 122692002 49755003 1 118168003 900000000000011006 900000000000451002 +3523985026 20220630 0 900000000000207008 122692002 49755003 1 118168003 900000000000011006 900000000000451002 +3524037020 20090131 1 900000000000207008 168137004 69695003 1 118169006 900000000000011006 900000000000451002 +3524042028 20090131 1 900000000000207008 128169007 413675001 1 370133003 900000000000011006 900000000000451002 +3524053023 20090131 1 900000000000207008 128156008 413675001 1 370133003 900000000000011006 900000000000451002 +3524060028 20090131 1 900000000000207008 396355000 440258006 1 118171006 900000000000011006 900000000000451002 +3524060028 20090731 0 900000000000207008 396355000 440258006 1 118171006 900000000000011006 900000000000451002 +3524125021 20090131 1 900000000000207008 431404007 431053004 1 118171006 900000000000011006 900000000000451002 +3524126022 20090131 1 900000000000207008 431404007 272673000 1 118169006 900000000000011006 900000000000451002 +3524247028 20090131 1 900000000000207008 122655002 413675001 1 370133003 900000000000011006 900000000000451002 +3524247028 20100131 0 900000000000207008 122655002 413675001 1 370133003 900000000000011006 900000000000451002 +3524247028 20100731 1 900000000000207008 122655002 413675001 1 370133003 900000000000011006 900000000000451002 +3524279021 20090131 1 900000000000207008 432135005 359539002 1 118171006 900000000000011006 900000000000451002 +3524279021 20090731 0 900000000000207008 432135005 359539002 1 118171006 900000000000011006 900000000000451002 +3524279021 20100131 1 900000000000207008 432135005 359539002 1 118171006 900000000000011006 900000000000451002 +3524280024 20090131 1 900000000000207008 432135005 30315005 1 118169006 900000000000011006 900000000000451002 +3524280024 20090731 0 900000000000207008 432135005 30315005 1 118169006 900000000000011006 900000000000451002 +3524280024 20100131 1 900000000000207008 432135005 30315005 1 118169006 900000000000011006 900000000000451002 +3524312022 20090131 1 900000000000207008 128166000 413675001 1 370133003 900000000000011006 900000000000451002 +3524347025 20090131 1 900000000000207008 439034006 10200004 1 118169006 900000000000011006 900000000000451002 +3524347025 20090731 0 900000000000207008 439034006 10200004 1 118169006 900000000000011006 900000000000451002 +3524351028 20090131 1 900000000000207008 309505009 413675001 1 370133003 900000000000011006 900000000000451002 +3524456023 20090131 1 900000000000207008 434250007 175189006 1 118171006 900000000000011006 900000000000451002 +3524457025 20090131 1 900000000000207008 434250007 76848001 1 118169006 900000000000011006 900000000000451002 +3524472026 20090131 1 900000000000207008 431232001 371398005 1 118169006 900000000000011006 900000000000451002 +3524551027 20090131 1 900000000000207008 122589008 87612001 0 370133003 900000000000011006 900000000000451002 +3524551027 20090731 0 900000000000207008 122589008 87612001 0 370133003 900000000000011006 900000000000451002 +3524568028 20090131 1 900000000000207008 396804002 413675001 1 370133003 900000000000011006 900000000000451002 +3524619023 20090131 1 900000000000207008 258463000 27897001 1 370133003 900000000000011006 900000000000451002 +3524623026 20090131 1 900000000000207008 399499009 413675001 1 370133003 900000000000011006 900000000000451002 +3524624021 20090131 1 900000000000207008 399499009 397896001 1 118171006 900000000000011006 900000000000451002 +3524638025 20090131 1 900000000000207008 309221000 413675001 1 370133003 900000000000011006 900000000000451002 +3524670025 20090131 1 900000000000207008 258462005 11220007 1 370133003 900000000000011006 900000000000451002 +3524671026 20090131 1 900000000000207008 258462005 264364002 1 118168003 900000000000011006 900000000000451002 +3524679029 20090131 1 900000000000207008 309124001 229013007 1 118171006 900000000000011006 900000000000451002 +3524699024 20090131 1 900000000000207008 309111001 13351007 1 118169006 900000000000011006 900000000000451002 +3524700020 20090131 1 900000000000207008 309111001 429882005 1 118171006 900000000000011006 900000000000451002 +3524743028 20090131 1 900000000000207008 122676007 413675001 1 370133003 900000000000011006 900000000000451002 +3524881029 20090131 1 900000000000207008 438542005 88882009 0 118169006 900000000000011006 900000000000451002 +3524881029 20190731 1 900000000000207008 438542005 88882009 1 118169006 900000000000011006 900000000000451002 +3524889027 20090131 1 900000000000207008 396481000 413675001 1 370133003 900000000000011006 900000000000451002 +3524904020 20090131 1 900000000000207008 397053005 41329004 1 118168003 900000000000011006 900000000000451002 +3524938028 20090131 1 900000000000207008 440136004 89546000 0 118169006 900000000000011006 900000000000451002 +3524938028 20190731 1 900000000000207008 440136004 89546000 1 118169006 900000000000011006 900000000000451002 +3524943024 20090131 1 900000000000207008 122705002 413675001 1 370133003 900000000000011006 900000000000451002 +3525026028 20090131 1 900000000000207008 432420000 87953007 1 118169006 900000000000011006 900000000000451002 +3525026028 20090731 0 900000000000207008 432420000 87953007 1 118169006 900000000000011006 900000000000451002 +3525026028 20100131 1 900000000000207008 432420000 87953007 1 118169006 900000000000011006 900000000000451002 +3525044020 20090131 1 900000000000207008 122739003 413675001 1 370133003 900000000000011006 900000000000451002 +3525044020 20180131 0 900000000000207008 122739003 413675001 1 370133003 900000000000011006 900000000000451002 +3525072029 20090131 1 900000000000207008 128163008 413675001 1 370133003 900000000000011006 900000000000451002 +3525091029 20090131 1 900000000000207008 309506005 413675001 1 370133003 900000000000011006 900000000000451002 +3525196020 20090131 1 900000000000207008 399388008 120053002 1 118171006 900000000000011006 900000000000451002 +3525197027 20090131 1 900000000000207008 399388008 413675001 1 370133003 900000000000011006 900000000000451002 +3525218028 20090131 1 900000000000207008 440674008 67889009 0 118171006 900000000000011006 900000000000451002 +3525218028 20190731 1 900000000000207008 440674008 67889009 1 118171006 900000000000011006 900000000000451002 +3525263027 20090131 1 900000000000207008 309507001 26107004 1 118169006 900000000000011006 900000000000451002 +3525322020 20090131 1 900000000000207008 440137008 387715005 1 118171006 900000000000011006 900000000000451002 +3525322020 20090731 0 900000000000207008 440137008 387715005 1 118171006 900000000000011006 900000000000451002 +3525322020 20100131 1 900000000000207008 440137008 387715005 1 118171006 900000000000011006 900000000000451002 +3525322020 20100731 0 900000000000207008 440137008 387715005 1 118171006 900000000000011006 900000000000451002 +3525329027 20090131 1 900000000000207008 396807009 413675001 1 370133003 900000000000011006 900000000000451002 +3525340024 20090131 1 900000000000207008 440469007 413675001 0 370133003 900000000000011006 900000000000451002 +3525340024 20190731 1 900000000000207008 440469007 413675001 1 370133003 900000000000011006 900000000000451002 +3525375024 20090131 1 900000000000207008 258453008 32457005 1 370133003 900000000000011006 900000000000451002 +3525375024 20170731 0 900000000000207008 258453008 32457005 1 370133003 900000000000011006 900000000000451002 +3525556026 20090131 1 900000000000207008 432864003 14742008 1 118169006 900000000000011006 900000000000451002 +3525556026 20090731 0 900000000000207008 432864003 14742008 1 118169006 900000000000011006 900000000000451002 +3525556026 20100131 1 900000000000207008 432864003 14742008 1 118169006 900000000000011006 900000000000451002 +3525570026 20090131 1 900000000000207008 431233006 31435000 1 118169006 900000000000011006 900000000000451002 +3525570026 20090731 0 900000000000207008 431233006 31435000 1 118169006 900000000000011006 900000000000451002 +3525570026 20100131 1 900000000000207008 431233006 31435000 1 118169006 900000000000011006 900000000000451002 +3525571027 20090131 1 900000000000207008 431233006 431046008 1 118171006 900000000000011006 900000000000451002 +3525571027 20090731 0 900000000000207008 431233006 431046008 1 118171006 900000000000011006 900000000000451002 +3525571027 20100131 1 900000000000207008 431233006 431046008 1 118171006 900000000000011006 900000000000451002 +3525572023 20090131 1 900000000000207008 122592007 87612001 0 370133003 900000000000011006 900000000000451002 +3525572023 20090731 0 900000000000207008 122592007 87612001 0 370133003 900000000000011006 900000000000451002 +3525595025 20090131 1 900000000000207008 122634004 413675001 1 370133003 900000000000011006 900000000000451002 +3525596029 20090131 1 900000000000207008 122634004 69695003 1 118169006 900000000000011006 900000000000451002 +3525609024 20090131 1 900000000000207008 122590004 87612001 0 370133003 900000000000011006 900000000000451002 +3525609024 20090731 0 900000000000207008 122590004 87612001 0 370133003 900000000000011006 900000000000451002 +3525610025 20090131 1 900000000000207008 122590004 116154003 1 118170007 900000000000011006 900000000000451002 +3525610025 20090731 0 900000000000207008 122590004 116154003 1 118170007 900000000000011006 900000000000451002 +3525610025 20110131 1 900000000000207008 122590004 116154003 1 118170007 900000000000011006 900000000000451002 +3525610025 20110731 0 900000000000207008 122590004 116154003 1 118170007 900000000000011006 900000000000451002 +3525741021 20090131 1 900000000000207008 432142005 18911002 1 118169006 900000000000011006 900000000000451002 +3525742025 20090131 1 900000000000207008 432142005 176557003 1 118171006 900000000000011006 900000000000451002 +3525748026 20090131 1 900000000000207008 122680002 413675001 1 370133003 900000000000011006 900000000000451002 +3525767027 20090131 1 900000000000207008 122696004 413675001 1 370133003 900000000000011006 900000000000451002 +3525767027 20110731 0 900000000000207008 122696004 413675001 1 370133003 900000000000011006 900000000000451002 +3525772020 20090131 1 900000000000207008 397134003 413675001 1 370133003 900000000000011006 900000000000451002 +3525791020 20090131 1 900000000000207008 432061007 233463008 1 118171006 900000000000011006 900000000000451002 +3525792029 20090131 1 900000000000207008 432061007 119553000 1 118169006 900000000000011006 900000000000451002 +3525795027 20090131 1 900000000000207008 396806000 413675001 1 370133003 900000000000011006 900000000000451002 +3525827020 20090131 1 900000000000207008 309193002 54066008 1 118169006 900000000000011006 900000000000451002 +3525927024 20090131 1 900000000000207008 396805001 413675001 1 370133003 900000000000011006 900000000000451002 +3525964029 20090131 1 900000000000207008 434244002 430212007 1 118171006 900000000000011006 900000000000451002 +3526061027 20090131 1 900000000000207008 122663001 287847009 1 118171006 900000000000011006 900000000000451002 +3526062023 20090131 1 900000000000207008 122663001 413675001 1 370133003 900000000000011006 900000000000451002 +3526063029 20090131 1 900000000000207008 122663001 73239005 1 118169006 900000000000011006 900000000000451002 +3526132026 20090131 1 900000000000207008 258456000 11311000 1 370133003 900000000000011006 900000000000451002 +3526220020 20090131 1 900000000000207008 122593002 413675001 1 370133003 900000000000011006 900000000000451002 +3526250028 20090131 1 900000000000207008 432910000 117590005 1 118169006 900000000000011006 900000000000451002 +3526251029 20090131 1 900000000000207008 432910000 128393005 1 118171006 900000000000011006 900000000000451002 +3526282025 20090131 1 900000000000207008 432146008 39258002 1 118171006 900000000000011006 900000000000451002 +3526283024 20090131 1 900000000000207008 432146008 89679009 1 118169006 900000000000011006 900000000000451002 +3526314021 20090131 1 900000000000207008 122614000 432231006 1 118171006 900000000000011006 900000000000451002 +3526323024 20090131 1 900000000000207008 373102004 413675001 1 370133003 900000000000011006 900000000000451002 +3526324029 20090131 1 900000000000207008 373102004 44578009 1 118171006 900000000000011006 900000000000451002 +3526458022 20090131 1 900000000000207008 122682005 413675001 1 370133003 900000000000011006 900000000000451002 +3526497025 20090131 1 900000000000207008 258564008 303995001 1 118171006 900000000000011006 900000000000451002 +3526497025 20090731 0 900000000000207008 258564008 303995001 1 118171006 900000000000011006 900000000000451002 +3526497025 20110731 1 900000000000207008 258564008 303995001 1 118171006 900000000000011006 900000000000451002 +3526528025 20090131 1 900000000000207008 127457009 413675001 1 370133003 900000000000011006 900000000000451002 +3526561021 20090131 1 900000000000207008 432059003 119285001 1 118171006 900000000000011006 900000000000451002 +3526562025 20090131 1 900000000000207008 432059003 35039007 1 118169006 900000000000011006 900000000000451002 +3526580023 20090131 1 900000000000207008 309073008 86273004 1 118171006 900000000000011006 900000000000451002 +3526604020 20090131 1 900000000000207008 258448003 6085005 1 370133003 900000000000011006 900000000000451002 +3526604020 20170731 0 900000000000207008 258448003 6085005 1 370133003 900000000000011006 900000000000451002 +3526668021 20090131 1 900000000000207008 432984003 69748006 1 118169006 900000000000011006 900000000000451002 +3526669029 20090131 1 900000000000207008 432984003 24788003 1 118171006 900000000000011006 900000000000451002 +3526703020 20090131 1 900000000000207008 309186001 413675001 1 370133003 900000000000011006 900000000000451002 +3526727022 20090131 1 900000000000207008 399649002 413675001 1 370133003 900000000000011006 900000000000451002 +3526767023 20090131 1 900000000000207008 432057001 64739004 1 118169006 900000000000011006 900000000000451002 +3526767023 20090731 0 900000000000207008 432057001 64739004 1 118169006 900000000000011006 900000000000451002 +3526767023 20100131 1 900000000000207008 432057001 64739004 1 118169006 900000000000011006 900000000000451002 +3526797026 20090131 1 900000000000207008 122706001 413675001 1 370133003 900000000000011006 900000000000451002 +3526797026 20110731 0 900000000000207008 122706001 413675001 1 370133003 900000000000011006 900000000000451002 +3526823026 20090131 1 900000000000207008 431412004 430230000 1 118171006 900000000000011006 900000000000451002 +3526824021 20090131 1 900000000000207008 431412004 22943007 1 118169006 900000000000011006 900000000000451002 +3526865021 20090131 1 900000000000207008 122644002 116229006 1 118171006 900000000000011006 900000000000451002 +3526866022 20090131 1 900000000000207008 122644002 413675001 1 370133003 900000000000011006 900000000000451002 +3526919024 20090131 1 900000000000207008 119361006 87612001 0 370133003 900000000000011006 900000000000451002 +3526919024 20090731 0 900000000000207008 119361006 87612001 0 370133003 900000000000011006 900000000000451002 +3526982024 20090131 1 900000000000207008 397136001 413675001 1 370133003 900000000000011006 900000000000451002 +3527113025 20090131 1 900000000000207008 258452003 113276009 1 118169006 900000000000011006 900000000000451002 +3527113025 20100131 0 900000000000207008 258452003 113276009 1 118169006 900000000000011006 900000000000451002 +3527113025 20100731 1 900000000000207008 258452003 113276009 1 118169006 900000000000011006 900000000000451002 +3527276023 20090131 1 900000000000207008 122573005 69695003 1 118169006 900000000000011006 900000000000451002 +3527336027 20090131 1 900000000000207008 373103009 413675001 1 370133003 900000000000011006 900000000000451002 +3527399020 20090131 1 900000000000207008 309187005 413675001 1 370133003 900000000000011006 900000000000451002 +3527399020 20110731 0 900000000000207008 309187005 413675001 1 370133003 900000000000011006 900000000000451002 +3527431020 20090131 1 900000000000207008 309184003 431066004 1 118171006 900000000000011006 900000000000451002 +3527438025 20090131 1 900000000000207008 127468009 413675001 1 370133003 900000000000011006 900000000000451002 +3527486021 20090131 1 900000000000207008 433860001 2095001 1 118169006 900000000000011006 900000000000451002 +3527487028 20090131 1 900000000000207008 433860001 86823009 1 118171006 900000000000011006 900000000000451002 +3527570027 20090131 1 900000000000207008 122664007 413675001 1 370133003 900000000000011006 900000000000451002 +3527617028 20090131 1 900000000000207008 373101006 413675001 1 370133003 900000000000011006 900000000000451002 +3527617028 20090731 0 900000000000207008 373101006 413675001 1 370133003 900000000000011006 900000000000451002 +3527742026 20090131 1 900000000000207008 127464006 413675001 1 370133003 900000000000011006 900000000000451002 +3527771025 20090131 1 900000000000207008 309286008 413675001 1 370133003 900000000000011006 900000000000451002 +3527870021 20090131 1 900000000000207008 122632000 69695003 1 118169006 900000000000011006 900000000000451002 +3527887023 20090131 1 900000000000207008 309177006 39607008 1 118169006 900000000000011006 900000000000451002 +3527887023 20110731 0 900000000000207008 309177006 39607008 1 118169006 900000000000011006 900000000000451002 +3527888029 20090131 1 900000000000207008 309177006 386147002 1 118171006 900000000000011006 900000000000451002 +3527888029 20110731 0 900000000000207008 309177006 386147002 1 118171006 900000000000011006 900000000000451002 +3527894021 20090131 1 900000000000207008 433118002 82849001 1 118169006 900000000000011006 900000000000451002 +3527895022 20090131 1 900000000000207008 433118002 431051002 1 118171006 900000000000011006 900000000000451002 +3527953028 20090131 1 900000000000207008 122658000 413675001 1 370133003 900000000000011006 900000000000451002 +3528151028 20090131 1 900000000000207008 432134009 430107001 1 118171006 900000000000011006 900000000000451002 +3528271027 20090131 1 900000000000207008 432058006 127954009 1 118169006 900000000000011006 900000000000451002 +3528272023 20090131 1 900000000000207008 432058006 430213002 1 118171006 900000000000011006 900000000000451002 +3528314028 20090131 1 900000000000207008 127466008 413675001 1 370133003 900000000000011006 900000000000451002 +3528441021 20090131 1 900000000000207008 396685001 413675001 1 370133003 900000000000011006 900000000000451002 +3528467027 20090131 1 900000000000207008 122709008 413675001 1 370133003 900000000000011006 900000000000451002 +3528468021 20090131 1 900000000000207008 258553005 252670003 1 118171006 900000000000011006 900000000000451002 +3528525022 20090131 1 900000000000207008 399622002 413675001 1 370133003 900000000000011006 900000000000451002 +3528554027 20090131 1 900000000000207008 431697001 302332004 1 118171006 900000000000011006 900000000000451002 +3528555026 20090131 1 900000000000207008 431697001 2748008 1 118169006 900000000000011006 900000000000451002 +3528568023 20090131 1 900000000000207008 122662006 413675001 1 370133003 900000000000011006 900000000000451002 +3528571026 20090131 1 900000000000207008 309211008 69695003 1 118169006 900000000000011006 900000000000451002 +3528585020 20090131 1 900000000000207008 432060008 65343009 1 118171006 900000000000011006 900000000000451002 +3528585020 20090731 0 900000000000207008 432060008 65343009 1 118171006 900000000000011006 900000000000451002 +3528585020 20100131 1 900000000000207008 432060008 65343009 1 118171006 900000000000011006 900000000000451002 +3528586021 20090131 1 900000000000207008 432060008 35039007 1 118169006 900000000000011006 900000000000451002 +3528586021 20090731 0 900000000000207008 432060008 35039007 1 118169006 900000000000011006 900000000000451002 +3528586021 20100131 1 900000000000207008 432060008 35039007 1 118169006 900000000000011006 900000000000451002 +3528619028 20090131 1 900000000000207008 122667000 413675001 1 370133003 900000000000011006 900000000000451002 +3528707028 20090131 1 900000000000207008 258438000 47538007 1 118169006 900000000000011006 900000000000451002 +3528775021 20090131 1 900000000000207008 433861002 34456002 1 118171006 900000000000011006 900000000000451002 +3528866027 20090131 1 900000000000207008 258559009 386093002 1 370133003 900000000000011006 900000000000451002 +3528866027 20090731 0 900000000000207008 258559009 386093002 1 370133003 900000000000011006 900000000000451002 +3528866027 20100131 1 900000000000207008 258559009 386093002 1 370133003 900000000000011006 900000000000451002 +3528896021 20090131 1 900000000000207008 418932006 74262004 1 118169006 900000000000011006 900000000000451002 +3528937029 20090131 1 900000000000207008 309483002 48477009 1 118169006 900000000000011006 900000000000451002 +3528940029 20090131 1 900000000000207008 309484008 45289007 1 118169006 900000000000011006 900000000000451002 +3528940029 20090731 0 900000000000207008 309484008 45289007 1 118169006 900000000000011006 900000000000451002 +3529126024 20090131 1 900000000000207008 439580004 439579002 0 118170007 900000000000011006 900000000000451002 +3529126024 20130131 0 900000000000207008 439580004 439579002 0 118170007 900000000000011006 900000000000451002 +3529153023 20090131 1 900000000000207008 122711004 413675001 1 370133003 900000000000011006 900000000000451002 +3529163026 20090131 1 900000000000207008 432145007 1231004 1 118169006 900000000000011006 900000000000451002 +3529164021 20090131 1 900000000000207008 432145007 430112000 1 118171006 900000000000011006 900000000000451002 +3529170026 20090131 1 900000000000207008 309207002 15425007 1 118169006 900000000000011006 900000000000451002 +3529258023 20090131 1 900000000000207008 309210009 36213007 1 118171006 900000000000011006 900000000000451002 +3529275028 20090131 1 900000000000207008 122574004 38848004 1 118169006 900000000000011006 900000000000451002 +3529439028 20090131 1 900000000000207008 122712006 413675001 1 370133003 900000000000011006 900000000000451002 +3529439028 20110731 0 900000000000207008 122712006 413675001 1 370133003 900000000000011006 900000000000451002 +3529453028 20090131 1 900000000000207008 309482007 413675001 1 370133003 900000000000011006 900000000000451002 +3529545023 20090131 1 900000000000207008 258436001 413675001 1 370133003 900000000000011006 900000000000451002 +3529560021 20090131 1 900000000000207008 396273004 413675001 1 370133003 900000000000011006 900000000000451002 +3529580022 20090131 1 900000000000207008 309200000 413675001 1 370133003 900000000000011006 900000000000451002 +3529580022 20110731 0 900000000000207008 309200000 413675001 1 370133003 900000000000011006 900000000000451002 +3529664022 20090131 1 900000000000207008 439895009 119705002 1 118171006 900000000000011006 900000000000451002 +3529664022 20090731 0 900000000000207008 439895009 119705002 1 118171006 900000000000011006 900000000000451002 +3529664022 20110131 1 900000000000207008 439895009 119705002 1 118171006 900000000000011006 900000000000451002 +3529664022 20110731 0 900000000000207008 439895009 119705002 1 118171006 900000000000011006 900000000000451002 +3529678023 20090131 1 900000000000207008 432982004 430104008 1 118171006 900000000000011006 900000000000451002 +3529678023 20090731 0 900000000000207008 432982004 430104008 1 118171006 900000000000011006 900000000000451002 +3529678023 20100131 1 900000000000207008 432982004 430104008 1 118171006 900000000000011006 900000000000451002 +3529679026 20090131 1 900000000000207008 432982004 15425007 1 118169006 900000000000011006 900000000000451002 +3529679026 20090731 0 900000000000207008 432982004 15425007 1 118169006 900000000000011006 900000000000451002 +3529679026 20100131 1 900000000000207008 432982004 15425007 1 118169006 900000000000011006 900000000000451002 +3529702025 20090131 1 900000000000207008 258432004 1028005 1 118169006 900000000000011006 900000000000451002 +3529726028 20090131 1 900000000000207008 432385009 430229005 1 118171006 900000000000011006 900000000000451002 +3529769020 20090131 1 900000000000207008 434014007 119284002 1 118171006 900000000000011006 900000000000451002 +3529770021 20090131 1 900000000000207008 434014007 72410000 1 118169006 900000000000011006 900000000000451002 +3529804021 20090131 1 900000000000207008 309102001 429883000 1 118171006 900000000000011006 900000000000451002 +3529827029 20090131 1 900000000000207008 440675009 431491007 1 118169006 900000000000011006 900000000000451002 +3529827029 20090731 0 900000000000207008 440675009 431491007 1 118169006 900000000000011006 900000000000451002 +3529898026 20090131 1 900000000000207008 122618002 430860000 1 118171006 900000000000011006 900000000000451002 +3530023026 20090131 1 900000000000207008 122877000 44567001 1 118169006 900000000000011006 900000000000451002 +3530023026 20100731 0 900000000000207008 122877000 44567001 1 118169006 900000000000011006 900000000000451002 +3530023026 20110131 1 900000000000207008 122877000 44567001 1 118169006 900000000000011006 900000000000451002 +3530115026 20090131 1 900000000000207008 309204009 386147002 1 118171006 900000000000011006 900000000000451002 +3530115026 20110731 0 900000000000207008 309204009 386147002 1 118171006 900000000000011006 900000000000451002 +3530165024 20090131 1 900000000000207008 399672000 413675001 1 370133003 900000000000011006 900000000000451002 +3530166020 20090131 1 900000000000207008 433119005 385294005 1 118169006 900000000000011006 900000000000451002 +3530330025 20090131 1 900000000000207008 309486005 385296007 1 118169006 900000000000011006 900000000000451002 +3530330025 20090731 0 900000000000207008 309486005 385296007 1 118169006 900000000000011006 900000000000451002 +3530347029 20090131 1 900000000000207008 122646000 413675001 1 370133003 900000000000011006 900000000000451002 +3530372029 20090131 1 900000000000207008 309485009 88481005 1 118169006 900000000000011006 900000000000451002 +3530372029 20090731 0 900000000000207008 309485009 88481005 1 118169006 900000000000011006 900000000000451002 +3530441029 20090131 1 900000000000207008 122660003 413675001 1 370133003 900000000000011006 900000000000451002 +3530442020 20090131 1 900000000000207008 399440009 413675001 1 370133003 900000000000011006 900000000000451002 +3530632028 20090131 1 900000000000207008 309487001 413675001 1 370133003 900000000000011006 900000000000451002 +3530710026 20090131 1 900000000000207008 122730004 116169002 1 118171006 900000000000011006 900000000000451002 +3530710026 20140131 0 900000000000207008 122730004 116169002 1 118171006 900000000000011006 900000000000451002 +3530727023 20090131 1 900000000000207008 431234000 430123001 1 118171006 900000000000011006 900000000000451002 +3530728029 20090131 1 900000000000207008 431234000 55460000 1 118169006 900000000000011006 900000000000451002 +3530775029 20090131 1 900000000000207008 438352005 413675001 1 370133003 900000000000011006 900000000000451002 +3530775029 20090731 0 900000000000207008 438352005 413675001 1 370133003 900000000000011006 900000000000451002 +3530787020 20090131 1 900000000000207008 122686008 413675001 1 370133003 900000000000011006 900000000000451002 +3530824022 20090131 1 900000000000207008 119363009 87612001 0 370133003 900000000000011006 900000000000451002 +3530824022 20090731 0 900000000000207008 119363009 87612001 0 370133003 900000000000011006 900000000000451002 +3530855027 20090131 1 900000000000207008 309202008 386147002 1 118171006 900000000000011006 900000000000451002 +3530855027 20110731 0 900000000000207008 309202008 386147002 1 118171006 900000000000011006 900000000000451002 +3530917022 20090131 1 900000000000207008 119362004 87612001 0 370133003 900000000000011006 900000000000451002 +3530917022 20090731 0 900000000000207008 119362004 87612001 0 370133003 900000000000011006 900000000000451002 +3531099025 20090131 1 900000000000207008 258434003 431938005 1 118169006 900000000000011006 900000000000451002 +3531100022 20090131 1 900000000000207008 258434003 85457002 1 118171006 900000000000011006 900000000000451002 +3531101021 20090131 1 900000000000207008 258434003 386100006 1 370133003 900000000000011006 900000000000451002 +3531112021 20090131 1 900000000000207008 258549008 413675001 1 370133003 900000000000011006 900000000000451002 +3531247022 20090131 1 900000000000207008 122732007 413675001 1 370133003 900000000000011006 900000000000451002 +3531292026 20090131 1 900000000000207008 409876003 430865005 1 370133003 900000000000011006 900000000000451002 +3531292026 20100131 0 900000000000207008 409876003 430865005 1 370133003 900000000000011006 900000000000451002 +3531338028 20090131 1 900000000000207008 258545002 17401000 1 118169006 900000000000011006 900000000000451002 +3531338028 20090731 0 900000000000207008 258545002 17401000 1 118169006 900000000000011006 900000000000451002 +3531480028 20090131 1 900000000000207008 122661004 413675001 1 370133003 900000000000011006 900000000000451002 +3531520027 20090131 1 900000000000207008 399542003 413675001 1 370133003 900000000000011006 900000000000451002 +3531522024 20090131 1 900000000000207008 309078004 413675001 1 370133003 900000000000011006 900000000000451002 +3531579028 20090131 1 900000000000207008 258430007 413675001 1 370133003 900000000000011006 900000000000451002 +3531781028 20090131 1 900000000000207008 122626005 116218007 1 118171006 900000000000011006 900000000000451002 +3531891026 20090131 1 900000000000207008 432143000 18911002 1 118169006 900000000000011006 900000000000451002 +3531891026 20090731 0 900000000000207008 432143000 18911002 1 118169006 900000000000011006 900000000000451002 +3531891026 20100131 1 900000000000207008 432143000 18911002 1 118169006 900000000000011006 900000000000451002 +3531896020 20090131 1 900000000000207008 110897001 413679007 1 370133003 900000000000011006 900000000000451002 +3531896020 20180731 0 900000000000207008 110897001 413679007 1 370133003 900000000000011006 900000000000451002 +3531897027 20090131 1 900000000000207008 110897001 14016003 1 118169006 900000000000011006 900000000000451002 +3531897027 20180731 0 900000000000207008 110897001 14016003 1 118169006 900000000000011006 900000000000451002 +3531943026 20090131 1 900000000000207008 399640003 413675001 1 370133003 900000000000011006 900000000000451002 +3531944021 20090131 1 900000000000207008 432608000 53912006 1 118169006 900000000000011006 900000000000451002 +3531945022 20090131 1 900000000000207008 432608000 430251002 1 118171006 900000000000011006 900000000000451002 +3531979023 20090131 1 900000000000207008 258426009 413675001 1 370133003 900000000000011006 900000000000451002 +3531992021 20090131 1 900000000000207008 122715008 413675001 1 370133003 900000000000011006 900000000000451002 +3532021023 20090131 1 900000000000207008 309271002 429894001 1 118171006 900000000000011006 900000000000451002 +3532070022 20090131 1 900000000000207008 309274005 413675001 1 370133003 900000000000011006 900000000000451002 +3532120021 20090131 1 900000000000207008 309277003 13648007 1 118169006 900000000000011006 900000000000451002 +3532120021 20090731 0 900000000000207008 309277003 13648007 1 118169006 900000000000011006 900000000000451002 +3532156024 20090131 1 900000000000207008 258420003 413675001 1 370133003 900000000000011006 900000000000451002 +3532197028 20090131 1 900000000000207008 128175003 413675001 1 370133003 900000000000011006 900000000000451002 +3532266020 20090131 1 900000000000207008 278020009 431938005 1 118169006 900000000000011006 900000000000451002 +3532393021 20090131 1 900000000000207008 309168004 413675001 1 370133003 900000000000011006 900000000000451002 +3532402021 20090131 1 900000000000207008 258424007 413675001 1 370133003 900000000000011006 900000000000451002 +3532415028 20090131 1 900000000000207008 309079007 59441001 1 118169006 900000000000011006 900000000000451002 +3532415028 20090731 0 900000000000207008 309079007 59441001 1 118169006 900000000000011006 900000000000451002 +3532425022 20090131 1 900000000000207008 309264007 413675001 1 370133003 900000000000011006 900000000000451002 +3532425022 20100131 0 900000000000207008 309264007 413675001 1 370133003 900000000000011006 900000000000451002 +3532425022 20100731 1 900000000000207008 309264007 413675001 1 370133003 900000000000011006 900000000000451002 +3532450020 20090131 1 900000000000207008 399741007 413675001 1 370133003 900000000000011006 900000000000451002 +3532462024 20090131 1 900000000000207008 309191000 17861009 1 118169006 900000000000011006 900000000000451002 +3532462024 20090731 0 900000000000207008 309191000 17861009 1 118169006 900000000000011006 900000000000451002 +3532462024 20100131 1 900000000000207008 309191000 17861009 1 118169006 900000000000011006 900000000000451002 +3532592028 20090131 1 900000000000207008 122698003 413675001 1 370133003 900000000000011006 900000000000451002 +3532713023 20090131 1 900000000000207008 122598006 413675001 1 370133003 900000000000011006 900000000000451002 +3532714028 20090131 1 900000000000207008 122598006 69031006 1 118171006 900000000000011006 900000000000451002 +3532714028 20220731 0 900000000000207008 122598006 69031006 1 118171006 900000000000011006 900000000000451002 +3532756029 20090131 1 900000000000207008 127482009 413675001 1 370133003 900000000000011006 900000000000451002 +3532766021 20090131 1 900000000000207008 309055005 64778000 1 370133003 900000000000011006 900000000000451002 +3532791021 20090131 1 900000000000207008 431889006 430223006 1 118171006 900000000000011006 900000000000451002 +3532801021 20090131 1 900000000000207008 433117007 61685007 1 118169006 900000000000011006 900000000000451002 +3532802025 20090131 1 900000000000207008 433117007 430233003 1 118171006 900000000000011006 900000000000451002 +3532865025 20090131 1 900000000000207008 406101006 413675001 1 370133003 900000000000011006 900000000000451002 +3532902029 20090131 1 900000000000207008 122625009 413675001 1 370133003 900000000000011006 900000000000451002 +3532903023 20090131 1 900000000000207008 122625009 430457001 1 118171006 900000000000011006 900000000000451002 +3532990027 20090131 1 900000000000207008 122637006 413675001 1 370133003 900000000000011006 900000000000451002 +3533053023 20090131 1 900000000000207008 396527000 413675001 1 370133003 900000000000011006 900000000000451002 +3533058025 20090131 1 900000000000207008 122636002 116209005 1 118169006 900000000000011006 900000000000451002 +3533269024 20090131 1 900000000000207008 439961009 40388003 0 118170007 900000000000011006 900000000000451002 +3533269024 20130131 0 900000000000207008 439961009 40388003 0 118170007 900000000000011006 900000000000451002 +3533282027 20090131 1 900000000000207008 309276007 413675001 1 370133003 900000000000011006 900000000000451002 +3533283021 20090131 1 900000000000207008 309276007 27204007 1 118171006 900000000000011006 900000000000451002 +3533283021 20200131 0 900000000000207008 309276007 27204007 1 118171006 900000000000011006 900000000000451002 +3533286029 20090131 1 900000000000207008 127483004 413675001 1 370133003 900000000000011006 900000000000451002 +3533488026 20090131 1 900000000000207008 309266009 413675001 1 370133003 900000000000011006 900000000000451002 +3533594021 20090131 1 900000000000207008 258417006 413675001 1 370133003 900000000000011006 900000000000451002 +3533618026 20090131 1 900000000000207008 432657002 71307009 1 118168003 900000000000011006 900000000000451002 +3533619023 20090131 1 900000000000207008 432657002 26107004 1 118169006 900000000000011006 900000000000451002 +3533649020 20090131 1 900000000000207008 309268005 431938005 1 118169006 900000000000011006 900000000000451002 +3533649020 20110731 0 900000000000207008 309268005 431938005 1 118169006 900000000000011006 900000000000451002 +3533650020 20090131 1 900000000000207008 363328006 413675001 1 370133003 900000000000011006 900000000000451002 +3533653022 20090131 1 900000000000207008 438543000 3860006 1 118169006 900000000000011006 900000000000451002 +3533653022 20090731 0 900000000000207008 438543000 3860006 1 118169006 900000000000011006 900000000000451002 +3533701024 20090131 1 900000000000207008 122620004 430927004 1 118171006 900000000000011006 900000000000451002 +3533701024 20231101 0 900000000000207008 122620004 430927004 1 118171006 900000000000011006 900000000000451002 +3533745024 20090131 1 900000000000207008 363329003 413675001 1 370133003 900000000000011006 900000000000451002 +3533746020 20090131 1 900000000000207008 363329003 20139000 1 118169006 900000000000011006 900000000000451002 +3533749029 20090131 1 900000000000207008 122665008 413675001 1 370133003 900000000000011006 900000000000451002 +3533846026 20090131 1 900000000000207008 258414004 413675001 1 370133003 900000000000011006 900000000000451002 +3533849022 20090131 1 900000000000207008 303248007 386147002 1 118171006 900000000000011006 900000000000451002 +3533849022 20090731 0 900000000000207008 303248007 386147002 1 118171006 900000000000011006 900000000000451002 +3533849022 20100131 1 900000000000207008 303248007 386147002 1 118171006 900000000000011006 900000000000451002 +3533849022 20110731 0 900000000000207008 303248007 386147002 1 118171006 900000000000011006 900000000000451002 +3533850022 20090131 1 900000000000207008 258590006 87612001 0 370133003 900000000000011006 900000000000451002 +3533850022 20090731 0 900000000000207008 258590006 87612001 0 370133003 900000000000011006 900000000000451002 +3533886023 20090131 1 900000000000207008 309263001 413675001 1 370133003 900000000000011006 900000000000451002 +3533887025 20090131 1 900000000000207008 309263001 41329004 1 118168003 900000000000011006 900000000000451002 +3533930024 20090131 1 900000000000207008 122699006 413675001 1 370133003 900000000000011006 900000000000451002 +3533930024 20150131 1 900000000000207008 122699006 413675001 2 370133003 900000000000011006 900000000000451002 +3533931023 20090131 1 900000000000207008 122699006 49755003 1 118168003 900000000000011006 900000000000451002 +3533931023 20150131 0 900000000000207008 122699006 49755003 1 118168003 900000000000011006 900000000000451002 +3533972020 20090131 1 900000000000207008 432136006 45292006 1 118169006 900000000000011006 900000000000451002 +3533972020 20090731 0 900000000000207008 432136006 45292006 1 118169006 900000000000011006 900000000000451002 +3533972020 20100131 1 900000000000207008 432136006 45292006 1 118169006 900000000000011006 900000000000451002 +3533973026 20090131 1 900000000000207008 432136006 430106005 1 118171006 900000000000011006 900000000000451002 +3533973026 20090731 0 900000000000207008 432136006 430106005 1 118171006 900000000000011006 900000000000451002 +3533973026 20100131 1 900000000000207008 432136006 430106005 1 118171006 900000000000011006 900000000000451002 +3534067024 20090131 1 900000000000207008 431406009 392157001 1 118171006 900000000000011006 900000000000451002 +3534067024 20090731 0 900000000000207008 431406009 392157001 1 118171006 900000000000011006 900000000000451002 +3534067024 20100131 1 900000000000207008 431406009 392157001 1 118171006 900000000000011006 900000000000451002 +3534068025 20090131 1 900000000000207008 431406009 15776009 1 118169006 900000000000011006 900000000000451002 +3534068025 20090731 0 900000000000207008 431406009 15776009 1 118169006 900000000000011006 900000000000451002 +3534068025 20100131 1 900000000000207008 431406009 15776009 1 118169006 900000000000011006 900000000000451002 +3534097027 20090131 1 900000000000207008 258419009 413675001 1 370133003 900000000000011006 900000000000451002 +3534104028 20090131 1 900000000000207008 432139004 230842002 1 118171006 900000000000011006 900000000000451002 +3534105027 20090131 1 900000000000207008 432139004 12738006 1 118169006 900000000000011006 900000000000451002 +3534144024 20090131 1 900000000000207008 258418001 413675001 1 370133003 900000000000011006 900000000000451002 +3534153028 20090131 1 900000000000207008 309285007 413675001 1 370133003 900000000000011006 900000000000451002 +3534179021 20090131 1 900000000000207008 258529004 312880001 1 118171006 900000000000011006 900000000000451002 +3534201029 20090131 1 900000000000207008 258422006 413675001 1 370133003 900000000000011006 900000000000451002 +3534303029 20090131 1 900000000000207008 258412000 72869002 1 370133003 900000000000011006 900000000000451002 +3534303029 20110131 0 900000000000207008 258412000 72869002 1 370133003 900000000000011006 900000000000451002 +3534333020 20090131 1 900000000000207008 438960000 360499006 0 118169006 900000000000011006 900000000000451002 +3534333020 20190731 1 900000000000207008 438960000 360499006 1 118169006 900000000000011006 900000000000451002 +3534384021 20090131 1 900000000000207008 385339004 413675001 1 370133003 900000000000011006 900000000000451002 +3534398029 20090131 1 900000000000207008 432098008 235542006 1 118171006 900000000000011006 900000000000451002 +3534398029 20090731 0 900000000000207008 432098008 235542006 1 118171006 900000000000011006 900000000000451002 +3534398029 20100131 1 900000000000207008 432098008 235542006 1 118171006 900000000000011006 900000000000451002 +3534399021 20090131 1 900000000000207008 432098008 28273000 1 118169006 900000000000011006 900000000000451002 +3534399021 20090731 0 900000000000207008 432098008 28273000 1 118169006 900000000000011006 900000000000451002 +3534399021 20100131 1 900000000000207008 432098008 28273000 1 118169006 900000000000011006 900000000000451002 +3534425023 20090131 1 900000000000207008 399512001 413675001 1 370133003 900000000000011006 900000000000451002 +3534469027 20090131 1 900000000000207008 432141003 111002 1 118169006 900000000000011006 900000000000451002 +3534470026 20090131 1 900000000000207008 432141003 431054005 1 118171006 900000000000011006 900000000000451002 +3534482024 20090131 1 900000000000207008 431884001 235523007 1 118171006 900000000000011006 900000000000451002 +3534482024 20090731 0 900000000000207008 431884001 235523007 1 118171006 900000000000011006 900000000000451002 +3534482024 20100131 1 900000000000207008 431884001 235523007 1 118171006 900000000000011006 900000000000451002 +3534482024 20110731 0 900000000000207008 431884001 235523007 1 118171006 900000000000011006 900000000000451002 +3534483025 20090131 1 900000000000207008 431884001 28231008 1 118169006 900000000000011006 900000000000451002 +3534483025 20090731 0 900000000000207008 431884001 28231008 1 118169006 900000000000011006 900000000000451002 +3534483025 20100131 1 900000000000207008 431884001 28231008 1 118169006 900000000000011006 900000000000451002 +3534483025 20110731 0 900000000000207008 431884001 28231008 1 118169006 900000000000011006 900000000000451002 +3534552026 20090131 1 900000000000207008 122635003 413675001 1 370133003 900000000000011006 900000000000451002 +3534553020 20090131 1 900000000000207008 122635003 69695003 1 118169006 900000000000011006 900000000000451002 +3534596026 20090131 1 900000000000207008 433760005 32534001 1 118171006 900000000000011006 900000000000451002 +3534597024 20090131 1 900000000000207008 433760005 78961009 1 118169006 900000000000011006 900000000000451002 +3534674026 20090131 1 900000000000207008 122670001 10106002 1 118171006 900000000000011006 900000000000451002 +3534718026 20090131 1 900000000000207008 309179009 413675001 1 370133003 900000000000011006 900000000000451002 +3534719023 20090131 1 900000000000207008 309179009 41329004 1 118168003 900000000000011006 900000000000451002 +3534787028 20090131 1 900000000000207008 122666009 413675001 1 370133003 900000000000011006 900000000000451002 +3534825025 20090131 1 900000000000207008 438659007 413675001 1 370133003 900000000000011006 900000000000451002 +3534825025 20090731 0 900000000000207008 438659007 413675001 1 370133003 900000000000011006 900000000000451002 +3534839025 20090131 1 900000000000207008 309176002 80657008 1 118171006 900000000000011006 900000000000451002 +3534910029 20090131 1 900000000000207008 122595009 413675001 1 370133003 900000000000011006 900000000000451002 +3534911025 20090131 1 900000000000207008 432981006 81745001 1 118169006 900000000000011006 900000000000451002 +3534912021 20090131 1 900000000000207008 432981006 430110008 1 118171006 900000000000011006 900000000000451002 +3534925029 20090131 1 900000000000207008 434249007 117590005 1 118169006 900000000000011006 900000000000451002 +3534926028 20090131 1 900000000000207008 434249007 430116002 1 118171006 900000000000011006 900000000000451002 +3534929024 20090131 1 900000000000207008 431405008 15497006 1 118169006 900000000000011006 900000000000451002 +3534929024 20090731 0 900000000000207008 431405008 15497006 1 118169006 900000000000011006 900000000000451002 +3534929024 20100131 1 900000000000207008 431405008 15497006 1 118169006 900000000000011006 900000000000451002 +3534999027 20090131 1 900000000000207008 397326000 120053002 1 118171006 900000000000011006 900000000000451002 +3535157024 20090131 1 900000000000207008 122600000 413675001 1 370133003 900000000000011006 900000000000451002 +3535167025 20090131 1 900000000000207008 434140003 430105009 1 118171006 900000000000011006 900000000000451002 +3535198028 20090131 1 900000000000207008 127472008 122489005 1 118169006 900000000000011006 900000000000451002 +3535199020 20090131 1 900000000000207008 127472008 413675001 1 370133003 900000000000011006 900000000000451002 +3535389024 20090131 1 900000000000207008 309057002 386147002 1 118171006 900000000000011006 900000000000451002 +3535389024 20110731 0 900000000000207008 309057002 386147002 1 118171006 900000000000011006 900000000000451002 +3535390026 20090131 1 900000000000207008 127474009 413675001 1 370133003 900000000000011006 900000000000451002 +3535469024 20090131 1 900000000000207008 438803004 82849001 1 118169006 900000000000011006 900000000000451002 +3535469024 20090731 0 900000000000207008 438803004 82849001 1 118169006 900000000000011006 900000000000451002 +3535482027 20090131 1 900000000000207008 122648004 413675001 1 370133003 900000000000011006 900000000000451002 +3535482027 20170731 0 900000000000207008 122648004 413675001 1 370133003 900000000000011006 900000000000451002 +3535537029 20090131 1 900000000000207008 438805006 302214001 0 118169006 900000000000011006 900000000000451002 +3535537029 20190731 1 900000000000207008 438805006 302214001 1 118169006 900000000000011006 900000000000451002 +3535554021 20090131 1 900000000000207008 433115004 431052009 1 118171006 900000000000011006 900000000000451002 +3535554021 20090731 0 900000000000207008 433115004 431052009 1 118171006 900000000000011006 900000000000451002 +3535554021 20100131 1 900000000000207008 433115004 431052009 1 118171006 900000000000011006 900000000000451002 +3535633020 20090131 1 900000000000207008 309182004 4596009 1 118169006 900000000000011006 900000000000451002 +3535634025 20090131 1 900000000000207008 309182004 433014002 1 118171006 900000000000011006 900000000000451002 +3535648025 20090131 1 900000000000207008 432986001 86273004 1 118171006 900000000000011006 900000000000451002 +3535649022 20090131 1 900000000000207008 432986001 38199008 1 118169006 900000000000011006 900000000000451002 +3535718020 20090131 1 900000000000207008 309169007 44567001 1 118169006 900000000000011006 900000000000451002 +3535724025 20090131 1 900000000000207008 433854001 76311002 1 118171006 900000000000011006 900000000000451002 +3535759025 20090131 1 900000000000207008 258407001 413675001 1 370133003 900000000000011006 900000000000451002 +3535770021 20090131 1 900000000000207008 433873002 49957000 1 118169006 900000000000011006 900000000000451002 +3535771020 20090131 1 900000000000207008 433873002 54133007 1 118171006 900000000000011006 900000000000451002 +3535938025 20090131 1 900000000000207008 122713001 413675001 1 370133003 900000000000011006 900000000000451002 +3535939022 20090131 1 900000000000207008 122713001 29672006 1 118171006 900000000000011006 900000000000451002 +3535940024 20090131 1 900000000000207008 122713001 20837000 1 118169006 900000000000011006 900000000000451002 +3536058021 20090131 1 900000000000207008 431413009 279603000 1 118169006 900000000000011006 900000000000451002 +3536059029 20090131 1 900000000000207008 431413009 52732006 1 118171006 900000000000011006 900000000000451002 +3536106028 20090131 1 900000000000207008 258526006 397158004 1 118169006 900000000000011006 900000000000451002 +3536139025 20090131 1 900000000000207008 399447007 413675001 1 370133003 900000000000011006 900000000000451002 +3536146023 20090131 1 900000000000207008 431205006 265607007 1 118171006 900000000000011006 900000000000451002 +3536147025 20090131 1 900000000000207008 431205006 87644002 1 118169006 900000000000011006 900000000000451002 +3536158023 20090131 1 900000000000207008 309068002 39937001 1 118169006 900000000000011006 900000000000451002 +3536172025 20090131 1 900000000000207008 309059004 27204007 1 118171006 900000000000011006 900000000000451002 +3536172025 20200131 0 900000000000207008 309059004 27204007 1 118171006 900000000000011006 900000000000451002 +3536197026 20090131 1 900000000000207008 431235004 44567001 1 118169006 900000000000011006 900000000000451002 +3536206020 20090131 1 900000000000207008 127478007 413675001 1 370133003 900000000000011006 900000000000451002 +3536242028 20090131 1 900000000000207008 309288009 413675001 1 370133003 900000000000011006 900000000000451002 +3536269027 20090131 1 900000000000207008 309289001 236897002 1 118171006 900000000000011006 900000000000451002 +3536270026 20090131 1 900000000000207008 309289001 413675001 1 370133003 900000000000011006 900000000000451002 +3536272023 20090131 1 900000000000207008 119341000 34707002 1 118169006 900000000000011006 900000000000451002 +3536272023 20100131 0 900000000000207008 119341000 34707002 1 118169006 900000000000011006 900000000000451002 +3536272023 20100731 1 900000000000207008 119341000 34707002 1 118169006 900000000000011006 900000000000451002 +3536272023 20110731 0 900000000000207008 119341000 34707002 1 118169006 900000000000011006 900000000000451002 +3536292027 20090131 1 900000000000207008 258517008 75279004 1 118169006 900000000000011006 900000000000451002 +3536317024 20090131 1 900000000000207008 432865002 12552005 1 118171006 900000000000011006 900000000000451002 +3536366021 20090131 1 900000000000207008 385338007 413675001 1 370133003 900000000000011006 900000000000451002 +3536400027 20090131 1 900000000000207008 122647009 413675001 1 370133003 900000000000011006 900000000000451002 +3536451022 20090131 1 900000000000207008 127470000 413675001 1 370133003 900000000000011006 900000000000451002 +3536454025 20090131 1 900000000000207008 399467003 413675001 1 370133003 900000000000011006 900000000000451002 +3536603024 20090131 1 900000000000207008 438804005 413675001 1 370133003 900000000000011006 900000000000451002 +3536603024 20090731 0 900000000000207008 438804005 413675001 1 370133003 900000000000011006 900000000000451002 +3536629024 20090131 1 900000000000207008 399484009 413675001 1 370133003 900000000000011006 900000000000451002 +3536694021 20090131 1 900000000000207008 258571003 420051002 1 370133003 900000000000011006 900000000000451002 +3536694021 20100731 0 900000000000207008 258571003 420051002 1 370133003 900000000000011006 900000000000451002 +3536694021 20110131 1 900000000000207008 258571003 420051002 1 370133003 900000000000011006 900000000000451002 +3536702023 20090131 1 900000000000207008 399713008 413675001 1 370133003 900000000000011006 900000000000451002 +3536716029 20090131 1 900000000000207008 440515008 49755003 1 118168003 900000000000011006 900000000000451002 +3536716029 20090731 0 900000000000207008 440515008 49755003 1 118168003 900000000000011006 900000000000451002 +3536727027 20090131 1 900000000000207008 309058007 413675001 1 370133003 900000000000011006 900000000000451002 +3536742029 20090131 1 900000000000207008 122627001 413675001 1 370133003 900000000000011006 900000000000451002 +3536760029 20090131 1 900000000000207008 258575007 431938005 1 118169006 900000000000011006 900000000000451002 +3536820021 20090131 1 900000000000207008 258576008 48367006 1 118169006 900000000000011006 900000000000451002 +3536820021 20100131 0 900000000000207008 258576008 48367006 1 118169006 900000000000011006 900000000000451002 +3536820021 20100731 1 900000000000207008 258576008 48367006 1 118169006 900000000000011006 900000000000451002 +3536820021 20110131 0 900000000000207008 258576008 48367006 1 118169006 900000000000011006 900000000000451002 +3536889024 20090131 1 900000000000207008 127481002 413675001 1 370133003 900000000000011006 900000000000451002 +3536896021 20090131 1 900000000000207008 309170008 413675001 1 370133003 900000000000011006 900000000000451002 +3536907022 20090131 1 900000000000207008 309174004 955009 1 118169006 900000000000011006 900000000000451002 +3536990025 20090131 1 900000000000207008 432099000 50980006 1 118171006 900000000000011006 900000000000451002 +3536990025 20090731 0 900000000000207008 432099000 50980006 1 118171006 900000000000011006 900000000000451002 +3536990025 20100131 1 900000000000207008 432099000 50980006 1 118171006 900000000000011006 900000000000451002 +3537002023 20090131 1 900000000000207008 258514001 119230000 1 118169006 900000000000011006 900000000000451002 +3537019020 20090131 1 900000000000207008 399624001 413675001 1 370133003 900000000000011006 900000000000451002 +3537029029 20090131 1 900000000000207008 119328004 72705000 1 118170007 900000000000011006 900000000000451002 +3537029029 20100731 0 900000000000207008 119328004 72705000 1 118170007 900000000000011006 900000000000451002 +3537035029 20090131 1 900000000000207008 440229008 276339004 0 118170007 900000000000011006 900000000000451002 +3537035029 20190731 1 900000000000207008 440229008 276339004 1 118170007 900000000000011006 900000000000451002 +3537099021 20090131 1 900000000000207008 438595008 32457005 1 370133003 900000000000011006 900000000000451002 +3537099021 20090731 0 900000000000207008 438595008 32457005 1 370133003 900000000000011006 900000000000451002 +3537112025 20090131 1 900000000000207008 432985002 79755009 1 118171006 900000000000011006 900000000000451002 +3537112025 20090731 0 900000000000207008 432985002 79755009 1 118171006 900000000000011006 900000000000451002 +3537112025 20100131 1 900000000000207008 432985002 79755009 1 118171006 900000000000011006 900000000000451002 +3537165021 20090131 1 900000000000207008 258572005 182750009 1 118171006 900000000000011006 900000000000451002 +3537167029 20090131 1 900000000000207008 127480001 413675001 1 370133003 900000000000011006 900000000000451002 +3537171026 20090131 1 900000000000207008 122880004 431938005 1 118169006 900000000000011006 900000000000451002 +3537215023 20090131 1 900000000000207008 373192005 413675001 1 370133003 900000000000011006 900000000000451002 +3537215023 20100731 0 900000000000207008 373192005 413675001 1 370133003 900000000000011006 900000000000451002 +3537215023 20110131 1 900000000000207008 373192005 413675001 1 370133003 900000000000011006 900000000000451002 +3537216024 20090131 1 900000000000207008 373192005 68171009 1 118169006 900000000000011006 900000000000451002 +3537216024 20100731 0 900000000000207008 373192005 68171009 1 118169006 900000000000011006 900000000000451002 +3537216024 20110131 1 900000000000207008 373192005 68171009 1 118169006 900000000000011006 900000000000451002 +3537269020 20090131 1 900000000000207008 397111007 413675001 1 370133003 900000000000011006 900000000000451002 +3537273023 20090131 1 900000000000207008 122649007 413675001 1 370133003 900000000000011006 900000000000451002 +3537274028 20090131 1 900000000000207008 122649007 485005 1 118169006 900000000000011006 900000000000451002 +3537308028 20090131 1 900000000000207008 432097003 274373006 1 118171006 900000000000011006 900000000000451002 +3537309020 20090131 1 900000000000207008 432097003 51114001 1 118169006 900000000000011006 900000000000451002 +3537334020 20090131 1 900000000000207008 309173005 243685008 1 118171006 900000000000011006 900000000000451002 +3537334020 20110731 0 900000000000207008 309173005 243685008 1 118171006 900000000000011006 900000000000451002 +3537335021 20090131 1 900000000000207008 309173005 955009 1 118169006 900000000000011006 900000000000451002 +3537335021 20110731 0 900000000000207008 309173005 955009 1 118169006 900000000000011006 900000000000451002 +3537336022 20090131 1 900000000000207008 122597001 119184005 1 118169006 900000000000011006 900000000000451002 +3537337029 20090131 1 900000000000207008 122597001 413675001 1 370133003 900000000000011006 900000000000451002 +3537338023 20090131 1 900000000000207008 122597001 69031006 1 118171006 900000000000011006 900000000000451002 +3537338023 20220731 0 900000000000207008 122597001 69031006 1 118171006 900000000000011006 900000000000451002 +3537380022 20090131 1 900000000000207008 256889002 64778000 1 370133003 900000000000011006 900000000000451002 +3537380022 20170731 0 900000000000207008 256889002 64778000 1 370133003 900000000000011006 900000000000451002 +3537435022 20090131 1 900000000000207008 276833005 431938005 1 118169006 900000000000011006 900000000000451002 +3537485029 20090131 1 900000000000207008 432144006 72410000 1 118169006 900000000000011006 900000000000451002 +3537531027 20090131 1 900000000000207008 122714007 413675001 1 370133003 900000000000011006 900000000000451002 +3537535020 20090131 1 900000000000207008 258574006 431938005 1 118169006 900000000000011006 900000000000451002 +3546927021 20090131 1 900000000000207008 122629003 413675001 1 370133003 900000000000011006 900000000000451002 +3546934023 20090131 1 900000000000207008 432980007 87644002 1 118169006 900000000000011006 900000000000451002 +3546934023 20090731 0 900000000000207008 432980007 87644002 1 118169006 900000000000011006 900000000000451002 +3546934023 20100131 1 900000000000207008 432980007 87644002 1 118169006 900000000000011006 900000000000451002 +3546976026 20090131 1 900000000000207008 119325001 413675001 1 370133003 900000000000011006 900000000000451002 +3547001025 20090131 1 900000000000207008 433859006 53912006 1 118169006 900000000000011006 900000000000451002 +3547042027 20090131 1 900000000000207008 399731009 41329004 1 118168003 900000000000011006 900000000000451002 +3547071026 20090131 1 900000000000207008 399693002 413675001 1 370133003 900000000000011006 900000000000451002 +3547078021 20090131 1 900000000000207008 122651006 413675001 1 370133003 900000000000011006 900000000000451002 +3547119021 20090131 1 900000000000207008 430309006 64778000 1 370133003 900000000000011006 900000000000451002 +3547134026 20090131 1 900000000000207008 167870008 74670003 1 118169006 900000000000011006 900000000000451002 +3547134026 20110131 0 900000000000207008 167870008 74670003 1 118169006 900000000000011006 900000000000451002 +3547134026 20110731 1 900000000000207008 167870008 74670003 1 118169006 900000000000011006 900000000000451002 +3547134026 20170731 0 900000000000207008 167870008 74670003 1 118169006 900000000000011006 900000000000451002 +3547171029 20090131 1 900000000000207008 431696005 430111007 1 118171006 900000000000011006 900000000000451002 +3547171029 20090731 0 900000000000207008 431696005 430111007 1 118171006 900000000000011006 900000000000451002 +3547171029 20100131 1 900000000000207008 431696005 430111007 1 118171006 900000000000011006 900000000000451002 +3547182021 20090131 1 900000000000207008 397199005 119184005 1 118169006 900000000000011006 900000000000451002 +3547182021 20200731 0 900000000000207008 397199005 119184005 1 118169006 900000000000011006 900000000000451002 +3547238024 20090131 1 900000000000207008 122717000 43981004 1 118169006 900000000000011006 900000000000451002 +3547414023 20090131 1 900000000000207008 415563002 413675001 1 370133003 900000000000011006 900000000000451002 +3547554023 20090131 1 900000000000207008 167869007 16953009 1 118169006 900000000000011006 900000000000451002 +3547554023 20110131 0 900000000000207008 167869007 16953009 1 118169006 900000000000011006 900000000000451002 +3547554023 20110731 1 900000000000207008 167869007 16953009 1 118169006 900000000000011006 900000000000451002 +3547554023 20170731 0 900000000000207008 167869007 16953009 1 118169006 900000000000011006 900000000000451002 +3547628023 20090131 1 900000000000207008 399752001 413675001 1 370133003 900000000000011006 900000000000451002 +3547725026 20090131 1 900000000000207008 258484005 413675001 1 370133003 900000000000011006 900000000000451002 +3547786027 20090131 1 900000000000207008 167875003 70258002 1 118169006 900000000000011006 900000000000451002 +3547786027 20110131 0 900000000000207008 167875003 70258002 1 118169006 900000000000011006 900000000000451002 +3547786027 20110731 1 900000000000207008 167875003 70258002 1 118169006 900000000000011006 900000000000451002 +3547786027 20170731 0 900000000000207008 167875003 70258002 1 118169006 900000000000011006 900000000000451002 +3547810023 20090131 1 900000000000207008 369616003 413675001 1 370133003 900000000000011006 900000000000451002 +3547889026 20090131 1 900000000000207008 432441006 386152007 1 118168003 900000000000011006 900000000000451002 +3547943023 20090131 1 900000000000207008 167874004 49076000 1 118169006 900000000000011006 900000000000451002 +3547943023 20110131 0 900000000000207008 167874004 49076000 1 118169006 900000000000011006 900000000000451002 +3547943023 20110731 1 900000000000207008 167874004 49076000 1 118169006 900000000000011006 900000000000451002 +3547943023 20170731 0 900000000000207008 167874004 49076000 1 118169006 900000000000011006 900000000000451002 +3548026020 20090131 1 900000000000207008 369618002 413675001 1 370133003 900000000000011006 900000000000451002 +3548114029 20090131 1 900000000000207008 258481002 76784001 1 118169006 900000000000011006 900000000000451002 +3548114029 20090731 0 900000000000207008 258481002 76784001 1 118169006 900000000000011006 900000000000451002 +3548290028 20090131 1 900000000000207008 122672009 116243001 1 118171006 900000000000011006 900000000000451002 +3548330027 20090131 1 900000000000207008 309226005 41329004 1 118168003 900000000000011006 900000000000451002 +3548442022 20090131 1 900000000000207008 122707005 413675001 1 370133003 900000000000011006 900000000000451002 +3548455023 20090131 1 900000000000207008 128172000 413675001 1 370133003 900000000000011006 900000000000451002 +3548471023 20090131 1 900000000000207008 258476006 427223001 1 370133003 900000000000011006 900000000000451002 +3548517027 20090131 1 900000000000207008 128171007 413675001 1 370133003 900000000000011006 900000000000451002 +3548518021 20090131 1 900000000000207008 309218002 413675001 1 370133003 900000000000011006 900000000000451002 +3548565026 20090131 1 900000000000207008 258482009 32457005 1 370133003 900000000000011006 900000000000451002 +3548565026 20170731 0 900000000000207008 258482009 32457005 1 370133003 900000000000011006 900000000000451002 +3548621025 20090131 1 900000000000207008 122566000 32457005 1 370133003 900000000000011006 900000000000451002 +3548634029 20090131 1 900000000000207008 429832000 33463005 1 370133003 900000000000011006 900000000000451002 +3548634029 20100131 0 900000000000207008 429832000 33463005 1 370133003 900000000000011006 900000000000451002 +3548634029 20100731 1 900000000000207008 429832000 33463005 1 370133003 900000000000011006 900000000000451002 +3548634029 20110731 0 900000000000207008 429832000 33463005 1 370133003 900000000000011006 900000000000451002 +3548737026 20090131 1 900000000000207008 429836002 410583004 1 370133003 900000000000011006 900000000000451002 +3548737026 20100731 0 900000000000207008 429836002 410583004 1 370133003 900000000000011006 900000000000451002 +3548737026 20110131 1 900000000000207008 429836002 410583004 1 370133003 900000000000011006 900000000000451002 +3548746021 20090131 1 900000000000207008 384744003 413675001 1 370133003 900000000000011006 900000000000451002 +3548907025 20090131 1 900000000000207008 128167009 413675001 1 370133003 900000000000011006 900000000000451002 +3548909027 20090131 1 900000000000207008 396357008 65854006 1 118171006 900000000000011006 900000000000451002 +3548943020 20090131 1 900000000000207008 122633005 7797006 1 118171006 900000000000011006 900000000000451002 +3548949024 20090131 1 900000000000207008 309221000 307193005 1 118171006 900000000000011006 900000000000451002 +3548974022 20090131 1 900000000000207008 168136008 71854001 1 118169006 900000000000011006 900000000000451002 +3548976024 20090131 1 900000000000207008 122692002 413675001 1 370133003 900000000000011006 900000000000451002 +3549003022 20090131 1 900000000000207008 397056002 413675001 1 370133003 900000000000011006 900000000000451002 +3549031029 20090131 1 900000000000207008 384747005 129249002 1 118171006 900000000000011006 900000000000451002 +3549076029 20090131 1 900000000000207008 122575003 431938005 1 118169006 900000000000011006 900000000000451002 +3549083020 20090131 1 900000000000207008 432864003 18329001 1 118171006 900000000000011006 900000000000451002 +3549083020 20090731 0 900000000000207008 432864003 18329001 1 118171006 900000000000011006 900000000000451002 +3549083020 20100131 1 900000000000207008 432864003 18329001 1 118171006 900000000000011006 900000000000451002 +3549124025 20090131 1 900000000000207008 122590004 67922002 1 370133003 900000000000011006 900000000000451002 +3549124025 20090731 0 900000000000207008 122590004 67922002 1 370133003 900000000000011006 900000000000451002 +3549124025 20110131 1 900000000000207008 122590004 67922002 1 370133003 900000000000011006 900000000000451002 +3549124025 20110731 0 900000000000207008 122590004 67922002 1 370133003 900000000000011006 900000000000451002 +3549150026 20090131 1 900000000000207008 397053005 413675001 1 370133003 900000000000011006 900000000000451002 +3549152023 20090131 1 900000000000207008 128168004 413675001 1 370133003 900000000000011006 900000000000451002 +3549163021 20090131 1 900000000000207008 309121009 64331004 1 118169006 900000000000011006 900000000000451002 +3549254027 20090131 1 900000000000207008 432420000 21550001 1 118171006 900000000000011006 900000000000451002 +3549254027 20090731 0 900000000000207008 432420000 21550001 1 118171006 900000000000011006 900000000000451002 +3549254027 20100131 1 900000000000207008 432420000 21550001 1 118171006 900000000000011006 900000000000451002 +3549269026 20090131 1 900000000000207008 128159001 413675001 1 370133003 900000000000011006 900000000000451002 +3549296028 20090131 1 900000000000207008 309506005 312968005 1 118171006 900000000000011006 900000000000451002 +3549369029 20090131 1 900000000000207008 431232001 430203005 1 118171006 900000000000011006 900000000000451002 +3549410024 20090131 1 900000000000207008 122726002 413675001 1 370133003 900000000000011006 900000000000451002 +3549443023 20090131 1 900000000000207008 122589008 105470007 1 118170007 900000000000011006 900000000000451002 +3549443023 20090731 0 900000000000207008 122589008 105470007 1 118170007 900000000000011006 900000000000451002 +3549443023 20110131 1 900000000000207008 122589008 105470007 1 118170007 900000000000011006 900000000000451002 +3549443023 20110731 0 900000000000207008 122589008 105470007 1 118170007 900000000000011006 900000000000451002 +3549451021 20090131 1 900000000000207008 128165001 413675001 1 370133003 900000000000011006 900000000000451002 +3549454029 20090131 1 900000000000207008 396353007 413675001 1 370133003 900000000000011006 900000000000451002 +3549454029 20090731 0 900000000000207008 396353007 413675001 1 370133003 900000000000011006 900000000000451002 +3549465023 20090131 1 900000000000207008 128170008 413675001 1 370133003 900000000000011006 900000000000451002 +3549478023 20090131 1 900000000000207008 122643008 413675001 1 370133003 900000000000011006 900000000000451002 +3549515027 20090131 1 900000000000207008 399451009 413675001 1 370133003 900000000000011006 900000000000451002 +3549525021 20090131 1 900000000000207008 258459007 69695003 1 118169006 900000000000011006 900000000000451002 +3549630029 20090131 1 900000000000207008 122632000 413675001 1 370133003 900000000000011006 900000000000451002 +3549632021 20090131 1 900000000000207008 122662006 40133006 1 118169006 900000000000011006 900000000000451002 +3549649025 20090131 1 900000000000207008 127460002 413675001 1 370133003 900000000000011006 900000000000451002 +3549802027 20090131 1 900000000000207008 309188000 123851003 1 118169006 900000000000011006 900000000000451002 +3549822028 20090131 1 900000000000207008 258446004 955009 1 118169006 900000000000011006 900000000000451002 +3549822028 20170731 0 900000000000207008 258446004 955009 1 118169006 900000000000011006 900000000000451002 +3549858024 20090131 1 900000000000207008 309073008 134328007 1 118168003 900000000000011006 900000000000451002 +3549882025 20090131 1 900000000000207008 122659008 413675001 1 370133003 900000000000011006 900000000000451002 +3549912022 20090131 1 900000000000207008 432134009 39937001 1 118169006 900000000000011006 900000000000451002 +3550018021 20090131 1 900000000000207008 434244002 82849001 1 118169006 900000000000011006 900000000000451002 +3550028028 20090131 1 900000000000207008 432057001 63293007 1 118171006 900000000000011006 900000000000451002 +3550028028 20090731 0 900000000000207008 432057001 63293007 1 118171006 900000000000011006 900000000000451002 +3550028028 20100131 1 900000000000207008 432057001 63293007 1 118171006 900000000000011006 900000000000451002 +3550032023 20090131 1 900000000000207008 122694001 413675001 1 370133003 900000000000011006 900000000000451002 +3550156024 20090131 1 900000000000207008 258458004 32457005 1 370133003 900000000000011006 900000000000451002 +3550157026 20090131 1 900000000000207008 128164002 413675001 1 370133003 900000000000011006 900000000000451002 +3550218029 20090131 1 900000000000207008 309102001 309312004 1 118169006 900000000000011006 900000000000451002 +3550227028 20090131 1 900000000000207008 258435002 413675001 1 370133003 900000000000011006 900000000000451002 +3550241021 20090131 1 900000000000207008 122624008 413675001 1 370133003 900000000000011006 900000000000451002 +3550287026 20090131 1 900000000000207008 122711004 116167000 1 118171006 900000000000011006 900000000000451002 +3550291020 20090131 1 900000000000207008 309495002 413675001 1 370133003 900000000000011006 900000000000451002 +3550473028 20090131 1 900000000000207008 309189008 21974007 1 118169006 900000000000011006 900000000000451002 +3550505020 20090131 1 900000000000207008 433861002 2095001 1 118169006 900000000000011006 900000000000451002 +3550509025 20090131 1 900000000000207008 309482007 27204007 1 118171006 900000000000011006 900000000000451002 +3550509025 20200131 0 900000000000207008 309482007 27204007 1 118171006 900000000000011006 900000000000451002 +3550518028 20090131 1 900000000000207008 433119005 31343006 1 118171006 900000000000011006 900000000000451002 +3550647026 20090131 1 900000000000207008 122727006 413675001 1 370133003 900000000000011006 900000000000451002 +3550658024 20090131 1 900000000000207008 309486005 413675001 1 370133003 900000000000011006 900000000000451002 +3550658024 20090731 0 900000000000207008 309486005 413675001 1 370133003 900000000000011006 900000000000451002 +3550694023 20090131 1 900000000000207008 309485009 413675001 1 370133003 900000000000011006 900000000000451002 +3550694023 20090731 0 900000000000207008 309485009 413675001 1 370133003 900000000000011006 900000000000451002 +3550705022 20090131 1 900000000000207008 258428005 413675001 1 370133003 900000000000011006 900000000000451002 +3550732028 20090131 1 900000000000207008 432385009 55139000 1 118169006 900000000000011006 900000000000451002 +3550811025 20090131 1 900000000000207008 122598006 119184005 1 118169006 900000000000011006 900000000000451002 +3550870021 20090131 1 900000000000207008 258412000 14766002 1 118171006 900000000000011006 900000000000451002 +3550870021 20110131 0 900000000000207008 258412000 14766002 1 118171006 900000000000011006 900000000000451002 +3550870021 20110731 1 900000000000207008 258412000 14766002 1 118171006 900000000000011006 900000000000451002 +3550893026 20090131 1 900000000000207008 309272009 413675001 1 370133003 900000000000011006 900000000000451002 +3550893026 20100131 0 900000000000207008 309272009 413675001 1 370133003 900000000000011006 900000000000451002 +3550893026 20100731 1 900000000000207008 309272009 413675001 1 370133003 900000000000011006 900000000000451002 +3550894021 20090131 1 900000000000207008 431889006 53120007 1 118169006 900000000000011006 900000000000451002 +3550944024 20090131 1 900000000000207008 309268005 33463005 1 370133003 900000000000011006 900000000000451002 +3550944024 20110731 0 900000000000207008 309268005 33463005 1 370133003 900000000000011006 900000000000451002 +3550966028 20090131 1 900000000000207008 309277003 217136007 1 118171006 900000000000011006 900000000000451002 +3550966028 20090731 0 900000000000207008 309277003 217136007 1 118171006 900000000000011006 900000000000451002 +3551057021 20090131 1 900000000000207008 309192007 75573002 1 118169006 900000000000011006 900000000000451002 +3551071029 20090131 1 900000000000207008 122637006 119212007 1 118169006 900000000000011006 900000000000451002 +3551117021 20090131 1 900000000000207008 122636002 413675001 1 370133003 900000000000011006 900000000000451002 +3551179025 20090131 1 900000000000207008 309476009 413675001 1 370133003 900000000000011006 900000000000451002 +3551273024 20090131 1 900000000000207008 309079007 21911005 1 118171006 900000000000011006 900000000000451002 +3551273024 20090731 0 900000000000207008 309079007 21911005 1 118171006 900000000000011006 900000000000451002 +3551289022 20090131 1 900000000000207008 312494007 367611001 1 118169006 900000000000011006 900000000000451002 +3551289022 20090731 0 900000000000207008 312494007 367611001 1 118169006 900000000000011006 900000000000451002 +3551289022 20110731 1 900000000000207008 312494007 367611001 1 118169006 900000000000011006 900000000000451002 +3551371023 20090131 1 900000000000207008 399559008 413675001 1 370133003 900000000000011006 900000000000451002 +3551409022 20090131 1 900000000000207008 396526009 413675001 1 370133003 900000000000011006 900000000000451002 +3551419027 20090131 1 900000000000207008 309285007 176779006 1 118171006 900000000000011006 900000000000451002 +3551419027 20230331 0 900000000000207008 309285007 176779006 1 118171006 900000000000011006 900000000000451002 +3551427020 20090131 1 900000000000207008 432143000 72731003 1 118171006 900000000000011006 900000000000451002 +3551427020 20090731 0 900000000000207008 432143000 72731003 1 118171006 900000000000011006 900000000000451002 +3551427020 20100131 1 900000000000207008 432143000 72731003 1 118171006 900000000000011006 900000000000451002 +3551441027 20090131 1 900000000000207008 433115004 48477009 1 118169006 900000000000011006 900000000000451002 +3551441027 20090731 0 900000000000207008 433115004 48477009 1 118169006 900000000000011006 900000000000451002 +3551441027 20100131 1 900000000000207008 433115004 48477009 1 118169006 900000000000011006 900000000000451002 +3551454023 20090131 1 900000000000207008 432865002 4596009 1 118169006 900000000000011006 900000000000451002 +3551469024 20090131 1 900000000000207008 258577004 76784001 1 118169006 900000000000011006 900000000000451002 +3551470020 20090131 1 900000000000207008 309178001 413650000 1 118171006 900000000000011006 900000000000451002 +3551470020 20110131 0 900000000000207008 309178001 413650000 1 118171006 900000000000011006 900000000000451002 +3551470020 20110731 1 900000000000207008 309178001 413650000 1 118171006 900000000000011006 900000000000451002 +3551494020 20090131 1 900000000000207008 432985002 21974007 1 118169006 900000000000011006 900000000000451002 +3551494020 20090731 0 900000000000207008 432985002 21974007 1 118169006 900000000000011006 900000000000451002 +3551494020 20100131 1 900000000000207008 432985002 21974007 1 118169006 900000000000011006 900000000000451002 +3551505025 20090131 1 900000000000207008 431405008 67497009 1 118171006 900000000000011006 900000000000451002 +3551505025 20090731 0 900000000000207008 431405008 67497009 1 118171006 900000000000011006 900000000000451002 +3551505025 20100131 1 900000000000207008 431405008 67497009 1 118171006 900000000000011006 900000000000451002 +3551575029 20090131 1 900000000000207008 397326000 413675001 1 370133003 900000000000011006 900000000000451002 +3551577021 20090131 1 900000000000207008 385340002 413675001 1 370133003 900000000000011006 900000000000451002 +3551599029 20090131 1 900000000000207008 433854001 64739004 1 118169006 900000000000011006 900000000000451002 +3551688024 20090131 1 900000000000207008 399572009 413675001 1 370133003 900000000000011006 900000000000451002 +3551742024 20090131 1 900000000000207008 434140003 89679009 1 118169006 900000000000011006 900000000000451002 +3551746022 20090131 1 900000000000207008 309180007 71836000 1 118169006 900000000000011006 900000000000451002 +3551787023 20090131 1 900000000000207008 309070006 45292006 1 118169006 900000000000011006 900000000000451002 +3551789021 20090131 1 900000000000207008 122733002 413675001 1 370133003 900000000000011006 900000000000451002 +3551825021 20090131 1 900000000000207008 122670001 413675001 1 370133003 900000000000011006 900000000000451002 +3551873027 20090131 1 900000000000207008 122734008 413675001 1 370133003 900000000000011006 900000000000451002 +3551890022 20090131 1 900000000000207008 309179009 53342003 1 118169006 900000000000011006 900000000000451002 +3551900029 20090131 1 900000000000207008 309066003 39937001 1 118169006 900000000000011006 900000000000451002 +3551918026 20090131 1 900000000000207008 309278008 413675001 1 370133003 900000000000011006 900000000000451002 +3551944026 20090131 1 900000000000207008 309059004 413675001 1 370133003 900000000000011006 900000000000451002 +3551977027 20090131 1 900000000000207008 431235004 87910007 1 118171006 900000000000011006 900000000000451002 +3552004022 20090131 1 900000000000207008 127475005 413675001 1 370133003 900000000000011006 900000000000451002 +3552004022 20140131 0 900000000000207008 127475005 413675001 1 370133003 900000000000011006 900000000000451002 +3552029027 20090131 1 900000000000207008 432099000 89837001 1 118169006 900000000000011006 900000000000451002 +3552029027 20090731 0 900000000000207008 432099000 89837001 1 118169006 900000000000011006 900000000000451002 +3552029027 20100131 1 900000000000207008 432099000 89837001 1 118169006 900000000000011006 900000000000451002 +3552111024 20090131 1 900000000000207008 440493002 260667007 1 370133003 900000000000011006 900000000000451002 +3552111024 20090731 0 900000000000207008 440493002 260667007 1 370133003 900000000000011006 900000000000451002 +3552265028 20090131 1 900000000000207008 373193000 413675001 1 370133003 900000000000011006 900000000000451002 +3552265028 20100731 0 900000000000207008 373193000 413675001 1 370133003 900000000000011006 900000000000451002 +3552265028 20110131 1 900000000000207008 373193000 413675001 1 370133003 900000000000011006 900000000000451002 +3552291027 20090131 1 900000000000207008 122701006 413675001 1 370133003 900000000000011006 900000000000451002 +3552291027 20100131 0 900000000000207008 122701006 413675001 1 370133003 900000000000011006 900000000000451002 +3552291027 20100731 1 900000000000207008 122701006 413675001 1 370133003 900000000000011006 900000000000451002 +3552291027 20110731 0 900000000000207008 122701006 413675001 1 370133003 900000000000011006 900000000000451002 +3552315023 20090131 1 900000000000207008 432144006 47499004 1 118171006 900000000000011006 900000000000451002 +3552446023 20090131 1 900000000000207008 438336007 413675001 1 370133003 900000000000011006 900000000000451002 +3552446023 20090731 0 900000000000207008 438336007 413675001 1 370133003 900000000000011006 900000000000451002 +3552447025 20090131 1 900000000000207008 438336007 12856003 1 118168003 900000000000011006 900000000000451002 +3552447025 20090731 0 900000000000207008 438336007 12856003 1 118168003 900000000000011006 900000000000451002 +3552550025 20090131 1 900000000000207008 439479000 413675001 1 370133003 900000000000011006 900000000000451002 +3552550025 20090731 0 900000000000207008 439479000 413675001 1 370133003 900000000000011006 900000000000451002 +3552675023 20090131 1 900000000000207008 258481002 56993006 1 118171006 900000000000011006 900000000000451002 +3552675023 20090731 0 900000000000207008 258481002 56993006 1 118171006 900000000000011006 900000000000451002 +3552714024 20090131 1 900000000000207008 122588000 116202001 1 370133003 900000000000011006 900000000000451002 +3552714024 20090731 0 900000000000207008 122588000 116202001 1 370133003 900000000000011006 900000000000451002 +3552714024 20110131 1 900000000000207008 122588000 116202001 1 370133003 900000000000011006 900000000000451002 +3552714024 20110731 0 900000000000207008 122588000 116202001 1 370133003 900000000000011006 900000000000451002 +3553349020 20090131 1 900000000000207008 440138003 413935006 1 370133003 900000000000011006 900000000000451002 +3553349020 20090731 0 900000000000207008 440138003 413935006 1 370133003 900000000000011006 900000000000451002 +3553351024 20090131 1 900000000000207008 438351003 413675001 1 370133003 900000000000011006 900000000000451002 +3553351024 20090731 0 900000000000207008 438351003 413675001 1 370133003 900000000000011006 900000000000451002 +3553352028 20090131 1 900000000000207008 438351003 24506003 1 118171006 900000000000011006 900000000000451002 +3553352028 20090731 0 900000000000207008 438351003 24506003 1 118171006 900000000000011006 900000000000451002 +3553362024 20090131 1 900000000000207008 438545007 52053009 1 370133003 900000000000011006 900000000000451002 +3553362024 20090731 0 900000000000207008 438545007 52053009 1 370133003 900000000000011006 900000000000451002 +3553363025 20090131 1 900000000000207008 438545007 88731002 1 118169006 900000000000011006 900000000000451002 +3553363025 20090731 0 900000000000207008 438545007 88731002 1 118169006 900000000000011006 900000000000451002 +3553374023 20090131 1 900000000000207008 438661003 7246002 1 118171006 900000000000011006 900000000000451002 +3553374023 20090731 0 900000000000207008 438661003 7246002 1 118171006 900000000000011006 900000000000451002 +3553497020 20090131 1 900000000000207008 438343001 285570007 1 118171006 900000000000011006 900000000000451002 +3553497020 20090731 0 900000000000207008 438343001 285570007 1 118171006 900000000000011006 900000000000451002 +3553498026 20090131 1 900000000000207008 438343001 39937001 1 118169006 900000000000011006 900000000000451002 +3553498026 20090731 0 900000000000207008 438343001 39937001 1 118169006 900000000000011006 900000000000451002 +3553561029 20090131 1 900000000000207008 122609004 232595000 1 118171006 900000000000011006 900000000000451002 +3553561029 20090731 0 900000000000207008 122609004 232595000 1 118171006 900000000000011006 900000000000451002 +3553570026 20090131 1 900000000000207008 438454007 78603008 1 118171006 900000000000011006 900000000000451002 +3553570026 20090731 0 900000000000207008 438454007 78603008 1 118171006 900000000000011006 900000000000451002 +3553592027 20090131 1 900000000000207008 258469001 427282009 1 118171006 900000000000011006 900000000000451002 +3553592027 20090731 0 900000000000207008 258469001 427282009 1 118171006 900000000000011006 900000000000451002 +3553593021 20090131 1 900000000000207008 258469001 72869002 1 370133003 900000000000011006 900000000000451002 +3553593021 20090731 0 900000000000207008 258469001 72869002 1 370133003 900000000000011006 900000000000451002 +3553691025 20090131 1 900000000000207008 440502004 56361007 1 118171006 900000000000011006 900000000000451002 +3553691025 20090731 0 900000000000207008 440502004 56361007 1 118171006 900000000000011006 900000000000451002 +3553692021 20090131 1 900000000000207008 440502004 87784001 1 118169006 900000000000011006 900000000000451002 +3553692021 20090731 0 900000000000207008 440502004 87784001 1 118169006 900000000000011006 900000000000451002 +3553725020 20090131 1 900000000000207008 122607002 413675001 1 370133003 900000000000011006 900000000000451002 +3553725020 20090731 0 900000000000207008 122607002 413675001 1 370133003 900000000000011006 900000000000451002 +3553726021 20090131 1 900000000000207008 122607002 39607008 1 118169006 900000000000011006 900000000000451002 +3553726021 20090731 0 900000000000207008 122607002 39607008 1 118169006 900000000000011006 900000000000451002 +3553739020 20090131 1 900000000000207008 122589008 67922002 1 370133003 900000000000011006 900000000000451002 +3553739020 20090731 0 900000000000207008 122589008 67922002 1 370133003 900000000000011006 900000000000451002 +3553739020 20110131 1 900000000000207008 122589008 67922002 1 370133003 900000000000011006 900000000000451002 +3553739020 20110731 0 900000000000207008 122589008 67922002 1 370133003 900000000000011006 900000000000451002 +3553767027 20090131 1 900000000000207008 396355000 413675001 1 370133003 900000000000011006 900000000000451002 +3553767027 20090731 0 900000000000207008 396355000 413675001 1 370133003 900000000000011006 900000000000451002 +3553768021 20090131 1 900000000000207008 396355000 39937001 1 118169006 900000000000011006 900000000000451002 +3553768021 20090731 0 900000000000207008 396355000 39937001 1 118169006 900000000000011006 900000000000451002 +3553814021 20090131 1 900000000000207008 396354001 413675001 1 370133003 900000000000011006 900000000000451002 +3553814021 20090731 0 900000000000207008 396354001 413675001 1 370133003 900000000000011006 900000000000451002 +3553815022 20090131 1 900000000000207008 396354001 440258006 1 118171006 900000000000011006 900000000000451002 +3553815022 20090731 0 900000000000207008 396354001 440258006 1 118171006 900000000000011006 900000000000451002 +3553970024 20090131 1 900000000000207008 439034006 107963000 1 118171006 900000000000011006 900000000000451002 +3553970024 20090731 0 900000000000207008 439034006 107963000 1 118171006 900000000000011006 900000000000451002 +3553971023 20090131 1 900000000000207008 439034006 413675001 1 370133003 900000000000011006 900000000000451002 +3553971023 20090731 0 900000000000207008 439034006 413675001 1 370133003 900000000000011006 900000000000451002 +3554020027 20090131 1 900000000000207008 396353007 39937001 1 118169006 900000000000011006 900000000000451002 +3554020027 20090731 0 900000000000207008 396353007 39937001 1 118169006 900000000000011006 900000000000451002 +3554067028 20090131 1 900000000000207008 440472000 119746007 1 118171006 900000000000011006 900000000000451002 +3554067028 20090731 0 900000000000207008 440472000 119746007 1 118171006 900000000000011006 900000000000451002 +3554068022 20090131 1 900000000000207008 440472000 413675001 1 370133003 900000000000011006 900000000000451002 +3554068022 20090731 0 900000000000207008 440472000 413675001 1 370133003 900000000000011006 900000000000451002 +3554148025 20090131 1 900000000000207008 373101006 76752008 1 118169006 900000000000011006 900000000000451002 +3554148025 20090731 0 900000000000207008 373101006 76752008 1 118169006 900000000000011006 900000000000451002 +3554149022 20090131 1 900000000000207008 373101006 237376002 1 118171006 900000000000011006 900000000000451002 +3554149022 20090731 0 900000000000207008 373101006 237376002 1 118171006 900000000000011006 900000000000451002 +3554293028 20090131 1 900000000000207008 258564008 16811007 1 118169006 900000000000011006 900000000000451002 +3554293028 20090731 0 900000000000207008 258564008 16811007 1 118169006 900000000000011006 900000000000451002 +3554293028 20110731 1 900000000000207008 258564008 16811007 1 118169006 900000000000011006 900000000000451002 +3554343029 20090131 1 900000000000207008 440137008 83670000 1 118169006 900000000000011006 900000000000451002 +3554343029 20090731 0 900000000000207008 440137008 83670000 1 118169006 900000000000011006 900000000000451002 +3554343029 20100131 1 900000000000207008 440137008 83670000 1 118169006 900000000000011006 900000000000451002 +3554343029 20100731 0 900000000000207008 440137008 83670000 1 118169006 900000000000011006 900000000000451002 +3554589024 20090131 1 900000000000207008 440675009 67889009 1 118171006 900000000000011006 900000000000451002 +3554589024 20090731 0 900000000000207008 440675009 67889009 1 118171006 900000000000011006 900000000000451002 +3554608023 20090131 1 900000000000207008 440135000 439336003 1 118171006 900000000000011006 900000000000451002 +3554608023 20090731 0 900000000000207008 440135000 439336003 1 118171006 900000000000011006 900000000000451002 +3554609026 20090131 1 900000000000207008 440135000 87953007 1 118169006 900000000000011006 900000000000451002 +3554609026 20090731 0 900000000000207008 440135000 87953007 1 118169006 900000000000011006 900000000000451002 +3554727022 20090131 1 900000000000207008 309484008 413675001 1 370133003 900000000000011006 900000000000451002 +3554727022 20090731 0 900000000000207008 309484008 413675001 1 370133003 900000000000011006 900000000000451002 +3554728028 20090131 1 900000000000207008 309484008 81870009 1 118171006 900000000000011006 900000000000451002 +3554728028 20090731 0 900000000000207008 309484008 81870009 1 118171006 900000000000011006 900000000000451002 +3554868023 20090131 1 900000000000207008 439895009 413675001 1 370133003 900000000000011006 900000000000451002 +3554868023 20090731 0 900000000000207008 439895009 413675001 1 370133003 900000000000011006 900000000000451002 +3554868023 20110131 1 900000000000207008 439895009 413675001 1 370133003 900000000000011006 900000000000451002 +3554868023 20110731 0 900000000000207008 439895009 413675001 1 370133003 900000000000011006 900000000000451002 +3554869026 20090131 1 900000000000207008 439895009 45206002 1 118169006 900000000000011006 900000000000451002 +3554869026 20090731 0 900000000000207008 439895009 45206002 1 118169006 900000000000011006 900000000000451002 +3554869026 20110131 1 900000000000207008 439895009 45206002 1 118169006 900000000000011006 900000000000451002 +3554869026 20110731 0 900000000000207008 439895009 45206002 1 118169006 900000000000011006 900000000000451002 +3555065028 20090131 1 900000000000207008 312494007 438633009 1 118171006 900000000000011006 900000000000451002 +3555065028 20090731 0 900000000000207008 312494007 438633009 1 118171006 900000000000011006 900000000000451002 +3555065028 20110731 1 900000000000207008 312494007 438633009 1 118171006 900000000000011006 900000000000451002 +3555408022 20090131 1 900000000000207008 309079007 413675001 1 370133003 900000000000011006 900000000000451002 +3555408022 20090731 0 900000000000207008 309079007 413675001 1 370133003 900000000000011006 900000000000451002 +3555428021 20090131 1 900000000000207008 438543000 86259008 1 118171006 900000000000011006 900000000000451002 +3555428021 20090731 0 900000000000207008 438543000 86259008 1 118171006 900000000000011006 900000000000451002 +3555551023 20090131 1 900000000000207008 409876003 113277000 1 118169006 900000000000011006 900000000000451002 +3555551023 20100131 0 900000000000207008 409876003 113277000 1 118169006 900000000000011006 900000000000451002 +3555619027 20090131 1 900000000000207008 438352005 40583006 1 118171006 900000000000011006 900000000000451002 +3555619027 20090731 0 900000000000207008 438352005 40583006 1 118171006 900000000000011006 900000000000451002 +3555620022 20090131 1 900000000000207008 438352005 44567001 1 118169006 900000000000011006 900000000000451002 +3555620022 20090731 0 900000000000207008 438352005 44567001 1 118169006 900000000000011006 900000000000451002 +3555632021 20090131 1 900000000000207008 258545002 25510005 1 118170007 900000000000011006 900000000000451002 +3555632021 20090731 0 900000000000207008 258545002 25510005 1 118170007 900000000000011006 900000000000451002 +3555633027 20090131 1 900000000000207008 258545002 363564008 1 118168003 900000000000011006 900000000000451002 +3555633027 20090731 0 900000000000207008 258545002 363564008 1 118168003 900000000000011006 900000000000451002 +3555727026 20090131 1 900000000000207008 309486005 47227006 1 118171006 900000000000011006 900000000000451002 +3555727026 20090731 0 900000000000207008 309486005 47227006 1 118171006 900000000000011006 900000000000451002 +3555782024 20090131 1 900000000000207008 309485009 112881004 1 118171006 900000000000011006 900000000000451002 +3555782024 20090731 0 900000000000207008 309485009 112881004 1 118171006 900000000000011006 900000000000451002 +3555796029 20090131 1 900000000000207008 309277003 413675001 1 370133003 900000000000011006 900000000000451002 +3555796029 20090731 0 900000000000207008 309277003 413675001 1 370133003 900000000000011006 900000000000451002 +3555922027 20090131 1 900000000000207008 438804005 70948008 1 118169006 900000000000011006 900000000000451002 +3555922027 20090731 0 900000000000207008 438804005 70948008 1 118169006 900000000000011006 900000000000451002 +3556041020 20090131 1 900000000000207008 440515008 86273004 1 118171006 900000000000011006 900000000000451002 +3556041020 20090731 0 900000000000207008 440515008 86273004 1 118171006 900000000000011006 900000000000451002 +3556066024 20090131 1 900000000000207008 438803004 413675001 1 370133003 900000000000011006 900000000000451002 +3556066024 20090731 0 900000000000207008 438803004 413675001 1 370133003 900000000000011006 900000000000451002 +3556085022 20090131 1 900000000000207008 438659007 8345004 1 118171006 900000000000011006 900000000000451002 +3556085022 20090731 0 900000000000207008 438659007 8345004 1 118171006 900000000000011006 900000000000451002 +3556086023 20090131 1 900000000000207008 438659007 10200004 1 118169006 900000000000011006 900000000000451002 +3556086023 20090731 0 900000000000207008 438659007 10200004 1 118169006 900000000000011006 900000000000451002 +3556312023 20090131 1 900000000000207008 438595008 417992006 1 118168003 900000000000011006 900000000000451002 +3556312023 20090731 0 900000000000207008 438595008 417992006 1 118168003 900000000000011006 900000000000451002 +3560153025 20090731 1 900000000000207008 119345009 309051001 0 116680003 900000000000011006 900000000000451002 +3560426021 20090731 1 900000000000207008 122583009 256912003 0 116680003 900000000000011006 900000000000451002 +3560444029 20090731 1 900000000000207008 122560006 309051001 0 116680003 900000000000011006 900000000000451002 +3560444029 20110131 0 900000000000207008 122560006 309051001 0 116680003 900000000000011006 900000000000451002 +3560493023 20090731 1 900000000000207008 122558009 309051001 0 116680003 900000000000011006 900000000000451002 +3560493023 20100131 0 900000000000207008 122558009 309051001 0 116680003 900000000000011006 900000000000451002 +3560626028 20090731 1 900000000000207008 122556008 309051001 0 116680003 900000000000011006 900000000000451002 +3560667022 20090731 1 900000000000207008 122562003 309051001 0 116680003 900000000000011006 900000000000451002 +3560667022 20110131 0 900000000000207008 122562003 309051001 0 116680003 900000000000011006 900000000000451002 +3560701027 20090731 1 900000000000207008 122561005 309051001 0 116680003 900000000000011006 900000000000451002 +3560701027 20110131 0 900000000000207008 122561005 309051001 0 116680003 900000000000011006 900000000000451002 +3560704024 20090731 1 900000000000207008 122555007 309051001 0 116680003 900000000000011006 900000000000451002 +3561199023 20090731 1 900000000000207008 303248007 309051001 0 116680003 900000000000011006 900000000000451002 +3561251026 20090731 1 900000000000207008 256912003 119351004 0 116680003 900000000000011006 900000000000451002 +3561257027 20090731 1 900000000000207008 122553000 309051001 0 116680003 900000000000011006 900000000000451002 +3561257027 20110131 0 900000000000207008 122553000 309051001 0 116680003 900000000000011006 900000000000451002 +3561282027 20090731 1 900000000000207008 122552005 309051001 0 116680003 900000000000011006 900000000000451002 +3561290027 20090731 1 900000000000207008 122551003 309051001 0 116680003 900000000000011006 900000000000451002 +3561511025 20090731 1 900000000000207008 258559009 441620008 0 116680003 900000000000011006 900000000000451002 +3561511025 20110731 0 900000000000207008 258559009 441620008 0 116680003 900000000000011006 900000000000451002 +3561622020 20090731 1 900000000000207008 122554006 309051001 0 116680003 900000000000011006 900000000000451002 +3561884021 20090731 1 900000000000207008 409876003 441620008 0 116680003 900000000000011006 900000000000451002 +3561884021 20140131 0 900000000000207008 409876003 441620008 0 116680003 900000000000011006 900000000000451002 +3562004020 20090731 1 900000000000207008 309191000 309193002 0 116680003 900000000000011006 900000000000451002 +3562347027 20090731 1 900000000000207008 122581006 256912003 0 116680003 900000000000011006 900000000000451002 +3562468027 20090731 1 900000000000207008 122671002 441906003 0 116680003 900000000000011006 900000000000451002 +3562468027 20130731 0 900000000000207008 122671002 441906003 0 116680003 900000000000011006 900000000000451002 +3562469024 20090731 1 900000000000207008 122671002 441750007 0 116680003 900000000000011006 900000000000451002 +3562469024 20140131 0 900000000000207008 122671002 441750007 0 116680003 900000000000011006 900000000000451002 +3563984028 20090731 1 900000000000207008 441479001 119376003 0 116680003 900000000000011006 900000000000451002 +3564449029 20090731 1 900000000000207008 441510007 119297000 0 116680003 900000000000011006 900000000000451002 +3564679025 20090731 1 900000000000207008 432135005 441750007 0 116680003 900000000000011006 900000000000451002 +3564679025 20140131 0 900000000000207008 432135005 441750007 0 116680003 900000000000011006 900000000000451002 +3564760023 20090731 1 900000000000207008 441518000 258562007 0 116680003 900000000000011006 900000000000451002 +3565133026 20090731 1 900000000000207008 441620008 309185002 0 116680003 900000000000011006 900000000000451002 +3565134021 20090731 1 900000000000207008 441620008 309051001 0 116680003 900000000000011006 900000000000451002 +3565769025 20090731 1 900000000000207008 432864003 441750007 0 116680003 900000000000011006 900000000000451002 +3565769025 20140131 0 900000000000207008 432864003 441750007 0 116680003 900000000000011006 900000000000451002 +3565770029 20090731 1 900000000000207008 433115004 441810001 0 116680003 900000000000011006 900000000000451002 +3565771025 20090731 1 900000000000207008 432985002 441810001 0 116680003 900000000000011006 900000000000451002 +3565782022 20090731 1 900000000000207008 441652008 119376003 0 116680003 900000000000011006 900000000000451002 +3565873023 20090731 1 900000000000207008 433116003 441750007 0 116680003 900000000000011006 900000000000451002 +3565873023 20140131 0 900000000000207008 433116003 441750007 0 116680003 900000000000011006 900000000000451002 +3566255023 20090731 1 900000000000207008 431233006 441906003 0 116680003 900000000000011006 900000000000451002 +3566256024 20090731 1 900000000000207008 431233006 441750007 0 116680003 900000000000011006 900000000000451002 +3566256024 20140131 0 900000000000207008 431233006 441750007 0 116680003 900000000000011006 900000000000451002 +3566257026 20090731 1 900000000000207008 432420000 441906003 0 116680003 900000000000011006 900000000000451002 +3566257026 20130731 0 900000000000207008 432420000 441906003 0 116680003 900000000000011006 900000000000451002 +3566258020 20090731 1 900000000000207008 432420000 441750007 0 116680003 900000000000011006 900000000000451002 +3566258020 20140131 0 900000000000207008 432420000 441750007 0 116680003 900000000000011006 900000000000451002 +3566259028 20090731 1 900000000000207008 433120004 441906003 0 116680003 900000000000011006 900000000000451002 +3566259028 20130731 0 900000000000207008 433120004 441906003 0 116680003 900000000000011006 900000000000451002 +3566260022 20090731 1 900000000000207008 433120004 441750007 0 116680003 900000000000011006 900000000000451002 +3566260022 20130731 0 900000000000207008 433120004 441750007 0 116680003 900000000000011006 900000000000451002 +3566261021 20090731 1 900000000000207008 432060008 441906003 0 116680003 900000000000011006 900000000000451002 +3566262025 20090731 1 900000000000207008 432060008 441750007 0 116680003 900000000000011006 900000000000451002 +3566262025 20140131 0 900000000000207008 432060008 441750007 0 116680003 900000000000011006 900000000000451002 +3566263024 20090731 1 900000000000207008 432057001 441906003 0 116680003 900000000000011006 900000000000451002 +3566264029 20090731 1 900000000000207008 432057001 441750007 0 116680003 900000000000011006 900000000000451002 +3566264029 20140131 0 900000000000207008 432057001 441750007 0 116680003 900000000000011006 900000000000451002 +3566265028 20090731 1 900000000000207008 432099000 441906003 0 116680003 900000000000011006 900000000000451002 +3566266027 20090731 1 900000000000207008 432099000 441750007 0 116680003 900000000000011006 900000000000451002 +3566266027 20140131 0 900000000000207008 432099000 441750007 0 116680003 900000000000011006 900000000000451002 +3566267020 20090731 1 900000000000207008 431884001 441750007 0 116680003 900000000000011006 900000000000451002 +3566267020 20140131 0 900000000000207008 431884001 441750007 0 116680003 900000000000011006 900000000000451002 +3566268026 20090731 1 900000000000207008 432098008 441750007 0 116680003 900000000000011006 900000000000451002 +3566268026 20140131 0 900000000000207008 432098008 441750007 0 116680003 900000000000011006 900000000000451002 +3566269023 20090731 1 900000000000207008 432136006 441906003 0 116680003 900000000000011006 900000000000451002 +3566269023 20130731 0 900000000000207008 432136006 441906003 0 116680003 900000000000011006 900000000000451002 +3566278028 20090731 1 900000000000207008 441673008 258562007 0 116680003 900000000000011006 900000000000451002 +3566278028 20110731 0 900000000000207008 441673008 258562007 0 116680003 900000000000011006 900000000000451002 +3566498020 20090731 1 900000000000207008 431406009 441750007 0 116680003 900000000000011006 900000000000451002 +3566498020 20140131 0 900000000000207008 431406009 441750007 0 116680003 900000000000011006 900000000000451002 +3566499028 20090731 1 900000000000207008 432143000 441906003 0 116680003 900000000000011006 900000000000451002 +3566499028 20130731 0 900000000000207008 432143000 441906003 0 116680003 900000000000011006 900000000000451002 +3566500021 20090731 1 900000000000207008 432982004 441750007 0 116680003 900000000000011006 900000000000451002 +3566500021 20140131 0 900000000000207008 432982004 441750007 0 116680003 900000000000011006 900000000000451002 +3566501020 20090731 1 900000000000207008 432982004 441810001 0 116680003 900000000000011006 900000000000451002 +3567181023 20090731 1 900000000000207008 441749007 434406008 0 116680003 900000000000011006 900000000000451002 +3567182027 20090731 1 900000000000207008 441749007 399526005 0 116680003 900000000000011006 900000000000451002 +3567183021 20090731 1 900000000000207008 441750007 431412004 0 116680003 900000000000011006 900000000000451002 +3567184026 20090731 1 900000000000207008 441750007 122550002 0 116680003 900000000000011006 900000000000451002 +3567535025 20090731 1 900000000000207008 441884004 441906003 0 116680003 900000000000011006 900000000000451002 +3567536029 20090731 1 900000000000207008 441884004 441750007 0 116680003 900000000000011006 900000000000451002 +3567536029 20140131 0 900000000000207008 441884004 441750007 0 116680003 900000000000011006 900000000000451002 +3567537022 20090731 1 900000000000207008 441884004 384819001 0 116680003 900000000000011006 900000000000451002 +3567553020 20090731 1 900000000000207008 441810001 309074002 0 116680003 900000000000011006 900000000000451002 +3567553020 20210131 0 900000000000207008 441810001 309074002 0 116680003 900000000000011006 900000000000451002 +3567554025 20090731 1 900000000000207008 441810001 122550002 0 116680003 900000000000011006 900000000000451002 +3567950026 20090731 1 900000000000207008 442649003 441810001 0 116680003 900000000000011006 900000000000451002 +3568103021 20090731 1 900000000000207008 441709004 258589002 0 116680003 900000000000011006 900000000000451002 +3568104026 20090731 1 900000000000207008 441710009 441906003 0 116680003 900000000000011006 900000000000451002 +3568104026 20130731 0 900000000000207008 441710009 441906003 0 116680003 900000000000011006 900000000000451002 +3568105025 20090731 1 900000000000207008 441710009 309137003 0 116680003 900000000000011006 900000000000451002 +3568105025 20230630 0 900000000000207008 441710009 309137003 0 116680003 900000000000011006 900000000000451002 +3568283026 20090731 1 900000000000207008 441876003 441810001 0 116680003 900000000000011006 900000000000451002 +3568284021 20090731 1 900000000000207008 441876003 434406008 0 116680003 900000000000011006 900000000000451002 +3568285022 20090731 1 900000000000207008 441876003 309185002 0 116680003 900000000000011006 900000000000451002 +3568285022 20140131 0 900000000000207008 441876003 309185002 0 116680003 900000000000011006 900000000000451002 +3568286023 20090731 1 900000000000207008 441876003 399526005 0 116680003 900000000000011006 900000000000451002 +3568632023 20090731 1 900000000000207008 441694006 431889006 0 116680003 900000000000011006 900000000000451002 +3568633029 20090731 1 900000000000207008 441694006 431412004 0 116680003 900000000000011006 900000000000451002 +3568633029 20180731 0 900000000000207008 441694006 431412004 0 116680003 900000000000011006 900000000000451002 +3568634024 20090731 1 900000000000207008 441694006 432382007 0 116680003 900000000000011006 900000000000451002 +3568635020 20090731 1 900000000000207008 441695007 434406008 0 116680003 900000000000011006 900000000000451002 +3568636021 20090731 1 900000000000207008 441695007 399526005 0 116680003 900000000000011006 900000000000451002 +3568996021 20090731 1 900000000000207008 441903006 119391001 0 116680003 900000000000011006 900000000000451002 +3568997028 20090731 1 900000000000207008 441903006 119295008 0 116680003 900000000000011006 900000000000451002 +3569003026 20090731 1 900000000000207008 441906003 431412004 0 116680003 900000000000011006 900000000000451002 +3569004021 20090731 1 900000000000207008 441906003 122550002 0 116680003 900000000000011006 900000000000451002 +3569242021 20090731 1 900000000000207008 441792002 396525008 0 116680003 900000000000011006 900000000000451002 +3569243027 20090731 1 900000000000207008 441792002 441750007 0 116680003 900000000000011006 900000000000451002 +3569243027 20140131 0 900000000000207008 441792002 441750007 0 116680003 900000000000011006 900000000000451002 +3569244022 20090731 1 900000000000207008 441792002 433118002 0 116680003 900000000000011006 900000000000451002 +3569245023 20090731 1 900000000000207008 441792002 309142006 0 116680003 900000000000011006 900000000000451002 +3569943022 20090731 1 900000000000207008 119351004 123038009 0 116680003 900000000000011006 900000000000451002 +3570697026 20090731 1 900000000000207008 442043001 409821005 0 116680003 900000000000011006 900000000000451002 +3571369022 20090731 1 900000000000207008 432383002 441750007 0 116680003 900000000000011006 900000000000451002 +3571369022 20140131 0 900000000000207008 432383002 441750007 0 116680003 900000000000011006 900000000000451002 +3571507021 20090731 1 900000000000207008 442173007 258472008 0 116680003 900000000000011006 900000000000451002 +3571508027 20090731 1 900000000000207008 442173007 122575003 0 116680003 900000000000011006 900000000000451002 +3571508027 20110131 0 900000000000207008 442173007 122575003 0 116680003 900000000000011006 900000000000451002 +3571965020 20090731 1 900000000000207008 431696005 441906003 0 116680003 900000000000011006 900000000000451002 +3571965020 20130731 0 900000000000207008 431696005 441906003 0 116680003 900000000000011006 900000000000451002 +3571966021 20090731 1 900000000000207008 432980007 441906003 0 116680003 900000000000011006 900000000000451002 +3571966021 20130731 0 900000000000207008 432980007 441906003 0 116680003 900000000000011006 900000000000451002 +3571967028 20090731 1 900000000000207008 432384008 441750007 0 116680003 900000000000011006 900000000000451002 +3571967028 20140131 0 900000000000207008 432384008 441750007 0 116680003 900000000000011006 900000000000451002 +3571975023 20090731 1 900000000000207008 442219007 123038009 0 116680003 900000000000011006 900000000000451002 +3573337023 20090731 1 900000000000207008 119297000 123038009 0 116680003 900000000000011006 900000000000451002 +3573386020 20090731 1 900000000000207008 442166002 442524009 0 116680003 900000000000011006 900000000000451002 +3573387027 20090731 1 900000000000207008 442166002 119364003 0 116680003 900000000000011006 900000000000451002 +3573575024 20090731 1 900000000000207008 431405008 441906003 0 116680003 900000000000011006 900000000000451002 +3573576020 20090731 1 900000000000207008 431405008 441750007 0 116680003 900000000000011006 900000000000451002 +3573576020 20140131 0 900000000000207008 431405008 441750007 0 116680003 900000000000011006 900000000000451002 +3574555022 20090731 1 900000000000207008 442427000 442219007 0 116680003 900000000000011006 900000000000451002 +3574556023 20090731 1 900000000000207008 442427000 119364003 0 116680003 900000000000011006 900000000000451002 +3577002028 20090731 1 900000000000207008 442524009 123038009 0 116680003 900000000000011006 900000000000451002 +3578692022 20090731 1 900000000000207008 122652004 81922002 1 118169006 900000000000011006 900000000000451002 +3578693028 20090731 1 900000000000207008 122652004 413675001 1 370133003 900000000000011006 900000000000451002 +3578823020 20090731 1 900000000000207008 441673008 27888000 0 370133003 900000000000011006 900000000000451002 +3578823020 20190731 1 900000000000207008 441673008 27888000 1 370133003 900000000000011006 900000000000451002 +3579068023 20090731 1 900000000000207008 397462000 413675001 1 370133003 900000000000011006 900000000000451002 +3579202028 20090731 1 900000000000207008 399614009 432258004 1 118171006 900000000000011006 900000000000451002 +3580416024 20090731 1 900000000000207008 399407000 413675001 1 370133003 900000000000011006 900000000000451002 +3580639020 20090731 1 900000000000207008 122560006 87612001 1 370133003 900000000000011006 900000000000451002 +3580639020 20100131 0 900000000000207008 122560006 87612001 1 370133003 900000000000011006 900000000000451002 +3580738022 20090731 1 900000000000207008 438336007 413675001 1 370133003 900000000000011006 900000000000451002 +3580739025 20090731 1 900000000000207008 438336007 40724001 1 118169006 900000000000011006 900000000000451002 +3580775028 20090731 1 900000000000207008 309127008 431348003 1 118171006 900000000000011006 900000000000451002 +3580776027 20090731 1 900000000000207008 309127008 413675001 1 370133003 900000000000011006 900000000000451002 +3580890023 20090731 1 900000000000207008 122650007 55572008 1 118169006 900000000000011006 900000000000451002 +3580891022 20090731 1 900000000000207008 122650007 413675001 1 370133003 900000000000011006 900000000000451002 +3581659028 20090731 1 900000000000207008 122630008 413675001 1 370133003 900000000000011006 900000000000451002 +3582153026 20090731 1 900000000000207008 119294007 256906008 0 370133003 900000000000011006 900000000000451002 +3582153026 20190731 1 900000000000207008 119294007 256906008 1 370133003 900000000000011006 900000000000451002 +3582301025 20090731 1 900000000000207008 309153000 413675001 1 370133003 900000000000011006 900000000000451002 +3582413023 20090731 1 900000000000207008 441652008 413675001 0 370133003 900000000000011006 900000000000451002 +3582413023 20190731 1 900000000000207008 441652008 413675001 1 370133003 900000000000011006 900000000000451002 +3582582024 20090731 1 900000000000207008 122719002 413675001 1 370133003 900000000000011006 900000000000451002 +3583105021 20090731 1 900000000000207008 122584003 116154003 1 118170007 900000000000011006 900000000000451002 +3583105021 20100131 0 900000000000207008 122584003 116154003 1 118170007 900000000000011006 900000000000451002 +3583109026 20090731 1 900000000000207008 122702004 413675001 1 370133003 900000000000011006 900000000000451002 +3583205026 20090731 1 900000000000207008 122720008 119228002 1 118169006 900000000000011006 900000000000451002 +3583205026 20180131 0 900000000000207008 122720008 119228002 1 118169006 900000000000011006 900000000000451002 +3583206025 20090731 1 900000000000207008 122720008 413675001 1 370133003 900000000000011006 900000000000451002 +3583206025 20180131 0 900000000000207008 122720008 413675001 1 370133003 900000000000011006 900000000000451002 +3583322026 20090731 1 900000000000207008 122722000 413675001 1 370133003 900000000000011006 900000000000451002 +3583324025 20090731 1 900000000000207008 309143001 413675001 1 370133003 900000000000011006 900000000000451002 +3583439025 20090731 1 900000000000207008 397482001 413675001 1 370133003 900000000000011006 900000000000451002 +3583566028 20090731 1 900000000000207008 369615004 66361005 1 118171006 900000000000011006 900000000000451002 +3583567021 20090731 1 900000000000207008 369615004 413675001 1 370133003 900000000000011006 900000000000451002 +3583695028 20090731 1 900000000000207008 122721007 413675001 1 370133003 900000000000011006 900000000000451002 +3583820029 20090731 1 900000000000207008 309116006 52082005 1 118169006 900000000000011006 900000000000451002 +3583821025 20090731 1 900000000000207008 309116006 433016000 1 118171006 900000000000011006 900000000000451002 +3584034024 20090731 1 900000000000207008 309496001 413675001 1 370133003 900000000000011006 900000000000451002 +3584110027 20090731 1 900000000000207008 442043001 431938005 1 118169006 900000000000011006 900000000000451002 +3584110027 20100131 0 900000000000207008 442043001 431938005 1 118169006 900000000000011006 900000000000451002 +3584136023 20090731 1 900000000000207008 397483006 399472007 1 118171006 900000000000011006 900000000000451002 +3584137025 20090731 1 900000000000207008 397483006 413675001 1 370133003 900000000000011006 900000000000451002 +3584202024 20090731 1 900000000000207008 441749007 385296007 1 118169006 900000000000011006 900000000000451002 +3584202024 20100131 0 900000000000207008 441749007 385296007 1 118169006 900000000000011006 900000000000451002 +3584943029 20090731 1 900000000000207008 438545007 52053009 1 370133003 900000000000011006 900000000000451002 +3584943029 20170731 0 900000000000207008 438545007 52053009 1 370133003 900000000000011006 900000000000451002 +3584944024 20090731 1 900000000000207008 438545007 367643001 1 118168003 900000000000011006 900000000000451002 +3584944024 20170731 0 900000000000207008 438545007 367643001 1 118168003 900000000000011006 900000000000451002 +3585290028 20090731 1 900000000000207008 441694006 68171009 1 118169006 900000000000011006 900000000000451002 +3585290028 20100131 0 900000000000207008 441694006 68171009 1 118169006 900000000000011006 900000000000451002 +3585552024 20090731 1 900000000000207008 258475005 410583004 1 370133003 900000000000011006 900000000000451002 +3585553025 20090731 1 900000000000207008 258475005 53496003 1 118171006 900000000000011006 900000000000451002 +3585596024 20090731 1 900000000000207008 309501000 413675001 1 370133003 900000000000011006 900000000000451002 +3585706026 20090731 1 900000000000207008 421615004 413675001 1 370133003 900000000000011006 900000000000451002 +3585867027 20090731 1 900000000000207008 122631007 413675001 1 370133003 900000000000011006 900000000000451002 +3586092023 20090731 1 900000000000207008 122723005 413675001 1 370133003 900000000000011006 900000000000451002 +3586237024 20090731 1 900000000000207008 438343001 39937001 1 118169006 900000000000011006 900000000000451002 +3586238025 20090731 1 900000000000207008 438343001 419351001 1 118168003 900000000000011006 900000000000451002 +3586252028 20090731 1 900000000000207008 309489003 413675001 1 370133003 900000000000011006 900000000000451002 +3586527029 20090731 1 900000000000207008 441695007 441803007 1 118171006 900000000000011006 900000000000451002 +3586527029 20100131 0 900000000000207008 441695007 441803007 1 118171006 900000000000011006 900000000000451002 +3586843027 20090731 1 900000000000207008 309490007 413675001 1 370133003 900000000000011006 900000000000451002 +3586916020 20090731 1 900000000000207008 309108002 413675001 1 370133003 900000000000011006 900000000000451002 +3587052029 20090731 1 900000000000207008 309205005 413675001 1 370133003 900000000000011006 900000000000451002 +3587058025 20090731 1 900000000000207008 396476009 413675001 1 370133003 900000000000011006 900000000000451002 +3587132028 20090731 1 900000000000207008 122608007 413675001 1 370133003 900000000000011006 900000000000451002 +3587227020 20090731 1 900000000000207008 438351003 122865005 1 118169006 900000000000011006 900000000000451002 +3587228026 20090731 1 900000000000207008 438351003 24506003 1 118171006 900000000000011006 900000000000451002 +3587229023 20090731 1 900000000000207008 438351003 413675001 1 370133003 900000000000011006 900000000000451002 +3587256020 20090731 1 900000000000207008 309119004 74422001 1 118171006 900000000000011006 900000000000451002 +3587257027 20090731 1 900000000000207008 309119004 413675001 1 370133003 900000000000011006 900000000000451002 +3587258021 20090731 1 900000000000207008 309119004 84820005 1 118169006 900000000000011006 900000000000451002 +3587267021 20090731 1 900000000000207008 399443006 397896001 1 118171006 900000000000011006 900000000000451002 +3587268027 20090731 1 900000000000207008 399443006 413675001 1 370133003 900000000000011006 900000000000451002 +3587290027 20090731 1 900000000000207008 122677003 413675001 1 370133003 900000000000011006 900000000000451002 +3587405025 20090731 1 900000000000207008 438454007 78603008 1 118171006 900000000000011006 900000000000451002 +3587406029 20090731 1 900000000000207008 438454007 10047002 1 118169006 900000000000011006 900000000000451002 +3587488026 20090731 1 900000000000207008 122607002 413675001 1 370133003 900000000000011006 900000000000451002 +3587515023 20090731 1 900000000000207008 309133004 90470006 1 118171006 900000000000011006 900000000000451002 +3587516024 20090731 1 900000000000207008 309133004 413675001 1 370133003 900000000000011006 900000000000451002 +3587552023 20090731 1 900000000000207008 122642003 85774003 1 118169006 900000000000011006 900000000000451002 +3587552023 20170731 0 900000000000207008 122642003 85774003 1 118169006 900000000000011006 900000000000451002 +3587730028 20090731 1 900000000000207008 440472000 119746007 1 118171006 900000000000011006 900000000000451002 +3587785029 20090731 1 900000000000207008 309504008 413675001 1 370133003 900000000000011006 900000000000451002 +3587785029 20100731 0 900000000000207008 309504008 413675001 1 370133003 900000000000011006 900000000000451002 +3587785029 20110131 1 900000000000207008 309504008 413675001 1 370133003 900000000000011006 900000000000451002 +3587867026 20090731 1 900000000000207008 396353007 413675001 1 370133003 900000000000011006 900000000000451002 +3587868020 20090731 1 900000000000207008 396353007 39937001 1 118169006 900000000000011006 900000000000451002 +3587966020 20090731 1 900000000000207008 440138003 413935006 1 370133003 900000000000011006 900000000000451002 +3587967027 20090731 1 900000000000207008 440138003 334886004 1 118169006 900000000000011006 900000000000451002 +3588038028 20090731 1 900000000000207008 441884004 81068001 1 118171006 900000000000011006 900000000000451002 +3588038028 20100131 0 900000000000207008 441884004 81068001 1 118171006 900000000000011006 900000000000451002 +3588340025 20090731 1 900000000000207008 396356004 65854006 1 118171006 900000000000011006 900000000000451002 +3588341026 20090731 1 900000000000207008 396356004 39937001 1 118169006 900000000000011006 900000000000451002 +3588342022 20090731 1 900000000000207008 396356004 413675001 1 370133003 900000000000011006 900000000000451002 +3588435023 20090731 1 900000000000207008 396479002 413675001 1 370133003 900000000000011006 900000000000451002 +3588513029 20090731 1 900000000000207008 396478005 413675001 1 370133003 900000000000011006 900000000000451002 +3588589023 20090731 1 900000000000207008 119352006 58986001 0 118169006 900000000000011006 900000000000451002 +3588589023 20190731 1 900000000000207008 119352006 58986001 1 118169006 900000000000011006 900000000000451002 +3588748023 20090731 1 900000000000207008 396355000 39937001 1 118169006 900000000000011006 900000000000451002 +3588838029 20090731 1 900000000000207008 440502004 56361007 1 118171006 900000000000011006 900000000000451002 +3588839021 20090731 1 900000000000207008 440502004 87784001 1 118169006 900000000000011006 900000000000451002 +3588920028 20090731 1 900000000000207008 439034006 413675001 1 370133003 900000000000011006 900000000000451002 +3588921029 20090731 1 900000000000207008 439034006 107963000 1 118171006 900000000000011006 900000000000451002 +3588922020 20090731 1 900000000000207008 439034006 10200004 1 118169006 900000000000011006 900000000000451002 +3589243022 20090731 1 900000000000207008 258467004 72869002 1 370133003 900000000000011006 900000000000451002 +3589279025 20090731 1 900000000000207008 396354001 413675001 1 370133003 900000000000011006 900000000000451002 +3589280027 20090731 1 900000000000207008 396354001 440258006 1 118171006 900000000000011006 900000000000451002 +3589281028 20090731 1 900000000000207008 396354001 39937001 1 118169006 900000000000011006 900000000000451002 +3589426021 20090731 1 900000000000207008 441876003 88481005 1 118169006 900000000000011006 900000000000451002 +3589426021 20100131 0 900000000000207008 441876003 88481005 1 118169006 900000000000011006 900000000000451002 +3589824028 20090731 1 900000000000207008 384746001 413675001 1 370133003 900000000000011006 900000000000451002 +3589840025 20090731 1 900000000000207008 441710009 86482007 1 118171006 900000000000011006 900000000000451002 +3589840025 20100131 0 900000000000207008 441710009 86482007 1 118171006 900000000000011006 900000000000451002 +3589899025 20090731 1 900000000000207008 309112008 83876008 1 118171006 900000000000011006 900000000000451002 +3589900024 20090731 1 900000000000207008 309112008 13351007 1 118169006 900000000000011006 900000000000451002 +3589901023 20090731 1 900000000000207008 309112008 413675001 1 370133003 900000000000011006 900000000000451002 +3590014026 20090731 1 900000000000207008 440500007 256906008 0 370133003 900000000000011006 900000000000451002 +3590014026 20190731 1 900000000000207008 440500007 256906008 1 370133003 900000000000011006 900000000000451002 +3590269020 20090731 1 900000000000207008 122679000 413675001 1 370133003 900000000000011006 900000000000451002 +3590405026 20090731 1 900000000000207008 397132004 413675001 1 370133003 900000000000011006 900000000000451002 +3590517027 20090731 1 900000000000207008 127461003 413675001 1 370133003 900000000000011006 900000000000451002 +3590552024 20090731 1 900000000000207008 397131006 413675001 1 370133003 900000000000011006 900000000000451002 +3590568029 20090731 1 900000000000207008 122693007 413675001 1 370133003 900000000000011006 900000000000451002 +3590678022 20090731 1 900000000000207008 399502008 413675001 1 370133003 900000000000011006 900000000000451002 +3590847020 20090731 1 900000000000207008 397130007 413675001 1 370133003 900000000000011006 900000000000451002 +3591013027 20090731 1 900000000000207008 309223002 413675001 1 370133003 900000000000011006 900000000000451002 +3591023020 20090731 1 900000000000207008 441810001 430103002 1 118171006 900000000000011006 900000000000451002 +3591023020 20100131 0 900000000000207008 441810001 430103002 1 118171006 900000000000011006 900000000000451002 +3591024025 20090731 1 900000000000207008 441810001 87784001 1 118169006 900000000000011006 900000000000451002 +3591024025 20100131 0 900000000000207008 441810001 87784001 1 118169006 900000000000011006 900000000000451002 +3591078025 20090731 1 900000000000207008 258564008 16811007 1 118169006 900000000000011006 900000000000451002 +3591078025 20110731 0 900000000000207008 258564008 16811007 1 118169006 900000000000011006 900000000000451002 +3591484023 20090731 1 900000000000207008 440137008 83670000 1 118169006 900000000000011006 900000000000451002 +3591484023 20100131 0 900000000000207008 440137008 83670000 1 118169006 900000000000011006 900000000000451002 +3591484023 20100731 1 900000000000207008 440137008 83670000 1 118169006 900000000000011006 900000000000451002 +3591559022 20090731 1 900000000000207008 441709004 59441001 0 118169006 900000000000011006 900000000000451002 +3591559022 20190731 1 900000000000207008 441709004 59441001 1 118169006 900000000000011006 900000000000451002 +3591559022 20210930 0 900000000000207008 441709004 59441001 1 118169006 900000000000011006 900000000000451002 +3591754025 20090731 1 900000000000207008 397133009 413675001 1 370133003 900000000000011006 900000000000451002 +3591932020 20090731 1 900000000000207008 399629006 413675001 1 370133003 900000000000011006 900000000000451002 +3591933026 20090731 1 900000000000207008 399629006 69695003 1 118169006 900000000000011006 900000000000451002 +3592119028 20090731 1 900000000000207008 168138009 62059006 1 370133003 900000000000011006 900000000000451002 +3592120023 20090731 1 900000000000207008 168138009 69695003 1 118169006 900000000000011006 900000000000451002 +3592287028 20090731 1 900000000000207008 441906003 441786008 1 118171006 900000000000011006 900000000000451002 +3592287028 20100131 0 900000000000207008 441906003 441786008 1 118171006 900000000000011006 900000000000451002 +3592822028 20090731 1 900000000000207008 373101006 413675001 1 370133003 900000000000011006 900000000000451002 +3592823022 20090731 1 900000000000207008 373101006 237376002 1 118171006 900000000000011006 900000000000451002 +3592851029 20090731 1 900000000000207008 122683000 413675001 1 370133003 900000000000011006 900000000000451002 +3593026021 20090731 1 900000000000207008 442649003 441692005 1 118171006 900000000000011006 900000000000451002 +3593026021 20100131 0 900000000000207008 442649003 441692005 1 118171006 900000000000011006 900000000000451002 +3593089028 20090731 1 900000000000207008 309103006 122479006 1 118171006 900000000000011006 900000000000451002 +3593090021 20090731 1 900000000000207008 309103006 309312004 1 118169006 900000000000011006 900000000000451002 +3593121025 20090731 1 900000000000207008 441792002 23451007 1 118169006 900000000000011006 900000000000451002 +3593121025 20100131 0 900000000000207008 441792002 23451007 1 118169006 900000000000011006 900000000000451002 +3593168024 20090731 1 900000000000207008 442173007 225109005 1 118171006 900000000000011006 900000000000451002 +3593168024 20100131 0 900000000000207008 442173007 225109005 1 118171006 900000000000011006 900000000000451002 +3593168024 20110131 1 900000000000207008 442173007 225109005 1 118171006 900000000000011006 900000000000451002 +3593168024 20110731 0 900000000000207008 442173007 225109005 1 118171006 900000000000011006 900000000000451002 +3593229020 20090731 1 900000000000207008 441620008 32457005 1 370133003 900000000000011006 900000000000451002 +3593229020 20100131 0 900000000000207008 441620008 32457005 1 370133003 900000000000011006 900000000000451002 +3593361021 20090731 1 900000000000207008 122684006 413675001 1 370133003 900000000000011006 900000000000451002 +3593375025 20090731 1 900000000000207008 441903006 955009 1 118169006 900000000000011006 900000000000451002 +3593375025 20100131 0 900000000000207008 441903006 955009 1 118169006 900000000000011006 900000000000451002 +3593375025 20100731 1 900000000000207008 441903006 955009 1 118169006 900000000000011006 900000000000451002 +3593375025 20110131 0 900000000000207008 441903006 955009 1 118169006 900000000000011006 900000000000451002 +3593418024 20090731 1 900000000000207008 439895009 45206002 1 118169006 900000000000011006 900000000000451002 +3593418024 20110131 0 900000000000207008 439895009 45206002 1 118169006 900000000000011006 900000000000451002 +3593418024 20110731 1 900000000000207008 439895009 45206002 1 118169006 900000000000011006 900000000000451002 +3593419027 20090731 1 900000000000207008 439895009 119705002 1 118171006 900000000000011006 900000000000451002 +3593419027 20110131 0 900000000000207008 439895009 119705002 1 118171006 900000000000011006 900000000000451002 +3593419027 20110731 1 900000000000207008 439895009 119705002 1 118171006 900000000000011006 900000000000451002 +3593420022 20090731 1 900000000000207008 439895009 413675001 1 370133003 900000000000011006 900000000000451002 +3593420022 20110131 0 900000000000207008 439895009 413675001 1 370133003 900000000000011006 900000000000451002 +3593420022 20110731 1 900000000000207008 439895009 413675001 1 370133003 900000000000011006 900000000000451002 +3593437026 20090731 1 900000000000207008 309190004 385294005 1 118169006 900000000000011006 900000000000451002 +3593438020 20090731 1 900000000000207008 309190004 413675001 1 370133003 900000000000011006 900000000000451002 +3593439028 20090731 1 900000000000207008 309190004 71735005 1 118171006 900000000000011006 900000000000451002 +3593486029 20090731 1 900000000000207008 397077004 413675001 1 370133003 900000000000011006 900000000000451002 +3593851023 20090731 1 900000000000207008 122685007 413675001 1 370133003 900000000000011006 900000000000451002 +3594803022 20090731 1 900000000000207008 440675009 67889009 1 118171006 900000000000011006 900000000000451002 +3595117023 20090731 1 900000000000207008 397078009 413675001 1 370133003 900000000000011006 900000000000451002 +3595249029 20090731 1 900000000000207008 419695002 276339004 1 118170007 900000000000011006 900000000000451002 +3595254022 20090731 1 900000000000207008 440135000 87953007 1 118169006 900000000000011006 900000000000451002 +3595266027 20090731 1 900000000000207008 122645001 235340004 1 118171006 900000000000011006 900000000000451002 +3595267020 20090731 1 900000000000207008 122645001 413675001 1 370133003 900000000000011006 900000000000451002 +3595268026 20090731 1 900000000000207008 122645001 41329004 1 118168003 900000000000011006 900000000000451002 +3595368028 20090731 1 900000000000207008 309486005 413675001 1 370133003 900000000000011006 900000000000451002 +3595510028 20090731 1 900000000000207008 309484008 45289007 1 118169006 900000000000011006 900000000000451002 +3595511029 20090731 1 900000000000207008 309484008 413675001 1 370133003 900000000000011006 900000000000451002 +3595526027 20090731 1 900000000000207008 122697008 413675001 1 370133003 900000000000011006 900000000000451002 +3595805024 20090731 1 900000000000207008 441510007 256906008 0 370133003 900000000000011006 900000000000451002 +3595805024 20190731 1 900000000000207008 441510007 256906008 1 370133003 900000000000011006 900000000000451002 +3595827026 20090731 1 900000000000207008 438352005 40583006 1 118171006 900000000000011006 900000000000451002 +3595828020 20090731 1 900000000000207008 438352005 413675001 1 370133003 900000000000011006 900000000000451002 +3595855027 20090731 1 900000000000207008 399658009 413675001 1 370133003 900000000000011006 900000000000451002 +3596023021 20090731 1 900000000000207008 397436009 413675001 1 370133003 900000000000011006 900000000000451002 +3596144023 20090731 1 900000000000207008 258607008 397394009 1 118171006 900000000000011006 900000000000451002 +3596144023 20170731 0 900000000000207008 258607008 397394009 1 118171006 900000000000011006 900000000000451002 +3597199021 20090731 1 900000000000207008 122669002 413675001 1 370133003 900000000000011006 900000000000451002 +3597371024 20090731 1 900000000000207008 309270001 413675001 1 370133003 900000000000011006 900000000000451002 +3597453029 20090731 1 900000000000207008 119297000 256906008 0 370133003 900000000000011006 900000000000451002 +3597453029 20190731 1 900000000000207008 119297000 256906008 1 370133003 900000000000011006 900000000000451002 +3597535022 20090731 1 900000000000207008 122559001 256906008 0 370133003 900000000000011006 900000000000451002 +3597535022 20190731 1 900000000000207008 122559001 256906008 1 370133003 900000000000011006 900000000000451002 +3598200021 20090731 1 900000000000207008 441479001 413675001 0 370133003 900000000000011006 900000000000451002 +3598200021 20190731 1 900000000000207008 441479001 413675001 1 370133003 900000000000011006 900000000000451002 +3598222025 20090731 1 900000000000207008 256912003 41898006 1 118169006 900000000000011006 900000000000451002 +3598222025 20100131 0 900000000000207008 256912003 41898006 1 118169006 900000000000011006 900000000000451002 +3598419025 20090731 1 900000000000207008 309275006 413675001 1 370133003 900000000000011006 900000000000451002 +3598525029 20090731 1 900000000000207008 442427000 67922002 0 370133003 900000000000011006 900000000000451002 +3598525029 20190731 1 900000000000207008 442427000 67922002 1 370133003 900000000000011006 900000000000451002 +3599162026 20090731 1 900000000000207008 309277003 413675001 1 370133003 900000000000011006 900000000000451002 +3599343023 20090731 1 900000000000207008 438543000 3860006 1 118169006 900000000000011006 900000000000451002 +3599344028 20090731 1 900000000000207008 438543000 86259008 1 118171006 900000000000011006 900000000000451002 +3599883023 20090731 1 900000000000207008 309267000 413675001 1 370133003 900000000000011006 900000000000451002 +3599995022 20090731 1 900000000000207008 438659007 8345004 1 118171006 900000000000011006 900000000000451002 +3599996023 20090731 1 900000000000207008 438659007 413675001 1 370133003 900000000000011006 900000000000451002 +3600155029 20090731 1 900000000000207008 309287004 176917009 2 118171006 900000000000011006 900000000000451002 +3600156028 20090731 1 900000000000207008 309287004 2033006 3 118169006 900000000000011006 900000000000451002 +3600157021 20090731 1 900000000000207008 309287004 302377002 4 118171006 900000000000011006 900000000000451002 +3600158027 20090731 1 900000000000207008 309287004 43981004 4 118169006 900000000000011006 900000000000451002 +3600159024 20090731 1 900000000000207008 309287004 413675001 4 370133003 900000000000011006 900000000000451002 +3600371020 20090731 1 900000000000207008 399732002 413675001 1 370133003 900000000000011006 900000000000451002 +3600463022 20090731 1 900000000000207008 122710003 83152002 1 118171006 900000000000011006 900000000000451002 +3600551026 20090731 1 900000000000207008 309183009 4596009 1 118169006 900000000000011006 900000000000451002 +3600552022 20090731 1 900000000000207008 309183009 413675001 1 370133003 900000000000011006 900000000000451002 +3600578029 20090731 1 900000000000207008 397333000 413675001 1 370133003 900000000000011006 900000000000451002 +3600598023 20090731 1 900000000000207008 309067007 413675001 1 370133003 900000000000011006 900000000000451002 +3600599026 20090731 1 900000000000207008 309067007 39937001 1 118169006 900000000000011006 900000000000451002 +3600707022 20090731 1 900000000000207008 312494007 438633009 1 118171006 900000000000011006 900000000000451002 +3600707022 20110731 0 900000000000207008 312494007 438633009 1 118171006 900000000000011006 900000000000451002 +3600708028 20090731 1 900000000000207008 312494007 367611001 1 118169006 900000000000011006 900000000000451002 +3600708028 20110731 0 900000000000207008 312494007 367611001 1 118169006 900000000000011006 900000000000451002 +3600745023 20090731 1 900000000000207008 258585008 413675001 1 370133003 900000000000011006 900000000000451002 +3600812026 20090731 1 900000000000207008 442166002 67922002 0 370133003 900000000000011006 900000000000451002 +3600812026 20190731 1 900000000000207008 442166002 67922002 1 370133003 900000000000011006 900000000000451002 +3601217020 20090731 1 900000000000207008 122561005 87612001 1 370133003 900000000000011006 900000000000451002 +3601217020 20100131 0 900000000000207008 122561005 87612001 1 370133003 900000000000011006 900000000000451002 +3601428021 20090731 1 900000000000207008 258581004 256906008 0 370133003 900000000000011006 900000000000451002 +3601428021 20190731 1 900000000000207008 258581004 256906008 1 370133003 900000000000011006 900000000000451002 +3601836022 20090731 1 900000000000207008 438803004 413675001 1 370133003 900000000000011006 900000000000451002 +3601837029 20090731 1 900000000000207008 438803004 82849001 1 118169006 900000000000011006 900000000000451002 +3602058023 20090731 1 900000000000207008 399689008 413675001 1 370133003 900000000000011006 900000000000451002 +3602245028 20090731 1 900000000000207008 440515008 86273004 1 118171006 900000000000011006 900000000000451002 +3602381028 20090731 1 900000000000207008 438804005 70948008 1 118169006 900000000000011006 900000000000451002 +3602732028 20090731 1 900000000000207008 438595008 417992006 1 118168003 900000000000011006 900000000000451002 +3602732028 20170731 0 900000000000207008 438595008 417992006 1 118168003 900000000000011006 900000000000451002 +3602795028 20090731 1 900000000000207008 122668005 413675001 1 370133003 900000000000011006 900000000000451002 +3602796027 20090731 1 900000000000207008 122668005 431938005 1 118169006 900000000000011006 900000000000451002 +3603431028 20090731 1 900000000000207008 309175003 413675001 1 370133003 900000000000011006 900000000000451002 +3607977026 20090731 1 900000000000207008 438804005 413675001 1 370133003 900000000000011006 900000000000451002 +3608010021 20090731 1 900000000000207008 122583009 41898006 1 118169006 900000000000011006 900000000000451002 +3608010021 20100131 0 900000000000207008 122583009 41898006 1 118169006 900000000000011006 900000000000451002 +3608010021 20110131 1 900000000000207008 122583009 41898006 1 118169006 900000000000011006 900000000000451002 +3608010021 20110731 0 900000000000207008 122583009 41898006 1 118169006 900000000000011006 900000000000451002 +3608016026 20090731 1 900000000000207008 399614009 413675001 1 370133003 900000000000011006 900000000000451002 +3608017024 20090731 1 900000000000207008 309138008 413675001 1 370133003 900000000000011006 900000000000451002 +3608017024 20140131 0 900000000000207008 309138008 413675001 1 370133003 900000000000011006 900000000000451002 +3608086020 20090731 1 900000000000207008 396480004 413675001 1 370133003 900000000000011006 900000000000451002 +3608177029 20090731 1 900000000000207008 309079007 413675001 1 370133003 900000000000011006 900000000000451002 +3608246024 20090731 1 900000000000207008 440502004 413675001 1 370133003 900000000000011006 900000000000451002 +3608295024 20090731 1 900000000000207008 303247002 413675001 1 370133003 900000000000011006 900000000000451002 +3608309022 20090731 1 900000000000207008 122720008 14353000 1 118171006 900000000000011006 900000000000451002 +3608309022 20180131 0 900000000000207008 122720008 14353000 1 118171006 900000000000011006 900000000000451002 +3608317025 20090731 1 900000000000207008 397334006 413675001 1 370133003 900000000000011006 900000000000451002 +3608339028 20090731 1 900000000000207008 122583009 116154003 1 118170007 900000000000011006 900000000000451002 +3608339028 20100131 0 900000000000207008 122583009 116154003 1 118170007 900000000000011006 900000000000451002 +3608339028 20110131 1 900000000000207008 122583009 116154003 1 118170007 900000000000011006 900000000000451002 +3608339028 20110731 0 900000000000207008 122583009 116154003 1 118170007 900000000000011006 900000000000451002 +3608367021 20090731 1 900000000000207008 440493002 116154003 1 118170007 900000000000011006 900000000000451002 +3608399026 20090731 1 900000000000207008 309103006 413675001 1 370133003 900000000000011006 900000000000451002 +3608411025 20090731 1 900000000000207008 438336007 12856003 1 118168003 900000000000011006 900000000000451002 +3608415023 20090731 1 900000000000207008 438352005 44567001 1 118169006 900000000000011006 900000000000451002 +3608428027 20090731 1 900000000000207008 438545007 88731002 1 118169006 900000000000011006 900000000000451002 +3608428027 20170731 0 900000000000207008 438545007 88731002 1 118169006 900000000000011006 900000000000451002 +3608451027 20090731 1 900000000000207008 439479000 413675001 1 370133003 900000000000011006 900000000000451002 +3608467022 20090731 1 900000000000207008 309220004 413675001 1 370133003 900000000000011006 900000000000451002 +3608468028 20090731 1 900000000000207008 309485009 413675001 1 370133003 900000000000011006 900000000000451002 +3608471020 20090731 1 900000000000207008 396353007 440258006 1 118171006 900000000000011006 900000000000451002 +3608472029 20090731 1 900000000000207008 396355000 413675001 1 370133003 900000000000011006 900000000000451002 +3608473023 20090731 1 900000000000207008 397131006 236828004 1 118171006 900000000000011006 900000000000451002 +3608486025 20090731 1 900000000000207008 438659007 10200004 1 118169006 900000000000011006 900000000000451002 +3608487023 20090731 1 900000000000207008 438661003 70948008 1 118169006 900000000000011006 900000000000451002 +3608541026 20090731 1 900000000000207008 122719002 120053002 1 118171006 900000000000011006 900000000000451002 +3608566027 20090731 1 900000000000207008 439479000 65801008 1 118171006 900000000000011006 900000000000451002 +3608639020 20090731 1 900000000000207008 258467004 67889009 1 118171006 900000000000011006 900000000000451002 +3608656028 20090731 1 900000000000207008 440135000 439336003 1 118171006 900000000000011006 900000000000451002 +3608657021 20090731 1 900000000000207008 440137008 387715005 1 118171006 900000000000011006 900000000000451002 +3608657021 20100131 0 900000000000207008 440137008 387715005 1 118171006 900000000000011006 900000000000451002 +3608657021 20100731 1 900000000000207008 440137008 387715005 1 118171006 900000000000011006 900000000000451002 +3608692029 20090731 1 900000000000207008 440472000 413675001 1 370133003 900000000000011006 900000000000451002 +3608693023 20090731 1 900000000000207008 440493002 260667007 1 370133003 900000000000011006 900000000000451002 +3608697024 20090731 1 900000000000207008 440515008 49755003 1 118168003 900000000000011006 900000000000451002 +3608771021 20090731 1 900000000000207008 438343001 285570007 1 118171006 900000000000011006 900000000000451002 +3608916028 20090731 1 900000000000207008 396355000 440258006 1 118171006 900000000000011006 900000000000451002 +3609073023 20090731 1 900000000000207008 440675009 431491007 1 118169006 900000000000011006 900000000000451002 +3609145023 20090731 1 900000000000207008 122678008 413675001 1 370133003 900000000000011006 900000000000451002 +3609147026 20090731 1 900000000000207008 122562003 133933007 1 118170007 900000000000011006 900000000000451002 +3609147026 20100131 0 900000000000207008 122562003 133933007 1 118170007 900000000000011006 900000000000451002 +3609153026 20090731 1 900000000000207008 399532000 413675001 1 370133003 900000000000011006 900000000000451002 +3609201027 20090731 1 900000000000207008 309079007 21911005 1 118171006 900000000000011006 900000000000451002 +3609214026 20090731 1 900000000000207008 122560006 105470007 1 118170007 900000000000011006 900000000000451002 +3609214026 20100131 0 900000000000207008 122560006 105470007 1 118170007 900000000000011006 900000000000451002 +3609215025 20090731 1 900000000000207008 122561005 116154003 1 118170007 900000000000011006 900000000000451002 +3609215025 20100131 0 900000000000207008 122561005 116154003 1 118170007 900000000000011006 900000000000451002 +3609216029 20090731 1 900000000000207008 122562003 87612001 1 370133003 900000000000011006 900000000000451002 +3609216029 20100131 0 900000000000207008 122562003 87612001 1 370133003 900000000000011006 900000000000451002 +3609217022 20090731 1 900000000000207008 122583009 87612001 1 370133003 900000000000011006 900000000000451002 +3609217022 20100131 0 900000000000207008 122583009 87612001 1 370133003 900000000000011006 900000000000451002 +3609217022 20110131 1 900000000000207008 122583009 87612001 1 370133003 900000000000011006 900000000000451002 +3609217022 20110731 0 900000000000207008 122583009 87612001 1 370133003 900000000000011006 900000000000451002 +3609218028 20090731 1 900000000000207008 122584003 52501007 1 118169006 900000000000011006 900000000000451002 +3609218028 20100131 0 900000000000207008 122584003 52501007 1 118169006 900000000000011006 900000000000451002 +3609228021 20090731 1 900000000000207008 438595008 32457005 1 370133003 900000000000011006 900000000000451002 +3609228021 20170731 0 900000000000207008 438595008 32457005 1 370133003 900000000000011006 900000000000451002 +3609502022 20090731 1 900000000000207008 122710003 413675001 1 370133003 900000000000011006 900000000000451002 +3609510023 20090731 1 900000000000207008 440472000 10047002 1 118169006 900000000000011006 900000000000451002 +3609757021 20090731 1 900000000000207008 438661003 7246002 1 118171006 900000000000011006 900000000000451002 +3609772020 20090731 1 900000000000207008 256912003 33463005 1 370133003 900000000000011006 900000000000451002 +3609772020 20100131 0 900000000000207008 256912003 33463005 1 370133003 900000000000011006 900000000000451002 +3609790021 20090731 1 900000000000207008 122642003 413675001 1 370133003 900000000000011006 900000000000451002 +3609790021 20170731 0 900000000000207008 122642003 413675001 1 370133003 900000000000011006 900000000000451002 +3609930028 20090731 1 900000000000207008 309116006 413675001 1 370133003 900000000000011006 900000000000451002 +3615033026 20090731 1 900000000000207008 309287004 113293009 2 118169006 900000000000011006 900000000000451002 +3615034021 20090731 1 900000000000207008 309287004 20837000 5 118169006 900000000000011006 900000000000451002 +3615035022 20090731 1 900000000000207008 309287004 176916000 3 118171006 900000000000011006 900000000000451002 +3615036023 20090731 1 900000000000207008 309287004 302376006 5 118171006 900000000000011006 900000000000451002 +3615037025 20090731 1 900000000000207008 309287004 413675001 2 370133003 900000000000011006 900000000000451002 +3615038024 20090731 1 900000000000207008 309287004 413675001 3 370133003 900000000000011006 900000000000451002 +3615039027 20090731 1 900000000000207008 309287004 413675001 5 370133003 900000000000011006 900000000000451002 +3615213024 20090731 1 900000000000207008 441903006 287571005 1 118171006 900000000000011006 900000000000451002 +3615213024 20100131 0 900000000000207008 441903006 287571005 1 118171006 900000000000011006 900000000000451002 +3615213024 20100731 1 900000000000207008 441903006 287571005 1 118171006 900000000000011006 900000000000451002 +3615213024 20110131 0 900000000000207008 441903006 287571005 1 118171006 900000000000011006 900000000000451002 +3615216027 20090731 1 900000000000207008 441906003 12921003 1 118169006 900000000000011006 900000000000451002 +3615216027 20100131 0 900000000000207008 441906003 12921003 1 118169006 900000000000011006 900000000000451002 +3615449022 20090731 1 900000000000207008 442043001 225113003 1 118171006 900000000000011006 900000000000451002 +3615449022 20100131 0 900000000000207008 442043001 225113003 1 118171006 900000000000011006 900000000000451002 +3615450022 20090731 1 900000000000207008 442043001 78014005 1 370133003 900000000000011006 900000000000451002 +3615450022 20100131 0 900000000000207008 442043001 78014005 1 370133003 900000000000011006 900000000000451002 +3615578020 20090731 1 900000000000207008 442173007 25990002 1 118169006 900000000000011006 900000000000451002 +3615578020 20100131 0 900000000000207008 442173007 25990002 1 118169006 900000000000011006 900000000000451002 +3615578020 20110131 1 900000000000207008 442173007 25990002 1 118169006 900000000000011006 900000000000451002 +3615578020 20110731 0 900000000000207008 442173007 25990002 1 118169006 900000000000011006 900000000000451002 +3615579028 20090731 1 900000000000207008 442173007 78014005 1 370133003 900000000000011006 900000000000451002 +3615579028 20100131 0 900000000000207008 442173007 78014005 1 370133003 900000000000011006 900000000000451002 +3615579028 20110131 1 900000000000207008 442173007 78014005 1 370133003 900000000000011006 900000000000451002 +3615579028 20110731 0 900000000000207008 442173007 78014005 1 370133003 900000000000011006 900000000000451002 +3616228027 20090731 1 900000000000207008 442649003 55603005 1 118169006 900000000000011006 900000000000451002 +3616228027 20100131 0 900000000000207008 442649003 55603005 1 118169006 900000000000011006 900000000000451002 +3616768027 20090731 1 900000000000207008 441620008 74262004 1 118169006 900000000000011006 900000000000451002 +3616768027 20100131 0 900000000000207008 441620008 74262004 1 118169006 900000000000011006 900000000000451002 +3616858027 20090731 1 900000000000207008 441694006 234282007 1 118171006 900000000000011006 900000000000451002 +3616858027 20100131 0 900000000000207008 441694006 234282007 1 118171006 900000000000011006 900000000000451002 +3616859024 20090731 1 900000000000207008 441695007 45289007 1 118169006 900000000000011006 900000000000451002 +3616859024 20100131 0 900000000000207008 441695007 45289007 1 118169006 900000000000011006 900000000000451002 +3616870028 20090731 1 900000000000207008 441710009 279572002 1 118169006 900000000000011006 900000000000451002 +3616870028 20100131 0 900000000000207008 441710009 279572002 1 118169006 900000000000011006 900000000000451002 +3616960026 20090731 1 900000000000207008 441749007 442171009 1 118171006 900000000000011006 900000000000451002 +3616960026 20100131 0 900000000000207008 441749007 442171009 1 118171006 900000000000011006 900000000000451002 +3616961027 20090731 1 900000000000207008 441750007 52731004 1 118169006 900000000000011006 900000000000451002 +3616961027 20100731 0 900000000000207008 441750007 52731004 1 118169006 900000000000011006 900000000000451002 +3616962023 20090731 1 900000000000207008 441750007 441785007 1 118171006 900000000000011006 900000000000451002 +3616962023 20100731 0 900000000000207008 441750007 441785007 1 118171006 900000000000011006 900000000000451002 +3616995028 20090731 1 900000000000207008 441792002 36552004 1 118171006 900000000000011006 900000000000451002 +3616995028 20100131 0 900000000000207008 441792002 36552004 1 118171006 900000000000011006 900000000000451002 +3617121023 20090731 1 900000000000207008 441876003 441984003 1 118171006 900000000000011006 900000000000451002 +3617121023 20100131 0 900000000000207008 441876003 441984003 1 118171006 900000000000011006 900000000000451002 +3617126029 20090731 1 900000000000207008 441884004 41216001 1 118169006 900000000000011006 900000000000451002 +3617126029 20100131 0 900000000000207008 441884004 41216001 1 118169006 900000000000011006 900000000000451002 +3618478022 20100131 1 900000000000207008 168139001 443654002 0 116680003 900000000000011006 900000000000451002 +3618478022 20220228 0 900000000000207008 168139001 443654002 0 116680003 900000000000011006 900000000000451002 +3618667020 20100131 1 900000000000207008 110944006 443654002 0 116680003 900000000000011006 900000000000451002 +3618676029 20100131 1 900000000000207008 110926003 443654002 0 116680003 900000000000011006 900000000000451002 +3618676029 20110731 0 900000000000207008 110926003 443654002 0 116680003 900000000000011006 900000000000451002 +3618677022 20100131 1 900000000000207008 110928002 443654002 0 116680003 900000000000011006 900000000000451002 +3618677022 20110731 0 900000000000207008 110928002 443654002 0 116680003 900000000000011006 900000000000451002 +3618700029 20100131 1 900000000000207008 110964001 443654002 0 116680003 900000000000011006 900000000000451002 +3618700029 20130731 0 900000000000207008 110964001 443654002 0 116680003 900000000000011006 900000000000451002 +3618722020 20100131 1 900000000000207008 258452003 443654002 0 116680003 900000000000011006 900000000000451002 +3618722020 20130731 0 900000000000207008 258452003 443654002 0 116680003 900000000000011006 900000000000451002 +3618723026 20100131 1 900000000000207008 258576008 443654002 0 116680003 900000000000011006 900000000000451002 +3618723026 20110131 0 900000000000207008 258576008 443654002 0 116680003 900000000000011006 900000000000451002 +3618991029 20100131 1 900000000000207008 309491006 443654002 0 116680003 900000000000011006 900000000000451002 +3618991029 20110731 0 900000000000207008 309491006 443654002 0 116680003 900000000000011006 900000000000451002 +3618992020 20100131 1 900000000000207008 309493009 443654002 0 116680003 900000000000011006 900000000000451002 +3618992020 20110731 0 900000000000207008 309493009 443654002 0 116680003 900000000000011006 900000000000451002 +3618993026 20100131 1 900000000000207008 119341000 443654002 0 116680003 900000000000011006 900000000000451002 +3618993026 20110731 0 900000000000207008 119341000 443654002 0 116680003 900000000000011006 900000000000451002 +3618995022 20100131 1 900000000000207008 119381007 443654002 0 116680003 900000000000011006 900000000000451002 +3618995022 20130731 0 900000000000207008 119381007 443654002 0 116680003 900000000000011006 900000000000451002 +3618997025 20100131 1 900000000000207008 119379005 443654002 0 116680003 900000000000011006 900000000000451002 +3618997025 20140131 0 900000000000207008 119379005 443654002 0 116680003 900000000000011006 900000000000451002 +3618998024 20100131 1 900000000000207008 309272009 443654002 0 116680003 900000000000011006 900000000000451002 +3618998024 20120731 0 900000000000207008 309272009 443654002 0 116680003 900000000000011006 900000000000451002 +3619000025 20100131 1 900000000000207008 119386002 443654002 0 116680003 900000000000011006 900000000000451002 +3619000025 20140131 0 900000000000207008 119386002 443654002 0 116680003 900000000000011006 900000000000451002 +3619013020 20100131 1 900000000000207008 309139000 443654002 0 116680003 900000000000011006 900000000000451002 +3619013020 20140131 0 900000000000207008 309139000 443654002 0 116680003 900000000000011006 900000000000451002 +3619014025 20100131 1 900000000000207008 309273004 443654002 0 116680003 900000000000011006 900000000000451002 +3619014025 20120731 0 900000000000207008 309273004 443654002 0 116680003 900000000000011006 900000000000451002 +3619023027 20100131 1 900000000000207008 119393003 443654002 0 116680003 900000000000011006 900000000000451002 +3619023027 20130731 0 900000000000207008 119393003 443654002 0 116680003 900000000000011006 900000000000451002 +3619025023 20100131 1 900000000000207008 119383005 443654002 0 116680003 900000000000011006 900000000000451002 +3619025023 20140131 0 900000000000207008 119383005 443654002 0 116680003 900000000000011006 900000000000451002 +3619031021 20100131 1 900000000000207008 119380008 443654002 0 116680003 900000000000011006 900000000000451002 +3619031021 20130731 0 900000000000207008 119380008 443654002 0 116680003 900000000000011006 900000000000451002 +3619034029 20100131 1 900000000000207008 309264007 439479000 0 116680003 900000000000011006 900000000000451002 +3619040020 20100131 1 900000000000207008 309141004 443654002 0 116680003 900000000000011006 900000000000451002 +3619040020 20140131 0 900000000000207008 309141004 443654002 0 116680003 900000000000011006 900000000000451002 +3619041024 20100131 1 900000000000207008 119391001 443418008 0 116680003 900000000000011006 900000000000451002 +3619041024 20140131 0 900000000000207008 119391001 443418008 0 116680003 900000000000011006 900000000000451002 +3619042028 20100131 1 900000000000207008 119394009 443654002 0 116680003 900000000000011006 900000000000451002 +3619042028 20140131 0 900000000000207008 119394009 443654002 0 116680003 900000000000011006 900000000000451002 +3619044027 20100131 1 900000000000207008 127476006 443654002 0 116680003 900000000000011006 900000000000451002 +3619044027 20140131 0 900000000000207008 127476006 443654002 0 116680003 900000000000011006 900000000000451002 +3619049021 20100131 1 900000000000207008 127469001 443654002 0 116680003 900000000000011006 900000000000451002 +3619049021 20140131 0 900000000000207008 127469001 443654002 0 116680003 900000000000011006 900000000000451002 +3619053023 20100131 1 900000000000207008 122701006 396273004 0 116680003 900000000000011006 900000000000451002 +3619053023 20130131 0 900000000000207008 122701006 396273004 0 116680003 900000000000011006 900000000000451002 +3619059022 20100131 1 900000000000207008 127473003 443654002 0 116680003 900000000000011006 900000000000451002 +3619059022 20140131 0 900000000000207008 127473003 443654002 0 116680003 900000000000011006 900000000000451002 +3619072023 20100131 1 900000000000207008 127479004 443654002 0 116680003 900000000000011006 900000000000451002 +3619072023 20140131 0 900000000000207008 127479004 443654002 0 116680003 900000000000011006 900000000000451002 +3619077028 20100131 1 900000000000207008 128155007 443654002 0 116680003 900000000000011006 900000000000451002 +3619077028 20140131 0 900000000000207008 128155007 443654002 0 116680003 900000000000011006 900000000000451002 +3619091023 20100131 1 900000000000207008 127458004 443418008 0 116680003 900000000000011006 900000000000451002 +3619091023 20140131 0 900000000000207008 127458004 443418008 0 116680003 900000000000011006 900000000000451002 +3619103026 20100131 1 900000000000207008 127459007 443418008 0 116680003 900000000000011006 900000000000451002 +3619103026 20140131 0 900000000000207008 127459007 443418008 0 116680003 900000000000011006 900000000000451002 +3619990021 20100131 1 900000000000207008 433326001 443418008 0 116680003 900000000000011006 900000000000451002 +3619990021 20140131 0 900000000000207008 433326001 443418008 0 116680003 900000000000011006 900000000000451002 +3620004026 20100131 1 900000000000207008 399460001 443654002 0 116680003 900000000000011006 900000000000451002 +3620004026 20110731 0 900000000000207008 399460001 443654002 0 116680003 900000000000011006 900000000000451002 +3620006029 20100131 1 900000000000207008 430250001 443654002 0 116680003 900000000000011006 900000000000451002 +3620006029 20140131 0 900000000000207008 430250001 443654002 0 116680003 900000000000011006 900000000000451002 +3620015020 20100131 1 900000000000207008 423671006 443654002 0 116680003 900000000000011006 900000000000451002 +3620025026 20100131 1 900000000000207008 429832000 443654002 0 116680003 900000000000011006 900000000000451002 +3620025026 20110731 0 900000000000207008 429832000 443654002 0 116680003 900000000000011006 900000000000451002 +3620026025 20100131 1 900000000000207008 433308004 443654002 0 116680003 900000000000011006 900000000000451002 +3620026025 20140131 0 900000000000207008 433308004 443654002 0 116680003 900000000000011006 900000000000451002 +3620036022 20100131 1 900000000000207008 430131006 443654002 0 116680003 900000000000011006 900000000000451002 +3620036022 20140131 0 900000000000207008 430131006 443654002 0 116680003 900000000000011006 900000000000451002 +3620062029 20100131 1 900000000000207008 399402006 443654002 0 116680003 900000000000011006 900000000000451002 +3620062029 20140131 0 900000000000207008 399402006 443654002 0 116680003 900000000000011006 900000000000451002 +3620082025 20100131 1 900000000000207008 440137008 443654002 0 116680003 900000000000011006 900000000000451002 +3622474025 20100131 1 900000000000207008 441750007 443654002 0 116680003 900000000000011006 900000000000451002 +3634788021 20100131 1 900000000000207008 443241002 309048008 0 116680003 900000000000011006 900000000000451002 +3634788021 20130731 0 900000000000207008 443241002 309048008 0 116680003 900000000000011006 900000000000451002 +3634789029 20100131 1 900000000000207008 443241002 119398007 0 116680003 900000000000011006 900000000000451002 +3636131026 20100131 1 900000000000207008 443418008 430232008 0 116680003 900000000000011006 900000000000451002 +3642188029 20100131 1 900000000000207008 122558009 119300005 0 116680003 900000000000011006 900000000000451002 +3643155027 20100131 1 900000000000207008 443654002 430232008 0 116680003 900000000000011006 900000000000451002 +3644233024 20100131 1 900000000000207008 443498007 119398007 0 116680003 900000000000011006 900000000000451002 +3644716029 20100131 1 900000000000207008 258425008 128164002 0 116680003 900000000000011006 900000000000451002 +3647319027 20100131 1 900000000000207008 122653009 309264007 0 116680003 900000000000011006 900000000000451002 +3649350022 20100131 1 900000000000207008 309131002 443818003 1 118168003 900000000000011006 900000000000451002 +3649350022 20100731 0 900000000000207008 309131002 443818003 1 118168003 900000000000011006 900000000000451002 +3649968028 20100131 1 900000000000207008 122654003 34402009 1 118169006 900000000000011006 900000000000451002 +3649968028 20100731 0 900000000000207008 122654003 34402009 1 118169006 900000000000011006 900000000000451002 +3651762026 20100131 1 900000000000207008 442043001 431938005 1 118169006 900000000000011006 900000000000451002 +3651763020 20100131 1 900000000000207008 442043001 78014005 1 370133003 900000000000011006 900000000000451002 +3651821027 20100131 1 900000000000207008 441749007 442171009 1 118171006 900000000000011006 900000000000451002 +3651822023 20100131 1 900000000000207008 441749007 385296007 1 118169006 900000000000011006 900000000000451002 +3651835025 20100131 1 900000000000207008 441694006 68171009 1 118169006 900000000000011006 900000000000451002 +3651895027 20100131 1 900000000000207008 122675006 442919002 1 118171006 900000000000011006 900000000000451002 +3651895027 20100731 0 900000000000207008 122675006 442919002 1 118171006 900000000000011006 900000000000451002 +3652355024 20100131 1 900000000000207008 122653009 443665007 1 118171006 900000000000011006 900000000000451002 +3652355024 20100731 0 900000000000207008 122653009 443665007 1 118171006 900000000000011006 900000000000451002 +3653385024 20100131 1 900000000000207008 441695007 45289007 1 118169006 900000000000011006 900000000000451002 +3653430024 20100131 1 900000000000207008 122690005 116166009 1 118171006 900000000000011006 900000000000451002 +3653430024 20100731 0 900000000000207008 122690005 116166009 1 118171006 900000000000011006 900000000000451002 +3653611025 20100131 1 900000000000207008 443498007 113305005 0 118169006 900000000000011006 900000000000451002 +3653611025 20190731 1 900000000000207008 443498007 113305005 1 118169006 900000000000011006 900000000000451002 +3654157024 20100131 1 900000000000207008 443241002 45793000 0 118169006 900000000000011006 900000000000451002 +3654157024 20190731 1 900000000000207008 443241002 45793000 1 118169006 900000000000011006 900000000000451002 +3654174024 20100131 1 900000000000207008 443418008 43799004 0 118169006 900000000000011006 900000000000451002 +3654174024 20190731 1 900000000000207008 443418008 43799004 1 118169006 900000000000011006 900000000000451002 +3654234024 20100131 1 900000000000207008 122655002 413675001 1 370133003 900000000000011006 900000000000451002 +3654234024 20100731 0 900000000000207008 122655002 413675001 1 370133003 900000000000011006 900000000000451002 +3654290029 20100131 1 900000000000207008 443654002 52731004 0 118169006 900000000000011006 900000000000451002 +3654290029 20190731 1 900000000000207008 443654002 52731004 1 118169006 900000000000011006 900000000000451002 +3654290029 20200131 0 900000000000207008 443654002 52731004 1 118169006 900000000000011006 900000000000451002 +3654540029 20100131 1 900000000000207008 441884004 41216001 1 118169006 900000000000011006 900000000000451002 +3654650022 20100131 1 900000000000207008 441876003 441984003 1 118171006 900000000000011006 900000000000451002 +3654651021 20100131 1 900000000000207008 441876003 88481005 1 118169006 900000000000011006 900000000000451002 +3654660029 20100131 1 900000000000207008 433120004 13648007 1 118169006 900000000000011006 900000000000451002 +3655063023 20100131 1 900000000000207008 441710009 279572002 1 118169006 900000000000011006 900000000000451002 +3655063023 20140131 0 900000000000207008 441710009 279572002 1 118169006 900000000000011006 900000000000451002 +3655743021 20100131 1 900000000000207008 441810001 430103002 1 118171006 900000000000011006 900000000000451002 +3655744026 20100131 1 900000000000207008 441810001 87784001 1 118169006 900000000000011006 900000000000451002 +3655940027 20100131 1 900000000000207008 442173007 225109005 1 118171006 900000000000011006 900000000000451002 +3655940027 20110131 0 900000000000207008 442173007 225109005 1 118171006 900000000000011006 900000000000451002 +3655940027 20110731 1 900000000000207008 442173007 225109005 1 118171006 900000000000011006 900000000000451002 +3655941028 20100131 1 900000000000207008 442173007 78014005 1 370133003 900000000000011006 900000000000451002 +3655941028 20110131 0 900000000000207008 442173007 78014005 1 370133003 900000000000011006 900000000000451002 +3655941028 20110731 1 900000000000207008 442173007 78014005 1 370133003 900000000000011006 900000000000451002 +3656328028 20100131 1 900000000000207008 441906003 441786008 1 118171006 900000000000011006 900000000000451002 +3656329020 20100131 1 900000000000207008 441906003 12921003 1 118169006 900000000000011006 900000000000451002 +3656510029 20100131 1 900000000000207008 441620008 32457005 1 370133003 900000000000011006 900000000000451002 +3656830023 20100131 1 900000000000207008 122596005 413675001 1 370133003 900000000000011006 900000000000451002 +3656831022 20100131 1 900000000000207008 122596005 119184005 1 118169006 900000000000011006 900000000000451002 +3656832026 20100131 1 900000000000207008 122596005 69031006 1 118171006 900000000000011006 900000000000451002 +3656832026 20220731 0 900000000000207008 122596005 69031006 1 118171006 900000000000011006 900000000000451002 +3656940022 20100131 1 900000000000207008 441792002 23451007 1 118169006 900000000000011006 900000000000451002 +3656954025 20100131 1 900000000000207008 442649003 441692005 1 118171006 900000000000011006 900000000000451002 +3656955029 20100131 1 900000000000207008 442649003 55603005 1 118169006 900000000000011006 900000000000451002 +3657171020 20100131 1 900000000000207008 441903006 287571005 1 118171006 900000000000011006 900000000000451002 +3657171020 20100731 0 900000000000207008 441903006 287571005 1 118171006 900000000000011006 900000000000451002 +3657171020 20110131 1 900000000000207008 441903006 287571005 1 118171006 900000000000011006 900000000000451002 +3657172029 20100131 1 900000000000207008 441903006 955009 1 118169006 900000000000011006 900000000000451002 +3657172029 20100731 0 900000000000207008 441903006 955009 1 118169006 900000000000011006 900000000000451002 +3657172029 20110131 1 900000000000207008 441903006 955009 1 118169006 900000000000011006 900000000000451002 +3657950027 20100131 1 900000000000207008 409876003 430865005 1 370133003 900000000000011006 900000000000451002 +3657951028 20100131 1 900000000000207008 409876003 113277000 1 118169006 900000000000011006 900000000000451002 +3658666026 20100131 1 900000000000207008 258425008 413675001 1 370133003 900000000000011006 900000000000451002 +3658666026 20100731 0 900000000000207008 258425008 413675001 1 370133003 900000000000011006 900000000000451002 +3688435022 20100131 1 900000000000207008 441620008 74262004 1 118169006 900000000000011006 900000000000451002 +3688765029 20100131 1 900000000000207008 258425008 78076003 1 118169006 900000000000011006 900000000000451002 +3688765029 20100731 0 900000000000207008 258425008 78076003 1 118169006 900000000000011006 900000000000451002 +3689054022 20100131 1 900000000000207008 433120004 431055006 1 118171006 900000000000011006 900000000000451002 +3689183022 20100131 1 900000000000207008 396904001 9875009 1 118169006 900000000000011006 900000000000451002 +3689183022 20100731 0 900000000000207008 396904001 9875009 1 118169006 900000000000011006 900000000000451002 +3689331023 20100131 1 900000000000207008 122681003 413675001 1 370133003 900000000000011006 900000000000451002 +3689331023 20100731 0 900000000000207008 122681003 413675001 1 370133003 900000000000011006 900000000000451002 +3689595028 20100131 1 900000000000207008 441694006 234282007 1 118171006 900000000000011006 900000000000451002 +3689596027 20100131 1 900000000000207008 441695007 441803007 1 118171006 900000000000011006 900000000000451002 +3689601020 20100131 1 900000000000207008 441710009 86482007 1 118171006 900000000000011006 900000000000451002 +3689601020 20140131 0 900000000000207008 441710009 86482007 1 118171006 900000000000011006 900000000000451002 +3689616023 20100131 1 900000000000207008 441792002 36552004 1 118171006 900000000000011006 900000000000451002 +3689625028 20100131 1 900000000000207008 441884004 81068001 1 118171006 900000000000011006 900000000000451002 +3689725023 20100131 1 900000000000207008 442043001 225113003 1 118171006 900000000000011006 900000000000451002 +3689747023 20100131 1 900000000000207008 442173007 25990002 1 118169006 900000000000011006 900000000000451002 +3689747023 20110131 0 900000000000207008 442173007 25990002 1 118169006 900000000000011006 900000000000451002 +3689747023 20110731 1 900000000000207008 442173007 25990002 1 118169006 900000000000011006 900000000000451002 +3689960020 20100131 1 900000000000207008 122653009 413675001 1 370133003 900000000000011006 900000000000451002 +3689960020 20100731 0 900000000000207008 122653009 413675001 1 370133003 900000000000011006 900000000000451002 +3690127029 20100131 1 900000000000207008 122558009 116146000 1 118170007 900000000000011006 900000000000451002 +3690127029 20100731 0 900000000000207008 122558009 116146000 1 118170007 900000000000011006 900000000000451002 +3690127029 20210131 1 900000000000207008 122558009 116146000 1 118170007 900000000000011006 900000000000451002 +3690128023 20100131 1 900000000000207008 122558009 256906008 1 370133003 900000000000011006 900000000000451002 +3690128023 20100731 0 900000000000207008 122558009 256906008 1 370133003 900000000000011006 900000000000451002 +3690129026 20100131 1 900000000000207008 122653009 34402009 1 118169006 900000000000011006 900000000000451002 +3690129026 20100731 0 900000000000207008 122653009 34402009 1 118169006 900000000000011006 900000000000451002 +3690130020 20100131 1 900000000000207008 122654003 443665007 1 118171006 900000000000011006 900000000000451002 +3690130020 20100731 0 900000000000207008 122654003 443665007 1 118171006 900000000000011006 900000000000451002 +3690131024 20100131 1 900000000000207008 122654003 413675001 1 370133003 900000000000011006 900000000000451002 +3690131024 20100731 0 900000000000207008 122654003 413675001 1 370133003 900000000000011006 900000000000451002 +3690132028 20100131 1 900000000000207008 122655002 34402009 1 118169006 900000000000011006 900000000000451002 +3690132028 20100731 0 900000000000207008 122655002 34402009 1 118169006 900000000000011006 900000000000451002 +3690133022 20100131 1 900000000000207008 122655002 443665007 1 118171006 900000000000011006 900000000000451002 +3690133022 20100731 0 900000000000207008 122655002 443665007 1 118171006 900000000000011006 900000000000451002 +3690134027 20100131 1 900000000000207008 122675006 9846003 1 118169006 900000000000011006 900000000000451002 +3690134027 20100731 0 900000000000207008 122675006 9846003 1 118169006 900000000000011006 900000000000451002 +3690135026 20100131 1 900000000000207008 122675006 413675001 1 370133003 900000000000011006 900000000000451002 +3690135026 20100731 0 900000000000207008 122675006 413675001 1 370133003 900000000000011006 900000000000451002 +3690136025 20100131 1 900000000000207008 122681003 18639004 1 118169006 900000000000011006 900000000000451002 +3690136025 20100731 0 900000000000207008 122681003 18639004 1 118169006 900000000000011006 900000000000451002 +3690137023 20100131 1 900000000000207008 122681003 442919002 1 118171006 900000000000011006 900000000000451002 +3690137023 20100731 0 900000000000207008 122681003 442919002 1 118171006 900000000000011006 900000000000451002 +3690138029 20100131 1 900000000000207008 122690005 18639004 1 118169006 900000000000011006 900000000000451002 +3690138029 20100731 0 900000000000207008 122690005 18639004 1 118169006 900000000000011006 900000000000451002 +3690139021 20100131 1 900000000000207008 122690005 413675001 1 370133003 900000000000011006 900000000000451002 +3690139021 20100731 0 900000000000207008 122690005 413675001 1 370133003 900000000000011006 900000000000451002 +3693566025 20100131 1 900000000000207008 396904001 177765008 1 118171006 900000000000011006 900000000000451002 +3693566025 20100731 0 900000000000207008 396904001 177765008 1 118171006 900000000000011006 900000000000451002 +3693875022 20100131 1 900000000000207008 309131002 3057000 1 118169006 900000000000011006 900000000000451002 +3693875022 20100731 0 900000000000207008 309131002 3057000 1 118169006 900000000000011006 900000000000451002 +3771143024 20100731 1 900000000000207008 258498002 445160003 0 116680003 900000000000011006 900000000000451002 +3771154025 20100731 1 900000000000207008 258431006 445405002 0 116680003 900000000000011006 900000000000451002 +3771323020 20100731 1 900000000000207008 309504008 445405002 0 116680003 900000000000011006 900000000000451002 +3771479023 20100731 1 900000000000207008 122877000 445447003 0 116680003 900000000000011006 900000000000451002 +3772148028 20100731 1 900000000000207008 373826004 445405002 0 116680003 900000000000011006 900000000000451002 +3772207020 20100731 1 900000000000207008 373193000 445405002 0 116680003 900000000000011006 900000000000451002 +3772294021 20100731 1 900000000000207008 373192005 445405002 0 116680003 900000000000011006 900000000000451002 +3772342021 20100731 1 900000000000207008 399551006 445405002 0 116680003 900000000000011006 900000000000451002 +3772370023 20100731 1 900000000000207008 429836002 445405002 0 116680003 900000000000011006 900000000000451002 +3772370023 20220630 0 900000000000207008 429836002 445405002 0 116680003 900000000000011006 900000000000451002 +3772376028 20100731 1 900000000000207008 396483002 445405002 0 116680003 900000000000011006 900000000000451002 +3772392022 20100731 1 900000000000207008 396928004 445405002 0 116680003 900000000000011006 900000000000451002 +3772429022 20100731 1 900000000000207008 441903006 445405002 0 116680003 900000000000011006 900000000000451002 +3772429022 20120731 0 900000000000207008 441903006 445405002 0 116680003 900000000000011006 900000000000451002 +3772596024 20100731 1 900000000000207008 396898008 445405002 0 116680003 900000000000011006 900000000000451002 +3772598020 20100731 1 900000000000207008 397458006 445405002 0 116680003 900000000000011006 900000000000451002 +3773141027 20100731 1 900000000000207008 444936006 430157009 0 116680003 900000000000011006 900000000000451002 +3773142023 20100731 1 900000000000207008 444936006 309051001 0 116680003 900000000000011006 900000000000451002 +3773143029 20100731 1 900000000000207008 444937002 122575003 0 116680003 900000000000011006 900000000000451002 +3773144024 20100731 1 900000000000207008 444937002 399402006 0 116680003 900000000000011006 900000000000451002 +3773305020 20100731 1 900000000000207008 445295009 441510007 0 116680003 900000000000011006 900000000000451002 +3773373025 20100731 1 900000000000207008 444787003 258524009 0 116680003 900000000000011006 900000000000451002 +3773403028 20100731 1 900000000000207008 445364004 430246008 0 116680003 900000000000011006 900000000000451002 +3773404023 20100731 1 900000000000207008 445364004 430232008 0 116680003 900000000000011006 900000000000451002 +3773404023 20180731 0 900000000000207008 445364004 430232008 0 116680003 900000000000011006 900000000000451002 +3773405024 20100731 1 900000000000207008 445364004 257261003 0 116680003 900000000000011006 900000000000451002 +3773408021 20100731 1 900000000000207008 445367006 430232008 0 116680003 900000000000011006 900000000000451002 +3773408021 20130131 0 900000000000207008 445367006 430232008 0 116680003 900000000000011006 900000000000451002 +3773409029 20100731 1 900000000000207008 445367006 257261003 0 116680003 900000000000011006 900000000000451002 +3773409029 20130131 0 900000000000207008 445367006 257261003 0 116680003 900000000000011006 900000000000451002 +3773411022 20100731 1 900000000000207008 445369009 119396006 0 116680003 900000000000011006 900000000000451002 +3773412026 20100731 1 900000000000207008 445369009 258519006 0 116680003 900000000000011006 900000000000451002 +3773412026 20130131 0 900000000000207008 445369009 258519006 0 116680003 900000000000011006 900000000000451002 +3773419024 20100731 1 900000000000207008 445372002 119398007 0 116680003 900000000000011006 900000000000451002 +3773420029 20100731 1 900000000000207008 445372002 258450006 0 116680003 900000000000011006 900000000000451002 +3773461029 20100731 1 900000000000207008 444656005 119306004 0 116680003 900000000000011006 900000000000451002 +3773461029 20210131 0 900000000000207008 444656005 119306004 0 116680003 900000000000011006 900000000000451002 +3773510020 20100731 1 900000000000207008 444959000 122586001 0 116680003 900000000000011006 900000000000451002 +3773510020 20230430 0 900000000000207008 444959000 122586001 0 116680003 900000000000011006 900000000000451002 +3773772022 20100731 1 900000000000207008 444623009 258571003 0 116680003 900000000000011006 900000000000451002 +3773880021 20100731 1 900000000000207008 444965000 430157009 0 116680003 900000000000011006 900000000000451002 +3773880021 20180131 0 900000000000207008 444965000 430157009 0 116680003 900000000000011006 900000000000451002 +3773881020 20100731 1 900000000000207008 444965000 309051001 0 116680003 900000000000011006 900000000000451002 +3774071027 20100731 1 900000000000207008 445383006 122575003 0 116680003 900000000000011006 900000000000451002 +3774073029 20100731 1 900000000000207008 445384000 258571003 0 116680003 900000000000011006 900000000000451002 +3774177026 20100731 1 900000000000207008 445444005 430232008 0 116680003 900000000000011006 900000000000451002 +3774177026 20130131 0 900000000000207008 445444005 430232008 0 116680003 900000000000011006 900000000000451002 +3774177026 20200731 1 900000000000207008 445444005 430232008 0 116680003 900000000000011006 900000000000451002 +3774178020 20100731 1 900000000000207008 445444005 430214008 0 116680003 900000000000011006 900000000000451002 +3774178020 20130131 0 900000000000207008 445444005 430214008 0 116680003 900000000000011006 900000000000451002 +3774179028 20100731 1 900000000000207008 445444005 257261003 0 116680003 900000000000011006 900000000000451002 +3774179028 20130131 0 900000000000207008 445444005 257261003 0 116680003 900000000000011006 900000000000451002 +3774179028 20200731 1 900000000000207008 445444005 257261003 0 116680003 900000000000011006 900000000000451002 +3774729022 20100731 1 900000000000207008 445069004 122586001 0 116680003 900000000000011006 900000000000451002 +3774729022 20230430 0 900000000000207008 445069004 122586001 0 116680003 900000000000011006 900000000000451002 +3774819020 20100731 1 900000000000207008 445516007 119360007 0 116680003 900000000000011006 900000000000451002 +3774819020 20230430 0 900000000000207008 445516007 119360007 0 116680003 900000000000011006 900000000000451002 +3774986024 20100731 1 900000000000207008 444865001 119321005 0 116680003 900000000000011006 900000000000451002 +3774986024 20110131 0 900000000000207008 444865001 119321005 0 116680003 900000000000011006 900000000000451002 +3774987026 20100731 1 900000000000207008 444865001 309055005 0 116680003 900000000000011006 900000000000451002 +3774987026 20110131 0 900000000000207008 444865001 309055005 0 116680003 900000000000011006 900000000000451002 +3775054024 20100731 1 900000000000207008 444831002 258571003 0 116680003 900000000000011006 900000000000451002 +3775060024 20100731 1 900000000000207008 444832009 119321005 0 116680003 900000000000011006 900000000000451002 +3775060024 20110131 0 900000000000207008 444832009 119321005 0 116680003 900000000000011006 900000000000451002 +3775061023 20100731 1 900000000000207008 444832009 309055005 0 116680003 900000000000011006 900000000000451002 +3775061023 20110131 0 900000000000207008 444832009 309055005 0 116680003 900000000000011006 900000000000451002 +3775221026 20100731 1 900000000000207008 445529007 258571003 0 116680003 900000000000011006 900000000000451002 +3775379029 20100731 1 900000000000207008 445297001 119388001 0 116680003 900000000000011006 900000000000451002 +3775380026 20100731 1 900000000000207008 445297001 258501002 0 116680003 900000000000011006 900000000000451002 +3775380026 20220228 0 900000000000207008 445297001 258501002 0 116680003 900000000000011006 900000000000451002 +3775401029 20100731 1 900000000000207008 444946008 119360007 0 116680003 900000000000011006 900000000000451002 +3775401029 20230430 0 900000000000207008 444946008 119360007 0 116680003 900000000000011006 900000000000451002 +3775501026 20100731 1 900000000000207008 445421007 123038009 0 116680003 900000000000011006 900000000000451002 +3775501026 20150731 0 900000000000207008 445421007 123038009 0 116680003 900000000000011006 900000000000451002 +3775501026 20170731 1 900000000000207008 445421007 123038009 0 116680003 900000000000011006 900000000000451002 +3775690029 20100731 1 900000000000207008 445405002 123038009 0 116680003 900000000000011006 900000000000451002 +3775692021 20100731 1 900000000000207008 258571003 438660002 0 116680003 900000000000011006 900000000000451002 +3775692021 20241001 0 900000000000207008 258571003 438660002 0 116680003 900000000000011006 900000000000451002 +3775886029 20100731 1 900000000000207008 445160003 119399004 0 116680003 900000000000011006 900000000000451002 +3775887022 20100731 1 900000000000207008 445160003 257261003 0 116680003 900000000000011006 900000000000451002 +3775887022 20200731 0 900000000000207008 445160003 257261003 0 116680003 900000000000011006 900000000000451002 +3776197023 20100731 1 900000000000207008 444824001 258407001 0 116680003 900000000000011006 900000000000451002 +3776320022 20100731 1 900000000000207008 445447003 119295008 0 116680003 900000000000011006 900000000000451002 +3776321021 20100731 1 900000000000207008 445447003 119390000 0 116680003 900000000000011006 900000000000451002 +3777657025 20100731 1 900000000000207008 445295009 256906008 0 370133003 900000000000011006 900000000000451002 +3777657025 20190731 1 900000000000207008 445295009 256906008 1 370133003 900000000000011006 900000000000451002 +3777751023 20100731 1 900000000000207008 444832009 76752008 1 118169006 900000000000011006 900000000000451002 +3777751023 20110131 0 900000000000207008 444832009 76752008 1 118169006 900000000000011006 900000000000451002 +3777760026 20100731 1 900000000000207008 122654003 443665007 1 118171006 900000000000011006 900000000000451002 +3777985025 20100731 1 900000000000207008 309131002 443818003 1 118168003 900000000000011006 900000000000451002 +3777985025 20210930 0 900000000000207008 309131002 443818003 1 118168003 900000000000011006 900000000000451002 +3778479027 20100731 1 900000000000207008 445444005 285570007 1 118171006 900000000000011006 900000000000451002 +3778479027 20110131 0 900000000000207008 445444005 285570007 1 118171006 900000000000011006 900000000000451002 +3778747024 20100731 1 900000000000207008 445421007 289954006 0 370133003 900000000000011006 900000000000451002 +3778747024 20190731 1 900000000000207008 445421007 289954006 1 370133003 900000000000011006 900000000000451002 +3778813025 20100731 1 900000000000207008 396904001 177765008 1 118171006 900000000000011006 900000000000451002 +3779506029 20100731 1 900000000000207008 122675006 442919002 1 118171006 900000000000011006 900000000000451002 +3779781024 20100731 1 900000000000207008 444865001 226790003 1 370133003 900000000000011006 900000000000451002 +3779781024 20110131 0 900000000000207008 444865001 226790003 1 370133003 900000000000011006 900000000000451002 +3779868022 20100731 1 900000000000207008 444959000 387191005 1 370133003 900000000000011006 900000000000451002 +3779868022 20110131 0 900000000000207008 444959000 387191005 1 370133003 900000000000011006 900000000000451002 +3779869025 20100731 1 900000000000207008 444959000 83670000 1 118169006 900000000000011006 900000000000451002 +3779869025 20110131 0 900000000000207008 444959000 83670000 1 118169006 900000000000011006 900000000000451002 +3780105023 20100731 1 900000000000207008 444965000 30636001 1 118169006 900000000000011006 900000000000451002 +3780105023 20110131 0 900000000000207008 444965000 30636001 1 118169006 900000000000011006 900000000000451002 +3780106024 20100731 1 900000000000207008 444965000 32457005 1 370133003 900000000000011006 900000000000451002 +3780106024 20110131 0 900000000000207008 444965000 32457005 1 370133003 900000000000011006 900000000000451002 +3780133023 20100731 1 900000000000207008 122653009 443665007 1 118171006 900000000000011006 900000000000451002 +3780161028 20100731 1 900000000000207008 444656005 257287003 0 118170007 900000000000011006 900000000000451002 +3780161028 20130131 0 900000000000207008 444656005 257287003 0 118170007 900000000000011006 900000000000451002 +3780412024 20100731 1 900000000000207008 445069004 83670000 1 118169006 900000000000011006 900000000000451002 +3780412024 20110131 0 900000000000207008 445069004 83670000 1 118169006 900000000000011006 900000000000451002 +3780559026 20100731 1 900000000000207008 122690005 413675001 1 370133003 900000000000011006 900000000000451002 +3780699020 20100731 1 900000000000207008 445405002 387713003 0 118171006 900000000000011006 900000000000451002 +3780699020 20190731 1 900000000000207008 445405002 387713003 1 118171006 900000000000011006 900000000000451002 +3780846027 20100731 1 900000000000207008 444937002 87953007 1 118169006 900000000000011006 900000000000451002 +3780846027 20110131 0 900000000000207008 444937002 87953007 1 118169006 900000000000011006 900000000000451002 +3781006027 20100731 1 900000000000207008 122655002 443665007 1 118171006 900000000000011006 900000000000451002 +3781095022 20100731 1 900000000000207008 122681003 442919002 1 118171006 900000000000011006 900000000000451002 +3781455025 20100731 1 900000000000207008 444623009 420051002 1 370133003 900000000000011006 900000000000451002 +3781455025 20110131 0 900000000000207008 444623009 420051002 1 370133003 900000000000011006 900000000000451002 +3782380029 20100731 1 900000000000207008 445372002 35764002 1 118169006 900000000000011006 900000000000451002 +3782380029 20110131 0 900000000000207008 445372002 35764002 1 118169006 900000000000011006 900000000000451002 +3782423028 20100731 1 900000000000207008 445516007 418377002 0 370133003 900000000000011006 900000000000451002 +3782423028 20190731 1 900000000000207008 445516007 418377002 1 370133003 900000000000011006 900000000000451002 +3782823022 20100731 1 900000000000207008 445384000 36965003 1 118170007 900000000000011006 900000000000451002 +3782823022 20110131 0 900000000000207008 445384000 36965003 1 118170007 900000000000011006 900000000000451002 +3782857025 20100731 1 900000000000207008 441750007 52731004 1 118169006 900000000000011006 900000000000451002 +3782857025 20200131 0 900000000000207008 441750007 52731004 1 118169006 900000000000011006 900000000000451002 +3782858024 20100731 1 900000000000207008 441750007 441785007 1 118171006 900000000000011006 900000000000451002 +3783466028 20100731 1 900000000000207008 445297001 53342003 1 118169006 900000000000011006 900000000000451002 +3783466028 20110131 0 900000000000207008 445297001 53342003 1 118169006 900000000000011006 900000000000451002 +3783664022 20100731 1 900000000000207008 445447003 44567001 1 118169006 900000000000011006 900000000000451002 +3783664022 20110131 0 900000000000207008 445447003 44567001 1 118169006 900000000000011006 900000000000451002 +3783849024 20100731 1 900000000000207008 445364004 285570007 1 118171006 900000000000011006 900000000000451002 +3783849024 20110131 0 900000000000207008 445364004 285570007 1 118171006 900000000000011006 900000000000451002 +3784268024 20100731 1 900000000000207008 444787003 36973007 1 118169006 900000000000011006 900000000000451002 +3784268024 20110131 0 900000000000207008 444787003 36973007 1 118169006 900000000000011006 900000000000451002 +3784326022 20100731 1 900000000000207008 122558009 116146000 1 118170007 900000000000011006 900000000000451002 +3784326022 20210131 0 900000000000207008 122558009 116146000 1 118170007 900000000000011006 900000000000451002 +3784327029 20100731 1 900000000000207008 122558009 256906008 1 370133003 900000000000011006 900000000000451002 +3784398026 20100731 1 900000000000207008 445383006 252925009 1 118171006 900000000000011006 900000000000451002 +3784398026 20110131 0 900000000000207008 445383006 252925009 1 118171006 900000000000011006 900000000000451002 +3784858020 20100731 1 900000000000207008 445367006 285570007 1 118171006 900000000000011006 900000000000451002 +3784858020 20110131 0 900000000000207008 445367006 285570007 1 118171006 900000000000011006 900000000000451002 +3784957025 20100731 1 900000000000207008 258425008 413675001 1 370133003 900000000000011006 900000000000451002 +3785575026 20100731 1 900000000000207008 445369009 285570007 1 118171006 900000000000011006 900000000000451002 +3785575026 20110131 0 900000000000207008 445369009 285570007 1 118171006 900000000000011006 900000000000451002 +3785688021 20100731 1 900000000000207008 444946008 418377002 0 370133003 900000000000011006 900000000000451002 +3785688021 20190731 1 900000000000207008 444946008 418377002 1 370133003 900000000000011006 900000000000451002 +3786048024 20100731 1 900000000000207008 444936006 54214006 1 118169006 900000000000011006 900000000000451002 +3786048024 20110131 0 900000000000207008 444936006 54214006 1 118169006 900000000000011006 900000000000451002 +3786131029 20100731 1 900000000000207008 445529007 36965003 1 118170007 900000000000011006 900000000000451002 +3786131029 20110131 0 900000000000207008 445529007 36965003 1 118170007 900000000000011006 900000000000451002 +3786131029 20210131 1 900000000000207008 445529007 36965003 1 118170007 900000000000011006 900000000000451002 +3786132020 20100731 1 900000000000207008 445529007 420051002 1 370133003 900000000000011006 900000000000451002 +3786132020 20110131 0 900000000000207008 445529007 420051002 1 370133003 900000000000011006 900000000000451002 +3786553024 20100731 1 900000000000207008 445160003 285570007 1 118171006 900000000000011006 900000000000451002 +3786553024 20110131 0 900000000000207008 445160003 285570007 1 118171006 900000000000011006 900000000000451002 +3786554029 20100731 1 900000000000207008 445160003 81745001 1 118169006 900000000000011006 900000000000451002 +3786554029 20110131 0 900000000000207008 445160003 81745001 1 118169006 900000000000011006 900000000000451002 +3788410026 20100731 1 900000000000207008 122690005 116166009 1 118171006 900000000000011006 900000000000451002 +3788835029 20100731 1 900000000000207008 258498002 29445007 1 118169006 900000000000011006 900000000000451002 +3788835029 20110131 0 900000000000207008 258498002 29445007 1 118169006 900000000000011006 900000000000451002 +3790367022 20100731 1 900000000000207008 444623009 36965003 1 118170007 900000000000011006 900000000000451002 +3790367022 20110131 0 900000000000207008 444623009 36965003 1 118170007 900000000000011006 900000000000451002 +3790367022 20210131 1 900000000000207008 444623009 36965003 1 118170007 900000000000011006 900000000000451002 +3790540026 20100731 1 900000000000207008 444787003 285589007 1 118171006 900000000000011006 900000000000451002 +3790540026 20110131 0 900000000000207008 444787003 285589007 1 118171006 900000000000011006 900000000000451002 +3790584026 20100731 1 900000000000207008 444824001 44132006 1 118168003 900000000000011006 900000000000451002 +3790584026 20110131 0 900000000000207008 444824001 44132006 1 118168003 900000000000011006 900000000000451002 +3790585025 20100731 1 900000000000207008 444824001 413675001 1 370133003 900000000000011006 900000000000451002 +3790585025 20110131 0 900000000000207008 444824001 413675001 1 370133003 900000000000011006 900000000000451002 +3790592024 20100731 1 900000000000207008 444831002 36965003 1 118170007 900000000000011006 900000000000451002 +3790592024 20110131 0 900000000000207008 444831002 36965003 1 118170007 900000000000011006 900000000000451002 +3790593025 20100731 1 900000000000207008 444831002 420051002 1 370133003 900000000000011006 900000000000451002 +3790593025 20110131 0 900000000000207008 444831002 420051002 1 370133003 900000000000011006 900000000000451002 +3790594020 20100731 1 900000000000207008 444832009 226790003 1 370133003 900000000000011006 900000000000451002 +3790594020 20110131 0 900000000000207008 444832009 226790003 1 370133003 900000000000011006 900000000000451002 +3790611020 20100731 1 900000000000207008 444865001 76752008 1 118169006 900000000000011006 900000000000451002 +3790611020 20110131 0 900000000000207008 444865001 76752008 1 118169006 900000000000011006 900000000000451002 +3790635026 20100731 1 900000000000207008 444936006 32457005 1 370133003 900000000000011006 900000000000451002 +3790635026 20110131 0 900000000000207008 444936006 32457005 1 370133003 900000000000011006 900000000000451002 +3790636025 20100731 1 900000000000207008 444937002 57617002 1 118171006 900000000000011006 900000000000451002 +3790636025 20110131 0 900000000000207008 444937002 57617002 1 118171006 900000000000011006 900000000000451002 +3790637023 20100731 1 900000000000207008 444937002 78014005 1 370133003 900000000000011006 900000000000451002 +3790637023 20110131 0 900000000000207008 444937002 78014005 1 370133003 900000000000011006 900000000000451002 +3790769022 20100731 1 900000000000207008 445069004 387191005 1 370133003 900000000000011006 900000000000451002 +3790769022 20110131 0 900000000000207008 445069004 387191005 1 370133003 900000000000011006 900000000000451002 +3791009021 20100731 1 900000000000207008 445297001 285570007 1 118171006 900000000000011006 900000000000451002 +3791009021 20110131 0 900000000000207008 445297001 285570007 1 118171006 900000000000011006 900000000000451002 +3791086028 20100731 1 900000000000207008 445364004 422543003 1 118169006 900000000000011006 900000000000451002 +3791086028 20110131 0 900000000000207008 445364004 422543003 1 118169006 900000000000011006 900000000000451002 +3791087021 20100731 1 900000000000207008 445367006 78220002 1 118169006 900000000000011006 900000000000451002 +3791087021 20110131 0 900000000000207008 445367006 78220002 1 118169006 900000000000011006 900000000000451002 +3791088027 20100731 1 900000000000207008 445369009 2739003 1 118169006 900000000000011006 900000000000451002 +3791088027 20110131 0 900000000000207008 445369009 2739003 1 118169006 900000000000011006 900000000000451002 +3791094024 20100731 1 900000000000207008 445372002 65216001 1 370133003 900000000000011006 900000000000451002 +3791094024 20110131 0 900000000000207008 445372002 65216001 1 370133003 900000000000011006 900000000000451002 +3791098022 20100731 1 900000000000207008 445383006 431938005 1 118169006 900000000000011006 900000000000451002 +3791098022 20110131 0 900000000000207008 445383006 431938005 1 118169006 900000000000011006 900000000000451002 +3791099025 20100731 1 900000000000207008 445383006 78014005 1 370133003 900000000000011006 900000000000451002 +3791099025 20110131 0 900000000000207008 445383006 78014005 1 370133003 900000000000011006 900000000000451002 +3791100022 20100731 1 900000000000207008 445384000 420051002 1 370133003 900000000000011006 900000000000451002 +3791100022 20110131 0 900000000000207008 445384000 420051002 1 370133003 900000000000011006 900000000000451002 +3791127021 20100731 1 900000000000207008 445444005 26893007 1 118169006 900000000000011006 900000000000451002 +3791127021 20110131 0 900000000000207008 445444005 26893007 1 118169006 900000000000011006 900000000000451002 +3791129024 20100731 1 900000000000207008 445447003 129112001 1 118171006 900000000000011006 900000000000451002 +3791129024 20110131 0 900000000000207008 445447003 129112001 1 118171006 900000000000011006 900000000000451002 +3791134023 20100731 1 900000000000207008 258498002 285570007 1 118171006 900000000000011006 900000000000451002 +3791134023 20110131 0 900000000000207008 258498002 285570007 1 118171006 900000000000011006 900000000000451002 +3791135024 20100731 1 900000000000207008 258571003 36965003 1 118170007 900000000000011006 900000000000451002 +3791135024 20110131 0 900000000000207008 258571003 36965003 1 118170007 900000000000011006 900000000000451002 +3791135024 20210131 1 900000000000207008 258571003 36965003 1 118170007 900000000000011006 900000000000451002 +3791136020 20100731 1 900000000000207008 258571003 420051002 1 370133003 900000000000011006 900000000000451002 +3791136020 20110131 0 900000000000207008 258571003 420051002 1 370133003 900000000000011006 900000000000451002 +3792620020 20110131 1 900000000000207008 167868004 431361003 0 116680003 900000000000011006 900000000000451002 +3792621024 20110131 1 900000000000207008 167869007 431361003 0 116680003 900000000000011006 900000000000451002 +3792622028 20110131 1 900000000000207008 167873005 431361003 0 116680003 900000000000011006 900000000000451002 +3792623022 20110131 1 900000000000207008 167874004 431361003 0 116680003 900000000000011006 900000000000451002 +3792624027 20110131 1 900000000000207008 167875003 431361003 0 116680003 900000000000011006 900000000000451002 +3792625026 20110131 1 900000000000207008 167876002 431361003 0 116680003 900000000000011006 900000000000451002 +3792650028 20110131 1 900000000000207008 167870008 431361003 0 116680003 900000000000011006 900000000000451002 +3792651029 20110131 1 900000000000207008 167871007 431361003 0 116680003 900000000000011006 900000000000451002 +3792821022 20110131 1 900000000000207008 110903005 447154002 0 116680003 900000000000011006 900000000000451002 +3792879022 20110131 1 900000000000207008 258411007 447391001 0 116680003 900000000000011006 900000000000451002 +3792990027 20110131 1 900000000000207008 122590004 122561005 0 116680003 900000000000011006 900000000000451002 +3793023027 20110131 1 900000000000207008 122583009 309051001 0 116680003 900000000000011006 900000000000451002 +3793032025 20110131 1 900000000000207008 122588000 122561005 0 116680003 900000000000011006 900000000000451002 +3793033024 20110131 1 900000000000207008 122589008 122560006 0 116680003 900000000000011006 900000000000451002 +3793060028 20110131 1 900000000000207008 122581006 309051001 0 116680003 900000000000011006 900000000000451002 +3793065022 20110131 1 900000000000207008 122580007 447148003 0 116680003 900000000000011006 900000000000451002 +3793067025 20110131 1 900000000000207008 309178001 447154002 0 116680003 900000000000011006 900000000000451002 +3793068024 20110131 1 900000000000207008 119388001 447154002 0 116680003 900000000000011006 900000000000451002 +3793174022 20110131 1 900000000000207008 128162003 447148003 0 116680003 900000000000011006 900000000000451002 +3793710027 20110131 1 900000000000207008 399751008 447155001 0 116680003 900000000000011006 900000000000451002 +3793750029 20110131 1 900000000000207008 432897002 309051001 0 116680003 900000000000011006 900000000000451002 +3793750029 20110731 0 900000000000207008 432897002 309051001 0 116680003 900000000000011006 900000000000451002 +3793790026 20110131 1 900000000000207008 430312009 432897002 0 116680003 900000000000011006 900000000000451002 +3793790026 20110731 0 900000000000207008 430312009 432897002 0 116680003 900000000000011006 900000000000451002 +3793790026 20180731 1 900000000000207008 430312009 432897002 0 116680003 900000000000011006 900000000000451002 +3794279028 20110131 1 900000000000207008 442173007 446907008 0 116680003 900000000000011006 900000000000451002 +3794458025 20110131 1 900000000000207008 445742005 122575003 0 116680003 900000000000011006 900000000000451002 +3794459022 20110131 1 900000000000207008 445744006 309049000 0 116680003 900000000000011006 900000000000451002 +3794460028 20110131 1 900000000000207008 445744006 309051001 0 116680003 900000000000011006 900000000000451002 +3794461029 20110131 1 900000000000207008 445745007 443654002 0 116680003 900000000000011006 900000000000451002 +3794461029 20220228 0 900000000000207008 445745007 443654002 0 116680003 900000000000011006 900000000000451002 +3794462020 20110131 1 900000000000207008 445745007 309051001 0 116680003 900000000000011006 900000000000451002 +3794462020 20220228 0 900000000000207008 445745007 309051001 0 116680003 900000000000011006 900000000000451002 +3794526021 20110131 1 900000000000207008 447345009 258446004 0 116680003 900000000000011006 900000000000451002 +3794527028 20110131 1 900000000000207008 447345009 127454002 0 116680003 900000000000011006 900000000000451002 +3794527028 20130131 0 900000000000207008 447345009 127454002 0 116680003 900000000000011006 900000000000451002 +3794560025 20110131 1 900000000000207008 447589008 446130001 0 116680003 900000000000011006 900000000000451002 +3794615021 20110131 1 900000000000207008 431361003 309125000 0 116680003 900000000000011006 900000000000451002 +3794616022 20110131 1 900000000000207008 447154002 430220009 0 116680003 900000000000011006 900000000000451002 +3794616022 20240701 0 900000000000207008 447154002 430220009 0 116680003 900000000000011006 900000000000451002 +3794617029 20110131 1 900000000000207008 447155001 127480001 0 116680003 900000000000011006 900000000000451002 +3794618023 20110131 1 900000000000207008 447155001 258419009 0 116680003 900000000000011006 900000000000451002 +3794626026 20110131 1 900000000000207008 447158004 119341000 0 116680003 900000000000011006 900000000000451002 +3794639027 20110131 1 900000000000207008 447355008 122586001 0 116680003 900000000000011006 900000000000451002 +3794639027 20230430 0 900000000000207008 447355008 122586001 0 116680003 900000000000011006 900000000000451002 +3794642022 20110131 1 900000000000207008 444865001 446676001 0 116680003 900000000000011006 900000000000451002 +3794643028 20110131 1 900000000000207008 444832009 446676001 0 116680003 900000000000011006 900000000000451002 +3794648021 20110131 1 900000000000207008 447357000 119295008 0 116680003 900000000000011006 900000000000451002 +3794649029 20110131 1 900000000000207008 447357000 127456000 0 116680003 900000000000011006 900000000000451002 +3794650029 20110131 1 900000000000207008 447358005 119295008 0 116680003 900000000000011006 900000000000451002 +3794651025 20110131 1 900000000000207008 447358005 119396006 0 116680003 900000000000011006 900000000000451002 +3794652021 20110131 1 900000000000207008 447359002 119295008 0 116680003 900000000000011006 900000000000451002 +3794653027 20110131 1 900000000000207008 447359002 127463000 0 116680003 900000000000011006 900000000000451002 +3794682026 20110131 1 900000000000207008 447375004 430232008 0 116680003 900000000000011006 900000000000451002 +3794683020 20110131 1 900000000000207008 447375004 258455001 0 116680003 900000000000011006 900000000000451002 +3794684025 20110131 1 900000000000207008 447375004 309051001 0 116680003 900000000000011006 900000000000451002 +3794685029 20110131 1 900000000000207008 447375004 258603007 0 116680003 900000000000011006 900000000000451002 +3794744026 20110131 1 900000000000207008 446906004 258463000 0 116680003 900000000000011006 900000000000451002 +3794745025 20110131 1 900000000000207008 446907008 122575003 0 116680003 900000000000011006 900000000000451002 +3794746029 20110131 1 900000000000207008 446907008 127473003 0 116680003 900000000000011006 900000000000451002 +3794747022 20110131 1 900000000000207008 446908003 433324003 0 116680003 900000000000011006 900000000000451002 +3794748028 20110131 1 900000000000207008 446908003 258453008 0 116680003 900000000000011006 900000000000451002 +3794916024 20110131 1 900000000000207008 439895009 447154002 0 116680003 900000000000011006 900000000000451002 +3795290029 20110131 1 900000000000207008 447391001 119389009 0 116680003 900000000000011006 900000000000451002 +3795290029 20170731 0 900000000000207008 447391001 119389009 0 116680003 900000000000011006 900000000000451002 +3795291025 20110131 1 900000000000207008 447391001 119295008 0 116680003 900000000000011006 900000000000451002 +3795292021 20110131 1 900000000000207008 447392008 119394009 0 116680003 900000000000011006 900000000000451002 +3795293027 20110131 1 900000000000207008 447392008 119295008 0 116680003 900000000000011006 900000000000451002 +3795432021 20110131 1 900000000000207008 445743000 122575003 0 116680003 900000000000011006 900000000000451002 +3795557025 20110131 1 900000000000207008 447098004 258431006 0 116680003 900000000000011006 900000000000451002 +3795558024 20110131 1 900000000000207008 447098004 119327009 0 116680003 900000000000011006 900000000000451002 +3795571022 20110131 1 900000000000207008 447103002 309049000 0 116680003 900000000000011006 900000000000451002 +3795571022 20220630 0 900000000000207008 447103002 309049000 0 116680003 900000000000011006 900000000000451002 +3795572026 20110131 1 900000000000207008 258576008 447488002 0 116680003 900000000000011006 900000000000451002 +3795579024 20110131 1 900000000000207008 447104008 309049000 0 116680003 900000000000011006 900000000000451002 +3795580022 20110131 1 900000000000207008 447104008 122575003 0 116680003 900000000000011006 900000000000451002 +3795615025 20110131 1 900000000000207008 446364005 123038009 0 116680003 900000000000011006 900000000000451002 +3795771020 20110131 1 900000000000207008 447337004 119401005 0 116680003 900000000000011006 900000000000451002 +3795772029 20110131 1 900000000000207008 447337004 258431006 0 116680003 900000000000011006 900000000000451002 +3795775027 20110131 1 900000000000207008 447339001 447154002 0 116680003 900000000000011006 900000000000451002 +3795776026 20110131 1 900000000000207008 447339001 258433009 0 116680003 900000000000011006 900000000000451002 +3795779022 20110131 1 900000000000207008 447341000 119341000 0 116680003 900000000000011006 900000000000451002 +3795816026 20110131 1 900000000000207008 447148003 309165001 0 116680003 900000000000011006 900000000000451002 +3795817024 20110131 1 900000000000207008 447148003 309050000 0 116680003 900000000000011006 900000000000451002 +3795897020 20110131 1 900000000000207008 446561003 258455001 0 116680003 900000000000011006 900000000000451002 +3795898026 20110131 1 900000000000207008 446561003 443654002 0 116680003 900000000000011006 900000000000451002 +3795898026 20110731 0 900000000000207008 446561003 443654002 0 116680003 900000000000011006 900000000000451002 +3795899023 20110131 1 900000000000207008 446561003 309051001 0 116680003 900000000000011006 900000000000451002 +3795900029 20110131 1 900000000000207008 446561003 363311008 0 116680003 900000000000011006 900000000000451002 +3795900029 20110731 0 900000000000207008 446561003 363311008 0 116680003 900000000000011006 900000000000451002 +3795901025 20110131 1 900000000000207008 446562005 258455001 0 116680003 900000000000011006 900000000000451002 +3795902021 20110131 1 900000000000207008 446562005 309051001 0 116680003 900000000000011006 900000000000451002 +3795929027 20110131 1 900000000000207008 446577002 257261003 0 116680003 900000000000011006 900000000000451002 +3796283025 20110131 1 900000000000207008 446837000 258428005 0 116680003 900000000000011006 900000000000451002 +3796284020 20110131 1 900000000000207008 446838005 119391001 0 116680003 900000000000011006 900000000000451002 +3796290024 20110131 1 900000000000207008 446842008 430220009 0 116680003 900000000000011006 900000000000451002 +3796290024 20240701 0 900000000000207008 446842008 430220009 0 116680003 900000000000011006 900000000000451002 +3796291023 20110131 1 900000000000207008 446842008 309078004 0 116680003 900000000000011006 900000000000451002 +3796306023 20110131 1 900000000000207008 446846006 446130001 0 116680003 900000000000011006 900000000000451002 +3796307025 20110131 1 900000000000207008 446846006 122565001 0 116680003 900000000000011006 900000000000451002 +3796492029 20110131 1 900000000000207008 446211008 258455001 0 116680003 900000000000011006 900000000000451002 +3796493023 20110131 1 900000000000207008 446212001 127454002 0 116680003 900000000000011006 900000000000451002 +3796493023 20130131 0 900000000000207008 446212001 127454002 0 116680003 900000000000011006 900000000000451002 +3796621022 20110131 1 900000000000207008 446774006 119398007 0 116680003 900000000000011006 900000000000451002 +3796622026 20110131 1 900000000000207008 446774006 119371008 0 116680003 900000000000011006 900000000000451002 +3796657028 20110131 1 900000000000207008 447488002 446130001 0 116680003 900000000000011006 900000000000451002 +3796758026 20110131 1 900000000000207008 446838005 955009 0 118169006 900000000000011006 900000000000451002 +3796758026 20190731 1 900000000000207008 446838005 955009 1 118169006 900000000000011006 900000000000451002 +3796838024 20110131 1 900000000000207008 446861007 258455001 0 116680003 900000000000011006 900000000000451002 +3796838024 20231201 0 900000000000207008 446861007 258455001 0 116680003 900000000000011006 900000000000451002 +3796839027 20110131 1 900000000000207008 446861007 258450006 0 116680003 900000000000011006 900000000000451002 +3796959027 20110131 1 900000000000207008 446128003 397129002 0 116680003 900000000000011006 900000000000451002 +3796959027 20150731 0 900000000000207008 446128003 397129002 0 116680003 900000000000011006 900000000000451002 +3796960021 20110131 1 900000000000207008 446128003 258453008 0 116680003 900000000000011006 900000000000451002 +3796961020 20110131 1 900000000000207008 446129006 119341000 0 116680003 900000000000011006 900000000000451002 +3796962029 20110131 1 900000000000207008 446129006 399460001 0 116680003 900000000000011006 900000000000451002 +3796963023 20110131 1 900000000000207008 446130001 443654002 0 116680003 900000000000011006 900000000000451002 +3796963023 20120731 0 900000000000207008 446130001 443654002 0 116680003 900000000000011006 900000000000451002 +3796964028 20110131 1 900000000000207008 446130001 122575003 0 116680003 900000000000011006 900000000000451002 +3796965027 20110131 1 900000000000207008 446131002 119297000 0 116680003 900000000000011006 900000000000451002 +3796981021 20110131 1 900000000000207008 446235003 119401005 0 116680003 900000000000011006 900000000000451002 +3796982025 20110131 1 900000000000207008 446235003 440674008 0 116680003 900000000000011006 900000000000451002 +3797140024 20110131 1 900000000000207008 446951004 309049000 0 116680003 900000000000011006 900000000000451002 +3797141023 20110131 1 900000000000207008 446951004 119376003 0 116680003 900000000000011006 900000000000451002 +3797142027 20110131 1 900000000000207008 446952006 258431006 0 116680003 900000000000011006 900000000000451002 +3797143021 20110131 1 900000000000207008 446952006 258548000 0 116680003 900000000000011006 900000000000451002 +3797143021 20130731 0 900000000000207008 446952006 258548000 0 116680003 900000000000011006 900000000000451002 +3797296023 20110131 1 900000000000207008 446137003 123038009 0 116680003 900000000000011006 900000000000451002 +3797326025 20110131 1 900000000000207008 446674003 119383005 0 116680003 900000000000011006 900000000000451002 +3797327023 20110131 1 900000000000207008 446674003 119371008 0 116680003 900000000000011006 900000000000451002 +3797328029 20110131 1 900000000000207008 446675002 430214008 0 116680003 900000000000011006 900000000000451002 +3797329021 20110131 1 900000000000207008 446675002 119295008 0 116680003 900000000000011006 900000000000451002 +3797330027 20110131 1 900000000000207008 446675002 309125000 0 116680003 900000000000011006 900000000000451002 +3797331028 20110131 1 900000000000207008 446676001 119321005 0 116680003 900000000000011006 900000000000451002 +3797332024 20110131 1 900000000000207008 446676001 309055005 0 116680003 900000000000011006 900000000000451002 +3797683025 20110131 1 900000000000207008 446299006 119295008 0 116680003 900000000000011006 900000000000451002 +3797684020 20110131 1 900000000000207008 446299006 309050000 0 116680003 900000000000011006 900000000000451002 +3797685021 20110131 1 900000000000207008 446300003 119393003 0 116680003 900000000000011006 900000000000451002 +3797686022 20110131 1 900000000000207008 446300003 122575003 0 116680003 900000000000011006 900000000000451002 +3797689026 20110131 1 900000000000207008 446302006 119317003 0 116680003 900000000000011006 900000000000451002 +3797697022 20110131 1 900000000000207008 446304007 445405002 0 116680003 900000000000011006 900000000000451002 +3797698028 20110131 1 900000000000207008 446304007 258417006 0 116680003 900000000000011006 900000000000451002 +3797699020 20110131 1 900000000000207008 446305008 119295008 0 116680003 900000000000011006 900000000000451002 +3797700021 20110131 1 900000000000207008 446305008 258603007 0 116680003 900000000000011006 900000000000451002 +3797701020 20110131 1 900000000000207008 446305008 309050000 0 116680003 900000000000011006 900000000000451002 +3797727020 20110131 1 900000000000207008 446700001 258470000 0 116680003 900000000000011006 900000000000451002 +3797948027 20110131 1 900000000000207008 446272009 119297000 0 116680003 900000000000011006 900000000000451002 +3797954026 20110131 1 900000000000207008 446277003 442173007 0 116680003 900000000000011006 900000000000451002 +3797970029 20110131 1 900000000000207008 446306009 122575003 0 116680003 900000000000011006 900000000000451002 +3797971025 20110131 1 900000000000207008 446306009 127454002 0 116680003 900000000000011006 900000000000451002 +3797971025 20130131 0 900000000000207008 446306009 127454002 0 116680003 900000000000011006 900000000000451002 +3798345020 20110131 1 900000000000207008 447403008 128161005 0 116680003 900000000000011006 900000000000451002 +3798345020 20150731 0 900000000000207008 447403008 128161005 0 116680003 900000000000011006 900000000000451002 +3798352022 20110131 1 900000000000207008 447407009 309049000 0 116680003 900000000000011006 900000000000451002 +3798353028 20110131 1 900000000000207008 447407009 119376003 0 116680003 900000000000011006 900000000000451002 +3798401021 20110131 1 900000000000207008 446972001 119295008 0 116680003 900000000000011006 900000000000451002 +3798402025 20110131 1 900000000000207008 446972001 119371008 0 116680003 900000000000011006 900000000000451002 +3798452023 20110131 1 900000000000207008 446817004 119341000 0 116680003 900000000000011006 900000000000451002 +3798524028 20110131 1 900000000000207008 447488002 89837001 1 118169006 900000000000011006 900000000000451002 +3798524028 20110731 0 900000000000207008 447488002 89837001 1 118169006 900000000000011006 900000000000451002 +3798545024 20110131 1 900000000000207008 446842008 81105003 1 118169006 900000000000011006 900000000000451002 +3798545024 20110731 0 900000000000207008 446842008 81105003 1 118169006 900000000000011006 900000000000451002 +3798628022 20110131 1 900000000000207008 446300003 13648007 1 118169006 900000000000011006 900000000000451002 +3798628022 20110731 0 900000000000207008 446300003 13648007 1 118169006 900000000000011006 900000000000451002 +3798655029 20110131 1 900000000000207008 446676001 172118003 1 118171006 900000000000011006 900000000000451002 +3798655029 20110731 0 900000000000207008 446676001 172118003 1 118171006 900000000000011006 900000000000451002 +3798657021 20110131 1 900000000000207008 447104008 431938005 1 118169006 900000000000011006 900000000000451002 +3798657021 20110731 0 900000000000207008 447104008 431938005 1 118169006 900000000000011006 900000000000451002 +3798688020 20110131 1 900000000000207008 446235003 49999004 1 118171006 900000000000011006 900000000000451002 +3798688020 20110731 0 900000000000207008 446235003 49999004 1 118171006 900000000000011006 900000000000451002 +3798689028 20110131 1 900000000000207008 446235003 29445007 1 118169006 900000000000011006 900000000000451002 +3798689028 20110731 0 900000000000207008 446235003 29445007 1 118169006 900000000000011006 900000000000451002 +3798719029 20110131 1 900000000000207008 444824001 413675001 1 370133003 900000000000011006 900000000000451002 +3798745022 20110131 1 900000000000207008 447355008 387191005 1 370133003 900000000000011006 900000000000451002 +3798745022 20110731 0 900000000000207008 447355008 387191005 1 370133003 900000000000011006 900000000000451002 +3799124027 20110131 1 900000000000207008 122560006 256906008 1 370133003 900000000000011006 900000000000451002 +3799124027 20110731 0 900000000000207008 122560006 256906008 1 370133003 900000000000011006 900000000000451002 +3799131028 20110131 1 900000000000207008 446972001 14766002 1 118171006 900000000000011006 900000000000451002 +3799131028 20110731 0 900000000000207008 446972001 14766002 1 118171006 900000000000011006 900000000000451002 +3799145023 20110131 1 900000000000207008 446302006 15158005 0 370133003 900000000000011006 900000000000451002 +3799145023 20190731 1 900000000000207008 446302006 15158005 1 370133003 900000000000011006 900000000000451002 +3799251021 20110131 1 900000000000207008 447098004 72651009 1 118169006 900000000000011006 900000000000451002 +3799251021 20110731 0 900000000000207008 447098004 72651009 1 118169006 900000000000011006 900000000000451002 +3799285022 20110131 1 900000000000207008 447358005 447338009 1 118171006 900000000000011006 900000000000451002 +3799285022 20110731 0 900000000000207008 447358005 447338009 1 118171006 900000000000011006 900000000000451002 +3799286023 20110131 1 900000000000207008 447358005 2739003 1 118169006 900000000000011006 900000000000451002 +3799286023 20110731 0 900000000000207008 447358005 2739003 1 118169006 900000000000011006 900000000000451002 +3799288024 20110131 1 900000000000207008 446675002 281810004 1 118171006 900000000000011006 900000000000451002 +3799288024 20110731 0 900000000000207008 446675002 281810004 1 118171006 900000000000011006 900000000000451002 +3799311021 20110131 1 900000000000207008 122562003 256906008 1 370133003 900000000000011006 900000000000451002 +3799311021 20110731 0 900000000000207008 122562003 256906008 1 370133003 900000000000011006 900000000000451002 +3799346029 20110131 1 900000000000207008 447339001 45206002 1 118169006 900000000000011006 900000000000451002 +3799346029 20110731 0 900000000000207008 447339001 45206002 1 118169006 900000000000011006 900000000000451002 +3799448027 20110131 1 900000000000207008 445444005 285570007 1 118171006 900000000000011006 900000000000451002 +3799449024 20110131 1 900000000000207008 445444005 26893007 1 118169006 900000000000011006 900000000000451002 +3799486020 20110131 1 900000000000207008 445069004 387191005 1 370133003 900000000000011006 900000000000451002 +3799487027 20110131 1 900000000000207008 445069004 83670000 1 118169006 900000000000011006 900000000000451002 +3799487027 20230430 0 900000000000207008 445069004 83670000 1 118169006 900000000000011006 900000000000451002 +3799530022 20110131 1 900000000000207008 444865001 226790003 1 370133003 900000000000011006 900000000000451002 +3799530022 20110731 0 900000000000207008 444865001 226790003 1 370133003 900000000000011006 900000000000451002 +3799663022 20110131 1 900000000000207008 446129006 79741001 1 118169006 900000000000011006 900000000000451002 +3799663022 20110731 0 900000000000207008 446129006 79741001 1 118169006 900000000000011006 900000000000451002 +3799703025 20110131 1 900000000000207008 446906004 21306003 1 118169006 900000000000011006 900000000000451002 +3799703025 20110731 0 900000000000207008 446906004 21306003 1 118169006 900000000000011006 900000000000451002 +3799704020 20110131 1 900000000000207008 446906004 27897001 1 370133003 900000000000011006 900000000000451002 +3799704020 20110731 0 900000000000207008 446906004 27897001 1 370133003 900000000000011006 900000000000451002 +3799727028 20110131 1 900000000000207008 446907008 78014005 2 370133003 900000000000011006 900000000000451002 +3799729025 20110131 1 900000000000207008 447357000 76752008 1 118169006 900000000000011006 900000000000451002 +3799729025 20110731 0 900000000000207008 447357000 76752008 1 118169006 900000000000011006 900000000000451002 +3799865029 20110131 1 900000000000207008 444831002 420051002 1 370133003 900000000000011006 900000000000451002 +3799866028 20110131 1 900000000000207008 444831002 36965003 1 118170007 900000000000011006 900000000000451002 +3799869024 20110131 1 900000000000207008 447407009 413675001 1 370133003 900000000000011006 900000000000451002 +3799869024 20110731 0 900000000000207008 447407009 413675001 1 370133003 900000000000011006 900000000000451002 +3799931029 20110131 1 900000000000207008 258470000 41216001 1 118169006 900000000000011006 900000000000451002 +3799931029 20110731 0 900000000000207008 258470000 41216001 1 118169006 900000000000011006 900000000000451002 +3799932020 20110131 1 900000000000207008 258470000 32457005 1 370133003 900000000000011006 900000000000451002 +3799932020 20110731 0 900000000000207008 258470000 32457005 1 370133003 900000000000011006 900000000000451002 +3799970024 20110131 1 900000000000207008 444959000 387191005 1 370133003 900000000000011006 900000000000451002 +3799971023 20110131 1 900000000000207008 444959000 83670000 1 118169006 900000000000011006 900000000000451002 +3799971023 20230430 0 900000000000207008 444959000 83670000 1 118169006 900000000000011006 900000000000451002 +3800046027 20110131 1 900000000000207008 447337004 447099007 1 118171006 900000000000011006 900000000000451002 +3800046027 20110731 0 900000000000207008 447337004 447099007 1 118171006 900000000000011006 900000000000451002 +3800079027 20110131 1 900000000000207008 447154002 45206002 0 118169006 900000000000011006 900000000000451002 +3800079027 20190731 1 900000000000207008 447154002 45206002 1 118169006 900000000000011006 900000000000451002 +3800131021 20110131 1 900000000000207008 445744006 32457005 1 370133003 900000000000011006 900000000000451002 +3800131021 20110731 0 900000000000207008 445744006 32457005 1 370133003 900000000000011006 900000000000451002 +3800156026 20110131 1 900000000000207008 446817004 28231008 1 118169006 900000000000011006 900000000000451002 +3800157024 20110131 1 900000000000207008 446817004 70150004 1 370133003 900000000000011006 900000000000451002 +3800165022 20110131 1 900000000000207008 447341000 446232000 1 118171006 900000000000011006 900000000000451002 +3800165022 20110731 0 900000000000207008 447341000 446232000 1 118171006 900000000000011006 900000000000451002 +3800205029 20110131 1 900000000000207008 445743000 78014005 1 370133003 900000000000011006 900000000000451002 +3800205029 20110731 0 900000000000207008 445743000 78014005 1 370133003 900000000000011006 900000000000451002 +3800245022 20110131 1 900000000000207008 446128003 32457005 1 370133003 900000000000011006 900000000000451002 +3800245022 20110731 0 900000000000207008 446128003 32457005 1 370133003 900000000000011006 900000000000451002 +3800250027 20110131 1 900000000000207008 444965000 32457005 1 370133003 900000000000011006 900000000000451002 +3800252024 20110131 1 900000000000207008 447148003 91720002 1 370133003 900000000000011006 900000000000451002 +3800252024 20110731 0 900000000000207008 447148003 91720002 1 370133003 900000000000011006 900000000000451002 +3800275028 20110131 1 900000000000207008 446561003 28231008 1 118169006 900000000000011006 900000000000451002 +3800276027 20110131 1 900000000000207008 446561003 32457005 1 370133003 900000000000011006 900000000000451002 +3800313025 20110131 1 900000000000207008 444937002 78014005 1 370133003 900000000000011006 900000000000451002 +3800360022 20110131 1 900000000000207008 446577002 285570007 0 118171006 900000000000011006 900000000000451002 +3800360022 20190731 1 900000000000207008 446577002 285570007 1 118171006 900000000000011006 900000000000451002 +3800390026 20110131 1 900000000000207008 446846006 446775007 1 118171006 900000000000011006 900000000000451002 +3800390026 20110731 0 900000000000207008 446846006 446775007 1 118171006 900000000000011006 900000000000451002 +3800452022 20110131 1 900000000000207008 446908003 32457005 1 370133003 900000000000011006 900000000000451002 +3800452022 20110731 0 900000000000207008 446908003 32457005 1 370133003 900000000000011006 900000000000451002 +3800457027 20110131 1 900000000000207008 446700001 252925009 1 118171006 900000000000011006 900000000000451002 +3800457027 20110731 0 900000000000207008 446700001 252925009 1 118171006 900000000000011006 900000000000451002 +3800482027 20110131 1 900000000000207008 122553000 256906008 1 370133003 900000000000011006 900000000000451002 +3800482027 20110731 0 900000000000207008 122553000 256906008 1 370133003 900000000000011006 900000000000451002 +3800598021 20110131 1 900000000000207008 447391001 54066008 1 118169006 900000000000011006 900000000000451002 +3800598021 20110731 0 900000000000207008 447391001 54066008 1 118169006 900000000000011006 900000000000451002 +3800674020 20110131 1 900000000000207008 444623009 420051002 1 370133003 900000000000011006 900000000000451002 +3800675021 20110131 1 900000000000207008 444623009 36965003 1 118170007 900000000000011006 900000000000451002 +3800675021 20210131 0 900000000000207008 444623009 36965003 1 118170007 900000000000011006 900000000000451002 +3800793026 20110131 1 900000000000207008 447359002 32849002 1 118169006 900000000000011006 900000000000451002 +3800793026 20110731 0 900000000000207008 447359002 32849002 1 118169006 900000000000011006 900000000000451002 +3800851023 20110131 1 900000000000207008 446212001 446839002 0 118170007 900000000000011006 900000000000451002 +3800851023 20130131 0 900000000000207008 446212001 446839002 0 118170007 900000000000011006 900000000000451002 +3800862023 20110131 1 900000000000207008 445372002 65216001 1 370133003 900000000000011006 900000000000451002 +3800863029 20110131 1 900000000000207008 445372002 35764002 1 118169006 900000000000011006 900000000000451002 +3800887027 20110131 1 900000000000207008 446774006 12738006 1 118169006 900000000000011006 900000000000451002 +3800887027 20110731 0 900000000000207008 446774006 12738006 1 118169006 900000000000011006 900000000000451002 +3800905023 20110131 1 900000000000207008 445384000 420051002 1 370133003 900000000000011006 900000000000451002 +3800906024 20110131 1 900000000000207008 445384000 36965003 1 118170007 900000000000011006 900000000000451002 +3801085027 20110131 1 900000000000207008 445364004 422543003 1 118169006 900000000000011006 900000000000451002 +3801085027 20230531 0 900000000000207008 445364004 422543003 1 118169006 900000000000011006 900000000000451002 +3801086026 20110131 1 900000000000207008 445364004 285570007 1 118171006 900000000000011006 900000000000451002 +3801116022 20110131 1 900000000000207008 447403008 105455006 1 118170007 900000000000011006 900000000000451002 +3801116022 20110731 0 900000000000207008 447403008 105455006 1 118170007 900000000000011006 900000000000451002 +3801285023 20110131 1 900000000000207008 445447003 129112001 1 118171006 900000000000011006 900000000000451002 +3801286024 20110131 1 900000000000207008 445447003 44567001 1 118169006 900000000000011006 900000000000451002 +3801315029 20110131 1 900000000000207008 445297001 53342003 1 118169006 900000000000011006 900000000000451002 +3801327026 20110131 1 900000000000207008 446562005 32457005 1 370133003 900000000000011006 900000000000451002 +3801327026 20110731 0 900000000000207008 446562005 32457005 1 370133003 900000000000011006 900000000000451002 +3801456025 20110131 1 900000000000207008 446277003 25990002 1 118169006 900000000000011006 900000000000451002 +3801456025 20110731 0 900000000000207008 446277003 25990002 1 118169006 900000000000011006 900000000000451002 +3801635021 20110131 1 900000000000207008 444787003 285589007 1 118171006 900000000000011006 900000000000451002 +3801636022 20110131 1 900000000000207008 444787003 36973007 1 118169006 900000000000011006 900000000000451002 +3801638023 20110131 1 900000000000207008 446305008 20139000 1 118169006 900000000000011006 900000000000451002 +3801638023 20110731 0 900000000000207008 446305008 20139000 1 118169006 900000000000011006 900000000000451002 +3801683024 20110131 1 900000000000207008 446211008 33463005 1 370133003 900000000000011006 900000000000451002 +3801683024 20110731 0 900000000000207008 446211008 33463005 1 370133003 900000000000011006 900000000000451002 +3801711020 20110131 1 900000000000207008 447375004 91381003 1 118169006 900000000000011006 900000000000451002 +3801711020 20110731 0 900000000000207008 447375004 91381003 1 118169006 900000000000011006 900000000000451002 +3801763029 20110131 1 900000000000207008 445383006 78014005 1 370133003 900000000000011006 900000000000451002 +3801764024 20110131 1 900000000000207008 445383006 252925009 1 118171006 900000000000011006 900000000000451002 +3801765020 20110131 1 900000000000207008 445383006 431938005 1 118169006 900000000000011006 900000000000451002 +3801869020 20110131 1 900000000000207008 446951004 61363009 1 118168003 900000000000011006 900000000000451002 +3801869020 20110731 0 900000000000207008 446951004 61363009 1 118168003 900000000000011006 900000000000451002 +3801870021 20110131 1 900000000000207008 446306009 431938005 1 118169006 900000000000011006 900000000000451002 +3801870021 20110731 0 900000000000207008 446306009 431938005 1 118169006 900000000000011006 900000000000451002 +3801871020 20110131 1 900000000000207008 446306009 78014005 1 370133003 900000000000011006 900000000000451002 +3801871020 20110731 0 900000000000207008 446306009 78014005 1 370133003 900000000000011006 900000000000451002 +3801874028 20110131 1 900000000000207008 446130001 89837001 1 118169006 900000000000011006 900000000000451002 +3801874028 20110731 0 900000000000207008 446130001 89837001 1 118169006 900000000000011006 900000000000451002 +3801881024 20110131 1 900000000000207008 445745007 32457005 1 370133003 900000000000011006 900000000000451002 +3801881024 20110731 0 900000000000207008 445745007 32457005 1 370133003 900000000000011006 900000000000451002 +3801883022 20110131 1 900000000000207008 447392008 446301004 1 118171006 900000000000011006 900000000000451002 +3801883022 20110731 0 900000000000207008 447392008 446301004 1 118171006 900000000000011006 900000000000451002 +3801917025 20110131 1 900000000000207008 445742005 78014005 1 370133003 900000000000011006 900000000000451002 +3801917025 20110731 0 900000000000207008 445742005 78014005 1 370133003 900000000000011006 900000000000451002 +3801926027 20110131 1 900000000000207008 258412000 31389004 1 118169006 900000000000011006 900000000000451002 +3801926027 20110731 0 900000000000207008 258412000 31389004 1 118169006 900000000000011006 900000000000451002 +3801927020 20110131 1 900000000000207008 258412000 410579004 2 370133003 900000000000011006 900000000000451002 +3801927020 20110731 0 900000000000207008 258412000 410579004 2 370133003 900000000000011006 900000000000451002 +3801953028 20110131 1 900000000000207008 445369009 285570007 1 118171006 900000000000011006 900000000000451002 +3801954023 20110131 1 900000000000207008 445369009 2739003 1 118169006 900000000000011006 900000000000451002 +3802075026 20110131 1 900000000000207008 447158004 70150004 1 370133003 900000000000011006 900000000000451002 +3802075026 20110731 0 900000000000207008 447158004 70150004 1 370133003 900000000000011006 900000000000451002 +3802166025 20110131 1 900000000000207008 445367006 78220002 1 118169006 900000000000011006 900000000000451002 +3802167023 20110131 1 900000000000207008 445367006 285570007 1 118171006 900000000000011006 900000000000451002 +3802223027 20110131 1 900000000000207008 258576008 58088002 1 118171006 900000000000011006 900000000000451002 +3802223027 20110731 0 900000000000207008 258576008 58088002 1 118171006 900000000000011006 900000000000451002 +3802357022 20110131 1 900000000000207008 122561005 256906008 1 370133003 900000000000011006 900000000000451002 +3802357022 20110731 0 900000000000207008 122561005 256906008 1 370133003 900000000000011006 900000000000451002 +3802380025 20110131 1 900000000000207008 447589008 89837001 1 118169006 900000000000011006 900000000000451002 +3802380025 20110731 0 900000000000207008 447589008 89837001 1 118169006 900000000000011006 900000000000451002 +3802448026 20110131 1 900000000000207008 445529007 36965003 1 118170007 900000000000011006 900000000000451002 +3802448026 20210131 0 900000000000207008 445529007 36965003 1 118170007 900000000000011006 900000000000451002 +3802463028 20110131 1 900000000000207008 445160003 81745001 1 118169006 900000000000011006 900000000000451002 +3802507026 20110131 1 900000000000207008 446837000 70847004 1 118169006 900000000000011006 900000000000451002 +3802507026 20110731 0 900000000000207008 446837000 70847004 1 118169006 900000000000011006 900000000000451002 +3802508020 20110131 1 900000000000207008 446837000 413675001 1 370133003 900000000000011006 900000000000451002 +3802508020 20110731 0 900000000000207008 446837000 413675001 1 370133003 900000000000011006 900000000000451002 +3802512025 20110131 1 900000000000207008 446861007 65216001 1 370133003 900000000000011006 900000000000451002 +3802575024 20110131 1 900000000000207008 446304007 67954006 1 118171006 900000000000011006 900000000000451002 +3802575024 20110731 0 900000000000207008 446304007 67954006 1 118171006 900000000000011006 900000000000451002 +3802582023 20110131 1 900000000000207008 446304007 413675001 1 370133003 900000000000011006 900000000000451002 +3802582023 20110731 0 900000000000207008 446304007 413675001 1 370133003 900000000000011006 900000000000451002 +3802583029 20110131 1 900000000000207008 446131002 256906008 0 370133003 900000000000011006 900000000000451002 +3802583029 20190731 1 900000000000207008 446131002 256906008 1 370133003 900000000000011006 900000000000451002 +3802597021 20110131 1 900000000000207008 446272009 256906008 0 370133003 900000000000011006 900000000000451002 +3802597021 20190731 1 900000000000207008 446272009 256906008 1 370133003 900000000000011006 900000000000451002 +3802624025 20110131 1 900000000000207008 446299006 14766002 1 118171006 900000000000011006 900000000000451002 +3802624025 20110731 0 900000000000207008 446299006 14766002 1 118171006 900000000000011006 900000000000451002 +3802634023 20110131 1 900000000000207008 258571003 36965003 1 118170007 900000000000011006 900000000000451002 +3802634023 20210131 0 900000000000207008 258571003 36965003 1 118170007 900000000000011006 900000000000451002 +3802667022 20110131 1 900000000000207008 447345009 257925000 1 118171006 900000000000011006 900000000000451002 +3802667022 20110731 0 900000000000207008 447345009 257925000 1 118171006 900000000000011006 900000000000451002 +3802669020 20110131 1 900000000000207008 447155001 176820000 1 118171006 900000000000011006 900000000000451002 +3802669020 20110731 0 900000000000207008 447155001 176820000 1 118171006 900000000000011006 900000000000451002 +3802690028 20110131 1 900000000000207008 447103002 19227008 0 118168003 900000000000011006 900000000000451002 +3802690028 20190731 1 900000000000207008 447103002 19227008 1 118168003 900000000000011006 900000000000451002 +3803275029 20110131 1 900000000000207008 431361003 431898009 1 370133003 900000000000011006 900000000000451002 +3803275029 20110731 0 900000000000207008 431361003 431898009 1 370133003 900000000000011006 900000000000451002 +3803393025 20110131 1 900000000000207008 444832009 226790003 1 370133003 900000000000011006 900000000000451002 +3803393025 20110731 0 900000000000207008 444832009 226790003 1 370133003 900000000000011006 900000000000451002 +3803405028 20110131 1 900000000000207008 444936006 32457005 1 370133003 900000000000011006 900000000000451002 +3803406027 20110131 1 900000000000207008 444937002 87953007 1 118169006 900000000000011006 900000000000451002 +3803412021 20110131 1 900000000000207008 444965000 30636001 1 118169006 900000000000011006 900000000000451002 +3803449026 20110131 1 900000000000207008 445160003 285570007 1 118171006 900000000000011006 900000000000451002 +3803469020 20110131 1 900000000000207008 445297001 285570007 1 118171006 900000000000011006 900000000000451002 +3803507023 20110131 1 900000000000207008 445529007 420051002 1 370133003 900000000000011006 900000000000451002 +3803553027 20110131 1 900000000000207008 444936006 54214006 1 118169006 900000000000011006 900000000000451002 +3803662022 20110131 1 900000000000207008 444824001 44132006 1 118168003 900000000000011006 900000000000451002 +3803715024 20110131 1 900000000000207008 122553000 78220002 1 118169006 900000000000011006 900000000000451002 +3803715024 20110731 0 900000000000207008 122553000 78220002 1 118169006 900000000000011006 900000000000451002 +3803716020 20110131 1 900000000000207008 122560006 105470007 1 118170007 900000000000011006 900000000000451002 +3803716020 20110731 0 900000000000207008 122560006 105470007 1 118170007 900000000000011006 900000000000451002 +3803717027 20110131 1 900000000000207008 122561005 116154003 1 118170007 900000000000011006 900000000000451002 +3803717027 20110731 0 900000000000207008 122561005 116154003 1 118170007 900000000000011006 900000000000451002 +3803718021 20110131 1 900000000000207008 122562003 133933007 1 118170007 900000000000011006 900000000000451002 +3803718021 20110731 0 900000000000207008 122562003 133933007 1 118170007 900000000000011006 900000000000451002 +3804092020 20110131 1 900000000000207008 258412000 321667001 2 118169006 900000000000011006 900000000000451002 +3804092020 20110731 0 900000000000207008 258412000 321667001 2 118169006 900000000000011006 900000000000451002 +3804093026 20110131 1 900000000000207008 258412000 14766002 1 118171006 900000000000011006 900000000000451002 +3804093026 20110731 0 900000000000207008 258412000 14766002 1 118171006 900000000000011006 900000000000451002 +3804094021 20110131 1 900000000000207008 258576008 89837001 1 118169006 900000000000011006 900000000000451002 +3804094021 20110731 0 900000000000207008 258576008 89837001 1 118169006 900000000000011006 900000000000451002 +3804095022 20110131 1 900000000000207008 258576008 78014005 1 370133003 900000000000011006 900000000000451002 +3804095022 20110731 0 900000000000207008 258576008 78014005 1 370133003 900000000000011006 900000000000451002 +3804440023 20110131 1 900000000000207008 431361003 39352004 1 118169006 900000000000011006 900000000000451002 +3804440023 20110731 0 900000000000207008 431361003 39352004 1 118169006 900000000000011006 900000000000451002 +3804686026 20110131 1 900000000000207008 447337004 29445007 1 118169006 900000000000011006 900000000000451002 +3804686026 20110731 0 900000000000207008 447337004 29445007 1 118169006 900000000000011006 900000000000451002 +3804689022 20110131 1 900000000000207008 447339001 386147002 1 118171006 900000000000011006 900000000000451002 +3804689022 20110731 0 900000000000207008 447339001 386147002 1 118171006 900000000000011006 900000000000451002 +3804690029 20110131 1 900000000000207008 447341000 34707002 1 118169006 900000000000011006 900000000000451002 +3804690029 20110731 0 900000000000207008 447341000 34707002 1 118169006 900000000000011006 900000000000451002 +3804691025 20110131 1 900000000000207008 447341000 70150004 1 370133003 900000000000011006 900000000000451002 +3804691025 20110731 0 900000000000207008 447341000 70150004 1 370133003 900000000000011006 900000000000451002 +3804703025 20110131 1 900000000000207008 447345009 955009 1 118169006 900000000000011006 900000000000451002 +3804703025 20110731 0 900000000000207008 447345009 955009 1 118169006 900000000000011006 900000000000451002 +3804704020 20110131 1 900000000000207008 447345009 36370000 1 118170007 900000000000011006 900000000000451002 +3804704020 20110731 0 900000000000207008 447345009 36370000 1 118170007 900000000000011006 900000000000451002 +3804705021 20110131 1 900000000000207008 447345009 87200008 1 370133003 900000000000011006 900000000000451002 +3804705021 20110731 0 900000000000207008 447345009 87200008 1 370133003 900000000000011006 900000000000451002 +3804711024 20110131 1 900000000000207008 447355008 83670000 1 118169006 900000000000011006 900000000000451002 +3804711024 20110731 0 900000000000207008 447355008 83670000 1 118169006 900000000000011006 900000000000451002 +3804712028 20110131 1 900000000000207008 447357000 11106008 1 118171006 900000000000011006 900000000000451002 +3804712028 20110731 0 900000000000207008 447357000 11106008 1 118171006 900000000000011006 900000000000451002 +3804713022 20110131 1 900000000000207008 447359002 447152003 1 118171006 900000000000011006 900000000000451002 +3804713022 20110731 0 900000000000207008 447359002 447152003 1 118171006 900000000000011006 900000000000451002 +3804728022 20110131 1 900000000000207008 447375004 446847002 1 118171006 900000000000011006 900000000000451002 +3804728022 20110731 0 900000000000207008 447375004 446847002 1 118171006 900000000000011006 900000000000451002 +3804729025 20110131 1 900000000000207008 447375004 32457005 1 370133003 900000000000011006 900000000000451002 +3804729025 20110731 0 900000000000207008 447375004 32457005 1 370133003 900000000000011006 900000000000451002 +3804832021 20110131 1 900000000000207008 447391001 447153008 1 118171006 900000000000011006 900000000000451002 +3804832021 20110731 0 900000000000207008 447391001 447153008 1 118171006 900000000000011006 900000000000451002 +3804833027 20110131 1 900000000000207008 447392008 76784001 1 118169006 900000000000011006 900000000000451002 +3804833027 20110731 0 900000000000207008 447392008 76784001 1 118169006 900000000000011006 900000000000451002 +3804842023 20110131 1 900000000000207008 447403008 28726007 1 118169006 900000000000011006 900000000000451002 +3804842023 20110731 0 900000000000207008 447403008 28726007 1 118169006 900000000000011006 900000000000451002 +3804843029 20110131 1 900000000000207008 447403008 413675001 1 370133003 900000000000011006 900000000000451002 +3804843029 20110731 0 900000000000207008 447403008 413675001 1 370133003 900000000000011006 900000000000451002 +3804847028 20110131 1 900000000000207008 447407009 6574001 1 118168003 900000000000011006 900000000000451002 +3804847028 20110731 0 900000000000207008 447407009 6574001 1 118168003 900000000000011006 900000000000451002 +3804905026 20110131 1 900000000000207008 446561003 122462000 1 118171006 900000000000011006 900000000000451002 +3804906025 20110131 1 900000000000207008 446562005 122462000 1 118171006 900000000000011006 900000000000451002 +3804906025 20110731 0 900000000000207008 446562005 122462000 1 118171006 900000000000011006 900000000000451002 +3804962025 20110131 1 900000000000207008 447488002 58088002 1 118171006 900000000000011006 900000000000451002 +3804962025 20110731 0 900000000000207008 447488002 58088002 1 118171006 900000000000011006 900000000000451002 +3804963024 20110131 1 900000000000207008 447488002 78014005 1 370133003 900000000000011006 900000000000451002 +3804963024 20110731 0 900000000000207008 447488002 78014005 1 370133003 900000000000011006 900000000000451002 +3805103026 20110131 1 900000000000207008 444832009 76752008 1 118169006 900000000000011006 900000000000451002 +3805103026 20110731 0 900000000000207008 444832009 76752008 1 118169006 900000000000011006 900000000000451002 +3805104021 20110131 1 900000000000207008 444832009 172118003 1 118171006 900000000000011006 900000000000451002 +3805104021 20110731 0 900000000000207008 444832009 172118003 1 118171006 900000000000011006 900000000000451002 +3805105022 20110131 1 900000000000207008 444865001 76752008 1 118169006 900000000000011006 900000000000451002 +3805105022 20110731 0 900000000000207008 444865001 76752008 1 118169006 900000000000011006 900000000000451002 +3805106023 20110131 1 900000000000207008 444865001 172118003 1 118171006 900000000000011006 900000000000451002 +3805106023 20110731 0 900000000000207008 444865001 172118003 1 118171006 900000000000011006 900000000000451002 +3805111020 20110131 1 900000000000207008 446674003 44132006 1 118168003 900000000000011006 900000000000451002 +3805111020 20110731 0 900000000000207008 446674003 44132006 1 118168003 900000000000011006 900000000000451002 +3805112029 20110131 1 900000000000207008 446674003 10200004 1 118169006 900000000000011006 900000000000451002 +3805112029 20110731 0 900000000000207008 446674003 10200004 1 118169006 900000000000011006 900000000000451002 +3805113023 20110131 1 900000000000207008 446675002 49076000 1 118169006 900000000000011006 900000000000451002 +3805113023 20110731 0 900000000000207008 446675002 49076000 1 118169006 900000000000011006 900000000000451002 +3805114028 20110131 1 900000000000207008 446676001 76752008 1 118169006 900000000000011006 900000000000451002 +3805114028 20110731 0 900000000000207008 446676001 76752008 1 118169006 900000000000011006 900000000000451002 +3805115027 20110131 1 900000000000207008 446676001 226790003 1 370133003 900000000000011006 900000000000451002 +3805115027 20110731 0 900000000000207008 446676001 226790003 1 370133003 900000000000011006 900000000000451002 +3805150024 20110131 1 900000000000207008 446700001 41216001 1 118169006 900000000000011006 900000000000451002 +3805150024 20110731 0 900000000000207008 446700001 41216001 1 118169006 900000000000011006 900000000000451002 +3805151023 20110131 1 900000000000207008 446700001 32457005 1 370133003 900000000000011006 900000000000451002 +3805151023 20110731 0 900000000000207008 446700001 32457005 1 370133003 900000000000011006 900000000000451002 +3805168022 20110131 1 900000000000207008 447589008 410024004 1 118171006 900000000000011006 900000000000451002 +3805168022 20110731 0 900000000000207008 447589008 410024004 1 118171006 900000000000011006 900000000000451002 +3805169025 20110131 1 900000000000207008 447589008 78014005 1 370133003 900000000000011006 900000000000451002 +3805169025 20110731 0 900000000000207008 447589008 78014005 1 370133003 900000000000011006 900000000000451002 +3805291028 20110131 1 900000000000207008 445742005 431938005 1 118169006 900000000000011006 900000000000451002 +3805291028 20110731 0 900000000000207008 445742005 431938005 1 118169006 900000000000011006 900000000000451002 +3805292024 20110131 1 900000000000207008 445743000 431938005 1 118169006 900000000000011006 900000000000451002 +3805292024 20110731 0 900000000000207008 445743000 431938005 1 118169006 900000000000011006 900000000000451002 +3805293025 20110131 1 900000000000207008 445744006 56021002 1 118168003 900000000000011006 900000000000451002 +3805293025 20110731 0 900000000000207008 445744006 56021002 1 118168003 900000000000011006 900000000000451002 +3805294020 20110131 1 900000000000207008 445745007 243974009 1 118169006 900000000000011006 900000000000451002 +3805294020 20110731 0 900000000000207008 445745007 243974009 1 118169006 900000000000011006 900000000000451002 +3805488026 20110131 1 900000000000207008 446774006 44132006 1 118168003 900000000000011006 900000000000451002 +3805488026 20110731 0 900000000000207008 446774006 44132006 1 118168003 900000000000011006 900000000000451002 +3805630021 20110131 1 900000000000207008 446842008 413675001 1 370133003 900000000000011006 900000000000451002 +3805630021 20110731 0 900000000000207008 446842008 413675001 1 370133003 900000000000011006 900000000000451002 +3805638025 20110131 1 900000000000207008 446846006 89837001 1 118169006 900000000000011006 900000000000451002 +3805638025 20110731 0 900000000000207008 446846006 89837001 1 118169006 900000000000011006 900000000000451002 +3805639022 20110131 1 900000000000207008 446846006 78014005 1 370133003 900000000000011006 900000000000451002 +3805639022 20110731 0 900000000000207008 446846006 78014005 1 370133003 900000000000011006 900000000000451002 +3805725027 20110131 1 900000000000207008 446861007 446860008 1 118171006 900000000000011006 900000000000451002 +3805849022 20110131 1 900000000000207008 446907008 431938005 2 118169006 900000000000011006 900000000000451002 +3805850022 20110131 1 900000000000207008 446907008 64033007 1 118169006 900000000000011006 900000000000451002 +3805851021 20110131 1 900000000000207008 446907008 78014005 1 370133003 900000000000011006 900000000000451002 +3805852025 20110131 1 900000000000207008 446908003 19633006 1 118168003 900000000000011006 900000000000451002 +3805852025 20110731 0 900000000000207008 446908003 19633006 1 118168003 900000000000011006 900000000000451002 +3805853024 20110131 1 900000000000207008 446908003 3954005 1 118169006 900000000000011006 900000000000451002 +3805853024 20110731 0 900000000000207008 446908003 3954005 1 118169006 900000000000011006 900000000000451002 +3805934026 20110131 1 900000000000207008 446128003 367643001 1 118168003 900000000000011006 900000000000451002 +3805934026 20110731 0 900000000000207008 446128003 367643001 1 118168003 900000000000011006 900000000000451002 +3805935025 20110131 1 900000000000207008 446128003 87176006 1 118169006 900000000000011006 900000000000451002 +3805935025 20110731 0 900000000000207008 446128003 87176006 1 118169006 900000000000011006 900000000000451002 +3805936029 20110131 1 900000000000207008 446129006 70150004 1 370133003 900000000000011006 900000000000451002 +3805936029 20110731 0 900000000000207008 446129006 70150004 1 370133003 900000000000011006 900000000000451002 +3805937022 20110131 1 900000000000207008 446130001 78014005 1 370133003 900000000000011006 900000000000451002 +3805937022 20110731 0 900000000000207008 446130001 78014005 1 370133003 900000000000011006 900000000000451002 +3805965024 20110131 1 900000000000207008 446951004 413675001 1 370133003 900000000000011006 900000000000451002 +3805965024 20110731 0 900000000000207008 446951004 413675001 1 370133003 900000000000011006 900000000000451002 +3805966020 20110131 1 900000000000207008 446952006 39937001 1 118169006 900000000000011006 900000000000451002 +3805966020 20110731 0 900000000000207008 446952006 39937001 1 118169006 900000000000011006 900000000000451002 +3805967027 20110131 1 900000000000207008 446952006 24619005 1 118171006 900000000000011006 900000000000451002 +3805967027 20110731 0 900000000000207008 446952006 24619005 1 118171006 900000000000011006 900000000000451002 +3805980029 20110131 1 900000000000207008 446972001 44132006 1 118168003 900000000000011006 900000000000451002 +3805980029 20110731 0 900000000000207008 446972001 44132006 1 118168003 900000000000011006 900000000000451002 +3806045023 20110131 1 900000000000207008 446211008 122462000 1 118171006 900000000000011006 900000000000451002 +3806045023 20110731 0 900000000000207008 446211008 122462000 1 118171006 900000000000011006 900000000000451002 +3806160023 20110131 1 900000000000207008 446277003 225109005 1 118171006 900000000000011006 900000000000451002 +3806160023 20110731 0 900000000000207008 446277003 225109005 1 118171006 900000000000011006 900000000000451002 +3806161022 20110131 1 900000000000207008 446277003 78014005 1 370133003 900000000000011006 900000000000451002 +3806161022 20110731 0 900000000000207008 446277003 78014005 1 370133003 900000000000011006 900000000000451002 +3806183021 20110131 1 900000000000207008 446299006 312419003 1 118169006 900000000000011006 900000000000451002 +3806183021 20110731 0 900000000000207008 446299006 312419003 1 118169006 900000000000011006 900000000000451002 +3806184026 20110131 1 900000000000207008 446299006 91720002 1 370133003 900000000000011006 900000000000451002 +3806184026 20110731 0 900000000000207008 446299006 91720002 1 370133003 900000000000011006 900000000000451002 +3806185025 20110131 1 900000000000207008 446300003 78014005 1 370133003 900000000000011006 900000000000451002 +3806185025 20110731 0 900000000000207008 446300003 78014005 1 370133003 900000000000011006 900000000000451002 +3806187022 20110131 1 900000000000207008 446304007 272673000 1 118169006 900000000000011006 900000000000451002 +3806187022 20110731 0 900000000000207008 446304007 272673000 1 118169006 900000000000011006 900000000000451002 +3806188028 20110131 1 900000000000207008 446305008 14766002 1 118171006 900000000000011006 900000000000451002 +3806188028 20110731 0 900000000000207008 446305008 14766002 1 118171006 900000000000011006 900000000000451002 +3806189020 20110131 1 900000000000207008 446305008 91720002 1 370133003 900000000000011006 900000000000451002 +3806189020 20110731 0 900000000000207008 446305008 91720002 1 370133003 900000000000011006 900000000000451002 +3806198023 20110131 1 900000000000207008 447098004 447097009 1 118171006 900000000000011006 900000000000451002 +3806198023 20110731 0 900000000000207008 447098004 447097009 1 118171006 900000000000011006 900000000000451002 +3806202020 20110131 1 900000000000207008 447104008 314393004 1 118168003 900000000000011006 900000000000451002 +3806202020 20110731 0 900000000000207008 447104008 314393004 1 118168003 900000000000011006 900000000000451002 +3806203026 20110131 1 900000000000207008 447104008 78014005 1 370133003 900000000000011006 900000000000451002 +3806203026 20110731 0 900000000000207008 447104008 78014005 1 370133003 900000000000011006 900000000000451002 +3806236025 20110131 1 900000000000207008 447148003 117590005 1 118169006 900000000000011006 900000000000451002 +3806236025 20110731 0 900000000000207008 447148003 117590005 1 118169006 900000000000011006 900000000000451002 +3806243020 20110131 1 900000000000207008 447155001 35039007 1 118169006 900000000000011006 900000000000451002 +3806243020 20110731 0 900000000000207008 447155001 35039007 1 118169006 900000000000011006 900000000000451002 +3806244025 20110131 1 900000000000207008 447155001 413675001 1 370133003 900000000000011006 900000000000451002 +3806244025 20110731 0 900000000000207008 447155001 413675001 1 370133003 900000000000011006 900000000000451002 +3806266021 20110131 1 900000000000207008 446306009 41323003 1 118170007 900000000000011006 900000000000451002 +3806266021 20110731 0 900000000000207008 446306009 41323003 1 118170007 900000000000011006 900000000000451002 +3806266021 20210131 1 900000000000207008 446306009 41323003 1 118170007 900000000000011006 900000000000451002 +3806324023 20110131 1 900000000000207008 447158004 34707002 1 118169006 900000000000011006 900000000000451002 +3806324023 20110731 0 900000000000207008 447158004 34707002 1 118169006 900000000000011006 900000000000451002 +3806325024 20110131 1 900000000000207008 447158004 315031003 1 118171006 900000000000011006 900000000000451002 +3806325024 20110731 0 900000000000207008 447158004 315031003 1 118171006 900000000000011006 900000000000451002 +3809235027 20110731 1 900000000000207008 309147000 258453008 0 116680003 900000000000011006 900000000000451002 +3809319021 20110731 1 900000000000207008 441673008 448789008 0 116680003 900000000000011006 900000000000451002 +3809481029 20110731 1 900000000000207008 258511009 258530009 0 116680003 900000000000011006 900000000000451002 +3809481029 20240901 0 900000000000207008 258511009 258530009 0 116680003 900000000000011006 900000000000451002 +3809552027 20110731 1 900000000000207008 430379005 122571007 0 116680003 900000000000011006 900000000000451002 +3809589029 20110731 1 900000000000207008 110952009 399526005 0 116680003 900000000000011006 900000000000451002 +3809590022 20110731 1 900000000000207008 110952009 116159008 0 116680003 900000000000011006 900000000000451002 +3810061022 20110731 1 900000000000207008 119338009 430319000 0 116680003 900000000000011006 900000000000451002 +3810157029 20110731 1 900000000000207008 430408004 418564007 0 116680003 900000000000011006 900000000000451002 +3810158023 20110731 1 900000000000207008 430408004 110913002 0 116680003 900000000000011006 900000000000451002 +3810199028 20110731 1 900000000000207008 432419006 309124001 0 116680003 900000000000011006 900000000000451002 +3810369025 20110731 1 900000000000207008 309262006 447955000 0 116680003 900000000000011006 900000000000451002 +3810421027 20110731 1 900000000000207008 110926003 449446003 0 116680003 900000000000011006 900000000000451002 +3810641028 20110731 1 900000000000207008 309145008 309051001 0 116680003 900000000000011006 900000000000451002 +3810673023 20110731 1 900000000000207008 122656001 449446003 0 116680003 900000000000011006 900000000000451002 +3811333029 20110731 1 900000000000207008 446817004 449446003 0 116680003 900000000000011006 900000000000451002 +3811341029 20110731 1 900000000000207008 429832000 447881000 0 116680003 900000000000011006 900000000000451002 +3811397026 20110731 1 900000000000207008 309493009 447881000 0 116680003 900000000000011006 900000000000451002 +3811433025 20110731 1 900000000000207008 309491006 447881000 0 116680003 900000000000011006 900000000000451002 +3811448020 20110731 1 900000000000207008 122587005 122559001 0 116680003 900000000000011006 900000000000451002 +3811501021 20110731 1 900000000000207008 446561003 449446003 0 116680003 900000000000011006 900000000000451002 +3811817022 20110731 1 900000000000207008 447955000 119381007 0 116680003 900000000000011006 900000000000451002 +3811940022 20110731 1 900000000000207008 110970007 445372002 0 116680003 900000000000011006 900000000000451002 +3811940022 20180731 0 900000000000207008 110970007 445372002 0 116680003 900000000000011006 900000000000451002 +3811950023 20110731 1 900000000000207008 258461003 309051001 0 116680003 900000000000011006 900000000000451002 +3812038028 20110731 1 900000000000207008 122611008 309173005 0 116680003 900000000000011006 900000000000451002 +3812047020 20110731 1 900000000000207008 399460001 447881000 0 116680003 900000000000011006 900000000000451002 +3812049023 20110731 1 900000000000207008 264380007 119332005 0 116680003 900000000000011006 900000000000451002 +3812060025 20110731 1 900000000000207008 258457009 309051001 0 116680003 900000000000011006 900000000000451002 +3812060025 20220630 0 900000000000207008 258457009 309051001 0 116680003 900000000000011006 900000000000451002 +3812133024 20110731 1 900000000000207008 449446003 447881000 0 116680003 900000000000011006 900000000000451002 +3812153023 20110731 1 900000000000207008 430318008 122575003 0 116680003 900000000000011006 900000000000451002 +3812154028 20110731 1 900000000000207008 430318008 110958008 0 116680003 900000000000011006 900000000000451002 +3812214023 20110731 1 900000000000207008 119323008 309049000 0 116680003 900000000000011006 900000000000451002 +3812214023 20130131 0 900000000000207008 119323008 309049000 0 116680003 900000000000011006 900000000000451002 +3812347027 20110731 1 900000000000207008 110942005 447955000 0 116680003 900000000000011006 900000000000451002 +3812391027 20110731 1 900000000000207008 447881000 363311008 0 116680003 900000000000011006 900000000000451002 +3812392023 20110731 1 900000000000207008 447881000 443654002 0 116680003 900000000000011006 900000000000451002 +3812392023 20140131 0 900000000000207008 447881000 443654002 0 116680003 900000000000011006 900000000000451002 +3812694027 20110731 1 900000000000207008 122696004 309501000 0 116680003 900000000000011006 900000000000451002 +3812721022 20110731 1 900000000000207008 258564008 258433009 0 116680003 900000000000011006 900000000000451002 +3812722026 20110731 1 900000000000207008 258564008 309072003 0 116680003 900000000000011006 900000000000451002 +3812722026 20210131 0 900000000000207008 258564008 309072003 0 116680003 900000000000011006 900000000000451002 +3812966022 20110731 1 900000000000207008 258450006 399436000 0 116680003 900000000000011006 900000000000451002 +3813004027 20110731 1 900000000000207008 122706001 122696004 0 116680003 900000000000011006 900000000000451002 +3813038024 20110731 1 900000000000207008 258566005 448789008 0 116680003 900000000000011006 900000000000451002 +3813249020 20110731 1 900000000000207008 309187005 430319000 0 116680003 900000000000011006 900000000000451002 +3813249020 20220630 0 900000000000207008 309187005 430319000 0 116680003 900000000000011006 900000000000451002 +3813249020 20240501 1 900000000000207008 309187005 430319000 0 116680003 900000000000011006 900000000000451002 +3813305021 20110731 1 900000000000207008 258558001 441620008 0 116680003 900000000000011006 900000000000451002 +3813305021 20220630 0 900000000000207008 258558001 441620008 0 116680003 900000000000011006 900000000000451002 +3813440021 20110731 1 900000000000207008 122712006 122710003 0 116680003 900000000000011006 900000000000451002 +3813481029 20110731 1 900000000000207008 122556008 309072003 0 116680003 900000000000011006 900000000000451002 +3813481029 20190131 0 900000000000207008 122556008 309072003 0 116680003 900000000000011006 900000000000451002 +3813482020 20110731 1 900000000000207008 122556008 309502007 0 116680003 900000000000011006 900000000000451002 +3813482020 20180131 0 900000000000207008 122556008 309502007 0 116680003 900000000000011006 900000000000451002 +3813483026 20110731 1 900000000000207008 122556008 258541006 0 116680003 900000000000011006 900000000000451002 +3813484021 20110731 1 900000000000207008 122556008 122553000 0 116680003 900000000000011006 900000000000451002 +3813570029 20110731 1 900000000000207008 309200000 447955000 0 116680003 900000000000011006 900000000000451002 +3814040021 20110731 1 900000000000207008 258429002 447955000 0 116680003 900000000000011006 900000000000451002 +3814099021 20110731 1 900000000000207008 122591000 119300005 0 116680003 900000000000011006 900000000000451002 +3814099021 20210131 0 900000000000207008 122591000 119300005 0 116680003 900000000000011006 900000000000451002 +3814583023 20110731 1 900000000000207008 430312009 110895009 0 116680003 900000000000011006 900000000000451002 +3814583023 20180731 0 900000000000207008 430312009 110895009 0 116680003 900000000000011006 900000000000451002 +3814657024 20110731 1 900000000000207008 110928002 447881000 0 116680003 900000000000011006 900000000000451002 +3814774027 20110731 1 900000000000207008 258528007 447955000 0 116680003 900000000000011006 900000000000451002 +3814933022 20110731 1 900000000000207008 448789008 258562007 0 116680003 900000000000011006 900000000000451002 +3815006028 20110731 1 900000000000207008 110930000 399747006 0 116680003 900000000000011006 900000000000451002 +3815092021 20110731 1 900000000000207008 309287004 122712006 0 116680003 900000000000011006 900000000000451002 +3815092021 20180731 0 900000000000207008 309287004 122712006 0 116680003 900000000000011006 900000000000451002 +3815093027 20110731 1 900000000000207008 309287004 122719002 0 116680003 900000000000011006 900000000000451002 +3815093027 20180731 0 900000000000207008 309287004 122719002 0 116680003 900000000000011006 900000000000451002 +3815125027 20110731 1 900000000000207008 431884001 449446003 0 116680003 900000000000011006 900000000000451002 +3815312026 20110731 1 900000000000207008 438805006 430319000 0 116680003 900000000000011006 900000000000451002 +3815350021 20110731 1 900000000000207008 119340004 258457009 0 116680003 900000000000011006 900000000000451002 +3815408020 20110731 1 900000000000207008 119341000 447881000 0 116680003 900000000000011006 900000000000451002 +3815653026 20110731 1 900000000000207008 309173005 122610009 0 116680003 900000000000011006 900000000000451002 +3815729026 20110731 1 900000000000207008 309061008 122550002 0 116680003 900000000000011006 900000000000451002 +3815731024 20110731 1 900000000000207008 258513007 258503004 0 116680003 900000000000011006 900000000000451002 +3815731024 20180131 0 900000000000207008 258513007 258503004 0 116680003 900000000000011006 900000000000451002 +3815748027 20110731 1 900000000000207008 122701006 122696004 0 116680003 900000000000011006 900000000000451002 +3815829024 20110731 1 900000000000207008 446300003 13648007 1 118169006 900000000000011006 900000000000451002 +3815830025 20110731 1 900000000000207008 446300003 78014005 1 370133003 900000000000011006 900000000000451002 +3815835024 20110731 1 900000000000207008 309147000 69748006 1 118169006 900000000000011006 900000000000451002 +3815835024 20170731 0 900000000000207008 309147000 69748006 1 118169006 900000000000011006 900000000000451002 +3815847029 20110731 1 900000000000207008 446842008 81105003 1 118169006 900000000000011006 900000000000451002 +3815848023 20110731 1 900000000000207008 446842008 413675001 1 370133003 900000000000011006 900000000000451002 +3815882028 20110731 1 900000000000207008 447488002 78014005 1 370133003 900000000000011006 900000000000451002 +3815883022 20110731 1 900000000000207008 447488002 58088002 1 118171006 900000000000011006 900000000000451002 +3815927020 20110731 1 900000000000207008 446676001 172118003 1 118171006 900000000000011006 900000000000451002 +3815928026 20110731 1 900000000000207008 446676001 76752008 1 118169006 900000000000011006 900000000000451002 +3816005023 20110731 1 900000000000207008 430319000 38199008 0 118169006 900000000000011006 900000000000451002 +3816005023 20190731 1 900000000000207008 430319000 38199008 1 118169006 900000000000011006 900000000000451002 +3816017020 20110731 1 900000000000207008 258511009 312876006 1 118171006 900000000000011006 900000000000451002 +3816046029 20110731 1 900000000000207008 430379005 76848001 1 118169006 900000000000011006 900000000000451002 +3816047022 20110731 1 900000000000207008 430379005 34429004 1 370133003 900000000000011006 900000000000451002 +3816122023 20110731 1 900000000000207008 447104008 78014005 1 370133003 900000000000011006 900000000000451002 +3816123029 20110731 1 900000000000207008 447104008 314393004 1 118168003 900000000000011006 900000000000451002 +3816124024 20110731 1 900000000000207008 258502009 11311000 1 370133003 900000000000011006 900000000000451002 +3816124024 20130131 0 900000000000207008 258502009 11311000 1 370133003 900000000000011006 900000000000451002 +3816129025 20110731 1 900000000000207008 447355008 387191005 1 370133003 900000000000011006 900000000000451002 +3816129025 20230430 0 900000000000207008 447355008 387191005 1 370133003 900000000000011006 900000000000451002 +3816191020 20110731 1 900000000000207008 404643001 448895004 1 118171006 900000000000011006 900000000000451002 +3816192029 20110731 1 900000000000207008 404643001 45710003 1 370133003 900000000000011006 900000000000451002 +3816384027 20110731 1 900000000000207008 276446009 71252005 1 118169006 900000000000011006 900000000000451002 +3816411026 20110731 1 900000000000207008 122560006 256906008 1 370133003 900000000000011006 900000000000451002 +3816521021 20110731 1 900000000000207008 430408004 91381003 1 118169006 900000000000011006 900000000000451002 +3816524029 20110731 1 900000000000207008 110952009 385296007 0 118169006 900000000000011006 900000000000451002 +3816524029 20190731 1 900000000000207008 110952009 385296007 1 118169006 900000000000011006 900000000000451002 +3816658028 20110731 1 900000000000207008 444832009 172118003 1 118171006 900000000000011006 900000000000451002 +3816659020 20110731 1 900000000000207008 444832009 76752008 1 118169006 900000000000011006 900000000000451002 +3816665020 20110731 1 900000000000207008 309148005 448895004 1 118171006 900000000000011006 900000000000451002 +3816681026 20110731 1 900000000000207008 397245007 20837000 1 118169006 900000000000011006 900000000000451002 +3816726025 20110731 1 900000000000207008 122562003 256906008 1 370133003 900000000000011006 900000000000451002 +3816773020 20110731 1 900000000000207008 447098004 447097009 1 118171006 900000000000011006 900000000000451002 +3816774025 20110731 1 900000000000207008 447098004 72651009 1 118169006 900000000000011006 900000000000451002 +3816774025 20190131 0 900000000000207008 447098004 72651009 1 118169006 900000000000011006 900000000000451002 +3816876021 20110731 1 900000000000207008 446972001 14766002 1 118171006 900000000000011006 900000000000451002 +3816877028 20110731 1 900000000000207008 446972001 44132006 1 118168003 900000000000011006 900000000000451002 +3816886022 20110731 1 900000000000207008 397246008 43981004 1 118169006 900000000000011006 900000000000451002 +3817065027 20110731 1 900000000000207008 309145008 32457005 1 370133003 900000000000011006 900000000000451002 +3817072026 20110731 1 900000000000207008 446675002 49076000 1 118169006 900000000000011006 900000000000451002 +3817137026 20110731 1 900000000000207008 258489000 448895004 1 118171006 900000000000011006 900000000000451002 +3817200028 20110731 1 900000000000207008 258487003 448895004 1 118171006 900000000000011006 900000000000451002 +3817249024 20110731 1 900000000000207008 258488008 448895004 1 118171006 900000000000011006 900000000000451002 +3817276024 20110731 1 900000000000207008 447358005 2739003 1 118169006 900000000000011006 900000000000451002 +3817463026 20110731 1 900000000000207008 447357000 11106008 1 118171006 900000000000011006 900000000000451002 +3817463026 20230630 0 900000000000207008 447357000 11106008 1 118171006 900000000000011006 900000000000451002 +3817464021 20110731 1 900000000000207008 447357000 76752008 1 118169006 900000000000011006 900000000000451002 +3817471027 20110731 1 900000000000207008 432897002 431898009 1 370133003 900000000000011006 900000000000451002 +3817610027 20110731 1 900000000000207008 446129006 70150004 1 370133003 900000000000011006 900000000000451002 +3817617029 20110731 1 900000000000207008 444865001 226790003 1 370133003 900000000000011006 900000000000451002 +3817618023 20110731 1 900000000000207008 444865001 76752008 1 118169006 900000000000011006 900000000000451002 +3817656024 20110731 1 900000000000207008 446906004 21306003 1 118169006 900000000000011006 900000000000451002 +3817701025 20110731 1 900000000000207008 431361003 39352004 1 118169006 900000000000011006 900000000000451002 +3817837028 20110731 1 900000000000207008 122689001 116166009 1 118171006 900000000000011006 900000000000451002 +3817924025 20110731 1 900000000000207008 447341000 446232000 1 118171006 900000000000011006 900000000000451002 +3817925029 20110731 1 900000000000207008 447341000 34707002 1 118169006 900000000000011006 900000000000451002 +3817926028 20110731 1 900000000000207008 447341000 70150004 1 370133003 900000000000011006 900000000000451002 +3818042024 20110731 1 900000000000207008 447337004 29445007 1 118169006 900000000000011006 900000000000451002 +3818043025 20110731 1 900000000000207008 447337004 447099007 1 118171006 900000000000011006 900000000000451002 +3818089021 20110731 1 900000000000207008 258461003 386152007 1 118168003 900000000000011006 900000000000451002 +3818089021 20170731 0 900000000000207008 258461003 386152007 1 118168003 900000000000011006 900000000000451002 +3818198021 20110731 1 900000000000207008 110970007 11453000 1 370133003 900000000000011006 900000000000451002 +3818274020 20110731 1 900000000000207008 445744006 56021002 1 118168003 900000000000011006 900000000000451002 +3818348028 20110731 1 900000000000207008 447407009 413675001 1 370133003 900000000000011006 900000000000451002 +3818349020 20110731 1 900000000000207008 447407009 6574001 1 118168003 900000000000011006 900000000000451002 +3818354027 20110731 1 900000000000207008 447955000 34402009 0 118169006 900000000000011006 900000000000451002 +3818354027 20190731 1 900000000000207008 447955000 34402009 1 118169006 900000000000011006 900000000000451002 +3818358029 20110731 1 900000000000207008 447881000 34707002 0 118169006 900000000000011006 900000000000451002 +3818358029 20190731 1 900000000000207008 447881000 34707002 1 118169006 900000000000011006 900000000000451002 +3818399024 20110731 1 900000000000207008 258457009 32457005 0 370133003 900000000000011006 900000000000451002 +3818399024 20190731 1 900000000000207008 258457009 32457005 1 370133003 900000000000011006 900000000000451002 +3818399024 20220630 0 900000000000207008 258457009 32457005 1 370133003 900000000000011006 900000000000451002 +3818417024 20110731 1 900000000000207008 264380007 6085005 0 370133003 900000000000011006 900000000000451002 +3818417024 20190731 1 900000000000207008 264380007 6085005 1 370133003 900000000000011006 900000000000451002 +3818493024 20110731 1 900000000000207008 449446003 28231008 0 118169006 900000000000011006 900000000000451002 +3818493024 20190731 1 900000000000207008 449446003 28231008 1 118169006 900000000000011006 900000000000451002 +3818570026 20110731 1 900000000000207008 446952006 39937001 1 118169006 900000000000011006 900000000000451002 +3818571027 20110731 1 900000000000207008 446952006 24619005 1 118171006 900000000000011006 900000000000451002 +3818649027 20110731 1 900000000000207008 119323008 49755003 1 118168003 900000000000011006 900000000000451002 +3818649027 20130131 0 900000000000207008 119323008 49755003 1 118168003 900000000000011006 900000000000451002 +3818716025 20110731 1 900000000000207008 445743000 78014005 1 370133003 900000000000011006 900000000000451002 +3818717023 20110731 1 900000000000207008 445743000 431938005 1 118169006 900000000000011006 900000000000451002 +3818719021 20110731 1 900000000000207008 110969006 65216001 1 370133003 900000000000011006 900000000000451002 +3818721027 20110731 1 900000000000207008 122553000 256906008 1 370133003 900000000000011006 900000000000451002 +3818752026 20110731 1 900000000000207008 430318008 78014005 1 370133003 900000000000011006 900000000000451002 +3818756028 20110731 1 900000000000207008 447148003 117590005 1 118169006 900000000000011006 900000000000451002 +3818757021 20110731 1 900000000000207008 447148003 91720002 1 370133003 900000000000011006 900000000000451002 +3818775022 20110731 1 900000000000207008 258468009 55450009 0 370133003 900000000000011006 900000000000451002 +3818775022 20190731 1 900000000000207008 258468009 55450009 1 370133003 900000000000011006 900000000000451002 +3818794028 20110731 1 900000000000207008 446700001 252925009 1 118171006 900000000000011006 900000000000451002 +3818794028 20170731 0 900000000000207008 446700001 252925009 1 118171006 900000000000011006 900000000000451002 +3818795027 20110731 1 900000000000207008 446700001 41216001 1 118169006 900000000000011006 900000000000451002 +3818795027 20170731 0 900000000000207008 446700001 41216001 1 118169006 900000000000011006 900000000000451002 +3818826027 20110731 1 900000000000207008 446846006 446775007 1 118171006 900000000000011006 900000000000451002 +3818827020 20110731 1 900000000000207008 446846006 89837001 1 118169006 900000000000011006 900000000000451002 +3818837026 20110731 1 900000000000207008 446128003 32457005 1 370133003 900000000000011006 900000000000451002 +3818837026 20170731 0 900000000000207008 446128003 32457005 1 370133003 900000000000011006 900000000000451002 +3818838020 20110731 1 900000000000207008 446128003 367643001 1 118168003 900000000000011006 900000000000451002 +3818838020 20170731 0 900000000000207008 446128003 367643001 1 118168003 900000000000011006 900000000000451002 +3818901024 20110731 1 900000000000207008 446908003 3954005 1 118169006 900000000000011006 900000000000451002 +3818901024 20170731 0 900000000000207008 446908003 3954005 1 118169006 900000000000011006 900000000000451002 +3818902028 20110731 1 900000000000207008 446908003 32457005 1 370133003 900000000000011006 900000000000451002 +3818902028 20170731 0 900000000000207008 446908003 32457005 1 370133003 900000000000011006 900000000000451002 +3818966027 20110731 1 900000000000207008 446774006 12738006 1 118169006 900000000000011006 900000000000451002 +3818967020 20110731 1 900000000000207008 446774006 44132006 1 118168003 900000000000011006 900000000000451002 +3818997028 20110731 1 900000000000207008 446674003 10200004 1 118169006 900000000000011006 900000000000451002 +3818998022 20110731 1 900000000000207008 446674003 44132006 1 118168003 900000000000011006 900000000000451002 +3819003026 20110731 1 900000000000207008 258450006 279107003 1 118169006 900000000000011006 900000000000451002 +3819049024 20110731 1 900000000000207008 258558001 74262004 1 118169006 900000000000011006 900000000000451002 +3819049024 20220630 0 900000000000207008 258558001 74262004 1 118169006 900000000000011006 900000000000451002 +3819061027 20110731 1 900000000000207008 447391001 447153008 1 118171006 900000000000011006 900000000000451002 +3819062023 20110731 1 900000000000207008 447391001 54066008 1 118169006 900000000000011006 900000000000451002 +3819082022 20110731 1 900000000000207008 447359002 32849002 1 118169006 900000000000011006 900000000000451002 +3819083028 20110731 1 900000000000207008 447359002 447152003 1 118171006 900000000000011006 900000000000451002 +3819462027 20110731 1 900000000000207008 446277003 225109005 1 118171006 900000000000011006 900000000000451002 +3819463021 20110731 1 900000000000207008 446277003 25990002 1 118169006 900000000000011006 900000000000451002 +3819509021 20110731 1 900000000000207008 446562005 122462000 1 118171006 900000000000011006 900000000000451002 +3819510027 20110731 1 900000000000207008 446562005 32457005 1 370133003 900000000000011006 900000000000451002 +3819589024 20110731 1 900000000000207008 122556008 12499000 1 370133003 900000000000011006 900000000000451002 +3819646027 20110731 1 900000000000207008 447403008 413675001 1 370133003 900000000000011006 900000000000451002 +3819647020 20110731 1 900000000000207008 447403008 28726007 1 118169006 900000000000011006 900000000000451002 +3819648026 20110731 1 900000000000207008 447403008 105455006 1 118170007 900000000000011006 900000000000451002 +3819650023 20110731 1 900000000000207008 309177006 39607008 1 118169006 900000000000011006 900000000000451002 +3819755021 20110731 1 900000000000207008 122712006 83152002 1 118171006 900000000000011006 900000000000451002 +3819949021 20110731 1 900000000000207008 122591000 116146000 0 118170007 900000000000011006 900000000000451002 +3819949021 20190731 1 900000000000207008 122591000 116146000 1 118170007 900000000000011006 900000000000451002 +3820016024 20110731 1 900000000000207008 446211008 122462000 1 118171006 900000000000011006 900000000000451002 +3820017026 20110731 1 900000000000207008 446211008 33463005 1 370133003 900000000000011006 900000000000451002 +3820052023 20110731 1 900000000000207008 447375004 32457005 1 370133003 900000000000011006 900000000000451002 +3820088029 20110731 1 900000000000207008 258433009 448895004 0 118171006 900000000000011006 900000000000451002 +3820088029 20190731 1 900000000000207008 258433009 448895004 1 118171006 900000000000011006 900000000000451002 +3820109020 20110731 1 900000000000207008 446305008 91720002 1 370133003 900000000000011006 900000000000451002 +3820110026 20110731 1 900000000000207008 446305008 20139000 1 118169006 900000000000011006 900000000000451002 +3820485024 20110731 1 900000000000207008 446130001 78014005 1 370133003 900000000000011006 900000000000451002 +3820620024 20110731 1 900000000000207008 445745007 32457005 1 370133003 900000000000011006 900000000000451002 +3820633029 20110731 1 900000000000207008 447392008 76784001 1 118169006 900000000000011006 900000000000451002 +3820634024 20110731 1 900000000000207008 447392008 446301004 1 118171006 900000000000011006 900000000000451002 +3820677020 20110731 1 900000000000207008 446306009 41323003 1 118170007 900000000000011006 900000000000451002 +3820677020 20210131 0 900000000000207008 446306009 41323003 1 118170007 900000000000011006 900000000000451002 +3820678026 20110731 1 900000000000207008 446306009 431938005 1 118169006 900000000000011006 900000000000451002 +3820689022 20110731 1 900000000000207008 445742005 431938005 1 118169006 900000000000011006 900000000000451002 +3820723029 20110731 1 900000000000207008 447158004 70150004 1 370133003 900000000000011006 900000000000451002 +3820724024 20110731 1 900000000000207008 447158004 34707002 1 118169006 900000000000011006 900000000000451002 +3820729025 20110731 1 900000000000207008 309268005 431938005 1 118169006 900000000000011006 900000000000451002 +3820742025 20110731 1 900000000000207008 122557004 12499000 1 370133003 900000000000011006 900000000000451002 +3820853028 20110731 1 900000000000207008 448789008 27380003 0 370133003 900000000000011006 900000000000451002 +3820853028 20190731 1 900000000000207008 448789008 27380003 1 370133003 900000000000011006 900000000000451002 +3820873022 20110731 1 900000000000207008 258412000 321667001 2 118169006 900000000000011006 900000000000451002 +3821013021 20110731 1 900000000000207008 446861007 279107003 2 118169006 900000000000011006 900000000000451002 +3821019020 20110731 1 900000000000207008 110930000 385294005 0 118169006 900000000000011006 900000000000451002 +3821019020 20190731 1 900000000000207008 110930000 385294005 1 118169006 900000000000011006 900000000000451002 +3821144026 20110731 1 900000000000207008 258576008 89837001 1 118169006 900000000000011006 900000000000451002 +3821239029 20110731 1 900000000000207008 447589008 78014005 1 370133003 900000000000011006 900000000000451002 +3821240027 20110731 1 900000000000207008 447589008 410024004 1 118171006 900000000000011006 900000000000451002 +3821293026 20110731 1 900000000000207008 446304007 413675001 1 370133003 900000000000011006 900000000000451002 +3821294021 20110731 1 900000000000207008 446304007 272673000 1 118169006 900000000000011006 900000000000451002 +3821295022 20110731 1 900000000000207008 446304007 67954006 1 118171006 900000000000011006 900000000000451002 +3821321024 20110731 1 900000000000207008 309057002 76752008 1 118169006 900000000000011006 900000000000451002 +3821339026 20110731 1 900000000000207008 447155001 35039007 1 118169006 900000000000011006 900000000000451002 +3821340029 20110731 1 900000000000207008 447155001 176820000 1 118171006 900000000000011006 900000000000451002 +3821416022 20110731 1 900000000000207008 446299006 14766002 1 118171006 900000000000011006 900000000000451002 +3821417029 20110731 1 900000000000207008 446299006 91720002 1 370133003 900000000000011006 900000000000451002 +3821422029 20110731 1 900000000000207008 447345009 257925000 1 118171006 900000000000011006 900000000000451002 +3821422029 20170731 0 900000000000207008 447345009 257925000 1 118171006 900000000000011006 900000000000451002 +3821423023 20110731 1 900000000000207008 447345009 955009 1 118169006 900000000000011006 900000000000451002 +3821423023 20170731 0 900000000000207008 447345009 955009 1 118169006 900000000000011006 900000000000451002 +3821513028 20110731 1 900000000000207008 309173005 243685008 1 118171006 900000000000011006 900000000000451002 +3821984023 20110731 1 900000000000207008 258513007 17880006 1 118169006 900000000000011006 900000000000451002 +3821989029 20110731 1 900000000000207008 258558001 386093002 1 370133003 900000000000011006 900000000000451002 +3822001029 20110731 1 900000000000207008 303248007 87612001 1 370133003 900000000000011006 900000000000451002 +3822023025 20110731 1 900000000000207008 397246008 413675001 1 370133003 900000000000011006 900000000000451002 +3822033022 20110731 1 900000000000207008 309147000 367643001 1 118168003 900000000000011006 900000000000451002 +3822033022 20170731 0 900000000000207008 309147000 367643001 1 118168003 900000000000011006 900000000000451002 +3822034027 20110731 1 900000000000207008 309202008 122865005 1 118169006 900000000000011006 900000000000451002 +3822066021 20110731 1 900000000000207008 447345009 36370000 1 118170007 900000000000011006 900000000000451002 +3822066021 20170731 0 900000000000207008 447345009 36370000 1 118170007 900000000000011006 900000000000451002 +3822069025 20110731 1 900000000000207008 447355008 83670000 1 118169006 900000000000011006 900000000000451002 +3822069025 20230430 0 900000000000207008 447355008 83670000 1 118169006 900000000000011006 900000000000451002 +3822070029 20110731 1 900000000000207008 447358005 447338009 1 118171006 900000000000011006 900000000000451002 +3822070029 20230630 0 900000000000207008 447358005 447338009 1 118171006 900000000000011006 900000000000451002 +3822076024 20110731 1 900000000000207008 447375004 446847002 1 118171006 900000000000011006 900000000000451002 +3822098026 20110731 1 900000000000207008 447488002 89837001 1 118169006 900000000000011006 900000000000451002 +3822119020 20110731 1 900000000000207008 447589008 89837001 1 118169006 900000000000011006 900000000000451002 +3822149022 20110731 1 900000000000207008 444832009 226790003 1 370133003 900000000000011006 900000000000451002 +3822150022 20110731 1 900000000000207008 444865001 172118003 1 118171006 900000000000011006 900000000000451002 +3822171028 20110731 1 900000000000207008 445742005 78014005 1 370133003 900000000000011006 900000000000451002 +3822172024 20110731 1 900000000000207008 445744006 32457005 1 370133003 900000000000011006 900000000000451002 +3822257025 20110731 1 900000000000207008 446128003 87176006 1 118169006 900000000000011006 900000000000451002 +3822257025 20170731 0 900000000000207008 446128003 87176006 1 118169006 900000000000011006 900000000000451002 +3822258024 20110731 1 900000000000207008 446129006 79741001 1 118169006 900000000000011006 900000000000451002 +3822259027 20110731 1 900000000000207008 446130001 89837001 1 118169006 900000000000011006 900000000000451002 +3822277021 20110731 1 900000000000207008 446235003 29445007 1 118169006 900000000000011006 900000000000451002 +3822284029 20110731 1 900000000000207008 446277003 78014005 1 370133003 900000000000011006 900000000000451002 +3822292022 20110731 1 900000000000207008 446299006 312419003 1 118169006 900000000000011006 900000000000451002 +3822294023 20110731 1 900000000000207008 446305008 14766002 1 118171006 900000000000011006 900000000000451002 +3822295024 20110731 1 900000000000207008 446306009 78014005 1 370133003 900000000000011006 900000000000451002 +3822383021 20110731 1 900000000000207008 446676001 226790003 1 370133003 900000000000011006 900000000000451002 +3822391028 20110731 1 900000000000207008 446700001 32457005 1 370133003 900000000000011006 900000000000451002 +3822391028 20170731 0 900000000000207008 446700001 32457005 1 370133003 900000000000011006 900000000000451002 +3822440027 20110731 1 900000000000207008 446846006 78014005 1 370133003 900000000000011006 900000000000451002 +3822467022 20110731 1 900000000000207008 446906004 27897001 1 370133003 900000000000011006 900000000000451002 +3822468028 20110731 1 900000000000207008 446908003 19633006 1 118168003 900000000000011006 900000000000451002 +3822468028 20170731 0 900000000000207008 446908003 19633006 1 118168003 900000000000011006 900000000000451002 +3822480020 20110731 1 900000000000207008 446951004 413675001 1 370133003 900000000000011006 900000000000451002 +3822508029 20110731 1 900000000000207008 447104008 431938005 1 118169006 900000000000011006 900000000000451002 +3822520021 20110731 1 900000000000207008 447155001 413675001 1 370133003 900000000000011006 900000000000451002 +3822522029 20110731 1 900000000000207008 447158004 315031003 1 118171006 900000000000011006 900000000000451002 +3822608023 20110731 1 900000000000207008 446837000 413675001 1 370133003 900000000000011006 900000000000451002 +3822639020 20110731 1 900000000000207008 447375004 91381003 1 118169006 900000000000011006 900000000000451002 +3822665024 20110731 1 900000000000207008 309145008 69748006 1 118169006 900000000000011006 900000000000451002 +3822673026 20110731 1 900000000000207008 445745007 243974009 1 118169006 900000000000011006 900000000000451002 +3822681025 20110731 1 900000000000207008 446675002 281810004 1 118171006 900000000000011006 900000000000451002 +3822695027 20110731 1 900000000000207008 397245007 413675001 1 370133003 900000000000011006 900000000000451002 +3822727022 20110731 1 900000000000207008 446837000 70847004 1 118169006 900000000000011006 900000000000451002 +3822753025 20110731 1 900000000000207008 447345009 87200008 1 370133003 900000000000011006 900000000000451002 +3822753025 20170731 0 900000000000207008 447345009 87200008 1 370133003 900000000000011006 900000000000451002 +3822777020 20110731 1 900000000000207008 446951004 61363009 1 118168003 900000000000011006 900000000000451002 +3822804022 20110731 1 900000000000207008 258488008 59441001 1 118169006 900000000000011006 900000000000451002 +3822902022 20110731 1 900000000000207008 258511009 6375001 1 118169006 900000000000011006 900000000000451002 +3822914025 20110731 1 900000000000207008 309147000 32457005 1 370133003 900000000000011006 900000000000451002 +3822914025 20170731 0 900000000000207008 309147000 32457005 1 370133003 900000000000011006 900000000000451002 +3822998028 20110731 1 900000000000207008 446235003 49999004 1 118171006 900000000000011006 900000000000451002 +3823030029 20110731 1 900000000000207008 122561005 256906008 1 370133003 900000000000011006 900000000000451002 +3823143026 20110731 1 900000000000207008 309148005 69748006 1 118169006 900000000000011006 900000000000451002 +3823151028 20110731 1 900000000000207008 258502009 285570007 1 118171006 900000000000011006 900000000000451002 +3823151028 20130131 0 900000000000207008 258502009 285570007 1 118171006 900000000000011006 900000000000451002 +3823152024 20110731 1 900000000000207008 258502009 49755003 1 118168003 900000000000011006 900000000000451002 +3823152024 20130131 0 900000000000207008 258502009 49755003 1 118168003 900000000000011006 900000000000451002 +3823202022 20110731 1 900000000000207008 430408004 2778004 1 370133003 900000000000011006 900000000000451002 +3823264021 20110731 1 900000000000207008 397245007 83152002 1 118171006 900000000000011006 900000000000451002 +3823268024 20110731 1 900000000000207008 404643001 82094008 1 118169006 900000000000011006 900000000000451002 +3823299020 20110731 1 900000000000207008 276446009 448895004 1 118171006 900000000000011006 900000000000451002 +3823495027 20110731 1 900000000000207008 258450006 65216001 1 370133003 900000000000011006 900000000000451002 +3823527025 20110731 1 900000000000207008 397246008 83152002 1 118171006 900000000000011006 900000000000451002 +3823634023 20110731 1 900000000000207008 447339001 448895004 1 118171006 900000000000011006 900000000000451002 +3823635024 20110731 1 900000000000207008 447339001 45206002 1 118169006 900000000000011006 900000000000451002 +3823720025 20110731 1 900000000000207008 110969006 279107003 1 118169006 900000000000011006 900000000000451002 +3823908028 20110731 1 900000000000207008 430318008 431938005 1 118169006 900000000000011006 900000000000451002 +3823948020 20110731 1 900000000000207008 432897002 39352004 1 118169006 900000000000011006 900000000000451002 +3824047020 20110731 1 900000000000207008 122689001 9846003 1 118169006 900000000000011006 900000000000451002 +3824048026 20110731 1 900000000000207008 122689001 413675001 1 370133003 900000000000011006 900000000000451002 +3824149021 20110731 1 900000000000207008 110970007 35764002 1 118169006 900000000000011006 900000000000451002 +3824281020 20110731 1 900000000000207008 258489000 39937001 1 118169006 900000000000011006 900000000000451002 +3824848027 20110731 1 900000000000207008 258461003 32457005 1 370133003 900000000000011006 900000000000451002 +3824848027 20170731 0 900000000000207008 258461003 32457005 1 370133003 900000000000011006 900000000000451002 +3824865020 20110731 1 900000000000207008 119323008 11311000 1 370133003 900000000000011006 900000000000451002 +3824865020 20130131 0 900000000000207008 119323008 11311000 1 370133003 900000000000011006 900000000000451002 +3824922020 20110731 1 900000000000207008 258487003 39477002 1 370133003 900000000000011006 900000000000451002 +3825098021 20110731 1 900000000000207008 309057002 448895004 1 118171006 900000000000011006 900000000000451002 +3825212029 20110731 1 900000000000207008 309204009 448895004 1 118171006 900000000000011006 900000000000451002 +3825213023 20110731 1 900000000000207008 309204009 10200004 1 118169006 900000000000011006 900000000000451002 +3825270029 20110731 1 900000000000207008 309173005 39607008 1 118169006 900000000000011006 900000000000451002 +3825473029 20110731 1 900000000000207008 122556008 408728001 1 118169006 900000000000011006 900000000000451002 +3825516025 20110731 1 900000000000207008 446861007 65216001 2 370133003 900000000000011006 900000000000451002 +3825596026 20110731 1 900000000000207008 122712006 15497006 1 118169006 900000000000011006 900000000000451002 +3825597024 20110731 1 900000000000207008 122712006 413675001 1 370133003 900000000000011006 900000000000451002 +3825605026 20110731 1 900000000000207008 309202008 448895004 1 118171006 900000000000011006 900000000000451002 +3825686028 20110731 1 900000000000207008 309268005 38922008 1 370133003 900000000000011006 900000000000451002 +3825710022 20110731 1 900000000000207008 258513007 312881002 1 118171006 900000000000011006 900000000000451002 +3825761028 20110731 1 900000000000207008 122557004 408728001 1 118169006 900000000000011006 900000000000451002 +3825811026 20110731 1 900000000000207008 303248007 448895004 1 118171006 900000000000011006 900000000000451002 +3825927021 20110731 1 900000000000207008 309177006 448895004 1 118171006 900000000000011006 900000000000451002 +4597366021 20120131 1 900000000000207008 110893002 309072003 0 116680003 900000000000011006 900000000000451002 +4597366021 20130731 0 900000000000207008 110893002 309072003 0 116680003 900000000000011006 900000000000451002 +4597385024 20120131 1 900000000000207008 119325001 309072003 0 116680003 900000000000011006 900000000000451002 +4597385024 20130731 0 900000000000207008 119325001 309072003 0 116680003 900000000000011006 900000000000451002 +4597385024 20210131 1 900000000000207008 119325001 309072003 0 116680003 900000000000011006 900000000000451002 +4598499020 20120131 1 900000000000207008 258489000 309072003 0 116680003 900000000000011006 900000000000451002 +4598499020 20130731 0 900000000000207008 258489000 309072003 0 116680003 900000000000011006 900000000000451002 +4598500027 20120131 1 900000000000207008 258503004 309072003 0 116680003 900000000000011006 900000000000451002 +4598500027 20130731 0 900000000000207008 258503004 309072003 0 116680003 900000000000011006 900000000000451002 +4598501028 20120131 1 900000000000207008 258569003 309072003 0 116680003 900000000000011006 900000000000451002 +4598501028 20130731 0 900000000000207008 258569003 309072003 0 116680003 900000000000011006 900000000000451002 +4598884028 20120131 1 900000000000207008 309066003 309074002 0 116680003 900000000000011006 900000000000451002 +4598884028 20210131 0 900000000000207008 309066003 309074002 0 116680003 900000000000011006 900000000000451002 +4598885027 20120131 1 900000000000207008 309068002 309072003 0 116680003 900000000000011006 900000000000451002 +4598885027 20130731 0 900000000000207008 309068002 309072003 0 116680003 900000000000011006 900000000000451002 +4599175023 20120131 1 900000000000207008 396355000 440502004 0 116680003 900000000000011006 900000000000451002 +4599830023 20120131 1 900000000000207008 432134009 441810001 0 116680003 900000000000011006 900000000000451002 +4600085029 20120131 1 900000000000207008 446952006 309072003 0 116680003 900000000000011006 900000000000451002 +4600085029 20130731 0 900000000000207008 446952006 309072003 0 116680003 900000000000011006 900000000000451002 +4636720020 20120731 1 900000000000207008 258616007 258615006 0 116680003 900000000000011006 900000000000451002 +4641976020 20120731 1 900000000000207008 110950001 450872001 0 116680003 900000000000011006 900000000000451002 +4642001025 20120731 1 900000000000207008 122724004 41216001 2 118169006 900000000000011006 900000000000451002 +4642002021 20120731 1 900000000000207008 122724004 90470006 2 118171006 900000000000011006 900000000000451002 +4642003027 20120731 1 900000000000207008 122724004 413675001 2 370133003 900000000000011006 900000000000451002 +4642318020 20120731 1 900000000000207008 258616007 258614005 0 116680003 900000000000011006 900000000000451002 +4642393026 20120731 1 900000000000207008 309272009 450872001 0 116680003 900000000000011006 900000000000451002 +4642394021 20120731 1 900000000000207008 309273004 450872001 0 116680003 900000000000011006 900000000000451002 +4642531025 20120731 1 900000000000207008 446130001 450872001 0 116680003 900000000000011006 900000000000451002 +4642829028 20120731 1 900000000000207008 450872001 127471001 0 116680003 900000000000011006 900000000000451002 +4642830022 20120731 1 900000000000207008 450872001 443654002 0 116680003 900000000000011006 900000000000451002 +4642830022 20140131 0 900000000000207008 450872001 443654002 0 116680003 900000000000011006 900000000000451002 +4642831021 20120731 1 900000000000207008 450872001 89837001 0 118169006 900000000000011006 900000000000451002 +4642831021 20190731 1 900000000000207008 450872001 89837001 1 118169006 900000000000011006 900000000000451002 +4663934026 20130131 1 900000000000207008 122701006 122700007 0 116680003 900000000000011006 900000000000451002 +4664922026 20130731 1 900000000000207008 472873000 257261003 0 116680003 900000000000011006 900000000000451002 +4665030024 20130131 1 900000000000207008 119323008 11311000 0 370133003 900000000000011006 900000000000451002 +4665030024 20190731 1 900000000000207008 119323008 11311000 1 370133003 900000000000011006 900000000000451002 +4665038028 20130131 1 900000000000207008 258456000 309049000 0 116680003 900000000000011006 900000000000451002 +4665038028 20220630 0 900000000000207008 258456000 309049000 0 116680003 900000000000011006 900000000000451002 +4665040022 20130131 1 900000000000207008 258502009 285570007 2 118171006 900000000000011006 900000000000451002 +4665041021 20130131 1 900000000000207008 258502009 11311000 2 370133003 900000000000011006 900000000000451002 +4665042025 20130131 1 900000000000207008 258503004 39937001 2 118169006 900000000000011006 900000000000451002 +4665043024 20130131 1 900000000000207008 258503004 285570007 2 118171006 900000000000011006 900000000000451002 +4665044029 20130131 1 900000000000207008 258505006 56208002 2 118168003 900000000000011006 900000000000451002 +4665045028 20130131 1 900000000000207008 258505006 39937001 2 118169006 900000000000011006 900000000000451002 +4665046027 20130131 1 900000000000207008 258505006 285570007 2 118171006 900000000000011006 900000000000451002 +4665048026 20130131 1 900000000000207008 258516004 258503004 0 116680003 900000000000011006 900000000000451002 +4665048026 20180131 0 900000000000207008 258516004 258503004 0 116680003 900000000000011006 900000000000451002 +4665060025 20130131 1 900000000000207008 431776009 119306004 0 116680003 900000000000011006 900000000000451002 +4665060025 20210131 0 900000000000207008 431776009 119306004 0 116680003 900000000000011006 900000000000451002 +4665061026 20130131 1 900000000000207008 431776009 257261003 0 116680003 900000000000011006 900000000000451002 +4665062022 20130131 1 900000000000207008 431776009 32712000 1 118170007 900000000000011006 900000000000451002 +4665063028 20130131 1 900000000000207008 431776009 285570007 1 118171006 900000000000011006 900000000000451002 +4665436024 20130131 1 900000000000207008 119314005 16470007 1 118170007 900000000000011006 900000000000451002 +4665436024 20210131 0 900000000000207008 119314005 16470007 1 118170007 900000000000011006 900000000000451002 +4665449025 20130131 1 900000000000207008 439580004 439579002 1 118170007 900000000000011006 900000000000451002 +4665449025 20210131 0 900000000000207008 439580004 439579002 1 118170007 900000000000011006 900000000000451002 +4665452022 20130131 1 900000000000207008 439628000 41323003 1 118170007 900000000000011006 900000000000451002 +4665452022 20210131 0 900000000000207008 439628000 41323003 1 118170007 900000000000011006 900000000000451002 +4665455024 20130131 1 900000000000207008 439961009 40388003 1 118170007 900000000000011006 900000000000451002 +4665455024 20210131 0 900000000000207008 439961009 40388003 1 118170007 900000000000011006 900000000000451002 +4665458021 20130131 1 900000000000207008 440468004 79287008 1 118170007 900000000000011006 900000000000451002 +4665458021 20210131 0 900000000000207008 440468004 79287008 1 118170007 900000000000011006 900000000000451002 +4665461022 20130131 1 900000000000207008 440473005 57368009 1 118170007 900000000000011006 900000000000451002 +4665461022 20210131 0 900000000000207008 440473005 57368009 1 118170007 900000000000011006 900000000000451002 +4665464025 20130131 1 900000000000207008 444656005 257287003 1 118170007 900000000000011006 900000000000451002 +4665464025 20210131 0 900000000000207008 444656005 257287003 1 118170007 900000000000011006 900000000000451002 +4665467021 20130131 1 900000000000207008 446212001 446839002 1 118170007 900000000000011006 900000000000451002 +4665467021 20210131 0 900000000000207008 446212001 446839002 1 118170007 900000000000011006 900000000000451002 +4671915023 20130131 1 900000000000207008 119312009 116204000 1 118170007 900000000000011006 900000000000451002 +4671915023 20210131 0 900000000000207008 119312009 116204000 1 118170007 900000000000011006 900000000000451002 +4674890028 20130131 1 900000000000207008 258525005 472889002 0 116680003 900000000000011006 900000000000451002 +4674890028 20130731 0 900000000000207008 258525005 472889002 0 116680003 900000000000011006 900000000000451002 +4674891029 20130131 1 900000000000207008 258508008 472889002 0 116680003 900000000000011006 900000000000451002 +4674891029 20130731 0 900000000000207008 258508008 472889002 0 116680003 900000000000011006 900000000000451002 +4674910028 20130131 1 900000000000207008 258520000 472904006 0 116680003 900000000000011006 900000000000451002 +4674910028 20140131 0 900000000000207008 258520000 472904006 0 116680003 900000000000011006 900000000000451002 +4674910028 20200131 1 900000000000207008 258520000 472904006 0 116680003 900000000000011006 900000000000451002 +4674910028 20210131 0 900000000000207008 258520000 472904006 0 116680003 900000000000011006 900000000000451002 +4674949025 20130131 1 900000000000207008 258571003 472918004 0 116680003 900000000000011006 900000000000451002 +4674949025 20210131 0 900000000000207008 258571003 472918004 0 116680003 900000000000011006 900000000000451002 +4674950025 20130131 1 900000000000207008 444656005 472919007 0 116680003 900000000000011006 900000000000451002 +4674950025 20210131 0 900000000000207008 444656005 472919007 0 116680003 900000000000011006 900000000000451002 +4674951026 20130131 1 900000000000207008 444656005 472917009 1 118171006 900000000000011006 900000000000451002 +4675003029 20130131 1 900000000000207008 445367006 472904006 0 116680003 900000000000011006 900000000000451002 +4675060029 20130131 1 900000000000207008 440468004 472919007 0 116680003 900000000000011006 900000000000451002 +4675061025 20130131 1 900000000000207008 440468004 472917009 1 118171006 900000000000011006 900000000000451002 +4675070027 20130131 1 900000000000207008 439580004 472919007 0 116680003 900000000000011006 900000000000451002 +4675071028 20130131 1 900000000000207008 439580004 472917009 1 118171006 900000000000011006 900000000000451002 +4675072024 20130131 1 900000000000207008 258524009 472874006 0 116680003 900000000000011006 900000000000451002 +4675164020 20130131 1 900000000000207008 258527002 472904006 0 116680003 900000000000011006 900000000000451002 +4675164020 20130731 0 900000000000207008 258527002 472904006 0 116680003 900000000000011006 900000000000451002 +4675164020 20200131 1 900000000000207008 258527002 472904006 0 116680003 900000000000011006 900000000000451002 +4675164020 20210131 0 900000000000207008 258527002 472904006 0 116680003 900000000000011006 900000000000451002 +4675227021 20130131 1 900000000000207008 439961009 472919007 0 116680003 900000000000011006 900000000000451002 +4675228027 20130131 1 900000000000207008 439961009 472917009 1 118171006 900000000000011006 900000000000451002 +4675229024 20130131 1 900000000000207008 446212001 472919007 0 116680003 900000000000011006 900000000000451002 +4675230025 20130131 1 900000000000207008 446212001 472917009 1 118171006 900000000000011006 900000000000451002 +4675249026 20130131 1 900000000000207008 258530009 472889002 0 116680003 900000000000011006 900000000000451002 +4675249026 20130731 0 900000000000207008 258530009 472889002 0 116680003 900000000000011006 900000000000451002 +4675250026 20130131 1 900000000000207008 258530009 472904006 0 116680003 900000000000011006 900000000000451002 +4675250026 20130731 0 900000000000207008 258530009 472904006 0 116680003 900000000000011006 900000000000451002 +4675259025 20130131 1 900000000000207008 258505006 472862007 0 116680003 900000000000011006 900000000000451002 +4675260024 20130131 1 900000000000207008 258505006 472871003 0 116680003 900000000000011006 900000000000451002 +4675302027 20130131 1 900000000000207008 445444005 472864008 0 116680003 900000000000011006 900000000000451002 +4675302027 20200731 0 900000000000207008 445444005 472864008 0 116680003 900000000000011006 900000000000451002 +4675303021 20130131 1 900000000000207008 445444005 472889002 0 116680003 900000000000011006 900000000000451002 +4675303021 20130731 0 900000000000207008 445444005 472889002 0 116680003 900000000000011006 900000000000451002 +4675304026 20130131 1 900000000000207008 445444005 472904006 0 116680003 900000000000011006 900000000000451002 +4675304026 20200731 0 900000000000207008 445444005 472904006 0 116680003 900000000000011006 900000000000451002 +4675356023 20130131 1 900000000000207008 440473005 472919007 0 116680003 900000000000011006 900000000000451002 +4675357025 20130131 1 900000000000207008 440473005 472917009 1 118171006 900000000000011006 900000000000451002 +4675378027 20130131 1 900000000000207008 119307008 472918004 0 116680003 900000000000011006 900000000000451002 +4675378027 20210131 0 900000000000207008 119307008 472918004 0 116680003 900000000000011006 900000000000451002 +4675384029 20130131 1 900000000000207008 258529004 472881004 0 116680003 900000000000011006 900000000000451002 +4675429022 20130131 1 900000000000207008 258528007 472889002 0 116680003 900000000000011006 900000000000451002 +4675430028 20130131 1 900000000000207008 258528007 472904006 0 116680003 900000000000011006 900000000000451002 +4675430028 20190731 0 900000000000207008 258528007 472904006 0 116680003 900000000000011006 900000000000451002 +4675430028 20200131 1 900000000000207008 258528007 472904006 0 116680003 900000000000011006 900000000000451002 +4675482026 20130131 1 900000000000207008 439628000 472919007 0 116680003 900000000000011006 900000000000451002 +4675483020 20130131 1 900000000000207008 439628000 472917009 1 118171006 900000000000011006 900000000000451002 +4675529020 20130131 1 900000000000207008 446306009 472918004 0 116680003 900000000000011006 900000000000451002 +4675529020 20210131 0 900000000000207008 446306009 472918004 0 116680003 900000000000011006 900000000000451002 +4675545022 20130131 1 900000000000207008 258500001 472881004 0 116680003 900000000000011006 900000000000451002 +4675749025 20130131 1 900000000000207008 122558009 472918004 0 116680003 900000000000011006 900000000000451002 +4675749025 20210131 0 900000000000207008 122558009 472918004 0 116680003 900000000000011006 900000000000451002 +4675757027 20130131 1 900000000000207008 119312009 472919007 0 116680003 900000000000011006 900000000000451002 +4675757027 20210131 0 900000000000207008 119312009 472919007 0 116680003 900000000000011006 900000000000451002 +4675758021 20130131 1 900000000000207008 119312009 472917009 1 118171006 900000000000011006 900000000000451002 +4675814027 20130131 1 900000000000207008 445369009 472874006 0 116680003 900000000000011006 900000000000451002 +4675835025 20130131 1 900000000000207008 119314005 472919007 0 116680003 900000000000011006 900000000000451002 +4675836029 20130131 1 900000000000207008 119314005 472917009 1 118171006 900000000000011006 900000000000451002 +4675860025 20130131 1 900000000000207008 447345009 472918004 0 116680003 900000000000011006 900000000000451002 +4675860025 20210131 0 900000000000207008 447345009 472918004 0 116680003 900000000000011006 900000000000451002 +4675909027 20130131 1 900000000000207008 438343001 472862007 0 116680003 900000000000011006 900000000000451002 +4678730025 20130131 1 900000000000207008 472861000 258509000 0 116680003 900000000000011006 900000000000451002 +4678731026 20130131 1 900000000000207008 472861000 258525005 0 116680003 900000000000011006 900000000000451002 +4678731026 20190731 0 900000000000207008 472861000 258525005 0 116680003 900000000000011006 900000000000451002 +4678732022 20130131 1 900000000000207008 472861000 128154006 0 116680003 900000000000011006 900000000000451002 +4678733028 20130131 1 900000000000207008 472861000 279572002 1 118169006 900000000000011006 900000000000451002 +4678733028 20140131 0 900000000000207008 472861000 279572002 1 118169006 900000000000011006 900000000000451002 +4678734023 20130131 1 900000000000207008 472861000 285570007 1 118171006 900000000000011006 900000000000451002 +4678734023 20140131 0 900000000000207008 472861000 285570007 1 118171006 900000000000011006 900000000000451002 +4678735024 20130131 1 900000000000207008 472862007 258503004 0 116680003 900000000000011006 900000000000451002 +4678736020 20130131 1 900000000000207008 472862007 309068002 0 116680003 900000000000011006 900000000000451002 +4678737027 20130131 1 900000000000207008 472862007 39937001 1 118169006 900000000000011006 900000000000451002 +4678737027 20150131 1 900000000000207008 472862007 39937001 2 118169006 900000000000011006 900000000000451002 +4678738021 20130131 1 900000000000207008 472862007 285570007 1 118171006 900000000000011006 900000000000451002 +4678738021 20150131 1 900000000000207008 472862007 285570007 2 118171006 900000000000011006 900000000000451002 +4678739029 20130131 1 900000000000207008 472862007 49755003 1 118168003 900000000000011006 900000000000451002 +4678739029 20150131 0 900000000000207008 472862007 49755003 1 118168003 900000000000011006 900000000000451002 +4678740027 20130131 1 900000000000207008 472863002 472864008 0 116680003 900000000000011006 900000000000451002 +4678741028 20130131 1 900000000000207008 472863002 30021000 1 118169006 900000000000011006 900000000000451002 +4678742024 20130131 1 900000000000207008 472863002 285570007 1 118171006 900000000000011006 900000000000451002 +4678743025 20130131 1 900000000000207008 472864008 257261003 0 116680003 900000000000011006 900000000000451002 +4678744020 20130131 1 900000000000207008 472864008 430214008 0 116680003 900000000000011006 900000000000451002 +4678745021 20130131 1 900000000000207008 472864008 61685007 1 118169006 900000000000011006 900000000000451002 +4678746022 20130131 1 900000000000207008 472864008 285570007 1 118171006 900000000000011006 900000000000451002 +4678747029 20130131 1 900000000000207008 472865009 472864008 0 116680003 900000000000011006 900000000000451002 +4678748023 20130131 1 900000000000207008 472865009 29707007 1 118169006 900000000000011006 900000000000451002 +4678749026 20130131 1 900000000000207008 472865009 285570007 1 118171006 900000000000011006 900000000000451002 +4678750026 20130131 1 900000000000207008 472866005 257261003 0 116680003 900000000000011006 900000000000451002 +4678750026 20200731 0 900000000000207008 472866005 257261003 0 116680003 900000000000011006 900000000000451002 +4678751027 20130131 1 900000000000207008 472866005 430249001 0 116680003 900000000000011006 900000000000451002 +4678751027 20140131 0 900000000000207008 472866005 430249001 0 116680003 900000000000011006 900000000000451002 +4678751027 20240501 1 900000000000207008 472866005 430249001 0 116680003 900000000000011006 900000000000451002 +4678752023 20130131 1 900000000000207008 472866005 21974007 1 118169006 900000000000011006 900000000000451002 +4678753029 20130131 1 900000000000207008 472866005 285570007 1 118171006 900000000000011006 900000000000451002 +4678754024 20130131 1 900000000000207008 472867001 430222001 0 116680003 900000000000011006 900000000000451002 +4678755020 20130131 1 900000000000207008 472867001 472881004 0 116680003 900000000000011006 900000000000451002 +4678755020 20200731 0 900000000000207008 472867001 472881004 0 116680003 900000000000011006 900000000000451002 +4678756021 20130131 1 900000000000207008 472867001 75573002 1 118169006 900000000000011006 900000000000451002 +4678757028 20130131 1 900000000000207008 472867001 285570007 1 118171006 900000000000011006 900000000000451002 +4678758022 20130131 1 900000000000207008 472868006 443654002 0 116680003 900000000000011006 900000000000451002 +4678759025 20130131 1 900000000000207008 472868006 472904006 0 116680003 900000000000011006 900000000000451002 +4678760024 20130131 1 900000000000207008 472868006 83670000 1 118169006 900000000000011006 900000000000451002 +4678761023 20130131 1 900000000000207008 472868006 285570007 1 118171006 900000000000011006 900000000000451002 +4678762027 20130131 1 900000000000207008 472869003 257261003 0 116680003 900000000000011006 900000000000451002 +4678763021 20130131 1 900000000000207008 472869003 430244006 0 116680003 900000000000011006 900000000000451002 +4678764026 20130131 1 900000000000207008 472869003 24949005 1 118169006 900000000000011006 900000000000451002 +4678765025 20130131 1 900000000000207008 472869003 285570007 1 118171006 900000000000011006 900000000000451002 +4678766029 20130131 1 900000000000207008 472870002 258531008 0 116680003 900000000000011006 900000000000451002 +4678766029 20210731 0 900000000000207008 472870002 258531008 0 116680003 900000000000011006 900000000000451002 +4678767022 20130131 1 900000000000207008 472870002 280361007 1 118169006 900000000000011006 900000000000451002 +4678768028 20130131 1 900000000000207008 472870002 285570007 1 118171006 900000000000011006 900000000000451002 +4678769020 20130131 1 900000000000207008 472870002 13924000 1 118168003 900000000000011006 900000000000451002 +4678770021 20130131 1 900000000000207008 472871003 257261003 0 116680003 900000000000011006 900000000000451002 +4678770021 20160131 0 900000000000207008 472871003 257261003 0 116680003 900000000000011006 900000000000451002 +4678771020 20130131 1 900000000000207008 472871003 119369008 0 116680003 900000000000011006 900000000000451002 +4678772029 20130131 1 900000000000207008 472871003 285570007 1 118171006 900000000000011006 900000000000451002 +4678773023 20130131 1 900000000000207008 472871003 56208002 1 118168003 900000000000011006 900000000000451002 +4678774028 20130131 1 900000000000207008 472872005 257261003 0 116680003 900000000000011006 900000000000451002 +4678775027 20130131 1 900000000000207008 472872005 127454002 0 116680003 900000000000011006 900000000000451002 +4678775027 20210131 0 900000000000207008 472872005 127454002 0 116680003 900000000000011006 900000000000451002 +4678776026 20130131 1 900000000000207008 472872005 285570007 1 118171006 900000000000011006 900000000000451002 +4678777024 20130131 1 900000000000207008 472872005 334947002 1 118170007 900000000000011006 900000000000451002 +4678778025 20130131 1 900000000000207008 472873000 119393003 0 116680003 900000000000011006 900000000000451002 +4678779022 20130131 1 900000000000207008 472873000 472889002 0 116680003 900000000000011006 900000000000451002 +4678779022 20130731 0 900000000000207008 472873000 472889002 0 116680003 900000000000011006 900000000000451002 +4678780020 20130131 1 900000000000207008 472873000 472904006 0 116680003 900000000000011006 900000000000451002 +4678780020 20130731 0 900000000000207008 472873000 472904006 0 116680003 900000000000011006 900000000000451002 +4678781024 20130131 1 900000000000207008 472873000 87528003 1 118169006 900000000000011006 900000000000451002 +4678782028 20130131 1 900000000000207008 472873000 285570007 1 118171006 900000000000011006 900000000000451002 +4678783022 20130131 1 900000000000207008 472874006 258519006 0 116680003 900000000000011006 900000000000451002 +4678784027 20130131 1 900000000000207008 472874006 127479004 0 116680003 900000000000011006 900000000000451002 +4678785026 20130131 1 900000000000207008 472874006 472904006 0 116680003 900000000000011006 900000000000451002 +4678785026 20190731 0 900000000000207008 472874006 472904006 0 116680003 900000000000011006 900000000000451002 +4678785026 20200131 1 900000000000207008 472874006 472904006 0 116680003 900000000000011006 900000000000451002 +4678786025 20130131 1 900000000000207008 472874006 35039007 1 118169006 900000000000011006 900000000000451002 +4678787023 20130131 1 900000000000207008 472874006 285570007 1 118171006 900000000000011006 900000000000451002 +4678788029 20130131 1 900000000000207008 472875007 257261003 0 116680003 900000000000011006 900000000000451002 +4678788029 20160131 0 900000000000207008 472875007 257261003 0 116680003 900000000000011006 900000000000451002 +4678789021 20130131 1 900000000000207008 472875007 309049000 0 116680003 900000000000011006 900000000000451002 +4678789021 20160131 0 900000000000207008 472875007 309049000 0 116680003 900000000000011006 900000000000451002 +4678790028 20130131 1 900000000000207008 472875007 285570007 1 118171006 900000000000011006 900000000000451002 +4678791029 20130131 1 900000000000207008 472875007 82515000 1 118168003 900000000000011006 900000000000451002 +4678792020 20130131 1 900000000000207008 472876008 119368000 0 116680003 900000000000011006 900000000000451002 +4678793026 20130131 1 900000000000207008 472876008 472878009 0 116680003 900000000000011006 900000000000451002 +4678794021 20130131 1 900000000000207008 472876008 87176006 1 118169006 900000000000011006 900000000000451002 +4678795022 20130131 1 900000000000207008 472876008 285570007 1 118171006 900000000000011006 900000000000451002 +4678796023 20130131 1 900000000000207008 472876008 367643001 1 118168003 900000000000011006 900000000000451002 +4678797025 20130131 1 900000000000207008 472877004 257261003 0 116680003 900000000000011006 900000000000451002 +4678798024 20130131 1 900000000000207008 472877004 127463000 0 116680003 900000000000011006 900000000000451002 +4678799027 20130131 1 900000000000207008 472877004 32849002 1 118169006 900000000000011006 900000000000451002 +4678800028 20130131 1 900000000000207008 472877004 285570007 1 118171006 900000000000011006 900000000000451002 +4678801029 20130131 1 900000000000207008 472878009 258523003 0 116680003 900000000000011006 900000000000451002 +4678802020 20130131 1 900000000000207008 472878009 87176006 1 118169006 900000000000011006 900000000000451002 +4678803026 20130131 1 900000000000207008 472878009 285570007 1 118171006 900000000000011006 900000000000451002 +4678804021 20130131 1 900000000000207008 472879001 119403008 0 116680003 900000000000011006 900000000000451002 +4678805022 20130131 1 900000000000207008 472879001 472874006 0 116680003 900000000000011006 900000000000451002 +4678805022 20140131 0 900000000000207008 472879001 472874006 0 116680003 900000000000011006 900000000000451002 +4678806023 20130131 1 900000000000207008 472879001 78067005 1 118169006 900000000000011006 900000000000451002 +4678807025 20130131 1 900000000000207008 472879001 285570007 1 118171006 900000000000011006 900000000000451002 +4678808024 20130131 1 900000000000207008 472880003 257261003 0 116680003 900000000000011006 900000000000451002 +4678809027 20130131 1 900000000000207008 472880003 119311002 0 116680003 900000000000011006 900000000000451002 +4678809027 20210131 0 900000000000207008 472880003 119311002 0 116680003 900000000000011006 900000000000451002 +4678810021 20130131 1 900000000000207008 472880003 285570007 1 118171006 900000000000011006 900000000000451002 +4678811020 20130131 1 900000000000207008 472880003 19923001 1 118170007 900000000000011006 900000000000451002 +4678812029 20130131 1 900000000000207008 472881004 309164002 0 116680003 900000000000011006 900000000000451002 +4678813023 20130131 1 900000000000207008 472881004 119389009 0 116680003 900000000000011006 900000000000451002 +4678813023 20170731 0 900000000000207008 472881004 119389009 0 116680003 900000000000011006 900000000000451002 +4678814028 20130131 1 900000000000207008 472881004 54066008 1 118169006 900000000000011006 900000000000451002 +4678815027 20130131 1 900000000000207008 472881004 285570007 1 118171006 900000000000011006 900000000000451002 +4678816026 20130131 1 900000000000207008 472882006 258531008 0 116680003 900000000000011006 900000000000451002 +4678817024 20130131 1 900000000000207008 472882006 285570007 1 118171006 900000000000011006 900000000000451002 +4678818025 20130131 1 900000000000207008 472882006 37205004 1 118168003 900000000000011006 900000000000451002 +4678819022 20130131 1 900000000000207008 472883001 258531008 0 116680003 900000000000011006 900000000000451002 +4678820027 20130131 1 900000000000207008 472883001 285570007 1 118171006 900000000000011006 900000000000451002 +4678821028 20130131 1 900000000000207008 472883001 112633009 1 118168003 900000000000011006 900000000000451002 +4678822024 20130131 1 900000000000207008 472884007 258531008 0 116680003 900000000000011006 900000000000451002 +4678823025 20130131 1 900000000000207008 472884007 285570007 1 118171006 900000000000011006 900000000000451002 +4678824020 20130131 1 900000000000207008 472884007 57495003 1 118168003 900000000000011006 900000000000451002 +4678825021 20130131 1 900000000000207008 472885008 258505006 0 116680003 900000000000011006 900000000000451002 +4678825021 20221231 0 900000000000207008 472885008 258505006 0 116680003 900000000000011006 900000000000451002 +4678826022 20130131 1 900000000000207008 472885008 39937001 1 118169006 900000000000011006 900000000000451002 +4678826022 20140131 0 900000000000207008 472885008 39937001 1 118169006 900000000000011006 900000000000451002 +4678826022 20221231 1 900000000000207008 472885008 39937001 1 118169006 900000000000011006 900000000000451002 +4678827029 20130131 1 900000000000207008 472885008 285570007 1 118171006 900000000000011006 900000000000451002 +4678827029 20140131 0 900000000000207008 472885008 285570007 1 118171006 900000000000011006 900000000000451002 +4678827029 20221231 1 900000000000207008 472885008 285570007 1 118171006 900000000000011006 900000000000451002 +4678828023 20130131 1 900000000000207008 472885008 418172001 1 118168003 900000000000011006 900000000000451002 +4678828023 20140131 0 900000000000207008 472885008 418172001 1 118168003 900000000000011006 900000000000451002 +4678829026 20130131 1 900000000000207008 472886009 472904006 0 116680003 900000000000011006 900000000000451002 +4678830020 20130131 1 900000000000207008 472886009 59380008 1 118169006 900000000000011006 900000000000451002 +4678831024 20130131 1 900000000000207008 472886009 285570007 1 118171006 900000000000011006 900000000000451002 +4678832028 20130131 1 900000000000207008 472887000 258523003 0 116680003 900000000000011006 900000000000451002 +4678833022 20130131 1 900000000000207008 472887000 39117004 1 118169006 900000000000011006 900000000000451002 +4678834027 20130131 1 900000000000207008 472887000 285570007 1 118171006 900000000000011006 900000000000451002 +4678835026 20130131 1 900000000000207008 472888005 309164002 0 116680003 900000000000011006 900000000000451002 +4678836025 20130131 1 900000000000207008 472888005 430144001 0 116680003 900000000000011006 900000000000451002 +4678837023 20130131 1 900000000000207008 472888005 4596009 1 118169006 900000000000011006 900000000000451002 +4678838029 20130131 1 900000000000207008 472888005 285570007 1 118171006 900000000000011006 900000000000451002 +4678839021 20130131 1 900000000000207008 472889002 430232008 0 116680003 900000000000011006 900000000000451002 +4678839021 20190731 0 900000000000207008 472889002 430232008 0 116680003 900000000000011006 900000000000451002 +4678839021 20200131 1 900000000000207008 472889002 430232008 0 116680003 900000000000011006 900000000000451002 +4678840023 20130131 1 900000000000207008 472889002 257261003 0 116680003 900000000000011006 900000000000451002 +4678840023 20190731 0 900000000000207008 472889002 257261003 0 116680003 900000000000011006 900000000000451002 +4678840023 20200131 1 900000000000207008 472889002 257261003 0 116680003 900000000000011006 900000000000451002 +4678841022 20130131 1 900000000000207008 472889002 12921003 1 118169006 900000000000011006 900000000000451002 +4678842026 20130131 1 900000000000207008 472889002 285570007 1 118171006 900000000000011006 900000000000451002 +4678843020 20130131 1 900000000000207008 472890006 309222007 0 116680003 900000000000011006 900000000000451002 +4678844025 20130131 1 900000000000207008 472890006 472904006 0 116680003 900000000000011006 900000000000451002 +4678845029 20130131 1 900000000000207008 472890006 66754008 1 118169006 900000000000011006 900000000000451002 +4678846028 20130131 1 900000000000207008 472890006 285570007 1 118171006 900000000000011006 900000000000451002 +4678847021 20130131 1 900000000000207008 472891005 257261003 0 116680003 900000000000011006 900000000000451002 +4678847021 20200731 0 900000000000207008 472891005 257261003 0 116680003 900000000000011006 900000000000451002 +4678848027 20130131 1 900000000000207008 472891005 430133009 0 116680003 900000000000011006 900000000000451002 +4678849024 20130131 1 900000000000207008 472891005 48477009 1 118169006 900000000000011006 900000000000451002 +4678850024 20130131 1 900000000000207008 472891005 285570007 1 118171006 900000000000011006 900000000000451002 +4678851023 20130131 1 900000000000207008 472892003 472898004 0 116680003 900000000000011006 900000000000451002 +4678852027 20130131 1 900000000000207008 472892003 125685002 1 118169006 900000000000011006 900000000000451002 +4678853021 20130131 1 900000000000207008 472892003 285570007 1 118171006 900000000000011006 900000000000451002 +4678854026 20130131 1 900000000000207008 472893008 446774006 0 116680003 900000000000011006 900000000000451002 +4678855025 20130131 1 900000000000207008 472893008 258497007 0 116680003 900000000000011006 900000000000451002 +4678856029 20130131 1 900000000000207008 472893008 12738006 1 118169006 900000000000011006 900000000000451002 +4678857022 20130131 1 900000000000207008 472893008 285570007 1 118171006 900000000000011006 900000000000451002 +4678858028 20130131 1 900000000000207008 472893008 44132006 1 118168003 900000000000011006 900000000000451002 +4678859020 20130131 1 900000000000207008 472894002 119400006 0 116680003 900000000000011006 900000000000451002 +4678860026 20130131 1 900000000000207008 472894002 445160003 0 116680003 900000000000011006 900000000000451002 +4678861027 20130131 1 900000000000207008 472894002 28726007 1 118169006 900000000000011006 900000000000451002 +4678862023 20130131 1 900000000000207008 472894002 285570007 1 118171006 900000000000011006 900000000000451002 +4678863029 20130131 1 900000000000207008 472895001 472897009 0 116680003 900000000000011006 900000000000451002 +4678863029 20140131 0 900000000000207008 472895001 472897009 0 116680003 900000000000011006 900000000000451002 +4678864024 20130131 1 900000000000207008 472895001 46862004 1 118169006 900000000000011006 900000000000451002 +4678865020 20130131 1 900000000000207008 472895001 285570007 1 118171006 900000000000011006 900000000000451002 +4678866021 20130131 1 900000000000207008 472896000 257261003 0 116680003 900000000000011006 900000000000451002 +4678866021 20160131 0 900000000000207008 472896000 257261003 0 116680003 900000000000011006 900000000000451002 +4678867028 20130131 1 900000000000207008 472896000 309049000 0 116680003 900000000000011006 900000000000451002 +4678867028 20160131 0 900000000000207008 472896000 309049000 0 116680003 900000000000011006 900000000000451002 +4678868022 20130131 1 900000000000207008 472896000 285570007 1 118171006 900000000000011006 900000000000451002 +4678869025 20130131 1 900000000000207008 472896000 339008 1 118168003 900000000000011006 900000000000451002 +4678870029 20130131 1 900000000000207008 472897009 430232008 0 116680003 900000000000011006 900000000000451002 +4678870029 20140131 0 900000000000207008 472897009 430232008 0 116680003 900000000000011006 900000000000451002 +4678870029 20210131 1 900000000000207008 472897009 430232008 0 116680003 900000000000011006 900000000000451002 +4678871025 20130131 1 900000000000207008 472897009 472864008 0 116680003 900000000000011006 900000000000451002 +4678872021 20130131 1 900000000000207008 472897009 29836001 1 118169006 900000000000011006 900000000000451002 +4678873027 20130131 1 900000000000207008 472897009 285570007 1 118171006 900000000000011006 900000000000451002 +4678874022 20130131 1 900000000000207008 472898004 257261003 0 116680003 900000000000011006 900000000000451002 +4678875023 20130131 1 900000000000207008 472898004 430246008 0 116680003 900000000000011006 900000000000451002 +4678876024 20130131 1 900000000000207008 472898004 85562004 1 118169006 900000000000011006 900000000000451002 +4678877026 20130131 1 900000000000207008 472898004 285570007 1 118171006 900000000000011006 900000000000451002 +4678878020 20130131 1 900000000000207008 472899007 258520000 0 116680003 900000000000011006 900000000000451002 +4678879028 20130131 1 900000000000207008 472899007 258523003 0 116680003 900000000000011006 900000000000451002 +4678880025 20130131 1 900000000000207008 472899007 18857001 1 118169006 900000000000011006 900000000000451002 +4678881026 20130131 1 900000000000207008 472899007 285570007 1 118171006 900000000000011006 900000000000451002 +4678882022 20130131 1 900000000000207008 472900002 257261003 0 116680003 900000000000011006 900000000000451002 +4678882022 20200731 0 900000000000207008 472900002 257261003 0 116680003 900000000000011006 900000000000451002 +4678883028 20130131 1 900000000000207008 472900002 309185002 0 116680003 900000000000011006 900000000000451002 +4678883028 20140131 0 900000000000207008 472900002 309185002 0 116680003 900000000000011006 900000000000451002 +4678884023 20130131 1 900000000000207008 472900002 309072003 0 116680003 900000000000011006 900000000000451002 +4678884023 20210131 0 900000000000207008 472900002 309072003 0 116680003 900000000000011006 900000000000451002 +4678885024 20130131 1 900000000000207008 472900002 113279002 1 118169006 900000000000011006 900000000000451002 +4678886020 20130131 1 900000000000207008 472900002 285570007 1 118171006 900000000000011006 900000000000451002 +4678887027 20130131 1 900000000000207008 472901003 309164002 0 116680003 900000000000011006 900000000000451002 +4678888021 20130131 1 900000000000207008 472901003 430238007 0 116680003 900000000000011006 900000000000451002 +4678889029 20130131 1 900000000000207008 472901003 2095001 1 118169006 900000000000011006 900000000000451002 +4678890022 20130131 1 900000000000207008 472901003 285570007 1 118171006 900000000000011006 900000000000451002 +4678891021 20130131 1 900000000000207008 472902005 430232008 0 116680003 900000000000011006 900000000000451002 +4678892025 20130131 1 900000000000207008 472902005 257261003 0 116680003 900000000000011006 900000000000451002 +4678893024 20130131 1 900000000000207008 472902005 78904004 1 118169006 900000000000011006 900000000000451002 +4678894029 20130131 1 900000000000207008 472902005 285570007 1 118171006 900000000000011006 900000000000451002 +4678895028 20130131 1 900000000000207008 472903000 472880003 0 116680003 900000000000011006 900000000000451002 +4678896027 20130131 1 900000000000207008 472903000 285570007 1 118171006 900000000000011006 900000000000451002 +4678897020 20130131 1 900000000000207008 472903000 52124006 1 118170007 900000000000011006 900000000000451002 +4678898026 20130131 1 900000000000207008 472904006 430232008 0 116680003 900000000000011006 900000000000451002 +4678899023 20130131 1 900000000000207008 472904006 257261003 0 116680003 900000000000011006 900000000000451002 +4678900029 20130131 1 900000000000207008 472904006 113345001 1 118169006 900000000000011006 900000000000451002 +4678900029 20200131 0 900000000000207008 472904006 113345001 1 118169006 900000000000011006 900000000000451002 +4678901025 20130131 1 900000000000207008 472904006 285570007 1 118171006 900000000000011006 900000000000451002 +4678924021 20130131 1 900000000000207008 472919007 127454002 0 116680003 900000000000011006 900000000000451002 +4678924021 20210131 0 900000000000207008 472919007 127454002 0 116680003 900000000000011006 900000000000451002 +4678925022 20130131 1 900000000000207008 472919007 472917009 1 118171006 900000000000011006 900000000000451002 +4678926023 20130131 1 900000000000207008 472919007 49062001 1 118170007 900000000000011006 900000000000451002 +4678926023 20210131 0 900000000000207008 472919007 49062001 1 118170007 900000000000011006 900000000000451002 +4678927025 20130131 1 900000000000207008 472920001 472932002 0 116680003 900000000000011006 900000000000451002 +4678928024 20130131 1 900000000000207008 472920001 472917009 1 118171006 900000000000011006 900000000000451002 +4678929027 20130131 1 900000000000207008 472920001 446476009 1 118170007 900000000000011006 900000000000451002 +4678929027 20210131 0 900000000000207008 472920001 446476009 1 118170007 900000000000011006 900000000000451002 +4678930021 20130131 1 900000000000207008 472921002 119312009 0 116680003 900000000000011006 900000000000451002 +4678931020 20130131 1 900000000000207008 472921002 472917009 1 118171006 900000000000011006 900000000000451002 +4678932029 20130131 1 900000000000207008 472921002 116204000 1 118170007 900000000000011006 900000000000451002 +4678932029 20210131 0 900000000000207008 472921002 116204000 1 118170007 900000000000011006 900000000000451002 +4678933023 20130131 1 900000000000207008 472922009 119311002 0 116680003 900000000000011006 900000000000451002 +4678934028 20130131 1 900000000000207008 472922009 472919007 0 116680003 900000000000011006 900000000000451002 +4678934028 20210131 0 900000000000207008 472922009 472919007 0 116680003 900000000000011006 900000000000451002 +4678935027 20130131 1 900000000000207008 472922009 472917009 1 118171006 900000000000011006 900000000000451002 +4678936026 20130131 1 900000000000207008 472922009 258625001 1 118170007 900000000000011006 900000000000451002 +4678936026 20210131 0 900000000000207008 472922009 258625001 1 118170007 900000000000011006 900000000000451002 +4678937024 20130131 1 900000000000207008 472923004 119312009 0 116680003 900000000000011006 900000000000451002 +4678938025 20130131 1 900000000000207008 472923004 472917009 1 118171006 900000000000011006 900000000000451002 +4678939022 20130131 1 900000000000207008 472923004 116204000 1 118170007 900000000000011006 900000000000451002 +4678939022 20210131 0 900000000000207008 472923004 116204000 1 118170007 900000000000011006 900000000000451002 +4678940024 20130131 1 900000000000207008 472924005 119312009 0 116680003 900000000000011006 900000000000451002 +4678941023 20130131 1 900000000000207008 472924005 472917009 1 118171006 900000000000011006 900000000000451002 +4678942027 20130131 1 900000000000207008 472924005 116204000 1 118170007 900000000000011006 900000000000451002 +4678942027 20210131 0 900000000000207008 472924005 116204000 1 118170007 900000000000011006 900000000000451002 +4678943021 20130131 1 900000000000207008 472925006 119312009 0 116680003 900000000000011006 900000000000451002 +4678944026 20130131 1 900000000000207008 472925006 472917009 1 118171006 900000000000011006 900000000000451002 +4678945025 20130131 1 900000000000207008 472925006 116204000 1 118170007 900000000000011006 900000000000451002 +4678945025 20210131 0 900000000000207008 472925006 116204000 1 118170007 900000000000011006 900000000000451002 +4678946029 20130131 1 900000000000207008 472926007 119312009 0 116680003 900000000000011006 900000000000451002 +4678947022 20130131 1 900000000000207008 472926007 472917009 1 118171006 900000000000011006 900000000000451002 +4678948028 20130131 1 900000000000207008 472926007 116204000 1 118170007 900000000000011006 900000000000451002 +4678948028 20210131 0 900000000000207008 472926007 116204000 1 118170007 900000000000011006 900000000000451002 +4678949020 20130131 1 900000000000207008 472927003 472919007 0 116680003 900000000000011006 900000000000451002 +4678950020 20130131 1 900000000000207008 472927003 472917009 1 118171006 900000000000011006 900000000000451002 +4678951024 20130131 1 900000000000207008 472927003 419818001 1 118170007 900000000000011006 900000000000451002 +4678951024 20210131 0 900000000000207008 472927003 419818001 1 118170007 900000000000011006 900000000000451002 +4678952028 20130131 1 900000000000207008 472928008 119312009 0 116680003 900000000000011006 900000000000451002 +4678953022 20130131 1 900000000000207008 472928008 472917009 1 118171006 900000000000011006 900000000000451002 +4678954027 20130131 1 900000000000207008 472928008 116204000 1 118170007 900000000000011006 900000000000451002 +4678954027 20210131 0 900000000000207008 472928008 116204000 1 118170007 900000000000011006 900000000000451002 +4678955026 20130131 1 900000000000207008 472929000 119312009 0 116680003 900000000000011006 900000000000451002 +4678956025 20130131 1 900000000000207008 472929000 472917009 1 118171006 900000000000011006 900000000000451002 +4678956025 20160131 0 900000000000207008 472929000 472917009 1 118171006 900000000000011006 900000000000451002 +4678956025 20210131 1 900000000000207008 472929000 472917009 1 118171006 900000000000011006 900000000000451002 +4678957023 20130131 1 900000000000207008 472929000 116204000 1 118170007 900000000000011006 900000000000451002 +4678957023 20160131 0 900000000000207008 472929000 116204000 1 118170007 900000000000011006 900000000000451002 +4678958029 20130131 1 900000000000207008 472930005 472919007 0 116680003 900000000000011006 900000000000451002 +4678959021 20130131 1 900000000000207008 472930005 472917009 1 118171006 900000000000011006 900000000000451002 +4678960027 20130131 1 900000000000207008 472930005 68276009 1 118170007 900000000000011006 900000000000451002 +4678960027 20210131 0 900000000000207008 472930005 68276009 1 118170007 900000000000011006 900000000000451002 +4678961028 20130131 1 900000000000207008 472931009 119312009 0 116680003 900000000000011006 900000000000451002 +4678962024 20130131 1 900000000000207008 472931009 472917009 1 118171006 900000000000011006 900000000000451002 +4678962024 20170731 0 900000000000207008 472931009 472917009 1 118171006 900000000000011006 900000000000451002 +4678962024 20210131 1 900000000000207008 472931009 472917009 1 118171006 900000000000011006 900000000000451002 +4678963025 20130131 1 900000000000207008 472931009 116204000 1 118170007 900000000000011006 900000000000451002 +4678963025 20170731 0 900000000000207008 472931009 116204000 1 118170007 900000000000011006 900000000000451002 +4678964020 20130131 1 900000000000207008 472932002 119311002 0 116680003 900000000000011006 900000000000451002 +4678965021 20130131 1 900000000000207008 472932002 472919007 0 116680003 900000000000011006 900000000000451002 +4678965021 20210131 0 900000000000207008 472932002 472919007 0 116680003 900000000000011006 900000000000451002 +4678966022 20130131 1 900000000000207008 472932002 472917009 1 118171006 900000000000011006 900000000000451002 +4678967029 20130131 1 900000000000207008 472932002 258623008 1 118170007 900000000000011006 900000000000451002 +4678967029 20210131 0 900000000000207008 472932002 258623008 1 118170007 900000000000011006 900000000000451002 +4678968023 20130131 1 900000000000207008 472933007 472919007 0 116680003 900000000000011006 900000000000451002 +4678969026 20130131 1 900000000000207008 472933007 472917009 1 118171006 900000000000011006 900000000000451002 +4678970025 20130131 1 900000000000207008 472933007 49062001 1 118170007 900000000000011006 900000000000451002 +4678970025 20210131 0 900000000000207008 472933007 49062001 1 118170007 900000000000011006 900000000000451002 +4678971026 20130131 1 900000000000207008 472934001 439961009 0 116680003 900000000000011006 900000000000451002 +4678972022 20130131 1 900000000000207008 472934001 472917009 1 118171006 900000000000011006 900000000000451002 +4678973028 20130131 1 900000000000207008 472934001 65818007 1 118170007 900000000000011006 900000000000451002 +4678973028 20210131 0 900000000000207008 472934001 65818007 1 118170007 900000000000011006 900000000000451002 +4678974023 20130131 1 900000000000207008 472935000 119312009 0 116680003 900000000000011006 900000000000451002 +4678975024 20130131 1 900000000000207008 472935000 472917009 1 118171006 900000000000011006 900000000000451002 +4678976020 20130131 1 900000000000207008 472935000 116204000 1 118170007 900000000000011006 900000000000451002 +4678976020 20210131 0 900000000000207008 472935000 116204000 1 118170007 900000000000011006 900000000000451002 +4678977027 20130131 1 900000000000207008 472936004 119312009 0 116680003 900000000000011006 900000000000451002 +4678978021 20130131 1 900000000000207008 472936004 472917009 1 118171006 900000000000011006 900000000000451002 +4678979029 20130131 1 900000000000207008 472936004 116204000 1 118170007 900000000000011006 900000000000451002 +4678979029 20210131 0 900000000000207008 472936004 116204000 1 118170007 900000000000011006 900000000000451002 +4678980026 20130131 1 900000000000207008 472937008 472934001 0 116680003 900000000000011006 900000000000451002 +4678981027 20130131 1 900000000000207008 472937008 472917009 1 118171006 900000000000011006 900000000000451002 +4678982023 20130131 1 900000000000207008 472937008 257366006 1 118170007 900000000000011006 900000000000451002 +4678982023 20210131 0 900000000000207008 472937008 257366006 1 118170007 900000000000011006 900000000000451002 +4678983029 20130131 1 900000000000207008 472938003 119310001 0 116680003 900000000000011006 900000000000451002 +4678983029 20210131 0 900000000000207008 472938003 119310001 0 116680003 900000000000011006 900000000000451002 +4678984024 20130131 1 900000000000207008 472938003 472919007 0 116680003 900000000000011006 900000000000451002 +4678984024 20210131 0 900000000000207008 472938003 472919007 0 116680003 900000000000011006 900000000000451002 +4678985020 20130131 1 900000000000207008 472938003 472917009 1 118171006 900000000000011006 900000000000451002 +4678986021 20130131 1 900000000000207008 472938003 257462007 1 118170007 900000000000011006 900000000000451002 +4678986021 20210131 0 900000000000207008 472938003 257462007 1 118170007 900000000000011006 900000000000451002 +4678987028 20130131 1 900000000000207008 472939006 472938003 0 116680003 900000000000011006 900000000000451002 +4678988022 20130131 1 900000000000207008 472939006 472917009 1 118171006 900000000000011006 900000000000451002 +4678989025 20130131 1 900000000000207008 472939006 129121000 1 118170007 900000000000011006 900000000000451002 +4678989025 20210131 0 900000000000207008 472939006 129121000 1 118170007 900000000000011006 900000000000451002 +4678990023 20130131 1 900000000000207008 472940008 472922009 0 116680003 900000000000011006 900000000000451002 +4678991022 20130131 1 900000000000207008 472940008 472917009 1 118171006 900000000000011006 900000000000451002 +4678992026 20130131 1 900000000000207008 472940008 9017009 1 118170007 900000000000011006 900000000000451002 +4678992026 20210131 0 900000000000207008 472940008 9017009 1 118170007 900000000000011006 900000000000451002 +4678993020 20130131 1 900000000000207008 472941007 119312009 0 116680003 900000000000011006 900000000000451002 +4678994025 20130131 1 900000000000207008 472941007 472917009 1 118171006 900000000000011006 900000000000451002 +4678995029 20130131 1 900000000000207008 472941007 116204000 1 118170007 900000000000011006 900000000000451002 +4678995029 20210131 0 900000000000207008 472941007 116204000 1 118170007 900000000000011006 900000000000451002 +4678996028 20130131 1 900000000000207008 472942000 473406005 0 116680003 900000000000011006 900000000000451002 +4678997021 20130131 1 900000000000207008 472942000 472917009 1 118171006 900000000000011006 900000000000451002 +4678998027 20130131 1 900000000000207008 472942000 257354000 1 118170007 900000000000011006 900000000000451002 +4678998027 20210131 0 900000000000207008 472942000 257354000 1 118170007 900000000000011006 900000000000451002 +4678999024 20130131 1 900000000000207008 472943005 439961009 0 116680003 900000000000011006 900000000000451002 +4678999024 20200731 0 900000000000207008 472943005 439961009 0 116680003 900000000000011006 900000000000451002 +4679000021 20130131 1 900000000000207008 472943005 472917009 1 118171006 900000000000011006 900000000000451002 +4679001020 20130131 1 900000000000207008 472943005 446276007 1 118170007 900000000000011006 900000000000451002 +4679001020 20210131 0 900000000000207008 472943005 446276007 1 118170007 900000000000011006 900000000000451002 +4679002029 20130131 1 900000000000207008 472944004 119311002 0 116680003 900000000000011006 900000000000451002 +4679003023 20130131 1 900000000000207008 472944004 472919007 0 116680003 900000000000011006 900000000000451002 +4679003023 20210131 0 900000000000207008 472944004 472919007 0 116680003 900000000000011006 900000000000451002 +4679004028 20130131 1 900000000000207008 472944004 472917009 1 118171006 900000000000011006 900000000000451002 +4679005027 20130131 1 900000000000207008 472944004 31030004 1 118170007 900000000000011006 900000000000451002 +4679005027 20210131 0 900000000000207008 472944004 31030004 1 118170007 900000000000011006 900000000000451002 +4680702024 20130131 1 900000000000207008 473399006 472904006 0 116680003 900000000000011006 900000000000451002 +4680702024 20210731 0 900000000000207008 473399006 472904006 0 116680003 900000000000011006 900000000000451002 +4680703025 20130131 1 900000000000207008 473399006 83908009 1 118169006 900000000000011006 900000000000451002 +4680703025 20210731 0 900000000000207008 473399006 83908009 1 118169006 900000000000011006 900000000000451002 +4680704020 20130131 1 900000000000207008 473399006 285570007 1 118171006 900000000000011006 900000000000451002 +4680705021 20130131 1 900000000000207008 473400004 257261003 0 116680003 900000000000011006 900000000000451002 +4680705021 20200731 0 900000000000207008 473400004 257261003 0 116680003 900000000000011006 900000000000451002 +4680706022 20130131 1 900000000000207008 473400004 430319000 0 116680003 900000000000011006 900000000000451002 +4680706022 20140131 0 900000000000207008 473400004 430319000 0 116680003 900000000000011006 900000000000451002 +4680706022 20240501 1 900000000000207008 473400004 430319000 0 116680003 900000000000011006 900000000000451002 +4680707029 20130131 1 900000000000207008 473400004 38199008 1 118169006 900000000000011006 900000000000451002 +4680708023 20130131 1 900000000000207008 473400004 285570007 1 118171006 900000000000011006 900000000000451002 +4680709026 20130131 1 900000000000207008 473401000 472919007 0 116680003 900000000000011006 900000000000451002 +4680710020 20130131 1 900000000000207008 473401000 472917009 1 118171006 900000000000011006 900000000000451002 +4680711024 20130131 1 900000000000207008 473401000 257263000 1 118170007 900000000000011006 900000000000451002 +4680711024 20210131 0 900000000000207008 473401000 257263000 1 118170007 900000000000011006 900000000000451002 +4680712028 20130131 1 900000000000207008 473403002 119312009 0 116680003 900000000000011006 900000000000451002 +4680713022 20130131 1 900000000000207008 473403002 472917009 1 118171006 900000000000011006 900000000000451002 +4680714027 20130131 1 900000000000207008 473403002 116204000 1 118170007 900000000000011006 900000000000451002 +4680714027 20210131 0 900000000000207008 473403002 116204000 1 118170007 900000000000011006 900000000000451002 +4680715026 20130131 1 900000000000207008 473404008 439961009 0 116680003 900000000000011006 900000000000451002 +4680716025 20130131 1 900000000000207008 473404008 472917009 1 118171006 900000000000011006 900000000000451002 +4680717023 20130131 1 900000000000207008 473404008 118427002 1 118170007 900000000000011006 900000000000451002 +4680717023 20210131 0 900000000000207008 473404008 118427002 1 118170007 900000000000011006 900000000000451002 +4680718029 20130131 1 900000000000207008 473405009 258450006 0 116680003 900000000000011006 900000000000451002 +4680719021 20130131 1 900000000000207008 473405009 472918004 0 116680003 900000000000011006 900000000000451002 +4680719021 20210131 0 900000000000207008 473405009 472918004 0 116680003 900000000000011006 900000000000451002 +4680720026 20130131 1 900000000000207008 473405009 65216001 2 370133003 900000000000011006 900000000000451002 +4680720026 20210131 0 900000000000207008 473405009 65216001 2 370133003 900000000000011006 900000000000451002 +4680721027 20130131 1 900000000000207008 473405009 279107003 2 118169006 900000000000011006 900000000000451002 +4680721027 20210131 0 900000000000207008 473405009 279107003 2 118169006 900000000000011006 900000000000451002 +4680722023 20130131 1 900000000000207008 473405009 118427002 2 118170007 900000000000011006 900000000000451002 +4680722023 20210131 0 900000000000207008 473405009 118427002 2 118170007 900000000000011006 900000000000451002 +4680723029 20130131 1 900000000000207008 473406005 439961009 0 116680003 900000000000011006 900000000000451002 +4680724024 20130131 1 900000000000207008 473406005 472917009 1 118171006 900000000000011006 900000000000451002 +4680725020 20130131 1 900000000000207008 473406005 257351008 1 118170007 900000000000011006 900000000000451002 +4680725020 20210131 0 900000000000207008 473406005 257351008 1 118170007 900000000000011006 900000000000451002 +4680726021 20130131 1 900000000000207008 473407001 473409003 0 116680003 900000000000011006 900000000000451002 +4680727028 20130131 1 900000000000207008 473407001 472917009 1 118171006 900000000000011006 900000000000451002 +4680728022 20130131 1 900000000000207008 473407001 398176008 1 118170007 900000000000011006 900000000000451002 +4680728022 20210131 0 900000000000207008 473407001 398176008 1 118170007 900000000000011006 900000000000451002 +4680729025 20130131 1 900000000000207008 473408006 472920001 0 116680003 900000000000011006 900000000000451002 +4680730024 20130131 1 900000000000207008 473408006 472917009 1 118171006 900000000000011006 900000000000451002 +4680731023 20130131 1 900000000000207008 473408006 446476009 1 118170007 900000000000011006 900000000000451002 +4680731023 20210131 0 900000000000207008 473408006 446476009 1 118170007 900000000000011006 900000000000451002 +4680732027 20130131 1 900000000000207008 473409003 472932002 0 116680003 900000000000011006 900000000000451002 +4680733021 20130131 1 900000000000207008 473409003 472917009 1 118171006 900000000000011006 900000000000451002 +4680734026 20130131 1 900000000000207008 473409003 52124006 1 118170007 900000000000011006 900000000000451002 +4680734026 20210131 0 900000000000207008 473409003 52124006 1 118170007 900000000000011006 900000000000451002 +4680735025 20130131 1 900000000000207008 473410008 472932002 0 116680003 900000000000011006 900000000000451002 +4680736029 20130131 1 900000000000207008 473410008 472917009 1 118171006 900000000000011006 900000000000451002 +4680737022 20130131 1 900000000000207008 473410008 446559007 1 118170007 900000000000011006 900000000000451002 +4680737022 20210131 0 900000000000207008 473410008 446559007 1 118170007 900000000000011006 900000000000451002 +4680738028 20130131 1 900000000000207008 473411007 472919007 0 116680003 900000000000011006 900000000000451002 +4680739020 20130131 1 900000000000207008 473411007 472917009 1 118171006 900000000000011006 900000000000451002 +4680740022 20130131 1 900000000000207008 473411007 49062001 1 118170007 900000000000011006 900000000000451002 +4680740022 20210131 0 900000000000207008 473411007 49062001 1 118170007 900000000000011006 900000000000451002 +4680741021 20130131 1 900000000000207008 473412000 472938003 0 116680003 900000000000011006 900000000000451002 +4680742025 20130131 1 900000000000207008 473412000 472917009 1 118171006 900000000000011006 900000000000451002 +4680743024 20130131 1 900000000000207008 473412000 26412008 1 118170007 900000000000011006 900000000000451002 +4680743024 20210131 0 900000000000207008 473412000 26412008 1 118170007 900000000000011006 900000000000451002 +4680744029 20130131 1 900000000000207008 473413005 473409003 0 116680003 900000000000011006 900000000000451002 +4680745028 20130131 1 900000000000207008 473413005 472917009 1 118171006 900000000000011006 900000000000451002 +4680746027 20130131 1 900000000000207008 473413005 52124006 1 118170007 900000000000011006 900000000000451002 +4680746027 20210131 0 900000000000207008 473413005 52124006 1 118170007 900000000000011006 900000000000451002 +4680747020 20130131 1 900000000000207008 473414004 119311002 0 116680003 900000000000011006 900000000000451002 +4680748026 20130131 1 900000000000207008 473414004 472919007 0 116680003 900000000000011006 900000000000451002 +4680748026 20210131 0 900000000000207008 473414004 472919007 0 116680003 900000000000011006 900000000000451002 +4680749023 20130131 1 900000000000207008 473414004 472917009 1 118171006 900000000000011006 900000000000451002 +4680750023 20130131 1 900000000000207008 473414004 360078002 1 118170007 900000000000011006 900000000000451002 +4680750023 20210131 0 900000000000207008 473414004 360078002 1 118170007 900000000000011006 900000000000451002 +4680751022 20130131 1 900000000000207008 473415003 472919007 0 116680003 900000000000011006 900000000000451002 +4680751022 20200131 0 900000000000207008 473415003 472919007 0 116680003 900000000000011006 900000000000451002 +4680752026 20130131 1 900000000000207008 473415003 472917009 1 118171006 900000000000011006 900000000000451002 +4680753020 20130131 1 900000000000207008 473415003 268460000 1 118170007 900000000000011006 900000000000451002 +4680753020 20210131 0 900000000000207008 473415003 268460000 1 118170007 900000000000011006 900000000000451002 +4680754025 20130131 1 900000000000207008 473416002 472919007 0 116680003 900000000000011006 900000000000451002 +4680754025 20210131 0 900000000000207008 473416002 472919007 0 116680003 900000000000011006 900000000000451002 +4680755029 20130131 1 900000000000207008 473416002 472917009 1 118171006 900000000000011006 900000000000451002 +4680756028 20130131 1 900000000000207008 473416002 286628000 1 118170007 900000000000011006 900000000000451002 +4680756028 20210131 0 900000000000207008 473416002 286628000 1 118170007 900000000000011006 900000000000451002 +4680757021 20130131 1 900000000000207008 473417006 439961009 0 116680003 900000000000011006 900000000000451002 +4680757021 20200731 0 900000000000207008 473417006 439961009 0 116680003 900000000000011006 900000000000451002 +4680758027 20130131 1 900000000000207008 473417006 472917009 1 118171006 900000000000011006 900000000000451002 +4680759024 20130131 1 900000000000207008 473417006 360129009 1 118170007 900000000000011006 900000000000451002 +4680759024 20210131 0 900000000000207008 473417006 360129009 1 118170007 900000000000011006 900000000000451002 +4680813026 20130131 1 900000000000207008 473432004 472919007 0 116680003 900000000000011006 900000000000451002 +4680813026 20241001 0 900000000000207008 473432004 472919007 0 116680003 900000000000011006 900000000000451002 +4680814021 20130131 1 900000000000207008 473432004 472917009 1 118171006 900000000000011006 900000000000451002 +4680815022 20130131 1 900000000000207008 473432004 444893002 1 118170007 900000000000011006 900000000000451002 +4680815022 20210131 0 900000000000207008 473432004 444893002 1 118170007 900000000000011006 900000000000451002 +4680816023 20130131 1 900000000000207008 473433009 472919007 0 116680003 900000000000011006 900000000000451002 +4680817025 20130131 1 900000000000207008 473433009 472917009 1 118171006 900000000000011006 900000000000451002 +4680818024 20130131 1 900000000000207008 473433009 446033002 1 118170007 900000000000011006 900000000000451002 +4680818024 20210131 0 900000000000207008 473433009 446033002 1 118170007 900000000000011006 900000000000451002 +4699212021 20130731 1 900000000000207008 119380008 608840004 0 116680003 900000000000011006 900000000000451002 +4699212021 20240501 0 900000000000207008 119380008 608840004 0 116680003 900000000000011006 900000000000451002 +4699252023 20130731 1 900000000000207008 128155007 608870009 0 116680003 900000000000011006 900000000000451002 +4699259025 20130731 1 900000000000207008 119381007 608840004 0 116680003 900000000000011006 900000000000451002 +4699294021 20130731 1 900000000000207008 399436000 608852006 0 116680003 900000000000011006 900000000000451002 +4699312023 20130731 1 900000000000207008 397129002 608870009 0 116680003 900000000000011006 900000000000451002 +4699312023 20140131 0 900000000000207008 397129002 608870009 0 116680003 900000000000011006 900000000000451002 +4699312023 20190731 1 900000000000207008 397129002 608870009 0 116680003 900000000000011006 900000000000451002 +4699373020 20130731 1 900000000000207008 119394009 608870009 0 116680003 900000000000011006 900000000000451002 +4699373020 20211130 0 900000000000207008 119394009 608870009 0 116680003 900000000000011006 900000000000451002 +4699483020 20130731 1 900000000000207008 399680007 608868000 0 116680003 900000000000011006 900000000000451002 +4699636027 20130731 1 900000000000207008 258503004 608969007 0 116680003 900000000000011006 900000000000451002 +4699637020 20130731 1 900000000000207008 119325001 608969007 0 116680003 900000000000011006 900000000000451002 +4699689026 20130731 1 900000000000207008 309141004 608868000 0 116680003 900000000000011006 900000000000451002 +4699802024 20130731 1 900000000000207008 127476006 608870009 0 116680003 900000000000011006 900000000000451002 +4699825020 20130731 1 900000000000207008 119379005 608842007 0 116680003 900000000000011006 900000000000451002 +4699859024 20130731 1 900000000000207008 127479004 608870009 0 116680003 900000000000011006 900000000000451002 +4699968022 20130731 1 900000000000207008 258489000 608969007 0 116680003 900000000000011006 900000000000451002 +4700025028 20130731 1 900000000000207008 127463000 608842007 0 116680003 900000000000011006 900000000000451002 +4700055024 20130731 1 900000000000207008 122879002 608842007 0 116680003 900000000000011006 900000000000451002 +4700351023 20130731 1 900000000000207008 122574004 608842007 0 116680003 900000000000011006 900000000000451002 +4700615023 20130731 1 900000000000207008 127467004 608842007 0 116680003 900000000000011006 900000000000451002 +4700616024 20130731 1 900000000000207008 110938007 608842007 0 116680003 900000000000011006 900000000000451002 +4700617026 20130731 1 900000000000207008 309216003 608842007 0 116680003 900000000000011006 900000000000451002 +4700742029 20130731 1 900000000000207008 430236006 608852006 0 116680003 900000000000011006 900000000000451002 +4700780028 20130731 1 900000000000207008 122639009 608842007 0 116680003 900000000000011006 900000000000451002 +4701151023 20130731 1 900000000000207008 309068002 608969007 0 116680003 900000000000011006 900000000000451002 +4701982021 20130731 1 900000000000207008 309066003 608969007 0 116680003 900000000000011006 900000000000451002 +4702221023 20130731 1 900000000000207008 309149002 608868000 0 116680003 900000000000011006 900000000000451002 +4702305026 20130731 1 900000000000207008 110893002 608969007 0 116680003 900000000000011006 900000000000451002 +4702566026 20130731 1 900000000000207008 309154006 608868000 0 116680003 900000000000011006 900000000000451002 +4703009021 20130731 1 900000000000207008 258569003 608969007 0 116680003 900000000000011006 900000000000451002 +4703669024 20130731 1 900000000000207008 443241002 608868000 0 116680003 900000000000011006 900000000000451002 +4703867024 20130731 1 900000000000207008 258452003 608840004 0 116680003 900000000000011006 900000000000451002 +4703867024 20240501 0 900000000000207008 258452003 608840004 0 116680003 900000000000011006 900000000000451002 +4704221022 20130731 1 900000000000207008 446952006 608969007 0 116680003 900000000000011006 900000000000451002 +4704579023 20130731 1 900000000000207008 258553005 608842007 0 116680003 900000000000011006 900000000000451002 +4705212028 20130731 1 900000000000207008 608840004 127465007 0 116680003 900000000000011006 900000000000451002 +4705213022 20130731 1 900000000000207008 608840004 443654002 0 116680003 900000000000011006 900000000000451002 +4705213022 20140131 0 900000000000207008 608840004 443654002 0 116680003 900000000000011006 900000000000451002 +4705214027 20130731 1 900000000000207008 608840004 5668004 0 118169006 900000000000011006 900000000000451002 +4705214027 20190731 1 900000000000207008 608840004 5668004 1 118169006 900000000000011006 900000000000451002 +4705219021 20130731 1 900000000000207008 608842007 127465007 0 116680003 900000000000011006 900000000000451002 +4705220026 20130731 1 900000000000207008 608842007 62834003 0 118169006 900000000000011006 900000000000451002 +4705220026 20190731 1 900000000000207008 608842007 62834003 1 118169006 900000000000011006 900000000000451002 +4705263028 20130731 1 900000000000207008 608852006 123038009 0 116680003 900000000000011006 900000000000451002 +4705264023 20130731 1 900000000000207008 608852006 25087005 0 118169006 900000000000011006 900000000000451002 +4705264023 20190731 1 900000000000207008 608852006 25087005 1 118169006 900000000000011006 900000000000451002 +4705282021 20130731 1 900000000000207008 608856009 127473003 0 116680003 900000000000011006 900000000000451002 +4705282021 20140131 0 900000000000207008 608856009 127473003 0 116680003 900000000000011006 900000000000451002 +4705283027 20130731 1 900000000000207008 608856009 309072003 0 116680003 900000000000011006 900000000000451002 +4705284022 20130731 1 900000000000207008 608856009 433323009 0 116680003 900000000000011006 900000000000451002 +4705284022 20210131 0 900000000000207008 608856009 433323009 0 116680003 900000000000011006 900000000000451002 +4705285023 20130731 1 900000000000207008 608856009 47145004 0 118169006 900000000000011006 900000000000451002 +4705285023 20190731 1 900000000000207008 608856009 47145004 1 118169006 900000000000011006 900000000000451002 +4705291020 20130731 1 900000000000207008 608858005 309072003 0 116680003 900000000000011006 900000000000451002 +4705291020 20210131 0 900000000000207008 608858005 309072003 0 116680003 900000000000011006 900000000000451002 +4705292029 20130731 1 900000000000207008 608858005 433323009 0 116680003 900000000000011006 900000000000451002 +4705293023 20130731 1 900000000000207008 608858005 24577006 0 118169006 900000000000011006 900000000000451002 +4705293023 20190731 1 900000000000207008 608858005 24577006 1 118169006 900000000000011006 900000000000451002 +4705298025 20130731 1 900000000000207008 608860007 450872001 0 116680003 900000000000011006 900000000000451002 +4705299022 20130731 1 900000000000207008 608860007 312505001 0 118169006 900000000000011006 900000000000451002 +4705299022 20190731 1 900000000000207008 608860007 312505001 1 118169006 900000000000011006 900000000000451002 +4705334029 20130731 1 900000000000207008 608868000 309048008 0 116680003 900000000000011006 900000000000451002 +4705335028 20130731 1 900000000000207008 608868000 387910009 0 118169006 900000000000011006 900000000000451002 +4705335028 20190731 1 900000000000207008 608868000 387910009 1 118169006 900000000000011006 900000000000451002 +4705340020 20130731 1 900000000000207008 608870009 309053003 0 116680003 900000000000011006 900000000000451002 +4705340020 20210731 0 900000000000207008 608870009 309053003 0 116680003 900000000000011006 900000000000451002 +4705340020 20231201 1 900000000000207008 608870009 309053003 0 116680003 900000000000011006 900000000000451002 +4705341024 20130731 1 900000000000207008 608870009 413344004 0 118169006 900000000000011006 900000000000451002 +4705341024 20190731 1 900000000000207008 608870009 413344004 1 118169006 900000000000011006 900000000000451002 +4705822026 20130731 1 900000000000207008 608969007 258548000 0 116680003 900000000000011006 900000000000451002 +4705823020 20130731 1 900000000000207008 608969007 309072003 0 116680003 900000000000011006 900000000000451002 +4705823020 20210131 0 900000000000207008 608969007 309072003 0 116680003 900000000000011006 900000000000451002 +4705824025 20130731 1 900000000000207008 608969007 39937001 0 118169006 900000000000011006 900000000000451002 +4705824025 20190731 1 900000000000207008 608969007 39937001 1 118169006 900000000000011006 900000000000451002 +4727518023 20130731 1 900000000000207008 399657004 258428005 0 116680003 900000000000011006 900000000000451002 +4727634026 20130731 1 900000000000207008 258508008 257261003 0 116680003 900000000000011006 900000000000451002 +4738649028 20130731 1 900000000000207008 258516004 472889002 0 116680003 900000000000011006 900000000000451002 +4738649028 20140131 0 900000000000207008 258516004 472889002 0 116680003 900000000000011006 900000000000451002 +4738650028 20130731 1 900000000000207008 258513007 472889002 0 116680003 900000000000011006 900000000000451002 +4738650028 20140131 0 900000000000207008 258513007 472889002 0 116680003 900000000000011006 900000000000451002 +4738651029 20130731 1 900000000000207008 258525005 430232008 0 116680003 900000000000011006 900000000000451002 +4738652020 20130731 1 900000000000207008 258525005 257261003 0 116680003 900000000000011006 900000000000451002 +4738731024 20130731 1 900000000000207008 258520000 472889002 0 116680003 900000000000011006 900000000000451002 +4738731024 20140131 0 900000000000207008 258520000 472889002 0 116680003 900000000000011006 900000000000451002 +4738731024 20190731 1 900000000000207008 258520000 472889002 0 116680003 900000000000011006 900000000000451002 +4738731024 20210131 0 900000000000207008 258520000 472889002 0 116680003 900000000000011006 900000000000451002 +4738972028 20130731 1 900000000000207008 441710009 122550002 0 116680003 900000000000011006 900000000000451002 +4739115026 20130731 1 900000000000207008 472874006 472889002 0 116680003 900000000000011006 900000000000451002 +4739400023 20130731 1 900000000000207008 119392008 430232008 0 116680003 900000000000011006 900000000000451002 +4739400023 20210930 0 900000000000207008 119392008 430232008 0 116680003 900000000000011006 900000000000451002 +4739597029 20130731 1 900000000000207008 258530009 257261003 0 116680003 900000000000011006 900000000000451002 +4739735021 20130731 1 900000000000207008 128156008 119376003 0 116680003 900000000000011006 900000000000451002 +4739735021 20190731 0 900000000000207008 128156008 119376003 0 116680003 900000000000011006 900000000000451002 +4739879025 20130731 1 900000000000207008 432980007 122550002 0 116680003 900000000000011006 900000000000451002 +4740062029 20130731 1 900000000000207008 432143000 122550002 0 116680003 900000000000011006 900000000000451002 +4740331022 20130731 1 900000000000207008 438336007 413675001 2 370133003 900000000000011006 900000000000451002 +4740331022 20220630 0 900000000000207008 438336007 413675001 2 370133003 900000000000011006 900000000000451002 +4740332026 20130731 1 900000000000207008 438336007 14742008 2 118169006 900000000000011006 900000000000451002 +4740332026 20220630 0 900000000000207008 438336007 14742008 2 118169006 900000000000011006 900000000000451002 +4740483025 20130731 1 900000000000207008 431696005 122550002 0 116680003 900000000000011006 900000000000451002 +4740532027 20130731 1 900000000000207008 433120004 431412004 0 116680003 900000000000011006 900000000000451002 +4740533021 20130731 1 900000000000207008 433120004 122550002 0 116680003 900000000000011006 900000000000451002 +4740691027 20130731 1 900000000000207008 110963007 48469005 0 116680003 900000000000011006 900000000000451002 +4740691027 20210131 0 900000000000207008 110963007 48469005 0 116680003 900000000000011006 900000000000451002 +4740800023 20130731 1 900000000000207008 432136006 431412004 0 116680003 900000000000011006 900000000000451002 +4740801022 20130731 1 900000000000207008 432136006 122550002 0 116680003 900000000000011006 900000000000451002 +4762870022 20140131 1 900000000000207008 697988001 119339001 0 116680003 900000000000011006 900000000000451002 +4762871021 20140131 1 900000000000207008 697988001 39477002 0 370133003 900000000000011006 900000000000451002 +4762871021 20190731 1 900000000000207008 697988001 39477002 1 370133003 900000000000011006 900000000000451002 +4762872025 20140131 1 900000000000207008 697989009 445297001 0 116680003 900000000000011006 900000000000451002 +4762873024 20140131 1 900000000000207008 697989009 1797002 0 118169006 900000000000011006 900000000000451002 +4762873024 20190731 1 900000000000207008 697989009 1797002 1 118169006 900000000000011006 900000000000451002 +4762874029 20140131 1 900000000000207008 697989009 285570007 2 118171006 900000000000011006 900000000000451002 +4762874029 20220228 0 900000000000207008 697989009 285570007 2 118171006 900000000000011006 900000000000451002 +4762875028 20140131 1 900000000000207008 697989009 53342003 2 118169006 900000000000011006 900000000000451002 +4762875028 20220228 0 900000000000207008 697989009 53342003 2 118169006 900000000000011006 900000000000451002 +4766856020 20140131 1 900000000000207008 698276005 122575003 0 116680003 900000000000011006 900000000000451002 +4766857027 20140131 1 900000000000207008 698276005 450874000 1 118171006 900000000000011006 900000000000451002 +4766858021 20140131 1 900000000000207008 698276005 431938005 1 118169006 900000000000011006 900000000000451002 +4766859029 20140131 1 900000000000207008 698276005 78014005 1 370133003 900000000000011006 900000000000451002 +4775769020 20140131 1 900000000000207008 699283007 258574006 0 116680003 900000000000011006 900000000000451002 +4775770021 20140131 1 900000000000207008 699283007 447589008 0 116680003 900000000000011006 900000000000451002 +4775773023 20140131 1 900000000000207008 699283007 78014005 2 370133003 900000000000011006 900000000000451002 +4775776026 20140131 1 900000000000207008 699283007 78014005 3 370133003 900000000000011006 900000000000451002 +4775777024 20140131 1 900000000000207008 699284001 122880004 0 116680003 900000000000011006 900000000000451002 +4775778025 20140131 1 900000000000207008 699284001 258575007 0 116680003 900000000000011006 900000000000451002 +4775779022 20140131 1 900000000000207008 699284001 258574006 0 116680003 900000000000011006 900000000000451002 +4775781024 20140131 1 900000000000207008 699284001 431938005 3 118169006 900000000000011006 900000000000451002 +4775782028 20140131 1 900000000000207008 699284001 78014005 3 370133003 900000000000011006 900000000000451002 +4775784027 20140131 1 900000000000207008 699284001 431938005 4 118169006 900000000000011006 900000000000451002 +4775785026 20140131 1 900000000000207008 699284001 78014005 4 370133003 900000000000011006 900000000000451002 +4775786025 20140131 1 900000000000207008 699284001 73416001 5 118171006 900000000000011006 900000000000451002 +4775787023 20140131 1 900000000000207008 699284001 431938005 5 118169006 900000000000011006 900000000000451002 +4775788029 20140131 1 900000000000207008 699284001 78014005 5 370133003 900000000000011006 900000000000451002 +4775789021 20140131 1 900000000000207008 699285000 446130001 0 116680003 900000000000011006 900000000000451002 +4775790028 20140131 1 900000000000207008 699285000 89837001 1 118169006 900000000000011006 900000000000451002 +4775790028 20180131 0 900000000000207008 699285000 89837001 1 118169006 900000000000011006 900000000000451002 +4775790028 20230331 1 900000000000207008 699285000 89837001 1 118169006 900000000000011006 900000000000451002 +4775791029 20140131 1 900000000000207008 699285000 78014005 1 370133003 900000000000011006 900000000000451002 +4775791029 20180131 0 900000000000207008 699285000 78014005 1 370133003 900000000000011006 900000000000451002 +4775791029 20230331 1 900000000000207008 699285000 78014005 1 370133003 900000000000011006 900000000000451002 +4775792020 20140131 1 900000000000207008 699286004 446907008 0 116680003 900000000000011006 900000000000451002 +4775793026 20140131 1 900000000000207008 699286004 431938005 2 118169006 900000000000011006 900000000000451002 +4775794021 20140131 1 900000000000207008 699286004 78014005 2 370133003 900000000000011006 900000000000451002 +4775795022 20140131 1 900000000000207008 699286004 64033007 3 118169006 900000000000011006 900000000000451002 +4775796023 20140131 1 900000000000207008 699286004 78014005 3 370133003 900000000000011006 900000000000451002 +4775798024 20140131 1 900000000000207008 699287008 698087006 1 118171006 900000000000011006 900000000000451002 +4775799027 20140131 1 900000000000207008 699287008 89837001 1 118169006 900000000000011006 900000000000451002 +4775800028 20140131 1 900000000000207008 699287008 78014005 1 370133003 900000000000011006 900000000000451002 +4776093025 20140131 1 900000000000207008 699283007 225271002 2 118171006 900000000000011006 900000000000451002 +4776094020 20140131 1 900000000000207008 699283007 431938005 2 118169006 900000000000011006 900000000000451002 +4776095021 20140131 1 900000000000207008 699283007 410024004 3 118171006 900000000000011006 900000000000451002 +4776096022 20140131 1 900000000000207008 699283007 89837001 3 118169006 900000000000011006 900000000000451002 +4776809021 20140131 1 900000000000207008 699284001 225111001 3 118171006 900000000000011006 900000000000451002 +4778290025 20140131 1 900000000000207008 441710009 86482007 2 118171006 900000000000011006 900000000000451002 +4778291026 20140131 1 900000000000207008 441710009 40689003 2 118169006 900000000000011006 900000000000451002 +4778319027 20140131 1 900000000000207008 122729009 116168005 2 118171006 900000000000011006 900000000000451002 +4778320022 20140131 1 900000000000207008 122729009 40689003 2 118169006 900000000000011006 900000000000451002 +4778323024 20140131 1 900000000000207008 472861000 285570007 2 118171006 900000000000011006 900000000000451002 +4778324029 20140131 1 900000000000207008 472861000 40689003 2 118169006 900000000000011006 900000000000451002 +4778348022 20140131 1 900000000000207008 309140003 309052008 0 116680003 900000000000011006 900000000000451002 +4778366028 20140131 1 900000000000207008 309138008 120001005 2 118171006 900000000000011006 900000000000451002 +4778367021 20140131 1 900000000000207008 309138008 40689003 2 118169006 900000000000011006 900000000000451002 +4778368027 20140131 1 900000000000207008 309138008 413675001 2 370133003 900000000000011006 900000000000451002 +4778377023 20140131 1 900000000000207008 309137003 118958009 2 118171006 900000000000011006 900000000000451002 +4778378029 20140131 1 900000000000207008 309137003 40689003 2 118169006 900000000000011006 900000000000451002 +4778426028 20140131 1 900000000000207008 122730004 116169002 2 118171006 900000000000011006 900000000000451002 +4778427021 20140131 1 900000000000207008 122730004 40689003 2 118169006 900000000000011006 900000000000451002 +4778468028 20140131 1 900000000000207008 122728001 118958009 2 118171006 900000000000011006 900000000000451002 +4778469020 20140131 1 900000000000207008 122728001 40689003 2 118169006 900000000000011006 900000000000451002 +4778471020 20140131 1 900000000000207008 128154006 258567001 0 116680003 900000000000011006 900000000000451002 +4778472029 20140131 1 900000000000207008 128154006 40689003 0 118169006 900000000000011006 900000000000451002 +4778472029 20190731 1 900000000000207008 128154006 40689003 1 118169006 900000000000011006 900000000000451002 +4778473023 20140131 1 900000000000207008 127475005 258422006 0 116680003 900000000000011006 900000000000451002 +4778474028 20140131 1 900000000000207008 127475005 40689003 2 118169006 900000000000011006 900000000000451002 +4778475027 20140131 1 900000000000207008 127475005 413675001 2 370133003 900000000000011006 900000000000451002 +4779896022 20140131 1 900000000000207008 699284001 225271002 4 118171006 900000000000011006 900000000000451002 +4780760026 20140131 1 900000000000207008 119391001 430232008 0 116680003 900000000000011006 900000000000451002 +4781776026 20140131 1 900000000000207008 432135005 431412004 0 116680003 900000000000011006 900000000000451002 +4781777024 20140131 1 900000000000207008 432135005 122550002 0 116680003 900000000000011006 900000000000451002 +4781873027 20140131 1 900000000000207008 608860007 443654002 0 116680003 900000000000011006 900000000000451002 +4781874022 20140131 1 900000000000207008 608860007 52731004 0 118169006 900000000000011006 900000000000451002 +4781874022 20190731 1 900000000000207008 608860007 52731004 2 118169006 900000000000011006 900000000000451002 +4781874022 20200131 0 900000000000207008 608860007 52731004 1 118169006 900000000000011006 900000000000451002 +4781993020 20140131 1 900000000000207008 430250001 430232008 0 116680003 900000000000011006 900000000000451002 +4782147020 20140131 1 900000000000207008 432384008 122550002 0 116680003 900000000000011006 900000000000451002 +4782162022 20140131 1 900000000000207008 433116003 122550002 0 116680003 900000000000011006 900000000000451002 +4782222029 20140131 1 900000000000207008 608856009 443654002 0 116680003 900000000000011006 900000000000451002 +4782222029 20210131 0 900000000000207008 608856009 443654002 0 116680003 900000000000011006 900000000000451002 +4782223023 20140131 1 900000000000207008 608856009 52731004 0 118169006 900000000000011006 900000000000451002 +4782223023 20190731 1 900000000000207008 608856009 52731004 2 118169006 900000000000011006 900000000000451002 +4782223023 20200131 0 900000000000207008 608856009 52731004 1 118169006 900000000000011006 900000000000451002 +4782226026 20140131 1 900000000000207008 119383005 430232008 0 116680003 900000000000011006 900000000000451002 +4782614028 20140131 1 900000000000207008 122671002 433118002 0 116680003 900000000000011006 900000000000451002 +4782717028 20140131 1 900000000000207008 432098008 122550002 0 116680003 900000000000011006 900000000000451002 +4782718022 20140131 1 900000000000207008 432383002 122550002 0 116680003 900000000000011006 900000000000451002 +4782772026 20140131 1 900000000000207008 447881000 430232008 0 116680003 900000000000011006 900000000000451002 +4782795024 20140131 1 900000000000207008 127473003 433323009 0 116680003 900000000000011006 900000000000451002 +4782821025 20140131 1 900000000000207008 119379005 430232008 0 116680003 900000000000011006 900000000000451002 +4782825023 20140131 1 900000000000207008 309269002 434244002 0 116680003 900000000000011006 900000000000451002 +4782849021 20140131 1 900000000000207008 431406009 122550002 0 116680003 900000000000011006 900000000000451002 +4782849021 20190731 0 900000000000207008 431406009 122550002 0 116680003 900000000000011006 900000000000451002 +4782900026 20140131 1 900000000000207008 608840004 430232008 0 116680003 900000000000011006 900000000000451002 +4783011025 20140131 1 900000000000207008 432420000 122550002 0 116680003 900000000000011006 900000000000451002 +4783037027 20140131 1 900000000000207008 127474009 438803004 0 116680003 900000000000011006 900000000000451002 +4783075027 20140131 1 900000000000207008 431884001 431412004 0 116680003 900000000000011006 900000000000451002 +4783076026 20140131 1 900000000000207008 431884001 122550002 0 116680003 900000000000011006 900000000000451002 +4783183024 20140131 1 900000000000207008 127458004 430232008 0 116680003 900000000000011006 900000000000451002 +4783198021 20140131 1 900000000000207008 433326001 430232008 0 116680003 900000000000011006 900000000000451002 +4783292028 20140131 1 900000000000207008 432864003 431412004 0 116680003 900000000000011006 900000000000451002 +4783293022 20140131 1 900000000000207008 432864003 122550002 0 116680003 900000000000011006 900000000000451002 +4783296025 20140131 1 900000000000207008 433308004 430232008 0 116680003 900000000000011006 900000000000451002 +4783571027 20140131 1 900000000000207008 127469001 430232008 0 116680003 900000000000011006 900000000000451002 +4783571027 20190731 0 900000000000207008 127469001 430232008 0 116680003 900000000000011006 900000000000451002 +4787637027 20140131 1 900000000000207008 699868006 472919007 0 116680003 900000000000011006 900000000000451002 +4787638021 20140131 1 900000000000207008 699868006 472917009 1 118171006 900000000000011006 900000000000451002 +4787639029 20140131 1 900000000000207008 699868006 27065002 1 118170007 900000000000011006 900000000000451002 +4787639029 20210131 0 900000000000207008 699868006 27065002 1 118170007 900000000000011006 900000000000451002 +4787674028 20140131 1 900000000000207008 699874006 430244006 0 116680003 900000000000011006 900000000000451002 +4788038023 20140131 1 900000000000207008 397134003 53065001 0 118169006 900000000000011006 900000000000451002 +4788038023 20190731 0 900000000000207008 397134003 53065001 0 118169006 900000000000011006 900000000000451002 +4788056023 20140131 1 900000000000207008 258523003 285570007 2 118171006 900000000000011006 900000000000451002 +4788056023 20190731 0 900000000000207008 258523003 285570007 2 118171006 900000000000011006 900000000000451002 +4788057025 20140131 1 900000000000207008 258523003 53065001 2 118169006 900000000000011006 900000000000451002 +4788057025 20190731 0 900000000000207008 258523003 53065001 2 118169006 900000000000011006 900000000000451002 +4788166028 20140131 1 900000000000207008 397132004 53065001 0 118169006 900000000000011006 900000000000451002 +4788166028 20190731 0 900000000000207008 397132004 53065001 0 118169006 900000000000011006 900000000000451002 +4788225021 20140131 1 900000000000207008 110945007 53065001 0 118169006 900000000000011006 900000000000451002 +4788225021 20190731 0 900000000000207008 110945007 53065001 0 118169006 900000000000011006 900000000000451002 +4788238029 20140131 1 900000000000207008 397133009 53065001 0 118169006 900000000000011006 900000000000451002 +4788238029 20190731 0 900000000000207008 397133009 53065001 0 118169006 900000000000011006 900000000000451002 +4788244025 20140131 1 900000000000207008 369618002 309278008 0 116680003 900000000000011006 900000000000451002 +4788244025 20190731 0 900000000000207008 369618002 309278008 0 116680003 900000000000011006 900000000000451002 +4788245029 20140131 1 900000000000207008 369618002 53065001 2 118169006 900000000000011006 900000000000451002 +4788245029 20190731 0 900000000000207008 369618002 53065001 2 118169006 900000000000011006 900000000000451002 +4788246028 20140131 1 900000000000207008 369618002 413675001 2 370133003 900000000000011006 900000000000451002 +4788246028 20190731 0 900000000000207008 369618002 413675001 2 370133003 900000000000011006 900000000000451002 +4788290022 20140131 1 900000000000207008 399486006 119376003 0 116680003 900000000000011006 900000000000451002 +4788290022 20190731 0 900000000000207008 399486006 119376003 0 116680003 900000000000011006 900000000000451002 +4788291021 20140131 1 900000000000207008 399486006 53065001 0 118169006 900000000000011006 900000000000451002 +4788291021 20190731 0 900000000000207008 399486006 53065001 0 118169006 900000000000011006 900000000000451002 +4788331022 20140131 1 900000000000207008 397129002 309053003 0 116680003 900000000000011006 900000000000451002 +4788331022 20190731 0 900000000000207008 397129002 309053003 0 116680003 900000000000011006 900000000000451002 +4788332026 20140131 1 900000000000207008 397129002 53065001 0 118169006 900000000000011006 900000000000451002 +4788332026 20190731 0 900000000000207008 397129002 53065001 0 118169006 900000000000011006 900000000000451002 +4788473029 20140131 1 900000000000207008 397130007 53065001 0 118169006 900000000000011006 900000000000451002 +4788473029 20190731 0 900000000000207008 397130007 53065001 0 118169006 900000000000011006 900000000000451002 +4788477028 20140131 1 900000000000207008 397131006 53065001 0 118169006 900000000000011006 900000000000451002 +4788477028 20190731 0 900000000000207008 397131006 53065001 0 118169006 900000000000011006 900000000000451002 +4788744026 20140131 1 900000000000207008 309070006 53065001 0 118169006 900000000000011006 900000000000451002 +4788744026 20190731 0 900000000000207008 309070006 53065001 0 118169006 900000000000011006 900000000000451002 +4789557028 20140131 1 900000000000207008 258426009 309278008 0 116680003 900000000000011006 900000000000451002 +4789557028 20190731 0 900000000000207008 258426009 309278008 0 116680003 900000000000011006 900000000000451002 +4789649020 20140131 1 900000000000207008 309293007 258415003 0 116680003 900000000000011006 900000000000451002 +4789653022 20140131 1 900000000000207008 119403008 123038009 0 116680003 900000000000011006 900000000000451002 +4789666022 20140131 1 900000000000207008 472885008 285570007 2 118171006 900000000000011006 900000000000451002 +4789666022 20221231 0 900000000000207008 472885008 285570007 2 118171006 900000000000011006 900000000000451002 +4789667029 20140131 1 900000000000207008 472885008 420226006 2 118168003 900000000000011006 900000000000451002 +4789667029 20221231 0 900000000000207008 472885008 420226006 2 118168003 900000000000011006 900000000000451002 +4789668023 20140131 1 900000000000207008 472885008 39937001 2 118169006 900000000000011006 900000000000451002 +4789668023 20221231 0 900000000000207008 472885008 39937001 2 118169006 900000000000011006 900000000000451002 +4789669026 20140131 1 900000000000207008 472879001 257261003 0 116680003 900000000000011006 900000000000451002 +4789705026 20140131 1 900000000000207008 258565009 309053003 0 116680003 900000000000011006 900000000000451002 +4789705026 20190731 0 900000000000207008 258565009 309053003 0 116680003 900000000000011006 900000000000451002 +4790408022 20140131 1 900000000000207008 309107007 309104000 0 116680003 900000000000011006 900000000000451002 +4790719024 20140131 1 900000000000207008 309113003 258415003 0 116680003 900000000000011006 900000000000451002 +4790719024 20190131 0 900000000000207008 309113003 258415003 0 116680003 900000000000011006 900000000000451002 +4790804026 20140131 1 900000000000207008 309108002 439479000 0 116680003 900000000000011006 900000000000451002 +4790804026 20190131 0 900000000000207008 309108002 439479000 0 116680003 900000000000011006 900000000000451002 +4792044028 20140131 1 900000000000207008 127459007 430232008 0 116680003 900000000000011006 900000000000451002 +4792509024 20140131 1 900000000000207008 472895001 472864008 0 116680003 900000000000011006 900000000000451002 +4792604023 20140131 1 900000000000207008 432986001 74262004 0 118169006 900000000000011006 900000000000451002 +4792604023 20190731 1 900000000000207008 432986001 74262004 2 118169006 900000000000011006 900000000000451002 +4792604023 20240501 0 900000000000207008 432986001 74262004 2 118169006 900000000000011006 900000000000451002 +4792617021 20140131 1 900000000000207008 472866005 430220009 0 116680003 900000000000011006 900000000000451002 +4792617021 20200731 0 900000000000207008 472866005 430220009 0 116680003 900000000000011006 900000000000451002 +4792618027 20140131 1 900000000000207008 472866005 309072003 0 116680003 900000000000011006 900000000000451002 +4792618027 20210131 0 900000000000207008 472866005 309072003 0 116680003 900000000000011006 900000000000451002 +4792619024 20140131 1 900000000000207008 472866005 363311008 0 116680003 900000000000011006 900000000000451002 +4792619024 20240501 0 900000000000207008 472866005 363311008 0 116680003 900000000000011006 900000000000451002 +4792912029 20140131 1 900000000000207008 258564008 74262004 0 118169006 900000000000011006 900000000000451002 +4792912029 20190731 1 900000000000207008 258564008 74262004 2 118169006 900000000000011006 900000000000451002 +4792912029 20220630 0 900000000000207008 258564008 74262004 2 118169006 900000000000011006 900000000000451002 +4792932028 20140131 1 900000000000207008 473400004 430220009 0 116680003 900000000000011006 900000000000451002 +4792932028 20200731 0 900000000000207008 473400004 430220009 0 116680003 900000000000011006 900000000000451002 +4792933022 20140131 1 900000000000207008 473400004 363311008 0 116680003 900000000000011006 900000000000451002 +4792933022 20240501 0 900000000000207008 473400004 363311008 0 116680003 900000000000011006 900000000000451002 +4793000024 20140131 1 900000000000207008 472900002 430220009 0 116680003 900000000000011006 900000000000451002 +4793000024 20200731 0 900000000000207008 472900002 430220009 0 116680003 900000000000011006 900000000000451002 +4793001023 20140131 1 900000000000207008 472900002 363311008 0 116680003 900000000000011006 900000000000451002 +4793135023 20140131 1 900000000000207008 258559009 74262004 2 118169006 900000000000011006 900000000000451002 +4793135023 20220630 0 900000000000207008 258559009 74262004 2 118169006 900000000000011006 900000000000451002 +4793136024 20140131 1 900000000000207008 258559009 386093002 2 370133003 900000000000011006 900000000000451002 +4793136024 20220630 0 900000000000207008 258559009 386093002 2 370133003 900000000000011006 900000000000451002 +4793182027 20140131 1 900000000000207008 430249001 74262004 0 118169006 900000000000011006 900000000000451002 +4793182027 20190731 1 900000000000207008 430249001 74262004 2 118169006 900000000000011006 900000000000451002 +4793182027 20240501 0 900000000000207008 430249001 74262004 2 118169006 900000000000011006 900000000000451002 +4793187022 20140131 1 900000000000207008 409876003 309185002 0 116680003 900000000000011006 900000000000451002 +4793187022 20220630 0 900000000000207008 409876003 309185002 0 116680003 900000000000011006 900000000000451002 +4793188028 20140131 1 900000000000207008 409876003 74262004 0 118169006 900000000000011006 900000000000451002 +4793188028 20190731 1 900000000000207008 409876003 74262004 2 118169006 900000000000011006 900000000000451002 +4793188028 20220630 0 900000000000207008 409876003 74262004 2 118169006 900000000000011006 900000000000451002 +4793201029 20140131 1 900000000000207008 430133009 430220009 0 116680003 900000000000011006 900000000000451002 +4793201029 20240701 0 900000000000207008 430133009 430220009 0 116680003 900000000000011006 900000000000451002 +4793202020 20140131 1 900000000000207008 430133009 363311008 0 116680003 900000000000011006 900000000000451002 +4793847025 20140131 1 900000000000207008 430319000 74262004 0 118169006 900000000000011006 900000000000451002 +4793847025 20190731 1 900000000000207008 430319000 74262004 2 118169006 900000000000011006 900000000000451002 +4793847025 20240501 0 900000000000207008 430319000 74262004 2 118169006 900000000000011006 900000000000451002 +4794032025 20140131 1 900000000000207008 309187005 74262004 2 118169006 900000000000011006 900000000000451002 +4794032025 20220630 0 900000000000207008 309187005 74262004 2 118169006 900000000000011006 900000000000451002 +4794033024 20140131 1 900000000000207008 309187005 413675001 2 370133003 900000000000011006 900000000000451002 +4794033024 20220630 0 900000000000207008 309187005 413675001 2 370133003 900000000000011006 900000000000451002 +4794217025 20140131 1 900000000000207008 119338009 74262004 0 118169006 900000000000011006 900000000000451002 +4794217025 20190731 1 900000000000207008 119338009 74262004 2 118169006 900000000000011006 900000000000451002 +4794217025 20240501 0 900000000000207008 119338009 74262004 2 118169006 900000000000011006 900000000000451002 +4794592020 20140131 1 900000000000207008 438805006 74262004 0 118169006 900000000000011006 900000000000451002 +4794592020 20190731 1 900000000000207008 438805006 74262004 2 118169006 900000000000011006 900000000000451002 +4794592020 20240501 0 900000000000207008 438805006 74262004 2 118169006 900000000000011006 900000000000451002 +4794608020 20140131 1 900000000000207008 309189008 74262004 0 118169006 900000000000011006 900000000000451002 +4794608020 20190731 1 900000000000207008 309189008 74262004 2 118169006 900000000000011006 900000000000451002 +4794608020 20220630 0 900000000000207008 309189008 74262004 2 118169006 900000000000011006 900000000000451002 +4795865029 20140131 1 900000000000207008 446128003 608870009 0 116680003 900000000000011006 900000000000451002 +4795865029 20150731 0 900000000000207008 446128003 608870009 0 116680003 900000000000011006 900000000000451002 +4796120025 20140131 1 900000000000207008 472899007 258525005 0 116680003 900000000000011006 900000000000451002 +4796120025 20190731 0 900000000000207008 472899007 258525005 0 116680003 900000000000011006 900000000000451002 +4796163027 20140131 1 900000000000207008 472878009 608870009 0 116680003 900000000000011006 900000000000451002 +4796163027 20190731 0 900000000000207008 472878009 608870009 0 116680003 900000000000011006 900000000000451002 +4796164022 20140131 1 900000000000207008 472878009 258525005 0 116680003 900000000000011006 900000000000451002 +4796164022 20190731 0 900000000000207008 472878009 258525005 0 116680003 900000000000011006 900000000000451002 +4797172027 20140131 1 900000000000207008 699287008 122565001 0 116680003 900000000000011006 900000000000451002 +4797173021 20140131 1 900000000000207008 699287008 446130001 0 116680003 900000000000011006 900000000000451002 +4799000027 20140131 1 900000000000207008 397462000 699874006 0 116680003 900000000000011006 900000000000451002 +4799195025 20140131 1 900000000000207008 699874006 119376003 0 116680003 900000000000011006 900000000000451002 +4799196029 20140131 1 900000000000207008 699874006 76848001 1 118169006 900000000000011006 900000000000451002 +4799197022 20140131 1 900000000000207008 699874006 413675001 1 370133003 900000000000011006 900000000000451002 +5009443028 20140731 1 900000000000207008 702701006 608870009 0 116680003 900000000000011006 900000000000451002 +5009444023 20140731 1 900000000000207008 702701006 413344004 0 118169006 900000000000011006 900000000000451002 +5009444023 20190731 1 900000000000207008 702701006 413344004 1 118169006 900000000000011006 900000000000451002 +5042304028 20140731 1 900000000000207008 703430008 122556008 0 116680003 900000000000011006 900000000000451002 +5042305027 20140731 1 900000000000207008 703430008 408728001 1 118169006 900000000000011006 900000000000451002 +5042306026 20140731 1 900000000000207008 703430008 12499000 1 370133003 900000000000011006 900000000000451002 +5042306026 20220228 0 900000000000207008 703430008 12499000 1 370133003 900000000000011006 900000000000451002 +5042307024 20140731 1 900000000000207008 703431007 122556008 0 116680003 900000000000011006 900000000000451002 +5042308025 20140731 1 900000000000207008 703431007 408728001 1 118169006 900000000000011006 900000000000451002 +5042309022 20140731 1 900000000000207008 703431007 12499000 1 370133003 900000000000011006 900000000000451002 +5042309022 20220228 0 900000000000207008 703431007 12499000 1 370133003 900000000000011006 900000000000451002 +5042402025 20140731 1 900000000000207008 703475006 420548004 0 116680003 900000000000011006 900000000000451002 +5042402025 20230630 0 900000000000207008 703475006 420548004 0 116680003 900000000000011006 900000000000451002 +5042403024 20140731 1 900000000000207008 703475006 119376003 0 116680003 900000000000011006 900000000000451002 +5042403024 20230630 0 900000000000207008 703475006 119376003 0 116680003 900000000000011006 900000000000451002 +5042404029 20140731 1 900000000000207008 703475006 27925004 1 118168003 900000000000011006 900000000000451002 +5042405028 20140731 1 900000000000207008 703475006 413675001 1 370133003 900000000000011006 900000000000451002 +5046872024 20140731 1 900000000000207008 703691002 258450006 0 116680003 900000000000011006 900000000000451002 +5046873025 20140731 1 900000000000207008 703691002 279107003 1 118169006 900000000000011006 900000000000451002 +5046874020 20140731 1 900000000000207008 703691002 65216001 1 370133003 900000000000011006 900000000000451002 +5049483023 20140731 1 900000000000207008 703432000 119361006 0 116680003 900000000000011006 900000000000451002 +5049484028 20140731 1 900000000000207008 703432000 703851003 0 370133003 900000000000011006 900000000000451002 +5049484028 20190731 1 900000000000207008 703432000 703851003 1 370133003 900000000000011006 900000000000451002 +5973040029 20150131 1 900000000000207008 708285007 258433009 0 116680003 900000000000011006 900000000000451002 +5973041025 20150131 1 900000000000207008 708285007 448895004 0 118171006 900000000000011006 900000000000451002 +5973041025 20190731 1 900000000000207008 708285007 448895004 1 118171006 900000000000011006 900000000000451002 +5976963026 20150131 1 900000000000207008 705054005 123038009 0 116680003 900000000000011006 900000000000451002 +5976964021 20150131 1 900000000000207008 705054005 71616004 0 118169006 900000000000011006 900000000000451002 +5976964021 20190731 1 900000000000207008 705054005 71616004 1 118169006 900000000000011006 900000000000451002 +5977452028 20150131 1 900000000000207008 708048008 119361006 0 116680003 900000000000011006 900000000000451002 +5977453022 20150131 1 900000000000207008 708048008 50863008 0 370133003 900000000000011006 900000000000451002 +5977453022 20190731 1 900000000000207008 708048008 50863008 2 370133003 900000000000011006 900000000000451002 +5979566026 20150131 1 900000000000207008 708049000 119361006 0 116680003 900000000000011006 900000000000451002 +5979567024 20150131 1 900000000000207008 708049000 50863008 0 370133003 900000000000011006 900000000000451002 +5979567024 20190731 1 900000000000207008 708049000 50863008 2 370133003 900000000000011006 900000000000451002 +5981455025 20150131 1 900000000000207008 704243004 123038009 0 116680003 900000000000011006 900000000000451002 +5981978028 20150131 1 900000000000207008 472862007 52988006 2 118168003 900000000000011006 900000000000451002 +5983388027 20150131 1 900000000000207008 708111001 119318008 0 116680003 900000000000011006 900000000000451002 +5983389024 20150131 1 900000000000207008 708111001 11713004 0 370133003 900000000000011006 900000000000451002 +5983389024 20190731 1 900000000000207008 708111001 11713004 1 370133003 900000000000011006 900000000000451002 +5983390026 20150131 1 900000000000207008 708111001 33463005 0 370133003 900000000000011006 900000000000451002 +5983390026 20190731 1 900000000000207008 708111001 33463005 2 370133003 900000000000011006 900000000000451002 +5983562029 20150131 1 900000000000207008 704663000 258617003 0 116680003 900000000000011006 900000000000451002 +5984066028 20150131 1 900000000000207008 708112008 119295008 0 116680003 900000000000011006 900000000000451002 +5984066028 20150731 0 900000000000207008 708112008 119295008 0 116680003 900000000000011006 900000000000451002 +5984067021 20150131 1 900000000000207008 708112008 309051001 0 116680003 900000000000011006 900000000000451002 +5984068027 20150131 1 900000000000207008 708112008 430250001 0 116680003 900000000000011006 900000000000451002 +5984068027 20150731 0 900000000000207008 708112008 430250001 0 116680003 900000000000011006 900000000000451002 +5984069024 20150131 1 900000000000207008 708112008 53843000 1 118169006 900000000000011006 900000000000451002 +5984070020 20150131 1 900000000000207008 708112008 176747002 1 118171006 900000000000011006 900000000000451002 +5984071024 20150131 1 900000000000207008 708112008 32457005 1 370133003 900000000000011006 900000000000451002 +5985629026 20150131 1 900000000000207008 708110000 119318008 0 116680003 900000000000011006 900000000000451002 +5985630020 20150131 1 900000000000207008 708110000 11713004 0 370133003 900000000000011006 900000000000451002 +5985630020 20190731 1 900000000000207008 708110000 11713004 1 370133003 900000000000011006 900000000000451002 +5985631024 20150131 1 900000000000207008 708110000 33463005 0 370133003 900000000000011006 900000000000451002 +5985631024 20190731 1 900000000000207008 708110000 33463005 2 370133003 900000000000011006 900000000000451002 +5991040025 20150131 1 900000000000207008 122699006 52988006 2 118168003 900000000000011006 900000000000451002 +5991409025 20150131 1 900000000000207008 258560004 441620008 0 116680003 900000000000011006 900000000000451002 +5991409025 20220630 0 900000000000207008 258560004 441620008 0 116680003 900000000000011006 900000000000451002 +5991410024 20150131 1 900000000000207008 258560004 32457005 2 370133003 900000000000011006 900000000000451002 +5991410024 20220630 0 900000000000207008 258560004 32457005 2 370133003 900000000000011006 900000000000451002 +5991861020 20150131 1 900000000000207008 708317005 258528007 0 116680003 900000000000011006 900000000000451002 +5991862029 20150131 1 900000000000207008 708317005 472899007 0 116680003 900000000000011006 900000000000451002 +5991863023 20150131 1 900000000000207008 708317005 34402009 2 118169006 900000000000011006 900000000000451002 +5991864028 20150131 1 900000000000207008 708317005 285570007 2 118171006 900000000000011006 900000000000451002 +5991865027 20150131 1 900000000000207008 708317005 18857001 3 118169006 900000000000011006 900000000000451002 +5991866026 20150131 1 900000000000207008 708317005 285570007 3 118171006 900000000000011006 900000000000451002 +6020913029 20150731 1 900000000000207008 709024005 123038009 0 116680003 900000000000011006 900000000000451002 +6033663026 20150731 1 900000000000207008 258521001 301805004 2 118171006 900000000000011006 900000000000451002 +6033664021 20150731 1 900000000000207008 258521001 29038004 2 118169006 900000000000011006 900000000000451002 +6033888020 20150731 1 900000000000207008 258522008 312877002 2 118171006 900000000000011006 900000000000451002 +6033889028 20150731 1 900000000000207008 258522008 48001003 2 118169006 900000000000011006 900000000000451002 +6048419027 20150731 1 900000000000207008 710069003 258617003 0 116680003 900000000000011006 900000000000451002 +6227454026 20150731 1 900000000000207008 445421007 119319000 0 116680003 900000000000011006 900000000000451002 +6227454026 20170731 0 900000000000207008 445421007 119319000 0 116680003 900000000000011006 900000000000451002 +6227571027 20150731 1 900000000000207008 119302002 119319000 0 116680003 900000000000011006 900000000000451002 +6227571027 20170731 0 900000000000207008 119302002 119319000 0 116680003 900000000000011006 900000000000451002 +6269835026 20150731 1 900000000000207008 16213651000119102 608842007 0 116680003 900000000000011006 900000000000451002 +6269836025 20150731 1 900000000000207008 16213651000119102 119369008 0 116680003 900000000000011006 900000000000451002 +6269837023 20150731 1 900000000000207008 16213651000119102 119380008 0 116680003 900000000000011006 900000000000451002 +6269838029 20150731 1 900000000000207008 16213651000119102 56208002 1 118168003 900000000000011006 900000000000451002 +6269839021 20150731 1 900000000000207008 16213651000119102 38848004 1 118169006 900000000000011006 900000000000451002 +6269843020 20150731 1 900000000000207008 16210531000119104 119369008 0 116680003 900000000000011006 900000000000451002 +6269844025 20150731 1 900000000000207008 16210531000119104 397129002 0 116680003 900000000000011006 900000000000451002 +6269845029 20150731 1 900000000000207008 16210531000119104 56208002 1 118168003 900000000000011006 900000000000451002 +6269846028 20150731 1 900000000000207008 16210531000119104 39117004 1 118169006 900000000000011006 900000000000451002 +6269855025 20150731 1 900000000000207008 16212851000119106 119369008 0 116680003 900000000000011006 900000000000451002 +6269856029 20150731 1 900000000000207008 16212851000119106 119400006 0 116680003 900000000000011006 900000000000451002 +6269857022 20150731 1 900000000000207008 16212851000119106 56208002 1 118168003 900000000000011006 900000000000451002 +6269858028 20150731 1 900000000000207008 16212851000119106 28726007 1 118169006 900000000000011006 900000000000451002 +6269932029 20150731 1 900000000000207008 16216371000119105 258433009 0 116680003 900000000000011006 900000000000451002 +6269933023 20150731 1 900000000000207008 16216371000119105 119392008 0 116680003 900000000000011006 900000000000451002 +6269934028 20150731 1 900000000000207008 16216371000119105 448895004 1 118171006 900000000000011006 900000000000451002 +6269935027 20150731 1 900000000000207008 16216371000119105 53505006 1 118169006 900000000000011006 900000000000451002 +6269936026 20150731 1 900000000000207008 16216331000119107 258450006 0 116680003 900000000000011006 900000000000451002 +6269937024 20150731 1 900000000000207008 16216331000119107 258433009 0 116680003 900000000000011006 900000000000451002 +6269938025 20150731 1 900000000000207008 16216331000119107 279107003 2 118169006 900000000000011006 900000000000451002 +6269939022 20150731 1 900000000000207008 16216331000119107 65216001 2 370133003 900000000000011006 900000000000451002 +6269940024 20150731 1 900000000000207008 16216331000119107 448895004 3 118171006 900000000000011006 900000000000451002 +6269941023 20150731 1 900000000000207008 16216331000119107 65216001 3 370133003 900000000000011006 900000000000451002 +6269942027 20150731 1 900000000000207008 16216411000119106 119401005 0 116680003 900000000000011006 900000000000451002 +6269943021 20150731 1 900000000000207008 16216411000119106 258433009 0 116680003 900000000000011006 900000000000451002 +6269944026 20150731 1 900000000000207008 16216411000119106 448895004 1 118171006 900000000000011006 900000000000451002 +6269945025 20150731 1 900000000000207008 16216411000119106 29445007 1 118169006 900000000000011006 900000000000451002 +6269946029 20150731 1 900000000000207008 16215131000119100 276446009 0 116680003 900000000000011006 900000000000451002 +6269947022 20150731 1 900000000000207008 16215131000119100 448895004 1 118171006 900000000000011006 900000000000451002 +6269948028 20150731 1 900000000000207008 16215131000119100 36973007 1 118169006 900000000000011006 900000000000451002 +6269949020 20150731 1 900000000000207008 16216291000119101 397129002 0 116680003 900000000000011006 900000000000451002 +6269950020 20150731 1 900000000000207008 16216291000119101 258433009 0 116680003 900000000000011006 900000000000451002 +6269951024 20150731 1 900000000000207008 16216291000119101 448895004 1 118171006 900000000000011006 900000000000451002 +6269952028 20150731 1 900000000000207008 16216291000119101 39117004 1 118169006 900000000000011006 900000000000451002 +6270055024 20150731 1 900000000000207008 16220971000119101 258453008 0 116680003 900000000000011006 900000000000451002 +6270056020 20150731 1 900000000000207008 16220971000119101 367643001 1 118168003 900000000000011006 900000000000451002 +6270056020 20170731 0 900000000000207008 16220971000119101 367643001 1 118168003 900000000000011006 900000000000451002 +6270057027 20150731 1 900000000000207008 16220971000119101 32457005 1 370133003 900000000000011006 900000000000451002 +6270057027 20170731 0 900000000000207008 16220971000119101 32457005 1 370133003 900000000000011006 900000000000451002 +6270060023 20150731 1 900000000000207008 16223931000119106 122550002 0 116680003 900000000000011006 900000000000451002 +6270062026 20150731 1 900000000000207008 16215211000119100 608870009 0 116680003 900000000000011006 900000000000451002 +6270062026 20190731 0 900000000000207008 16215211000119100 608870009 0 116680003 900000000000011006 900000000000451002 +6270064025 20150731 1 900000000000207008 16210211000119107 258455001 0 116680003 900000000000011006 900000000000451002 +6270065029 20150731 1 900000000000207008 16210211000119107 122462000 1 118171006 900000000000011006 900000000000451002 +6270067021 20150731 1 900000000000207008 16210251000119108 258455001 0 116680003 900000000000011006 900000000000451002 +6270068027 20150731 1 900000000000207008 16210251000119108 122462000 1 118171006 900000000000011006 900000000000451002 +6270071024 20150731 1 900000000000207008 16209291000119109 367643001 1 118168003 900000000000011006 900000000000451002 +6270071024 20170731 0 900000000000207008 16209291000119109 367643001 1 118168003 900000000000011006 900000000000451002 +6270072028 20150731 1 900000000000207008 16209291000119109 32457005 1 370133003 900000000000011006 900000000000451002 +6270072028 20170731 0 900000000000207008 16209291000119109 32457005 1 370133003 900000000000011006 900000000000451002 +6270073022 20150731 1 900000000000207008 16209251000119104 258453008 0 116680003 900000000000011006 900000000000451002 +6270074027 20150731 1 900000000000207008 16209251000119104 367643001 1 118168003 900000000000011006 900000000000451002 +6270074027 20170731 0 900000000000207008 16209251000119104 367643001 1 118168003 900000000000011006 900000000000451002 +6270075026 20150731 1 900000000000207008 16209251000119104 32457005 1 370133003 900000000000011006 900000000000451002 +6270075026 20170731 0 900000000000207008 16209251000119104 32457005 1 370133003 900000000000011006 900000000000451002 +6270076025 20150731 1 900000000000207008 16210291000119103 258455001 0 116680003 900000000000011006 900000000000451002 +6270079021 20150731 1 900000000000207008 16210331000119109 258455001 0 116680003 900000000000011006 900000000000451002 +6270082027 20150731 1 900000000000207008 16214171000119101 432825001 0 116680003 900000000000011006 900000000000451002 +6270083021 20150731 1 900000000000207008 16214171000119101 46242002 0 370133003 900000000000011006 900000000000451002 +6270083021 20190731 1 900000000000207008 16214171000119101 46242002 1 370133003 900000000000011006 900000000000451002 +6270084026 20150731 1 900000000000207008 16210371000119107 258455001 0 116680003 900000000000011006 900000000000451002 +6270087022 20150731 1 900000000000207008 16224371000119105 440674008 0 116680003 900000000000011006 900000000000451002 +6270089020 20150731 1 900000000000207008 16220931000119104 258453008 0 116680003 900000000000011006 900000000000451002 +6270090027 20150731 1 900000000000207008 16220931000119104 367643001 1 118168003 900000000000011006 900000000000451002 +6270090027 20170731 0 900000000000207008 16220931000119104 367643001 1 118168003 900000000000011006 900000000000451002 +6270091028 20150731 1 900000000000207008 16220931000119104 32457005 1 370133003 900000000000011006 900000000000451002 +6270091028 20170731 0 900000000000207008 16220931000119104 32457005 1 370133003 900000000000011006 900000000000451002 +6270106028 20150731 1 900000000000207008 16215611000119102 441903006 0 116680003 900000000000011006 900000000000451002 +6270107021 20150731 1 900000000000207008 16215611000119102 287571005 1 118171006 900000000000011006 900000000000451002 +6270110025 20150731 1 900000000000207008 16212531000119103 80657008 1 118171006 900000000000011006 900000000000451002 +6270112022 20150731 1 900000000000207008 16215291000119109 122609004 0 116680003 900000000000011006 900000000000451002 +6270113028 20150731 1 900000000000207008 16215291000119109 232595000 1 118171006 900000000000011006 900000000000451002 +6270113028 20190731 0 900000000000207008 16215291000119109 232595000 1 118171006 900000000000011006 900000000000451002 +6270115024 20150731 1 900000000000207008 16209931000119102 258607008 0 116680003 900000000000011006 900000000000451002 +6270116020 20150731 1 900000000000207008 16209931000119102 397394009 1 118171006 900000000000011006 900000000000451002 +6270116020 20170731 0 900000000000207008 16209931000119102 397394009 1 118171006 900000000000011006 900000000000451002 +6270118021 20150731 1 900000000000207008 16209931000119102 87200008 1 370133003 900000000000011006 900000000000451002 +6270118021 20170731 0 900000000000207008 16209931000119102 87200008 1 370133003 900000000000011006 900000000000451002 +6270122027 20150731 1 900000000000207008 16214491000119107 122614000 0 116680003 900000000000011006 900000000000451002 +6270123021 20150731 1 900000000000207008 16214491000119107 432231006 1 118171006 900000000000011006 900000000000451002 +6270125025 20150731 1 900000000000207008 16215571000119106 441903006 0 116680003 900000000000011006 900000000000451002 +6270126029 20150731 1 900000000000207008 16215571000119106 287571005 1 118171006 900000000000011006 900000000000451002 +6270129020 20150731 1 900000000000207008 16212571000119100 80657008 1 118171006 900000000000011006 900000000000451002 +6270131027 20150731 1 900000000000207008 16215451000119103 122609004 0 116680003 900000000000011006 900000000000451002 +6270131027 20190731 0 900000000000207008 16215451000119103 122609004 0 116680003 900000000000011006 900000000000451002 +6270132023 20150731 1 900000000000207008 16215451000119103 232595000 1 118171006 900000000000011006 900000000000451002 +6270132023 20230331 0 900000000000207008 16215451000119103 232595000 1 118171006 900000000000011006 900000000000451002 +6270134024 20150731 1 900000000000207008 16209891000119105 258607008 0 116680003 900000000000011006 900000000000451002 +6270135020 20150731 1 900000000000207008 16209891000119105 397394009 1 118171006 900000000000011006 900000000000451002 +6270135020 20170731 0 900000000000207008 16209891000119105 397394009 1 118171006 900000000000011006 900000000000451002 +6270137028 20150731 1 900000000000207008 16209891000119105 87200008 1 370133003 900000000000011006 900000000000451002 +6270137028 20170731 0 900000000000207008 16209891000119105 87200008 1 370133003 900000000000011006 900000000000451002 +6270141029 20150731 1 900000000000207008 16215691000119106 441903006 0 116680003 900000000000011006 900000000000451002 +6270142020 20150731 1 900000000000207008 16215691000119106 287571005 1 118171006 900000000000011006 900000000000451002 +6270145022 20150731 1 900000000000207008 16212411000119107 80657008 1 118171006 900000000000011006 900000000000451002 +6270147025 20150731 1 900000000000207008 16215251000119104 122609004 0 116680003 900000000000011006 900000000000451002 +6270147025 20190731 0 900000000000207008 16215251000119104 122609004 0 116680003 900000000000011006 900000000000451002 +6270148024 20150731 1 900000000000207008 16215251000119104 232595000 1 118171006 900000000000011006 900000000000451002 +6270148024 20230331 0 900000000000207008 16215251000119104 232595000 1 118171006 900000000000011006 900000000000451002 +6270150027 20150731 1 900000000000207008 16209851000119100 258607008 0 116680003 900000000000011006 900000000000451002 +6270151028 20150731 1 900000000000207008 16209851000119100 397394009 1 118171006 900000000000011006 900000000000451002 +6270151028 20170731 0 900000000000207008 16209851000119100 397394009 1 118171006 900000000000011006 900000000000451002 +6270153025 20150731 1 900000000000207008 16209851000119100 87200008 1 370133003 900000000000011006 900000000000451002 +6270153025 20170731 0 900000000000207008 16209851000119100 87200008 1 370133003 900000000000011006 900000000000451002 +6270157029 20150731 1 900000000000207008 16209691000119106 441917002 0 116680003 900000000000011006 900000000000451002 +6270157029 20190731 0 900000000000207008 16209691000119106 441917002 0 116680003 900000000000011006 900000000000451002 +6270158023 20150731 1 900000000000207008 16209691000119106 442148007 1 118171006 900000000000011006 900000000000451002 +6270158023 20170731 0 900000000000207008 16209691000119106 442148007 1 118171006 900000000000011006 900000000000451002 +6270160020 20150731 1 900000000000207008 16209691000119106 87200008 1 370133003 900000000000011006 900000000000451002 +6270160020 20170731 0 900000000000207008 16209691000119106 87200008 1 370133003 900000000000011006 900000000000451002 +6270161024 20150731 1 900000000000207008 16209731000119104 441917002 0 116680003 900000000000011006 900000000000451002 +6270161024 20190731 0 900000000000207008 16209731000119104 441917002 0 116680003 900000000000011006 900000000000451002 +6270162028 20150731 1 900000000000207008 16209731000119104 442148007 1 118171006 900000000000011006 900000000000451002 +6270162028 20170731 0 900000000000207008 16209731000119104 442148007 1 118171006 900000000000011006 900000000000451002 +6270164027 20150731 1 900000000000207008 16209731000119104 87200008 1 370133003 900000000000011006 900000000000451002 +6270164027 20170731 0 900000000000207008 16209731000119104 87200008 1 370133003 900000000000011006 900000000000451002 +6270170022 20150731 1 900000000000207008 16215651000119101 441903006 0 116680003 900000000000011006 900000000000451002 +6270171021 20150731 1 900000000000207008 16215651000119101 287571005 1 118171006 900000000000011006 900000000000451002 +6270174029 20150731 1 900000000000207008 16212451000119108 80657008 1 118171006 900000000000011006 900000000000451002 +6270176027 20150731 1 900000000000207008 16215411000119104 122609004 0 116680003 900000000000011006 900000000000451002 +6270177020 20150731 1 900000000000207008 16215411000119104 232595000 1 118171006 900000000000011006 900000000000451002 +6270177020 20190731 0 900000000000207008 16215411000119104 232595000 1 118171006 900000000000011006 900000000000451002 +6270179023 20150731 1 900000000000207008 16209771000119101 258607008 0 116680003 900000000000011006 900000000000451002 +6270180021 20150731 1 900000000000207008 16209771000119101 397394009 1 118171006 900000000000011006 900000000000451002 +6270180021 20170731 0 900000000000207008 16209771000119101 397394009 1 118171006 900000000000011006 900000000000451002 +6270182029 20150731 1 900000000000207008 16209771000119101 87200008 1 370133003 900000000000011006 900000000000451002 +6270182029 20170731 0 900000000000207008 16209771000119101 87200008 1 370133003 900000000000011006 900000000000451002 +6270186026 20150731 1 900000000000207008 16214451000119102 122614000 0 116680003 900000000000011006 900000000000451002 +6270187024 20150731 1 900000000000207008 16214451000119102 432231006 1 118171006 900000000000011006 900000000000451002 +6270189022 20150731 1 900000000000207008 16215531000119108 441903006 0 116680003 900000000000011006 900000000000451002 +6270190029 20150731 1 900000000000207008 16215531000119108 287571005 1 118171006 900000000000011006 900000000000451002 +6270193027 20150731 1 900000000000207008 16212491000119103 80657008 1 118171006 900000000000011006 900000000000451002 +6270195023 20150731 1 900000000000207008 16215331000119103 122609004 0 116680003 900000000000011006 900000000000451002 +6270196024 20150731 1 900000000000207008 16215331000119103 232595000 1 118171006 900000000000011006 900000000000451002 +6270196024 20190731 0 900000000000207008 16215331000119103 232595000 1 118171006 900000000000011006 900000000000451002 +6270198020 20150731 1 900000000000207008 16209811000119101 258607008 0 116680003 900000000000011006 900000000000451002 +6270199028 20150731 1 900000000000207008 16209811000119101 397394009 1 118171006 900000000000011006 900000000000451002 +6270199028 20170731 0 900000000000207008 16209811000119101 397394009 1 118171006 900000000000011006 900000000000451002 +6270201026 20150731 1 900000000000207008 16209811000119101 87200008 1 370133003 900000000000011006 900000000000451002 +6270201026 20170731 0 900000000000207008 16209811000119101 87200008 1 370133003 900000000000011006 900000000000451002 +6270208021 20150731 1 900000000000207008 16214331000119102 309173005 0 116680003 900000000000011006 900000000000451002 +6270209029 20150731 1 900000000000207008 16214331000119102 243685008 1 118171006 900000000000011006 900000000000451002 +6270216028 20150731 1 900000000000207008 16216251000119106 119295008 0 116680003 900000000000011006 900000000000451002 +6270218027 20150731 1 900000000000207008 16214371000119104 122610009 0 116680003 900000000000011006 900000000000451002 +6270220029 20150731 1 900000000000207008 16214371000119104 39607008 1 118169006 900000000000011006 900000000000451002 +6270258025 20150731 1 900000000000207008 16235301000119101 441709004 0 116680003 900000000000011006 900000000000451002 +6270259022 20150731 1 900000000000207008 16235301000119101 59441001 0 118169006 900000000000011006 900000000000451002 +6270259022 20190731 1 900000000000207008 16235301000119101 59441001 1 118169006 900000000000011006 900000000000451002 +6270259022 20210930 0 900000000000207008 16235301000119101 59441001 1 118169006 900000000000011006 900000000000451002 +6270260028 20150731 1 900000000000207008 16214971000119103 122601001 0 116680003 900000000000011006 900000000000451002 +6270262020 20150731 1 900000000000207008 16214971000119103 76752008 1 118169006 900000000000011006 900000000000451002 +6270263026 20150731 1 900000000000207008 16214691000119105 122601001 0 116680003 900000000000011006 900000000000451002 +6270265022 20150731 1 900000000000207008 16214691000119105 76752008 1 118169006 900000000000011006 900000000000451002 +6270266023 20150731 1 900000000000207008 16210691000119101 119368000 0 116680003 900000000000011006 900000000000451002 +6270271027 20150731 1 900000000000207008 16215491000119108 309548003 0 116680003 900000000000011006 900000000000451002 +6270273029 20150731 1 900000000000207008 16211771000119103 397199005 0 116680003 900000000000011006 900000000000451002 +6270274024 20150731 1 900000000000207008 16211771000119103 69031006 1 118171006 900000000000011006 900000000000451002 +6270274024 20220731 0 900000000000207008 16211771000119103 69031006 1 118171006 900000000000011006 900000000000451002 +6270275020 20150731 1 900000000000207008 16211771000119103 119184005 1 118169006 900000000000011006 900000000000451002 +6270275020 20200731 0 900000000000207008 16211771000119103 119184005 1 118169006 900000000000011006 900000000000451002 +6270276021 20150731 1 900000000000207008 16211771000119103 413675001 1 370133003 900000000000011006 900000000000451002 +6270277028 20150731 1 900000000000207008 16211571000119108 426815000 0 116680003 900000000000011006 900000000000451002 +6270278022 20150731 1 900000000000207008 16211571000119108 65801008 0 118171006 900000000000011006 900000000000451002 +6270278022 20190731 1 900000000000207008 16211571000119108 65801008 2 118171006 900000000000011006 900000000000451002 +6270279025 20150731 1 900000000000207008 16211531000119105 426815000 0 116680003 900000000000011006 900000000000451002 +6270280027 20150731 1 900000000000207008 16211531000119105 65801008 0 118171006 900000000000011006 900000000000451002 +6270280027 20190731 1 900000000000207008 16211531000119105 65801008 2 118171006 900000000000011006 900000000000451002 +6270281028 20150731 1 900000000000207008 16211491000119105 426815000 0 116680003 900000000000011006 900000000000451002 +6270282024 20150731 1 900000000000207008 16211491000119105 65801008 0 118171006 900000000000011006 900000000000451002 +6270282024 20190731 1 900000000000207008 16211491000119105 65801008 2 118171006 900000000000011006 900000000000451002 +6270283025 20150731 1 900000000000207008 16211611000119104 426815000 0 116680003 900000000000011006 900000000000451002 +6270284020 20150731 1 900000000000207008 16211611000119104 65801008 0 118171006 900000000000011006 900000000000451002 +6270284020 20190731 1 900000000000207008 16211611000119104 65801008 2 118171006 900000000000011006 900000000000451002 +6270285021 20150731 1 900000000000207008 16211411000119101 426815000 0 116680003 900000000000011006 900000000000451002 +6270286022 20150731 1 900000000000207008 16211411000119101 65801008 0 118171006 900000000000011006 900000000000451002 +6270286022 20190731 1 900000000000207008 16211411000119101 65801008 2 118171006 900000000000011006 900000000000451002 +6270287029 20150731 1 900000000000207008 16211451000119100 426815000 0 116680003 900000000000011006 900000000000451002 +6270288023 20150731 1 900000000000207008 16211451000119100 65801008 0 118171006 900000000000011006 900000000000451002 +6270288023 20190731 1 900000000000207008 16211451000119100 65801008 2 118171006 900000000000011006 900000000000451002 +6270289026 20150731 1 900000000000207008 16211731000119101 122600000 0 116680003 900000000000011006 900000000000451002 +6270290024 20150731 1 900000000000207008 16211731000119101 406505007 1 118171006 900000000000011006 900000000000451002 +6270291023 20150731 1 900000000000207008 16211731000119101 76752008 1 118169006 900000000000011006 900000000000451002 +6270292027 20150731 1 900000000000207008 16211731000119101 413675001 1 370133003 900000000000011006 900000000000451002 +6270299020 20150731 1 900000000000207008 16223091000119106 430238007 0 116680003 900000000000011006 900000000000451002 +6270300028 20150731 1 900000000000207008 16223091000119106 2095001 0 118169006 900000000000011006 900000000000451002 +6270300028 20190731 1 900000000000207008 16223091000119106 2095001 1 118169006 900000000000011006 900000000000451002 +6270301029 20150731 1 900000000000207008 16223491000119100 363329003 0 116680003 900000000000011006 900000000000451002 +6270304021 20150731 1 900000000000207008 16213411000119100 309225009 0 116680003 900000000000011006 900000000000451002 +6270305022 20150731 1 900000000000207008 16213411000119100 76164006 1 118171006 900000000000011006 900000000000451002 +6270311020 20150731 1 900000000000207008 16213571000119107 76164006 1 118171006 900000000000011006 900000000000451002 +6270314028 20150731 1 900000000000207008 16213371000119101 76164006 1 118171006 900000000000011006 900000000000451002 +6270316026 20150731 1 900000000000207008 16213531000119109 309225009 0 116680003 900000000000011006 900000000000451002 +6270317024 20150731 1 900000000000207008 16213531000119109 76164006 1 118171006 900000000000011006 900000000000451002 +6270326022 20150731 1 900000000000207008 16213331000119104 76164006 1 118171006 900000000000011006 900000000000451002 +6270329026 20150731 1 900000000000207008 16213451000119104 76164006 1 118171006 900000000000011006 900000000000451002 +6270334027 20150731 1 900000000000207008 16211291000119106 430232008 0 116680003 900000000000011006 900000000000451002 +6270334027 20180731 0 900000000000207008 16211291000119106 430232008 0 116680003 900000000000011006 900000000000451002 +6270336025 20150731 1 900000000000207008 16213011000119107 309105004 0 116680003 900000000000011006 900000000000451002 +6270338029 20150731 1 900000000000207008 16213011000119107 272673000 1 118169006 900000000000011006 900000000000451002 +6270339021 20150731 1 900000000000207008 16215091000119102 309174004 0 116680003 900000000000011006 900000000000451002 +6270340023 20150731 1 900000000000207008 16215091000119102 312849006 1 118171006 900000000000011006 900000000000451002 +6270341022 20150731 1 900000000000207008 16215091000119102 955009 1 118169006 900000000000011006 900000000000451002 +6270345029 20150731 1 900000000000207008 16212731000119107 433860001 0 116680003 900000000000011006 900000000000451002 +6270348027 20150731 1 900000000000207008 16212771000119105 431232001 0 116680003 900000000000011006 900000000000451002 +6270351023 20150731 1 900000000000207008 16215771000119101 432382007 0 116680003 900000000000011006 900000000000451002 +6270357022 20150731 1 900000000000207008 16213731000119100 309203003 0 116680003 900000000000011006 900000000000451002 +6270360026 20150731 1 900000000000207008 16224091000119108 302795002 0 116680003 900000000000011006 900000000000451002 +6270361027 20150731 1 900000000000207008 16224091000119108 14766002 1 118171006 900000000000011006 900000000000451002 +6270362023 20150731 1 900000000000207008 16224091000119108 59441001 1 118169006 900000000000011006 900000000000451002 +6270364024 20150731 1 900000000000207008 16224131000119105 14766002 1 118171006 900000000000011006 900000000000451002 +6270366021 20150731 1 900000000000207008 16222971000119102 399526005 0 116680003 900000000000011006 900000000000451002 +6270368022 20150731 1 900000000000207008 16223731000119109 431412004 0 116680003 900000000000011006 900000000000451002 +6270371025 20150731 1 900000000000207008 16221891000119102 420548004 0 116680003 900000000000011006 900000000000451002 +6270375023 20150731 1 900000000000207008 16211091000119104 309135006 0 116680003 900000000000011006 900000000000451002 +6270377026 20150731 1 900000000000207008 16215851000119100 122550002 0 116680003 900000000000011006 900000000000451002 +6270381026 20150731 1 900000000000207008 16215931000119102 122550002 0 116680003 900000000000011006 900000000000451002 +6270383028 20150731 1 900000000000207008 16215811000119101 122550002 0 116680003 900000000000011006 900000000000451002 +6270386020 20150731 1 900000000000207008 16223531000119100 119339001 0 116680003 900000000000011006 900000000000451002 +6270387027 20150731 1 900000000000207008 16223531000119100 39477002 0 370133003 900000000000011006 900000000000451002 +6270387027 20190731 1 900000000000207008 16223531000119100 39477002 1 370133003 900000000000011006 900000000000451002 +6270388021 20150731 1 900000000000207008 16223051000119101 430238007 0 116680003 900000000000011006 900000000000451002 +6270392025 20150731 1 900000000000207008 16224251000119106 258433009 0 116680003 900000000000011006 900000000000451002 +6270393024 20150731 1 900000000000207008 16224251000119106 448895004 0 118171006 900000000000011006 900000000000451002 +6270393024 20190731 1 900000000000207008 16224251000119106 448895004 1 118171006 900000000000011006 900000000000451002 +6270394029 20150731 1 900000000000207008 15650671000119107 258661006 0 116680003 900000000000011006 900000000000451002 +6270394029 20220131 0 900000000000207008 15650671000119107 258661006 0 116680003 900000000000011006 900000000000451002 +6270396027 20150731 1 900000000000207008 16223251000119109 472929000 0 116680003 900000000000011006 900000000000451002 +6270397020 20150731 1 900000000000207008 16223251000119109 472917009 1 118171006 900000000000011006 900000000000451002 +6270397020 20160131 0 900000000000207008 16223251000119109 472917009 1 118171006 900000000000011006 900000000000451002 +6270397020 20170731 1 900000000000207008 16223251000119109 472917009 1 118171006 900000000000011006 900000000000451002 +6270398026 20150731 1 900000000000207008 16223251000119109 116204000 1 118170007 900000000000011006 900000000000451002 +6270398026 20160131 0 900000000000207008 16223251000119109 116204000 1 118170007 900000000000011006 900000000000451002 +6270399023 20150731 1 900000000000207008 16223571000119102 119339001 0 116680003 900000000000011006 900000000000451002 +6270400027 20150731 1 900000000000207008 16223571000119102 39477002 0 370133003 900000000000011006 900000000000451002 +6270400027 20190731 1 900000000000207008 16223571000119102 39477002 1 370133003 900000000000011006 900000000000451002 +6270401028 20150731 1 900000000000207008 16224291000119101 440674008 0 116680003 900000000000011006 900000000000451002 +6270403025 20150731 1 900000000000207008 16215171000119102 608870009 0 116680003 900000000000011006 900000000000451002 +6270403025 20190731 0 900000000000207008 16215171000119102 608870009 0 116680003 900000000000011006 900000000000451002 +6270410020 20150731 1 900000000000207008 16212931000119109 440136004 0 116680003 900000000000011006 900000000000451002 +6270414027 20150731 1 900000000000207008 16211051000119109 119365002 0 116680003 900000000000011006 900000000000451002 +6270416025 20150731 1 900000000000207008 16223771000119107 430232008 0 116680003 900000000000011006 900000000000451002 +6270421027 20150731 1 900000000000207008 16211211000119102 119371008 0 116680003 900000000000011006 900000000000451002 +6270425020 20150731 1 900000000000207008 16223651000119107 127476006 0 116680003 900000000000011006 900000000000451002 +6270426021 20150731 1 900000000000207008 16223651000119107 31435000 0 118169006 900000000000011006 900000000000451002 +6270426021 20190731 1 900000000000207008 16223651000119107 31435000 1 118169006 900000000000011006 900000000000451002 +6270427028 20150731 1 900000000000207008 16216171000119108 119295008 0 116680003 900000000000011006 900000000000451002 +6270433021 20150731 1 900000000000207008 16222251000119102 396355000 0 116680003 900000000000011006 900000000000451002 +6270435025 20150731 1 900000000000207008 16222251000119102 39937001 1 118169006 900000000000011006 900000000000451002 +6270436029 20150731 1 900000000000207008 16222251000119102 413675001 1 370133003 900000000000011006 900000000000451002 +6270439020 20150731 1 900000000000207008 16212251000119107 69695003 1 118169006 900000000000011006 900000000000451002 +6270441021 20150731 1 900000000000207008 16211331000119100 445405002 0 116680003 900000000000011006 900000000000451002 +6270443024 20150731 1 900000000000207008 16216131000119105 119295008 0 116680003 900000000000011006 900000000000451002 +6270445028 20150731 1 900000000000207008 16212811000119105 128161005 0 116680003 900000000000011006 900000000000451002 +6270446027 20150731 1 900000000000207008 16212811000119105 28726007 1 118169006 900000000000011006 900000000000451002 +6270447020 20150731 1 900000000000207008 16212811000119105 413675001 1 370133003 900000000000011006 900000000000451002 +6270448026 20150731 1 900000000000207008 16216491000119102 440674008 0 116680003 900000000000011006 900000000000451002 +6270450023 20150731 1 900000000000207008 16221371000119107 446306009 0 116680003 900000000000011006 900000000000451002 +6270451022 20150731 1 900000000000207008 16221371000119107 431938005 1 118169006 900000000000011006 900000000000451002 +6270453020 20150731 1 900000000000207008 16221371000119107 78014005 1 370133003 900000000000011006 900000000000451002 +6270454025 20150731 1 900000000000207008 16221251000119108 122565001 0 116680003 900000000000011006 900000000000451002 +6270457021 20150731 1 900000000000207008 16221251000119108 78014005 1 370133003 900000000000011006 900000000000451002 +6270458027 20150731 1 900000000000207008 16210611000119105 119368000 0 116680003 900000000000011006 900000000000451002 +6270460025 20150731 1 900000000000207008 16222771000119104 439479000 0 116680003 900000000000011006 900000000000451002 +6270463028 20150731 1 900000000000207008 16221011000119101 258439008 0 116680003 900000000000011006 900000000000451002 +6270465024 20150731 1 900000000000207008 16221491000119104 446130001 0 116680003 900000000000011006 900000000000451002 +6270466020 20150731 1 900000000000207008 16221491000119104 89837001 1 118169006 900000000000011006 900000000000451002 +6270467027 20150731 1 900000000000207008 16221491000119104 78014005 1 370133003 900000000000011006 900000000000451002 +6270468021 20150731 1 900000000000207008 16216611000119108 440674008 0 116680003 900000000000011006 900000000000451002 +6270471029 20150731 1 900000000000207008 16213171000119103 472917009 1 118171006 900000000000011006 900000000000451002 +6270473026 20150731 1 900000000000207008 16210651000119106 119368000 0 116680003 900000000000011006 900000000000451002 +6270476023 20150731 1 900000000000207008 16210851000119107 108369006 1 118168003 900000000000011006 900000000000451002 +6270478024 20150731 1 900000000000207008 16216451000119107 440674008 0 116680003 900000000000011006 900000000000451002 +6270480029 20150731 1 900000000000207008 16213691000119107 399460001 0 116680003 900000000000011006 900000000000451002 +6270482021 20150731 1 900000000000207008 16216531000119102 440674008 0 116680003 900000000000011006 900000000000451002 +6270484022 20150731 1 900000000000207008 16210571000119101 119368000 0 116680003 900000000000011006 900000000000451002 +6270486024 20150731 1 900000000000207008 16216091000119108 258415003 0 116680003 900000000000011006 900000000000451002 +6270488020 20150731 1 900000000000207008 16216211000119105 119295008 0 116680003 900000000000011006 900000000000451002 +6270490021 20150731 1 900000000000207008 16210931000119105 309286008 0 116680003 900000000000011006 900000000000451002 +6270491020 20150731 1 900000000000207008 16210931000119105 41329004 1 118168003 900000000000011006 900000000000451002 +6270493023 20150731 1 900000000000207008 16210931000119105 413675001 1 370133003 900000000000011006 900000000000451002 +6270494028 20150731 1 900000000000207008 16213211000119101 119312009 0 116680003 900000000000011006 900000000000451002 +6270495027 20150731 1 900000000000207008 16213211000119101 472917009 1 118171006 900000000000011006 900000000000451002 +6270496026 20150731 1 900000000000207008 16213211000119101 116204000 1 118170007 900000000000011006 900000000000451002 +6270496026 20210131 0 900000000000207008 16213211000119101 116204000 1 118170007 900000000000011006 900000000000451002 +6270497024 20150731 1 900000000000207008 16211131000119102 309049000 0 116680003 900000000000011006 900000000000451002 +6270499022 20150731 1 900000000000207008 16216571000119104 440674008 0 116680003 900000000000011006 900000000000451002 +6270501025 20150731 1 900000000000207008 16213091000119103 473406005 0 116680003 900000000000011006 900000000000451002 +6270502021 20150731 1 900000000000207008 16213091000119103 472917009 1 118171006 900000000000011006 900000000000451002 +6270503027 20150731 1 900000000000207008 16213091000119103 257351008 1 118170007 900000000000011006 900000000000451002 +6270503027 20210131 0 900000000000207008 16213091000119103 257351008 1 118170007 900000000000011006 900000000000451002 +6270504022 20150731 1 900000000000207008 16211251000119101 309049000 0 116680003 900000000000011006 900000000000451002 +6270505023 20150731 1 900000000000207008 16211251000119101 49755003 0 118168003 900000000000011006 900000000000451002 +6270505023 20190731 1 900000000000207008 16211251000119101 49755003 1 118168003 900000000000011006 900000000000451002 +6270505023 20220630 0 900000000000207008 16211251000119101 49755003 1 118168003 900000000000011006 900000000000451002 +6270506024 20150731 1 900000000000207008 16209331000119103 258439008 0 116680003 900000000000011006 900000000000451002 +6270508020 20150731 1 900000000000207008 16222091000119100 396355000 0 116680003 900000000000011006 900000000000451002 +6270512025 20150731 1 900000000000207008 16214131000119104 119376003 0 116680003 900000000000011006 900000000000451002 +6270515028 20150731 1 900000000000207008 16213051000119108 472917009 1 118171006 900000000000011006 900000000000451002 +6270517020 20150731 1 900000000000207008 16213251000119100 472919007 0 116680003 900000000000011006 900000000000451002 +6270517020 20160131 0 900000000000207008 16213251000119100 472919007 0 116680003 900000000000011006 900000000000451002 +6270518026 20150731 1 900000000000207008 16213251000119100 472917009 1 118171006 900000000000011006 900000000000451002 +6270518026 20160131 0 900000000000207008 16213251000119100 472917009 1 118171006 900000000000011006 900000000000451002 +6270518026 20210131 1 900000000000207008 16213251000119100 472917009 1 118171006 900000000000011006 900000000000451002 +6273830027 20150731 1 900000000000207008 446128003 16215211000119100 0 116680003 900000000000011006 900000000000451002 +6273877021 20150731 1 900000000000207008 432983009 16215851000119100 0 116680003 900000000000011006 900000000000451002 +6273907021 20150731 1 900000000000207008 256889002 16210691000119101 0 116680003 900000000000011006 900000000000451002 +6273957029 20150731 1 900000000000207008 16220971000119101 127473003 0 116680003 900000000000011006 900000000000451002 +6273958023 20150731 1 900000000000207008 16220971000119101 64033007 1 118169006 900000000000011006 900000000000451002 +6273958023 20170731 0 900000000000207008 16220971000119101 64033007 1 118169006 900000000000011006 900000000000451002 +6273959026 20150731 1 900000000000207008 16223971000119109 432419006 0 116680003 900000000000011006 900000000000451002 +6273960020 20150731 1 900000000000207008 16223971000119109 119332005 0 116680003 900000000000011006 900000000000451002 +6273961024 20150731 1 900000000000207008 16223971000119109 431361003 0 116680003 900000000000011006 900000000000451002 +6273962028 20150731 1 900000000000207008 16223971000119109 430108006 1 118171006 900000000000011006 900000000000451002 +6273963022 20150731 1 900000000000207008 16223971000119109 39352004 1 118169006 900000000000011006 900000000000451002 +6273964027 20150731 1 900000000000207008 16223971000119109 6085005 1 370133003 900000000000011006 900000000000451002 +6273965026 20150731 1 900000000000207008 16223931000119106 258438000 0 116680003 900000000000011006 900000000000451002 +6273966025 20150731 1 900000000000207008 16223931000119106 430108006 1 118171006 900000000000011006 900000000000451002 +6273967023 20150731 1 900000000000207008 16223931000119106 47538007 1 118169006 900000000000011006 900000000000451002 +6273968029 20150731 1 900000000000207008 16223931000119106 426101004 1 370133003 900000000000011006 900000000000451002 +6273969021 20150731 1 900000000000207008 16215211000119100 397129002 0 116680003 900000000000011006 900000000000451002 +6273970022 20150731 1 900000000000207008 16215211000119100 309051001 0 116680003 900000000000011006 900000000000451002 +6273971021 20150731 1 900000000000207008 16215211000119100 87176006 1 118169006 900000000000011006 900000000000451002 +6273972025 20150731 1 900000000000207008 16215211000119100 32457005 1 370133003 900000000000011006 900000000000451002 +6273973024 20150731 1 900000000000207008 16209291000119109 119398007 0 116680003 900000000000011006 900000000000451002 +6273974029 20150731 1 900000000000207008 16209291000119109 16209251000119104 0 116680003 900000000000011006 900000000000451002 +6273975028 20150731 1 900000000000207008 16209291000119109 12738006 1 118169006 900000000000011006 900000000000451002 +6273975028 20170731 0 900000000000207008 16209291000119109 12738006 1 118169006 900000000000011006 900000000000451002 +6273976027 20150731 1 900000000000207008 16209251000119104 399436000 0 116680003 900000000000011006 900000000000451002 +6273977020 20150731 1 900000000000207008 16209251000119104 21483005 1 118169006 900000000000011006 900000000000451002 +6273977020 20170731 0 900000000000207008 16209251000119104 21483005 1 118169006 900000000000011006 900000000000451002 +6273978026 20150731 1 900000000000207008 16220931000119104 127469001 0 116680003 900000000000011006 900000000000451002 +6273979023 20150731 1 900000000000207008 16220931000119104 15776009 1 118169006 900000000000011006 900000000000451002 +6273979023 20170731 0 900000000000207008 16220931000119104 15776009 1 118169006 900000000000011006 900000000000451002 +6273980021 20150731 1 900000000000207008 16210691000119101 127456000 0 116680003 900000000000011006 900000000000451002 +6273980021 20180131 0 900000000000207008 16210691000119101 127456000 0 116680003 900000000000011006 900000000000451002 +6273981020 20150731 1 900000000000207008 16210691000119101 367643001 1 118168003 900000000000011006 900000000000451002 +6273982029 20150731 1 900000000000207008 16210691000119101 76752008 1 118169006 900000000000011006 900000000000451002 +6273983023 20150731 1 900000000000207008 16211091000119104 122550002 0 116680003 900000000000011006 900000000000451002 +6273984028 20150731 1 900000000000207008 16211091000119104 48635004 1 118171006 900000000000011006 900000000000451002 +6273985027 20150731 1 900000000000207008 16211091000119104 386152007 1 118168003 900000000000011006 900000000000451002 +6273986026 20150731 1 900000000000207008 16215851000119100 119398007 0 116680003 900000000000011006 900000000000451002 +6273987024 20150731 1 900000000000207008 16215851000119100 48635004 1 118171006 900000000000011006 900000000000451002 +6273988025 20150731 1 900000000000207008 16215851000119100 12738006 1 118169006 900000000000011006 900000000000451002 +6273989022 20150731 1 900000000000207008 16216051000119103 258421004 0 116680003 900000000000011006 900000000000451002 +6273990029 20150731 1 900000000000207008 16216051000119103 16215931000119102 0 116680003 900000000000011006 900000000000451002 +6273991025 20150731 1 900000000000207008 16216051000119103 16210651000119106 0 116680003 900000000000011006 900000000000451002 +6273992021 20150731 1 900000000000207008 16216051000119103 48635004 1 118171006 900000000000011006 900000000000451002 +6273993027 20150731 1 900000000000207008 16216051000119103 367643001 1 118168003 900000000000011006 900000000000451002 +6273994022 20150731 1 900000000000207008 16216051000119103 360382006 1 118169006 900000000000011006 900000000000451002 +6273995023 20150731 1 900000000000207008 16215931000119102 119368000 0 116680003 900000000000011006 900000000000451002 +6273996024 20150731 1 900000000000207008 16215931000119102 48635004 1 118171006 900000000000011006 900000000000451002 +6273997026 20150731 1 900000000000207008 16215931000119102 367643001 1 118168003 900000000000011006 900000000000451002 +6273998020 20150731 1 900000000000207008 16215811000119101 430214008 0 116680003 900000000000011006 900000000000451002 +6273998020 20200731 0 900000000000207008 16215811000119101 430214008 0 116680003 900000000000011006 900000000000451002 +6273999028 20150731 1 900000000000207008 16215811000119101 430232008 0 116680003 900000000000011006 900000000000451002 +6274000026 20150731 1 900000000000207008 16215811000119101 48635004 1 118171006 900000000000011006 900000000000451002 +6274001027 20150731 1 900000000000207008 16215811000119101 26893007 1 118169006 900000000000011006 900000000000451002 +6274002023 20150731 1 900000000000207008 16210611000119105 119395005 0 116680003 900000000000011006 900000000000451002 +6274003029 20150731 1 900000000000207008 16210611000119105 367643001 1 118168003 900000000000011006 900000000000451002 +6274004024 20150731 1 900000000000207008 16210611000119105 71252005 1 118169006 900000000000011006 900000000000451002 +6274005020 20150731 1 900000000000207008 16210651000119106 367643001 1 118168003 900000000000011006 900000000000451002 +6274006021 20150731 1 900000000000207008 16210651000119106 360382006 1 118169006 900000000000011006 900000000000451002 +6274007028 20150731 1 900000000000207008 16210571000119101 430220009 0 116680003 900000000000011006 900000000000451002 +6274007028 20240501 0 900000000000207008 16210571000119101 430220009 0 116680003 900000000000011006 900000000000451002 +6274008022 20150731 1 900000000000207008 16210571000119101 363311008 0 116680003 900000000000011006 900000000000451002 +6274008022 20240501 0 900000000000207008 16210571000119101 363311008 0 116680003 900000000000011006 900000000000451002 +6274009025 20150731 1 900000000000207008 16210571000119101 367643001 1 118168003 900000000000011006 900000000000451002 +6274010024 20150731 1 900000000000207008 16210571000119101 38199008 1 118169006 900000000000011006 900000000000451002 +6277427026 20150731 1 900000000000207008 16216491000119102 450872001 0 116680003 900000000000011006 900000000000451002 +6277428020 20150731 1 900000000000207008 16216491000119102 78533007 1 118171006 900000000000011006 900000000000451002 +6277429028 20150731 1 900000000000207008 16216491000119102 89837001 1 118169006 900000000000011006 900000000000451002 +6277430022 20150731 1 900000000000207008 16216451000119107 119382000 0 116680003 900000000000011006 900000000000451002 +6277431021 20150731 1 900000000000207008 16216451000119107 174228003 1 118171006 900000000000011006 900000000000451002 +6277432025 20150731 1 900000000000207008 16216451000119107 71854001 1 118169006 900000000000011006 900000000000451002 +6277433024 20150731 1 900000000000207008 16214131000119104 27204007 1 118171006 900000000000011006 900000000000451002 +6277433024 20200131 0 900000000000207008 16214131000119104 27204007 1 118171006 900000000000011006 900000000000451002 +6277434029 20150731 1 900000000000207008 16214131000119104 85756007 1 118169006 900000000000011006 900000000000451002 +6277435028 20150731 1 900000000000207008 16214131000119104 413675001 1 370133003 900000000000011006 900000000000451002 +6277436027 20150731 1 900000000000207008 16213251000119100 467764008 1 118170007 900000000000011006 900000000000451002 +6277436027 20160131 0 900000000000207008 16213251000119100 467764008 1 118170007 900000000000011006 900000000000451002 +6277448029 20150731 1 900000000000207008 712559006 123038009 0 116680003 900000000000011006 900000000000451002 +6277449021 20150731 1 900000000000207008 712560001 123038009 0 116680003 900000000000011006 900000000000451002 +6277451020 20150731 1 900000000000207008 712562009 123038009 0 116680003 900000000000011006 900000000000451002 +6278896022 20150731 1 900000000000207008 16215611000119102 64353002 1 118169006 900000000000011006 900000000000451002 +6278897029 20150731 1 900000000000207008 16209931000119102 127458004 0 116680003 900000000000011006 900000000000451002 +6278898023 20150731 1 900000000000207008 16209931000119102 266005 1 118169006 900000000000011006 900000000000451002 +6278898023 20170731 0 900000000000207008 16209931000119102 266005 1 118169006 900000000000011006 900000000000451002 +6278900020 20150731 1 900000000000207008 16215571000119106 113250009 1 118169006 900000000000011006 900000000000451002 +6278902028 20150731 1 900000000000207008 16215691000119106 11339004 1 118169006 900000000000011006 900000000000451002 +6278904027 20150731 1 900000000000207008 16209771000119101 127458004 0 116680003 900000000000011006 900000000000451002 +6278905026 20150731 1 900000000000207008 16209771000119101 41224006 1 118169006 900000000000011006 900000000000451002 +6278905026 20170731 0 900000000000207008 16209771000119101 41224006 1 118169006 900000000000011006 900000000000451002 +6278905026 20190731 1 900000000000207008 16209771000119101 41224006 1 118169006 900000000000011006 900000000000451002 +6278907023 20150731 1 900000000000207008 16215531000119108 23792002 1 118169006 900000000000011006 900000000000451002 +6278908029 20150731 1 900000000000207008 16216251000119106 127458004 0 116680003 900000000000011006 900000000000451002 +6278909021 20150731 1 900000000000207008 16216251000119106 14766002 1 118171006 900000000000011006 900000000000451002 +6278910027 20150731 1 900000000000207008 16216251000119106 39607008 1 118169006 900000000000011006 900000000000451002 +6278916022 20150731 1 900000000000207008 16216011000119104 122614000 0 116680003 900000000000011006 900000000000451002 +6278917029 20150731 1 900000000000207008 16216011000119104 432231006 1 118171006 900000000000011006 900000000000451002 +6278918023 20150731 1 900000000000207008 16216011000119104 46750007 1 118169006 900000000000011006 900000000000451002 +6278919026 20150731 1 900000000000207008 16215171000119102 119371008 0 116680003 900000000000011006 900000000000451002 +6278919026 20220228 0 900000000000207008 16215171000119102 119371008 0 116680003 900000000000011006 900000000000451002 +6278920021 20150731 1 900000000000207008 16215171000119102 397129002 0 116680003 900000000000011006 900000000000451002 +6278920021 20220228 0 900000000000207008 16215171000119102 397129002 0 116680003 900000000000011006 900000000000451002 +6278921020 20150731 1 900000000000207008 16215171000119102 44132006 1 118168003 900000000000011006 900000000000451002 +6278922029 20150731 1 900000000000207008 16215171000119102 87176006 1 118169006 900000000000011006 900000000000451002 +6278923023 20150731 1 900000000000207008 16216171000119108 119383005 0 116680003 900000000000011006 900000000000451002 +6278924028 20150731 1 900000000000207008 16216171000119108 14766002 1 118171006 900000000000011006 900000000000451002 +6278925027 20150731 1 900000000000207008 16216171000119108 10200004 1 118169006 900000000000011006 900000000000451002 +6278926026 20150731 1 900000000000207008 16210931000119105 36973007 1 118169006 900000000000011006 900000000000451002 +6280077025 20150731 1 900000000000207008 16224171000119108 445447003 0 116680003 900000000000011006 900000000000451002 +6280078024 20150731 1 900000000000207008 16224171000119108 447154002 0 116680003 900000000000011006 900000000000451002 +6280079027 20150731 1 900000000000207008 16224171000119108 41360004 2 118171006 900000000000011006 900000000000451002 +6280081025 20150731 1 900000000000207008 16224171000119108 41360004 3 118171006 900000000000011006 900000000000451002 +6280083027 20150731 1 900000000000207008 16221011000119101 119394009 0 116680003 900000000000011006 900000000000451002 +6280084022 20150731 1 900000000000207008 16221011000119101 76784001 1 118169006 900000000000011006 900000000000451002 +6280085023 20150731 1 900000000000207008 16221011000119101 307488001 1 370133003 900000000000011006 900000000000451002 +6280086024 20150731 1 900000000000207008 16216611000119108 258542004 0 116680003 900000000000011006 900000000000451002 +6280087026 20150731 1 900000000000207008 16216611000119108 67889009 1 118171006 900000000000011006 900000000000451002 +6280088020 20150731 1 900000000000207008 16216611000119108 34202007 1 118169006 900000000000011006 900000000000451002 +6280089028 20150731 1 900000000000207008 16213171000119103 119312009 0 116680003 900000000000011006 900000000000451002 +6280090021 20150731 1 900000000000207008 16213171000119103 116204000 1 118170007 900000000000011006 900000000000451002 +6280090021 20210131 0 900000000000207008 16213171000119103 116204000 1 118170007 900000000000011006 900000000000451002 +6280091020 20150731 1 900000000000207008 16216531000119102 399460001 0 116680003 900000000000011006 900000000000451002 +6280092029 20150731 1 900000000000207008 16216531000119102 67889009 1 118171006 900000000000011006 900000000000451002 +6280093023 20150731 1 900000000000207008 16216531000119102 79741001 1 118169006 900000000000011006 900000000000451002 +6280094028 20150731 1 900000000000207008 16216211000119105 119395005 0 116680003 900000000000011006 900000000000451002 +6280095027 20150731 1 900000000000207008 16216211000119105 14766002 1 118171006 900000000000011006 900000000000451002 +6280096026 20150731 1 900000000000207008 16216211000119105 36973007 1 118169006 900000000000011006 900000000000451002 +6280097024 20150731 1 900000000000207008 16211131000119102 430157009 0 116680003 900000000000011006 900000000000451002 +6280097024 20180131 0 900000000000207008 16211131000119102 430157009 0 116680003 900000000000011006 900000000000451002 +6280098025 20150731 1 900000000000207008 16211131000119102 49755003 1 118168003 900000000000011006 900000000000451002 +6280098025 20220630 0 900000000000207008 16211131000119102 49755003 1 118168003 900000000000011006 900000000000451002 +6280099022 20150731 1 900000000000207008 16211131000119102 30636001 1 118169006 900000000000011006 900000000000451002 +6280100025 20150731 1 900000000000207008 16216571000119104 127463000 0 116680003 900000000000011006 900000000000451002 +6280101026 20150731 1 900000000000207008 16216571000119104 67889009 1 118171006 900000000000011006 900000000000451002 +6280102022 20150731 1 900000000000207008 16216571000119104 32849002 1 118169006 900000000000011006 900000000000451002 +6280103028 20150731 1 900000000000207008 16209331000119103 119399004 0 116680003 900000000000011006 900000000000451002 +6280104023 20150731 1 900000000000207008 16209331000119103 81745001 1 118169006 900000000000011006 900000000000451002 +6280105024 20150731 1 900000000000207008 16209331000119103 307488001 1 370133003 900000000000011006 900000000000451002 +6281617028 20150731 1 900000000000207008 16221371000119107 706500006 1 118170007 900000000000011006 900000000000451002 +6281618022 20150731 1 900000000000207008 16224171000119108 45206002 2 118169006 900000000000011006 900000000000451002 +6281619025 20150731 1 900000000000207008 16224171000119108 44567001 3 118169006 900000000000011006 900000000000451002 +6282825027 20150731 1 900000000000207008 16210211000119107 309051001 0 116680003 900000000000011006 900000000000451002 +6282826026 20150731 1 900000000000207008 16210211000119107 450872001 0 116680003 900000000000011006 900000000000451002 +6282827024 20150731 1 900000000000207008 16210211000119107 89837001 1 118169006 900000000000011006 900000000000451002 +6282828025 20150731 1 900000000000207008 16210211000119107 32457005 1 370133003 900000000000011006 900000000000451002 +6282829022 20150731 1 900000000000207008 16210251000119108 309051001 0 116680003 900000000000011006 900000000000451002 +6282830028 20150731 1 900000000000207008 16210251000119108 32457005 1 370133003 900000000000011006 900000000000451002 +6282831029 20150731 1 900000000000207008 16210291000119103 258459007 0 116680003 900000000000011006 900000000000451002 +6282832020 20150731 1 900000000000207008 16210291000119103 310872003 1 118171006 900000000000011006 900000000000451002 +6282833026 20150731 1 900000000000207008 16210291000119103 69695003 1 118169006 900000000000011006 900000000000451002 +6282834021 20150731 1 900000000000207008 16210291000119103 31773000 1 370133003 900000000000011006 900000000000451002 +6282835022 20150731 1 900000000000207008 16210331000119109 258459007 0 116680003 900000000000011006 900000000000451002 +6282836023 20150731 1 900000000000207008 16210331000119109 122462000 2 118171006 900000000000011006 900000000000451002 +6282837025 20150731 1 900000000000207008 16210331000119109 33463005 2 370133003 900000000000011006 900000000000451002 +6282838024 20150731 1 900000000000207008 16210331000119109 439599008 3 118171006 900000000000011006 900000000000451002 +6282839027 20150731 1 900000000000207008 16210331000119109 69695003 3 118169006 900000000000011006 900000000000451002 +6282840025 20150731 1 900000000000207008 16210331000119109 31773000 3 370133003 900000000000011006 900000000000451002 +6282841026 20150731 1 900000000000207008 16210371000119107 258463000 0 116680003 900000000000011006 900000000000451002 +6282842022 20150731 1 900000000000207008 16210371000119107 182514000 1 118171006 900000000000011006 900000000000451002 +6282843028 20150731 1 900000000000207008 16210371000119107 21306003 1 118169006 900000000000011006 900000000000451002 +6282844023 20150731 1 900000000000207008 16210371000119107 27897001 1 370133003 900000000000011006 900000000000451002 +6282845024 20150731 1 900000000000207008 16224371000119105 119388001 0 116680003 900000000000011006 900000000000451002 +6282846020 20150731 1 900000000000207008 16224371000119105 67889009 1 118171006 900000000000011006 900000000000451002 +6282847027 20150731 1 900000000000207008 16224371000119105 53342003 1 118169006 900000000000011006 900000000000451002 +6282849029 20150731 1 900000000000207008 16215651000119101 82407001 1 118169006 900000000000011006 900000000000451002 +6282850029 20150731 1 900000000000207008 16212451000119108 258415003 0 116680003 900000000000011006 900000000000451002 +6282851025 20150731 1 900000000000207008 16212451000119108 119391001 0 116680003 900000000000011006 900000000000451002 +6282852021 20150731 1 900000000000207008 16212451000119108 127458004 0 116680003 900000000000011006 900000000000451002 +6282853027 20150731 1 900000000000207008 16212451000119108 82407001 1 118169006 900000000000011006 900000000000451002 +6282854022 20150731 1 900000000000207008 16214451000119102 44029006 1 118169006 900000000000011006 900000000000451002 +6283512024 20150731 1 900000000000207008 122609004 119391001 0 116680003 900000000000011006 900000000000451002 +6283513025 20150731 1 900000000000207008 122609004 232595000 2 118171006 900000000000011006 900000000000451002 +6283513025 20190731 0 900000000000207008 122609004 232595000 2 118171006 900000000000011006 900000000000451002 +6283514020 20150731 1 900000000000207008 122609004 955009 2 118169006 900000000000011006 900000000000451002 +6283514020 20190731 0 900000000000207008 122609004 955009 2 118169006 900000000000011006 900000000000451002 +6283534021 20150731 1 900000000000207008 122614000 16214371000119104 0 116680003 900000000000011006 900000000000451002 +6283539027 20150731 1 900000000000207008 441694006 16211291000119106 0 116680003 900000000000011006 900000000000451002 +6283541026 20150731 1 900000000000207008 447403008 16212811000119105 0 116680003 900000000000011006 900000000000451002 +6283712022 20150731 1 900000000000207008 16212531000119103 258415003 0 116680003 900000000000011006 900000000000451002 +6283713028 20150731 1 900000000000207008 16212531000119103 119391001 0 116680003 900000000000011006 900000000000451002 +6283714023 20150731 1 900000000000207008 16212531000119103 127458004 0 116680003 900000000000011006 900000000000451002 +6283715024 20150731 1 900000000000207008 16212531000119103 64353002 1 118169006 900000000000011006 900000000000451002 +6283716020 20150731 1 900000000000207008 16215291000119109 127458004 0 116680003 900000000000011006 900000000000451002 +6283717027 20150731 1 900000000000207008 16215291000119109 64353002 1 118169006 900000000000011006 900000000000451002 +6283718021 20150731 1 900000000000207008 16214611000119101 127458004 0 116680003 900000000000011006 900000000000451002 +6283720024 20150731 1 900000000000207008 16214611000119101 266005 1 118169006 900000000000011006 900000000000451002 +6283721023 20150731 1 900000000000207008 16214491000119107 3341006 1 118169006 900000000000011006 900000000000451002 +6283722027 20150731 1 900000000000207008 16212571000119100 258415003 0 116680003 900000000000011006 900000000000451002 +6283723021 20150731 1 900000000000207008 16212571000119100 119391001 0 116680003 900000000000011006 900000000000451002 +6283724026 20150731 1 900000000000207008 16212571000119100 127458004 0 116680003 900000000000011006 900000000000451002 +6283725025 20150731 1 900000000000207008 16212571000119100 113250009 1 118169006 900000000000011006 900000000000451002 +6283726029 20150731 1 900000000000207008 16215451000119103 127458004 0 116680003 900000000000011006 900000000000451002 +6283726029 20230331 0 900000000000207008 16215451000119103 127458004 0 116680003 900000000000011006 900000000000451002 +6283727022 20150731 1 900000000000207008 16215451000119103 113250009 1 118169006 900000000000011006 900000000000451002 +6283728028 20150731 1 900000000000207008 16209891000119105 127458004 0 116680003 900000000000011006 900000000000451002 +6283729020 20150731 1 900000000000207008 16209891000119105 72481006 1 118169006 900000000000011006 900000000000451002 +6283729020 20170731 0 900000000000207008 16209891000119105 72481006 1 118169006 900000000000011006 900000000000451002 +6283730026 20150731 1 900000000000207008 16214531000119107 127458004 0 116680003 900000000000011006 900000000000451002 +6283733029 20150731 1 900000000000207008 16214531000119107 113250009 1 118169006 900000000000011006 900000000000451002 +6283734024 20150731 1 900000000000207008 16212411000119107 258415003 0 116680003 900000000000011006 900000000000451002 +6283735020 20150731 1 900000000000207008 16212411000119107 119391001 0 116680003 900000000000011006 900000000000451002 +6283736021 20150731 1 900000000000207008 16212411000119107 127458004 0 116680003 900000000000011006 900000000000451002 +6283737028 20150731 1 900000000000207008 16212411000119107 11339004 1 118169006 900000000000011006 900000000000451002 +6283738022 20150731 1 900000000000207008 16215251000119104 127458004 0 116680003 900000000000011006 900000000000451002 +6283739025 20150731 1 900000000000207008 16215251000119104 11339004 1 118169006 900000000000011006 900000000000451002 +6283740028 20150731 1 900000000000207008 16209851000119100 127458004 0 116680003 900000000000011006 900000000000451002 +6283741029 20150731 1 900000000000207008 16209851000119100 42400003 1 118169006 900000000000011006 900000000000451002 +6283741029 20170731 0 900000000000207008 16209851000119100 42400003 1 118169006 900000000000011006 900000000000451002 +6283742020 20150731 1 900000000000207008 16214291000119108 127458004 0 116680003 900000000000011006 900000000000451002 +6283745022 20150731 1 900000000000207008 16214291000119108 11339004 1 118169006 900000000000011006 900000000000451002 +6283746023 20150731 1 900000000000207008 16209691000119106 127458004 0 116680003 900000000000011006 900000000000451002 +6283746023 20190731 0 900000000000207008 16209691000119106 127458004 0 116680003 900000000000011006 900000000000451002 +6283747025 20150731 1 900000000000207008 16209691000119106 44029006 1 118169006 900000000000011006 900000000000451002 +6283747025 20170731 0 900000000000207008 16209691000119106 44029006 1 118169006 900000000000011006 900000000000451002 +6283748024 20150731 1 900000000000207008 16209731000119104 127458004 0 116680003 900000000000011006 900000000000451002 +6283748024 20190731 0 900000000000207008 16209731000119104 127458004 0 116680003 900000000000011006 900000000000451002 +6283749027 20150731 1 900000000000207008 16209731000119104 3341006 1 118169006 900000000000011006 900000000000451002 +6283749027 20170731 0 900000000000207008 16209731000119104 3341006 1 118169006 900000000000011006 900000000000451002 +6283750027 20150731 1 900000000000207008 16215411000119104 127458004 0 116680003 900000000000011006 900000000000451002 +6283751028 20150731 1 900000000000207008 16215411000119104 82407001 1 118169006 900000000000011006 900000000000451002 +6283752024 20150731 1 900000000000207008 16214571000119105 127458004 0 116680003 900000000000011006 900000000000451002 +6283755021 20150731 1 900000000000207008 16214571000119105 82407001 1 118169006 900000000000011006 900000000000451002 +6283756022 20150731 1 900000000000207008 16212491000119103 258415003 0 116680003 900000000000011006 900000000000451002 +6283757029 20150731 1 900000000000207008 16212491000119103 119391001 0 116680003 900000000000011006 900000000000451002 +6283758023 20150731 1 900000000000207008 16212491000119103 127458004 0 116680003 900000000000011006 900000000000451002 +6283759026 20150731 1 900000000000207008 16212491000119103 23792002 1 118169006 900000000000011006 900000000000451002 +6283760020 20150731 1 900000000000207008 16215331000119103 127458004 0 116680003 900000000000011006 900000000000451002 +6283761024 20150731 1 900000000000207008 16215331000119103 23792002 1 118169006 900000000000011006 900000000000451002 +6283762028 20150731 1 900000000000207008 16209811000119101 127458004 0 116680003 900000000000011006 900000000000451002 +6283763022 20150731 1 900000000000207008 16209811000119101 44714003 1 118169006 900000000000011006 900000000000451002 +6283763022 20170731 0 900000000000207008 16209811000119101 44714003 1 118169006 900000000000011006 900000000000451002 +6283764027 20150731 1 900000000000207008 16214411000119103 127458004 0 116680003 900000000000011006 900000000000451002 +6283766025 20150731 1 900000000000207008 16214411000119103 44714003 1 118169006 900000000000011006 900000000000451002 +6283769021 20150731 1 900000000000207008 16214651000119100 64720009 1 118169006 900000000000011006 900000000000451002 +6283770022 20150731 1 900000000000207008 16214331000119102 50837003 1 118169006 900000000000011006 900000000000451002 +6283771021 20150731 1 900000000000207008 16214371000119104 274319000 1 118171006 900000000000011006 900000000000451002 +6283775028 20150731 1 900000000000207008 16215491000119108 373826004 0 116680003 900000000000011006 900000000000451002 +6283776027 20150731 1 900000000000207008 16215491000119108 69031006 1 118171006 900000000000011006 900000000000451002 +6283776027 20220731 0 900000000000207008 16215491000119108 69031006 1 118171006 900000000000011006 900000000000451002 +6283777020 20150731 1 900000000000207008 16215491000119108 64633006 1 118169006 900000000000011006 900000000000451002 +6283778026 20150731 1 900000000000207008 16211571000119108 127456000 0 116680003 900000000000011006 900000000000451002 +6283779023 20150731 1 900000000000207008 16211571000119108 76752008 0 118169006 900000000000011006 900000000000451002 +6283779023 20190731 1 900000000000207008 16211571000119108 76752008 1 118169006 900000000000011006 900000000000451002 +6283780021 20150731 1 900000000000207008 16211531000119105 127456000 0 116680003 900000000000011006 900000000000451002 +6283781020 20150731 1 900000000000207008 16211531000119105 76752008 0 118169006 900000000000011006 900000000000451002 +6283781020 20190731 1 900000000000207008 16211531000119105 76752008 1 118169006 900000000000011006 900000000000451002 +6283782029 20150731 1 900000000000207008 16211491000119105 127456000 0 116680003 900000000000011006 900000000000451002 +6283783023 20150731 1 900000000000207008 16211491000119105 76752008 0 118169006 900000000000011006 900000000000451002 +6283783023 20190731 1 900000000000207008 16211491000119105 76752008 1 118169006 900000000000011006 900000000000451002 +6283784028 20150731 1 900000000000207008 16211611000119104 127456000 0 116680003 900000000000011006 900000000000451002 +6283785027 20150731 1 900000000000207008 16211611000119104 76752008 0 118169006 900000000000011006 900000000000451002 +6283785027 20190731 1 900000000000207008 16211611000119104 76752008 1 118169006 900000000000011006 900000000000451002 +6283786026 20150731 1 900000000000207008 16211411000119101 127456000 0 116680003 900000000000011006 900000000000451002 +6283787024 20150731 1 900000000000207008 16211411000119101 76752008 0 118169006 900000000000011006 900000000000451002 +6283787024 20190731 1 900000000000207008 16211411000119101 76752008 1 118169006 900000000000011006 900000000000451002 +6283788025 20150731 1 900000000000207008 16211451000119100 127456000 0 116680003 900000000000011006 900000000000451002 +6283789022 20150731 1 900000000000207008 16211451000119100 76752008 0 118169006 900000000000011006 900000000000451002 +6283789022 20190731 1 900000000000207008 16211451000119100 76752008 1 118169006 900000000000011006 900000000000451002 +6283790029 20150731 1 900000000000207008 16213891000119106 309273004 0 116680003 900000000000011006 900000000000451002 +6283791025 20150731 1 900000000000207008 16213891000119106 36503003 1 118171006 900000000000011006 900000000000451002 +6283792021 20150731 1 900000000000207008 16213891000119106 25640004 1 118169006 900000000000011006 900000000000451002 +6283793027 20150731 1 900000000000207008 16214011000119105 309273004 0 116680003 900000000000011006 900000000000451002 +6283794022 20150731 1 900000000000207008 16214011000119105 36503003 1 118171006 900000000000011006 900000000000451002 +6283795023 20150731 1 900000000000207008 16214011000119105 21740000 1 118169006 900000000000011006 900000000000451002 +6283796024 20150731 1 900000000000207008 16214091000119101 309273004 0 116680003 900000000000011006 900000000000451002 +6283797026 20150731 1 900000000000207008 16214091000119101 36503003 1 118171006 900000000000011006 900000000000451002 +6283798020 20150731 1 900000000000207008 16214091000119101 50858009 1 118169006 900000000000011006 900000000000451002 +6283799028 20150731 1 900000000000207008 16211291000119106 122550002 0 116680003 900000000000011006 900000000000451002 +6283800029 20150731 1 900000000000207008 16211291000119106 430246008 0 116680003 900000000000011006 900000000000451002 +6283801025 20150731 1 900000000000207008 16211291000119106 48635004 1 118171006 900000000000011006 900000000000451002 +6283802021 20150731 1 900000000000207008 16211291000119106 91470000 1 118169006 900000000000011006 900000000000451002 +6283805023 20150731 1 900000000000207008 16213931000119103 309273004 0 116680003 900000000000011006 900000000000451002 +6283806024 20150731 1 900000000000207008 16213931000119103 36503003 1 118171006 900000000000011006 900000000000451002 +6283807026 20150731 1 900000000000207008 16213931000119103 367608002 1 118169006 900000000000011006 900000000000451002 +6283808020 20150731 1 900000000000207008 16212811000119105 105455006 1 118170007 900000000000011006 900000000000451002 +6284033028 20150731 1 900000000000207008 708112008 16216131000119105 0 116680003 900000000000011006 900000000000451002 +6284037027 20150731 1 900000000000207008 472884007 16211051000119109 0 116680003 900000000000011006 900000000000451002 +6284047029 20150731 1 900000000000207008 16215611000119102 127458004 0 116680003 900000000000011006 900000000000451002 +6284048023 20150731 1 900000000000207008 16214611000119101 431412004 0 116680003 900000000000011006 900000000000451002 +6284049026 20150731 1 900000000000207008 16214611000119101 312849006 1 118171006 900000000000011006 900000000000451002 +6284050026 20150731 1 900000000000207008 16215571000119106 127458004 0 116680003 900000000000011006 900000000000451002 +6284051027 20150731 1 900000000000207008 16214531000119107 309174004 0 116680003 900000000000011006 900000000000451002 +6284052023 20150731 1 900000000000207008 16214531000119107 312849006 1 118171006 900000000000011006 900000000000451002 +6284053029 20150731 1 900000000000207008 16215691000119106 127458004 0 116680003 900000000000011006 900000000000451002 +6284054024 20150731 1 900000000000207008 16214291000119108 309174004 0 116680003 900000000000011006 900000000000451002 +6284055020 20150731 1 900000000000207008 16214291000119108 312849006 1 118171006 900000000000011006 900000000000451002 +6284056021 20150731 1 900000000000207008 16215651000119101 127458004 0 116680003 900000000000011006 900000000000451002 +6284057028 20150731 1 900000000000207008 16214571000119105 309174004 0 116680003 900000000000011006 900000000000451002 +6284058022 20150731 1 900000000000207008 16214571000119105 312849006 1 118171006 900000000000011006 900000000000451002 +6284059025 20150731 1 900000000000207008 16215531000119108 127458004 0 116680003 900000000000011006 900000000000451002 +6284060024 20150731 1 900000000000207008 16214411000119103 431412004 0 116680003 900000000000011006 900000000000451002 +6284061023 20150731 1 900000000000207008 16214411000119103 312849006 1 118171006 900000000000011006 900000000000451002 +6284062027 20150731 1 900000000000207008 16214651000119100 309174004 0 116680003 900000000000011006 900000000000451002 +6284063021 20150731 1 900000000000207008 16214651000119100 312849006 1 118171006 900000000000011006 900000000000451002 +6284064026 20150731 1 900000000000207008 16223091000119106 309072003 0 116680003 900000000000011006 900000000000451002 +6284064026 20210131 0 900000000000207008 16223091000119106 309072003 0 116680003 900000000000011006 900000000000451002 +6284065025 20150731 1 900000000000207008 16223091000119106 431885000 0 116680003 900000000000011006 900000000000451002 +6284065025 20240701 0 900000000000207008 16223091000119106 431885000 0 116680003 900000000000011006 900000000000451002 +6284066029 20150731 1 900000000000207008 16223091000119106 119388001 0 116680003 900000000000011006 900000000000451002 +6284067022 20150731 1 900000000000207008 16223091000119106 86823009 2 118171006 900000000000011006 900000000000451002 +6284068028 20150731 1 900000000000207008 16223091000119106 34508005 2 118169006 900000000000011006 900000000000451002 +6284069020 20150731 1 900000000000207008 16213411000119100 9040008 1 118169006 900000000000011006 900000000000451002 +6284070021 20150731 1 900000000000207008 16213491000119109 431412004 0 116680003 900000000000011006 900000000000451002 +6284071020 20150731 1 900000000000207008 16213491000119109 119381007 0 116680003 900000000000011006 900000000000451002 +6284072029 20150731 1 900000000000207008 16213491000119109 119287009 1 118171006 900000000000011006 900000000000451002 +6284073023 20150731 1 900000000000207008 16213491000119109 32713005 1 118169006 900000000000011006 900000000000451002 +6284074028 20150731 1 900000000000207008 16213571000119107 119380008 0 116680003 900000000000011006 900000000000451002 +6284075027 20150731 1 900000000000207008 16213571000119107 431412004 0 116680003 900000000000011006 900000000000451002 +6284075027 20220630 0 900000000000207008 16213571000119107 431412004 0 116680003 900000000000011006 900000000000451002 +6284076026 20150731 1 900000000000207008 16213571000119107 119381007 0 116680003 900000000000011006 900000000000451002 +6284076026 20220630 0 900000000000207008 16213571000119107 119381007 0 116680003 900000000000011006 900000000000451002 +6284077024 20150731 1 900000000000207008 16213571000119107 23153004 1 118169006 900000000000011006 900000000000451002 +6284078025 20150731 1 900000000000207008 16213371000119101 16213531000119109 0 116680003 900000000000011006 900000000000451002 +6284079022 20150731 1 900000000000207008 16213371000119101 72592005 1 118169006 900000000000011006 900000000000451002 +6284080020 20150731 1 900000000000207008 16213531000119109 32622004 1 118169006 900000000000011006 900000000000451002 +6284081024 20150731 1 900000000000207008 16215731000119104 122623002 0 116680003 900000000000011006 900000000000451002 +6284082028 20150731 1 900000000000207008 16215731000119104 119378002 0 116680003 900000000000011006 900000000000451002 +6284083022 20150731 1 900000000000207008 16215731000119104 197042001 1 118171006 900000000000011006 900000000000451002 +6284084027 20150731 1 900000000000207008 16215731000119104 37949006 1 118169006 900000000000011006 900000000000451002 +6284085026 20150731 1 900000000000207008 16212691000119100 309072003 0 116680003 900000000000011006 900000000000451002 +6284085026 20210131 0 900000000000207008 16212691000119100 309072003 0 116680003 900000000000011006 900000000000451002 +6284086025 20150731 1 900000000000207008 16212691000119100 309188000 0 116680003 900000000000011006 900000000000451002 +6284087023 20150731 1 900000000000207008 16212691000119100 304502009 1 118171006 900000000000011006 900000000000451002 +6284088029 20150731 1 900000000000207008 16212691000119100 113279002 1 118169006 900000000000011006 900000000000451002 +6284089021 20150731 1 900000000000207008 16213331000119104 447955000 0 116680003 900000000000011006 900000000000451002 +6284090028 20150731 1 900000000000207008 16213331000119104 309260003 0 116680003 900000000000011006 900000000000451002 +6284091029 20150731 1 900000000000207008 16213331000119104 49832006 1 118169006 900000000000011006 900000000000451002 +6284092020 20150731 1 900000000000207008 16213451000119104 16213411000119100 0 116680003 900000000000011006 900000000000451002 +6284093026 20150731 1 900000000000207008 16213451000119104 48338005 1 118169006 900000000000011006 900000000000451002 +6284094021 20150731 1 900000000000207008 16215771000119101 433117007 0 116680003 900000000000011006 900000000000451002 +6284095022 20150731 1 900000000000207008 16215771000119101 431412004 0 116680003 900000000000011006 900000000000451002 +6284096023 20150731 1 900000000000207008 16215771000119101 234286005 1 118171006 900000000000011006 900000000000451002 +6284097025 20150731 1 900000000000207008 16215771000119101 8928004 1 118169006 900000000000011006 900000000000451002 +6284098024 20150731 1 900000000000207008 16222971000119102 433119005 0 116680003 900000000000011006 900000000000451002 +6284099027 20150731 1 900000000000207008 16222971000119102 31343006 1 118171006 900000000000011006 900000000000451002 +6284100024 20150731 1 900000000000207008 16222971000119102 45289007 1 118169006 900000000000011006 900000000000451002 +6284101023 20150731 1 900000000000207008 16223731000119109 84985001 1 118171006 900000000000011006 900000000000451002 +6284102027 20150731 1 900000000000207008 16223731000119109 397158004 1 118169006 900000000000011006 900000000000451002 +6284103021 20150731 1 900000000000207008 16221891000119102 309508006 0 116680003 900000000000011006 900000000000451002 +6284103021 20210131 0 900000000000207008 16221891000119102 309508006 0 116680003 900000000000011006 900000000000451002 +6284104026 20150731 1 900000000000207008 16221891000119102 48635004 1 118171006 900000000000011006 900000000000451002 +6284105025 20150731 1 900000000000207008 16221891000119102 4147007 1 118168003 900000000000011006 900000000000451002 +6284106029 20150731 1 900000000000207008 16221891000119102 87784001 1 118169006 900000000000011006 900000000000451002 +6284107022 20150731 1 900000000000207008 16212371000119106 258415003 0 116680003 900000000000011006 900000000000451002 +6284108028 20150731 1 900000000000207008 16212371000119106 110948009 0 116680003 900000000000011006 900000000000451002 +6284109020 20150731 1 900000000000207008 16212371000119106 439336003 1 118171006 900000000000011006 900000000000451002 +6284110026 20150731 1 900000000000207008 16212371000119106 64033007 1 118169006 900000000000011006 900000000000451002 +6284111027 20150731 1 900000000000207008 16214211000119104 258617003 0 116680003 900000000000011006 900000000000451002 +6284112023 20150731 1 900000000000207008 16211011000119108 112633009 0 118168003 900000000000011006 900000000000451002 +6284112023 20190731 1 900000000000207008 16211011000119108 112633009 1 118168003 900000000000011006 900000000000451002 +6284113029 20150731 1 900000000000207008 16211051000119109 57495003 0 118168003 900000000000011006 900000000000451002 +6284113029 20190731 1 900000000000207008 16211051000119109 57495003 1 118168003 900000000000011006 900000000000451002 +6284114024 20150731 1 900000000000207008 16223771000119107 258415003 0 116680003 900000000000011006 900000000000451002 +6284115020 20150731 1 900000000000207008 16223771000119107 119331003 0 116680003 900000000000011006 900000000000451002 +6284116021 20150731 1 900000000000207008 16223771000119107 258603007 0 116680003 900000000000011006 900000000000451002 +6284117028 20150731 1 900000000000207008 16223771000119107 439336003 1 118171006 900000000000011006 900000000000451002 +6284118022 20150731 1 900000000000207008 16223771000119107 5798000 1 118169006 900000000000011006 900000000000451002 +6284119025 20150731 1 900000000000207008 16216131000119105 430250001 0 116680003 900000000000011006 900000000000451002 +6284120020 20150731 1 900000000000207008 16216131000119105 176747002 1 118171006 900000000000011006 900000000000451002 +6284121024 20150731 1 900000000000207008 16216131000119105 53843000 1 118169006 900000000000011006 900000000000451002 +6284122028 20150731 1 900000000000207008 16210851000119107 420548004 0 116680003 900000000000011006 900000000000451002 +6284122028 20160131 0 900000000000207008 16210851000119107 420548004 0 116680003 900000000000011006 900000000000451002 +6284123022 20150731 1 900000000000207008 16210851000119107 443498007 0 116680003 900000000000011006 900000000000451002 +6284124027 20150731 1 900000000000207008 16210851000119107 113305005 1 118169006 900000000000011006 900000000000451002 +6284125026 20150731 1 900000000000207008 16213691000119107 309493009 0 116680003 900000000000011006 900000000000451002 +6284126025 20150731 1 900000000000207008 16213691000119107 235579009 1 118171006 900000000000011006 900000000000451002 +6284127023 20150731 1 900000000000207008 16213691000119107 79741001 1 118169006 900000000000011006 900000000000451002 +6284128029 20150731 1 900000000000207008 16216091000119108 608842007 0 116680003 900000000000011006 900000000000451002 +6284129021 20150731 1 900000000000207008 16216091000119108 119380008 0 116680003 900000000000011006 900000000000451002 +6284130027 20150731 1 900000000000207008 16216091000119108 439336003 1 118171006 900000000000011006 900000000000451002 +6284131028 20150731 1 900000000000207008 16216091000119108 38848004 1 118169006 900000000000011006 900000000000451002 +6284132024 20150731 1 900000000000207008 16222091000119100 16214131000119104 0 116680003 900000000000011006 900000000000451002 +6284134020 20150731 1 900000000000207008 16222091000119100 39937001 2 118169006 900000000000011006 900000000000451002 +6284135021 20150731 1 900000000000207008 16222091000119100 413675001 2 370133003 900000000000011006 900000000000451002 +6284137029 20150731 1 900000000000207008 16222091000119100 39937001 3 118169006 900000000000011006 900000000000451002 +6284137029 20200131 0 900000000000207008 16222091000119100 39937001 2 118169006 900000000000011006 900000000000451002 +6284138023 20150731 1 900000000000207008 16222091000119100 413675001 3 370133003 900000000000011006 900000000000451002 +6284138023 20200131 0 900000000000207008 16222091000119100 413675001 2 370133003 900000000000011006 900000000000451002 +6284743024 20150731 1 900000000000207008 16211011000119108 16211051000119109 0 116680003 900000000000011006 900000000000451002 +6284744029 20150731 1 900000000000207008 16211011000119108 57495003 0 118168003 900000000000011006 900000000000451002 +6284744029 20190731 1 900000000000207008 16211011000119108 57495003 2 118168003 900000000000011006 900000000000451002 +6284745028 20150731 1 900000000000207008 16222091000119100 440258006 2 118171006 900000000000011006 900000000000451002 +6284746027 20150731 1 900000000000207008 16222091000119100 27204007 3 118171006 900000000000011006 900000000000451002 +6284746027 20200131 0 900000000000207008 16222091000119100 27204007 2 118171006 900000000000011006 900000000000451002 +6284827020 20190731 1 900000000000207008 122609004 955009 1 118169006 900000000000011006 900000000000451002 +6287175022 20150731 1 900000000000207008 16211331000119100 80945002 0 118171006 900000000000011006 900000000000451002 +6287175022 20190731 1 900000000000207008 16211331000119100 80945002 1 118171006 900000000000011006 900000000000451002 +6287176023 20150731 1 900000000000207008 16212251000119107 119379005 0 116680003 900000000000011006 900000000000451002 +6287177025 20150731 1 900000000000207008 16212251000119107 373826004 0 116680003 900000000000011006 900000000000451002 +6287178024 20150731 1 900000000000207008 16212251000119107 40234006 1 118171006 900000000000011006 900000000000451002 +6287179027 20150731 1 900000000000207008 16214691000119105 127457009 0 116680003 900000000000011006 900000000000451002 +6287180029 20150731 1 900000000000207008 16214691000119105 442963006 1 118171006 900000000000011006 900000000000451002 +6287181025 20150731 1 900000000000207008 16214691000119105 413675001 1 370133003 900000000000011006 900000000000451002 +6287182021 20150731 1 900000000000207008 16214971000119103 127457009 0 116680003 900000000000011006 900000000000451002 +6287183027 20150731 1 900000000000207008 16214971000119103 237376002 1 118171006 900000000000011006 900000000000451002 +6287184022 20150731 1 900000000000207008 16214971000119103 413675001 1 370133003 900000000000011006 900000000000451002 +6287188020 20150731 1 900000000000207008 16215051000119107 39117004 1 118169006 900000000000011006 900000000000451002 +6287190021 20150731 1 900000000000207008 16215051000119107 413675001 1 370133003 900000000000011006 900000000000451002 +6287191020 20150731 1 900000000000207008 16221251000119108 446130001 0 116680003 900000000000011006 900000000000451002 +6287192029 20150731 1 900000000000207008 16221251000119108 89837001 1 118169006 900000000000011006 900000000000451002 +6287193023 20150731 1 900000000000207008 16221251000119108 705156009 1 118171006 900000000000011006 900000000000451002 +6287194028 20150731 1 900000000000207008 16222251000119102 441652008 0 116680003 900000000000011006 900000000000451002 +6287195027 20150731 1 900000000000207008 16222251000119102 418024000 1 118171006 900000000000011006 900000000000451002 +6287196026 20150731 1 900000000000207008 16222771000119104 309072003 0 116680003 900000000000011006 900000000000451002 +6287196026 20210131 0 900000000000207008 16222771000119104 309072003 0 116680003 900000000000011006 900000000000451002 +6287197024 20150731 1 900000000000207008 16222771000119104 430248009 0 116680003 900000000000011006 900000000000451002 +6287197024 20200131 0 900000000000207008 16222771000119104 430248009 0 116680003 900000000000011006 900000000000451002 +6287198025 20150731 1 900000000000207008 16222771000119104 26140008 2 118169006 900000000000011006 900000000000451002 +6287199022 20150731 1 900000000000207008 16222771000119104 30374004 2 118171006 900000000000011006 900000000000451002 +6287200020 20150731 1 900000000000207008 16222771000119104 65801008 3 118171006 900000000000011006 900000000000451002 +6287201024 20150731 1 900000000000207008 16222771000119104 413675001 3 370133003 900000000000011006 900000000000451002 +6288506028 20150731 1 900000000000207008 16212051000119104 309049000 0 116680003 900000000000011006 900000000000451002 +6288507021 20150731 1 900000000000207008 16212051000119104 127456000 0 116680003 900000000000011006 900000000000451002 +6288508027 20150731 1 900000000000207008 16212051000119104 373826004 0 116680003 900000000000011006 900000000000451002 +6288509024 20150731 1 900000000000207008 16212051000119104 6189002 1 118171006 900000000000011006 900000000000451002 +6288510025 20150731 1 900000000000207008 16212051000119104 127857003 1 118168003 900000000000011006 900000000000451002 +6288511026 20150731 1 900000000000207008 16212051000119104 76752008 1 118169006 900000000000011006 900000000000451002 +6288512022 20150731 1 900000000000207008 16223491000119100 309169007 0 116680003 900000000000011006 900000000000451002 +6288517027 20150731 1 900000000000207008 16213011000119107 72771008 1 118171006 900000000000011006 900000000000451002 +6288518021 20150731 1 900000000000207008 16212731000119107 232511008 1 118171006 900000000000011006 900000000000451002 +6288519029 20150731 1 900000000000207008 16212731000119107 54215007 1 118169006 900000000000011006 900000000000451002 +6288520024 20150731 1 900000000000207008 16212771000119105 431885000 0 116680003 900000000000011006 900000000000451002 +6288520024 20240701 0 900000000000207008 16212771000119105 431885000 0 116680003 900000000000011006 900000000000451002 +6288521023 20150731 1 900000000000207008 16212771000119105 196308007 1 118171006 900000000000011006 900000000000451002 +6288522027 20150731 1 900000000000207008 16212771000119105 80243003 1 118169006 900000000000011006 900000000000451002 +6288523021 20150731 1 900000000000207008 16215051000119107 369618002 0 116680003 900000000000011006 900000000000451002 +6288524026 20150731 1 900000000000207008 16215051000119107 198700006 1 118171006 900000000000011006 900000000000451002 +6288525025 20150731 1 900000000000207008 16213731000119100 16216171000119108 0 116680003 900000000000011006 900000000000451002 +6288526029 20150731 1 900000000000207008 16213731000119100 14766002 2 118171006 900000000000011006 900000000000451002 +6288527022 20150731 1 900000000000207008 16213731000119100 10200004 2 118169006 900000000000011006 900000000000451002 +6288528028 20150731 1 900000000000207008 16213731000119100 303588003 3 118171006 900000000000011006 900000000000451002 +6288529020 20150731 1 900000000000207008 16213731000119100 10200004 3 118169006 900000000000011006 900000000000451002 +6288530026 20150731 1 900000000000207008 16224131000119105 433326001 0 116680003 900000000000011006 900000000000451002 +6288531027 20150731 1 900000000000207008 16224131000119105 16224091000119108 0 116680003 900000000000011006 900000000000451002 +6288532023 20150731 1 900000000000207008 16224131000119105 62683002 1 118169006 900000000000011006 900000000000451002 +6288533029 20150731 1 900000000000207008 16223051000119101 309051001 0 116680003 900000000000011006 900000000000451002 +6288534024 20150731 1 900000000000207008 16223051000119101 2095001 1 118169006 900000000000011006 900000000000451002 +6288535020 20150731 1 900000000000207008 16223051000119101 32457005 1 370133003 900000000000011006 900000000000451002 +6288536021 20150731 1 900000000000207008 16224291000119101 309051001 0 116680003 900000000000011006 900000000000451002 +6288537028 20150731 1 900000000000207008 16224291000119101 127473003 0 116680003 900000000000011006 900000000000451002 +6288538022 20150731 1 900000000000207008 16224291000119101 175982003 1 118171006 900000000000011006 900000000000451002 +6288539025 20150731 1 900000000000207008 16224291000119101 64033007 1 118169006 900000000000011006 900000000000451002 +6288540028 20150731 1 900000000000207008 16224291000119101 38922008 1 370133003 900000000000011006 900000000000451002 +6288541029 20150731 1 900000000000207008 16210451000119109 430268003 0 116680003 900000000000011006 900000000000451002 +6288542020 20150731 1 900000000000207008 16210451000119109 258431006 0 116680003 900000000000011006 900000000000451002 +6288543026 20150731 1 900000000000207008 16210451000119109 81372006 1 118171006 900000000000011006 900000000000451002 +6288544021 20150731 1 900000000000207008 16210451000119109 272673000 1 118169006 900000000000011006 900000000000451002 +6288545022 20150731 1 900000000000207008 16212971000119107 258415003 0 116680003 900000000000011006 900000000000451002 +6288546023 20150731 1 900000000000207008 16212971000119107 439479000 0 116680003 900000000000011006 900000000000451002 +6288547025 20150731 1 900000000000207008 16212971000119107 309104000 0 116680003 900000000000011006 900000000000451002 +6288548024 20150731 1 900000000000207008 16212971000119107 122479006 2 118171006 900000000000011006 900000000000451002 +6288548024 20190131 0 900000000000207008 16212971000119107 122479006 2 118171006 900000000000011006 900000000000451002 +6288549027 20150731 1 900000000000207008 16212971000119107 61496007 2 118169006 900000000000011006 900000000000451002 +6288549027 20190131 0 900000000000207008 16212971000119107 61496007 2 118169006 900000000000011006 900000000000451002 +6288550027 20150731 1 900000000000207008 16212971000119107 413675001 2 370133003 900000000000011006 900000000000451002 +6288551028 20150731 1 900000000000207008 16212971000119107 72342005 3 118171006 900000000000011006 900000000000451002 +6288551028 20190131 0 900000000000207008 16212971000119107 72342005 3 118171006 900000000000011006 900000000000451002 +6288552024 20150731 1 900000000000207008 16212971000119107 61496007 3 118169006 900000000000011006 900000000000451002 +6288552024 20190131 0 900000000000207008 16212971000119107 61496007 3 118169006 900000000000011006 900000000000451002 +6288553025 20150731 1 900000000000207008 16212971000119107 413675001 3 370133003 900000000000011006 900000000000451002 +6288553025 20190131 0 900000000000207008 16212971000119107 413675001 3 370133003 900000000000011006 900000000000451002 +6288554020 20150731 1 900000000000207008 16212931000119109 445405002 0 116680003 900000000000011006 900000000000451002 +6288555021 20150731 1 900000000000207008 16212931000119109 25353009 1 118171006 900000000000011006 900000000000451002 +6288556022 20150731 1 900000000000207008 16212931000119109 89546000 1 118169006 900000000000011006 900000000000451002 +6288557029 20150731 1 900000000000207008 16210491000119104 258431006 0 116680003 900000000000011006 900000000000451002 +6288558023 20150731 1 900000000000207008 16210491000119104 309283000 0 116680003 900000000000011006 900000000000451002 +6288559026 20150731 1 900000000000207008 16210491000119104 52889002 1 118171006 900000000000011006 900000000000451002 +6288560020 20150731 1 900000000000207008 16210491000119104 36973007 1 118169006 900000000000011006 900000000000451002 +6288561024 20150731 1 900000000000207008 16211211000119102 443654002 0 116680003 900000000000011006 900000000000451002 +6288562028 20150731 1 900000000000207008 16211211000119102 44132006 1 118168003 900000000000011006 900000000000451002 +6288563022 20150731 1 900000000000207008 16211211000119102 52731004 1 118169006 900000000000011006 900000000000451002 +6288563022 20200131 0 900000000000207008 16211211000119102 52731004 1 118169006 900000000000011006 900000000000451002 +6288564027 20150731 1 900000000000207008 16211371000119102 309127008 0 116680003 900000000000011006 900000000000451002 +6288564027 20190131 0 900000000000207008 16211371000119102 309127008 0 116680003 900000000000011006 900000000000451002 +6288565026 20150731 1 900000000000207008 16211371000119102 16212971000119107 0 116680003 900000000000011006 900000000000451002 +6288566025 20150731 1 900000000000207008 16211371000119102 227039004 2 118171006 900000000000011006 900000000000451002 +6288567023 20150731 1 900000000000207008 16211371000119102 41052006 2 118169006 900000000000011006 900000000000451002 +6288568029 20150731 1 900000000000207008 16211371000119102 413675001 2 370133003 900000000000011006 900000000000451002 +6288569021 20150731 1 900000000000207008 16211371000119102 72342005 3 118171006 900000000000011006 900000000000451002 +6288570022 20150731 1 900000000000207008 16211371000119102 41052006 3 118169006 900000000000011006 900000000000451002 +6288571021 20150731 1 900000000000207008 16211371000119102 413675001 3 370133003 900000000000011006 900000000000451002 +6288572025 20150731 1 900000000000207008 16213051000119108 119312009 0 116680003 900000000000011006 900000000000451002 +6288573024 20150731 1 900000000000207008 16213051000119108 116204000 1 118170007 900000000000011006 900000000000451002 +6288573024 20210131 0 900000000000207008 16213051000119108 116204000 1 118170007 900000000000011006 900000000000451002 +6290068024 20150731 1 900000000000207008 16223491000119100 44567001 2 118169006 900000000000011006 900000000000451002 +6290069027 20150731 1 900000000000207008 16223491000119100 31232000 2 118171006 900000000000011006 900000000000451002 +6290070026 20150731 1 900000000000207008 16223491000119100 20139000 3 118169006 900000000000011006 900000000000451002 +6290071027 20150731 1 900000000000207008 16223491000119100 413675001 3 370133003 900000000000011006 900000000000451002 +6290928022 20190131 1 900000000000207008 16212971000119107 72342005 2 118171006 900000000000011006 900000000000451002 +6309959027 20160131 1 900000000000207008 472875007 16210971000119108 0 116680003 900000000000011006 900000000000451002 +6309960021 20160131 1 900000000000207008 16212411000119107 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6309965027 20160131 1 900000000000207008 309176002 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6309968025 20160131 1 900000000000207008 16212451000119108 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6309970023 20160131 1 900000000000207008 16212531000119103 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6309974025 20160131 1 900000000000207008 258531008 16210971000119108 0 116680003 900000000000011006 900000000000451002 +6309979024 20160131 1 900000000000207008 16212571000119100 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6309985028 20160131 1 900000000000207008 16212491000119103 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6309997027 20160131 1 900000000000207008 122609004 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6309997027 20190731 0 900000000000207008 122609004 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6310011025 20160131 1 900000000000207008 472871003 16210971000119108 0 116680003 900000000000011006 900000000000451002 +6310013027 20160131 1 900000000000207008 472876008 16210971000119108 0 116680003 900000000000011006 900000000000451002 +6310014022 20160131 1 900000000000207008 472862007 16210971000119108 0 116680003 900000000000011006 900000000000451002 +6310021022 20160131 1 900000000000207008 447345009 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6310022026 20160131 1 900000000000207008 309173005 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6310023020 20160131 1 900000000000207008 258607008 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6310023020 20190731 0 900000000000207008 258607008 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6310023020 20230331 1 900000000000207008 258607008 16221811000119106 0 116680003 900000000000011006 900000000000451002 +6310024025 20160131 1 900000000000207008 258497007 16210971000119108 0 116680003 900000000000011006 900000000000451002 +6310025029 20160131 1 900000000000207008 472896000 16210971000119108 0 116680003 900000000000011006 900000000000451002 +6310043025 20160131 1 900000000000207008 16221811000119106 258603007 0 116680003 900000000000011006 900000000000451002 +6310044020 20160131 1 900000000000207008 16221811000119106 423692006 1 118171006 900000000000011006 900000000000451002 +6310044020 20230331 0 900000000000207008 16221811000119106 423692006 1 118171006 900000000000011006 900000000000451002 +6310045021 20160131 1 900000000000207008 16221811000119106 20139000 1 118169006 900000000000011006 900000000000451002 +6310046022 20160131 1 900000000000207008 16210971000119108 257261003 0 116680003 900000000000011006 900000000000451002 +6310047029 20160131 1 900000000000207008 16210971000119108 309049000 0 116680003 900000000000011006 900000000000451002 +6310048023 20160131 1 900000000000207008 16210971000119108 285570007 1 118171006 900000000000011006 900000000000451002 +6310049026 20160131 1 900000000000207008 16210971000119108 52988006 1 118168003 900000000000011006 900000000000451002 +6310050026 20160131 1 900000000000207008 16210811000119106 258435002 0 116680003 900000000000011006 900000000000451002 +6310051027 20160131 1 900000000000207008 16210811000119106 47284001 1 118168003 900000000000011006 900000000000451002 +6310052023 20160131 1 900000000000207008 16210811000119106 413675001 1 370133003 900000000000011006 900000000000451002 +6401773027 20160131 1 900000000000207008 271515009 430214008 0 116680003 900000000000011006 900000000000451002 +6401773027 20160731 0 900000000000207008 271515009 430214008 0 116680003 900000000000011006 900000000000451002 +6401773027 20200131 1 900000000000207008 271515009 430214008 0 116680003 900000000000011006 900000000000451002 +6414253029 20160131 1 900000000000207008 16210851000119107 16210891000119102 0 116680003 900000000000011006 900000000000451002 +6414299027 20160131 1 900000000000207008 15650601000119102 399680007 0 116680003 900000000000011006 900000000000451002 +6414300024 20160131 1 900000000000207008 15650601000119102 420548004 0 116680003 900000000000011006 900000000000451002 +6414301023 20160131 1 900000000000207008 15650601000119102 108369006 1 118168003 900000000000011006 900000000000451002 +6414302027 20160131 1 900000000000207008 15650601000119102 69748006 1 118169006 900000000000011006 900000000000451002 +6414303021 20160131 1 900000000000207008 16210891000119102 420548004 0 116680003 900000000000011006 900000000000451002 +6414304026 20160131 1 900000000000207008 16210891000119102 119398007 0 116680003 900000000000011006 900000000000451002 +6414305025 20160131 1 900000000000207008 16210891000119102 108369006 1 118168003 900000000000011006 900000000000451002 +6414306029 20160131 1 900000000000207008 16210891000119102 12738006 1 118169006 900000000000011006 900000000000451002 +6414307022 20160131 1 900000000000207008 15650531000119105 420548004 0 116680003 900000000000011006 900000000000451002 +6414308028 20160131 1 900000000000207008 15650531000119105 119382000 0 116680003 900000000000011006 900000000000451002 +6414309020 20160131 1 900000000000207008 15650531000119105 447955000 0 116680003 900000000000011006 900000000000451002 +6414310026 20160131 1 900000000000207008 15650531000119105 108369006 1 118168003 900000000000011006 900000000000451002 +6414311027 20160131 1 900000000000207008 15650531000119105 49832006 1 118169006 900000000000011006 900000000000451002 +6432276020 20160131 1 900000000000207008 16213251000119100 119312009 0 116680003 900000000000011006 900000000000451002 +6432277027 20160131 1 900000000000207008 16213251000119100 472917009 2 118171006 900000000000011006 900000000000451002 +6432277027 20210131 0 900000000000207008 16213251000119100 472917009 2 118171006 900000000000011006 900000000000451002 +6432377025 20160131 1 900000000000207008 16219801000119102 472919007 0 116680003 900000000000011006 900000000000451002 +6432378024 20160131 1 900000000000207008 16219801000119102 472917009 1 118171006 900000000000011006 900000000000451002 +6432958023 20160131 1 900000000000207008 16223251000119109 472917009 2 118171006 900000000000011006 900000000000451002 +6432958023 20170731 0 900000000000207008 16223251000119109 472917009 2 118171006 900000000000011006 900000000000451002 +6432998020 20160131 1 900000000000207008 472929000 472917009 2 118171006 900000000000011006 900000000000451002 +6432998020 20210131 0 900000000000207008 472929000 472917009 2 118171006 900000000000011006 900000000000451002 +6434659025 20160131 1 900000000000207008 396480004 16212131000119106 0 116680003 900000000000011006 900000000000451002 +6434662027 20160131 1 900000000000207008 396478005 16212131000119106 0 116680003 900000000000011006 900000000000451002 +6434668028 20160131 1 900000000000207008 396476009 16212131000119106 0 116680003 900000000000011006 900000000000451002 +6434673023 20160131 1 900000000000207008 438659007 16212131000119106 0 116680003 900000000000011006 900000000000451002 +6434673023 20240901 0 900000000000207008 438659007 16212131000119106 0 116680003 900000000000011006 900000000000451002 +6434678025 20160131 1 900000000000207008 396479002 16212131000119106 0 116680003 900000000000011006 900000000000451002 +6434704024 20160131 1 900000000000207008 16212171000119109 309275006 0 116680003 900000000000011006 900000000000451002 +6434705020 20160131 1 900000000000207008 16212171000119109 287708003 1 118171006 900000000000011006 900000000000451002 +6434706021 20160131 1 900000000000207008 16212171000119109 89837001 1 118169006 900000000000011006 900000000000451002 +6434707028 20160131 1 900000000000207008 16212171000119109 413675001 1 370133003 900000000000011006 900000000000451002 +6434708022 20160131 1 900000000000207008 16213851000119101 309183009 0 116680003 900000000000011006 900000000000451002 +6434709025 20160131 1 900000000000207008 16213851000119101 66478002 1 118171006 900000000000011006 900000000000451002 +6434710024 20160131 1 900000000000207008 16213851000119101 4596009 1 118169006 900000000000011006 900000000000451002 +6434711023 20160131 1 900000000000207008 16213851000119101 413675001 1 370133003 900000000000011006 900000000000451002 +6434712027 20160131 1 900000000000207008 16212331000119108 127454002 0 116680003 900000000000011006 900000000000451002 +6434712027 20210131 0 900000000000207008 16212331000119108 127454002 0 116680003 900000000000011006 900000000000451002 +6434714026 20160131 1 900000000000207008 16211651000119103 258417006 0 116680003 900000000000011006 900000000000451002 +6434715025 20160131 1 900000000000207008 16211651000119103 439479000 0 116680003 900000000000011006 900000000000451002 +6434716029 20160131 1 900000000000207008 16211651000119103 239329001 1 118171006 900000000000011006 900000000000451002 +6434717022 20160131 1 900000000000207008 16211651000119103 272673000 1 118169006 900000000000011006 900000000000451002 +6434718028 20160131 1 900000000000207008 16211651000119103 413675001 1 370133003 900000000000011006 900000000000451002 +6434719020 20160131 1 900000000000207008 16210411000119108 430133009 0 116680003 900000000000011006 900000000000451002 +6434720025 20160131 1 900000000000207008 16210411000119108 440502004 0 116680003 900000000000011006 900000000000451002 +6434721026 20160131 1 900000000000207008 16210411000119108 363328006 0 116680003 900000000000011006 900000000000451002 +6434722022 20160131 1 900000000000207008 16210411000119108 173225009 1 118171006 900000000000011006 900000000000451002 +6434723028 20160131 1 900000000000207008 16210411000119108 48477009 1 118169006 900000000000011006 900000000000451002 +6434724023 20160131 1 900000000000207008 16210411000119108 413675001 1 370133003 900000000000011006 900000000000451002 +6434725024 20160131 1 900000000000207008 16212091000119109 16212131000119106 0 116680003 900000000000011006 900000000000451002 +6434727027 20160131 1 900000000000207008 16212091000119109 10200004 1 118169006 900000000000011006 900000000000451002 +6434728021 20160131 1 900000000000207008 16212091000119109 413675001 1 370133003 900000000000011006 900000000000451002 +6434729029 20160131 1 900000000000207008 16212131000119106 439034006 0 116680003 900000000000011006 900000000000451002 +6434730023 20160131 1 900000000000207008 16212131000119106 71273005 1 118171006 900000000000011006 900000000000451002 +6434731022 20160131 1 900000000000207008 16212131000119106 10200004 1 118169006 900000000000011006 900000000000451002 +6434732026 20160131 1 900000000000207008 16212131000119106 413675001 1 370133003 900000000000011006 900000000000451002 +6444869021 20160131 1 900000000000207008 16222611000119100 309133004 0 116680003 900000000000011006 900000000000451002 +6444870022 20160131 1 900000000000207008 16222611000119100 30426000 1 118171006 900000000000011006 900000000000451002 +6444871021 20160131 1 900000000000207008 16222611000119100 41216001 1 118169006 900000000000011006 900000000000451002 +6444872025 20160131 1 900000000000207008 16222611000119100 413675001 1 370133003 900000000000011006 900000000000451002 +6454477021 20160131 1 900000000000207008 438542005 309072003 0 116680003 900000000000011006 900000000000451002 +6454477021 20210131 0 900000000000207008 438542005 309072003 0 116680003 900000000000011006 900000000000451002 +6458408023 20160131 1 900000000000207008 472929000 713376004 2 118170007 900000000000011006 900000000000451002 +6458408023 20210131 0 900000000000207008 472929000 713376004 2 118170007 900000000000011006 900000000000451002 +6462712023 20160131 1 900000000000207008 16212091000119109 713519000 1 118171006 900000000000011006 900000000000451002 +6462713029 20160131 1 900000000000207008 16212331000119108 713441002 0 118170007 900000000000011006 900000000000451002 +6462713029 20190731 1 900000000000207008 16212331000119108 713441002 1 118170007 900000000000011006 900000000000451002 +6462713029 20210131 0 900000000000207008 16212331000119108 713441002 1 118170007 900000000000011006 900000000000451002 +6462714024 20160131 1 900000000000207008 16213251000119100 713378003 2 118170007 900000000000011006 900000000000451002 +6462714024 20210131 0 900000000000207008 16213251000119100 713378003 2 118170007 900000000000011006 900000000000451002 +6462715020 20160131 1 900000000000207008 16219801000119102 713375000 1 118170007 900000000000011006 900000000000451002 +6462715020 20210131 0 900000000000207008 16219801000119102 713375000 1 118170007 900000000000011006 900000000000451002 +6462717028 20160131 1 900000000000207008 16223251000119109 713376004 2 118170007 900000000000011006 900000000000451002 +6462717028 20170731 0 900000000000207008 16223251000119109 713376004 2 118170007 900000000000011006 900000000000451002 +6612302023 20170131 1 900000000000207008 718684005 309283000 0 116680003 900000000000011006 900000000000451002 +6612303029 20170131 1 900000000000207008 718684005 36973007 1 118169006 900000000000011006 900000000000451002 +6612304024 20170131 1 900000000000207008 718684005 445713002 1 118171006 900000000000011006 900000000000451002 +6631166020 20170131 1 900000000000207008 16220041000119107 119312009 0 116680003 900000000000011006 900000000000451002 +6631167027 20170131 1 900000000000207008 16220041000119107 713377008 1 118170007 900000000000011006 900000000000451002 +6631167027 20210131 0 900000000000207008 16220041000119107 713377008 1 118170007 900000000000011006 900000000000451002 +6631168021 20170131 1 900000000000207008 16220041000119107 472917009 1 118171006 900000000000011006 900000000000451002 +6682172023 20170131 1 900000000000207008 127470000 363328006 0 116680003 900000000000011006 900000000000451002 +6775833021 20170131 1 900000000000207008 438336007 128156008 0 116680003 900000000000011006 900000000000451002 +6777639022 20170131 1 900000000000207008 473416002 119311002 0 116680003 900000000000011006 900000000000451002 +6809840024 20170731 1 900000000000207008 258607008 258606004 0 116680003 900000000000011006 900000000000451002 +6809841023 20170731 1 900000000000207008 258607008 82094008 2 118169006 900000000000011006 900000000000451002 +6809841023 20190731 0 900000000000207008 258607008 82094008 2 118169006 900000000000011006 900000000000451002 +6809842027 20170731 1 900000000000207008 258607008 397394009 2 118171006 900000000000011006 900000000000451002 +6809842027 20190731 0 900000000000207008 258607008 397394009 2 118171006 900000000000011006 900000000000451002 +6810303022 20170731 1 900000000000207008 16209691000119106 44029006 2 118169006 900000000000011006 900000000000451002 +6810303022 20190731 0 900000000000207008 16209691000119106 44029006 2 118169006 900000000000011006 900000000000451002 +6810304027 20170731 1 900000000000207008 16209691000119106 442148007 2 118171006 900000000000011006 900000000000451002 +6810304027 20190731 0 900000000000207008 16209691000119106 442148007 2 118171006 900000000000011006 900000000000451002 +6810305026 20170731 1 900000000000207008 16209731000119104 3341006 2 118169006 900000000000011006 900000000000451002 +6810305026 20190731 0 900000000000207008 16209731000119104 3341006 2 118169006 900000000000011006 900000000000451002 +6810306025 20170731 1 900000000000207008 16209731000119104 442148007 2 118171006 900000000000011006 900000000000451002 +6810306025 20190731 0 900000000000207008 16209731000119104 442148007 2 118171006 900000000000011006 900000000000451002 +6810307023 20170731 1 900000000000207008 16209771000119101 41224006 2 118169006 900000000000011006 900000000000451002 +6810307023 20190731 0 900000000000207008 16209771000119101 41224006 2 118169006 900000000000011006 900000000000451002 +6810308029 20170731 1 900000000000207008 16209771000119101 397394009 2 118171006 900000000000011006 900000000000451002 +6810308029 20190731 0 900000000000207008 16209771000119101 397394009 2 118171006 900000000000011006 900000000000451002 +6810309021 20170731 1 900000000000207008 16209811000119101 44714003 2 118169006 900000000000011006 900000000000451002 +6810309021 20190731 0 900000000000207008 16209811000119101 44714003 2 118169006 900000000000011006 900000000000451002 +6810310027 20170731 1 900000000000207008 16209811000119101 397394009 2 118171006 900000000000011006 900000000000451002 +6810310027 20190731 0 900000000000207008 16209811000119101 397394009 2 118171006 900000000000011006 900000000000451002 +6810311028 20170731 1 900000000000207008 16209851000119100 42400003 2 118169006 900000000000011006 900000000000451002 +6810311028 20190731 0 900000000000207008 16209851000119100 42400003 2 118169006 900000000000011006 900000000000451002 +6810312024 20170731 1 900000000000207008 16209851000119100 397394009 2 118171006 900000000000011006 900000000000451002 +6810312024 20190731 0 900000000000207008 16209851000119100 397394009 2 118171006 900000000000011006 900000000000451002 +6810313025 20170731 1 900000000000207008 16209891000119105 72481006 2 118169006 900000000000011006 900000000000451002 +6810313025 20190731 0 900000000000207008 16209891000119105 72481006 2 118169006 900000000000011006 900000000000451002 +6810314020 20170731 1 900000000000207008 16209891000119105 397394009 2 118171006 900000000000011006 900000000000451002 +6810314020 20190731 0 900000000000207008 16209891000119105 397394009 2 118171006 900000000000011006 900000000000451002 +6810315021 20170731 1 900000000000207008 16209931000119102 266005 2 118169006 900000000000011006 900000000000451002 +6810315021 20190731 0 900000000000207008 16209931000119102 266005 2 118169006 900000000000011006 900000000000451002 +6810316022 20170731 1 900000000000207008 16209931000119102 397394009 2 118171006 900000000000011006 900000000000451002 +6810316022 20190731 0 900000000000207008 16209931000119102 397394009 2 118171006 900000000000011006 900000000000451002 +6845266023 20170731 1 900000000000207008 110934009 363311008 0 116680003 900000000000011006 900000000000451002 +6845267025 20170731 1 900000000000207008 119389009 716151000 0 118169006 900000000000011006 900000000000451002 +6845267025 20190731 1 900000000000207008 119389009 716151000 1 118169006 900000000000011006 900000000000451002 +6845268024 20170731 1 900000000000207008 128172000 716151000 0 118169006 900000000000011006 900000000000451002 +6845268024 20190731 1 900000000000207008 128172000 716151000 2 118169006 900000000000011006 900000000000451002 +6845276021 20170731 1 900000000000207008 258412000 363311008 0 116680003 900000000000011006 900000000000451002 +6845277028 20170731 1 900000000000207008 258469001 363311008 0 116680003 900000000000011006 900000000000451002 +6845280027 20170731 1 900000000000207008 309193002 258604001 0 116680003 900000000000011006 900000000000451002 +6845281028 20170731 1 900000000000207008 309193002 363311008 0 116680003 900000000000011006 900000000000451002 +6845283025 20170731 1 900000000000207008 430144001 119389009 0 116680003 900000000000011006 900000000000451002 +6845284020 20170731 1 900000000000207008 430222001 363311008 0 116680003 900000000000011006 900000000000451002 +6845285021 20170731 1 900000000000207008 430222001 716151000 0 118169006 900000000000011006 900000000000451002 +6845285021 20190731 1 900000000000207008 430222001 716151000 2 118169006 900000000000011006 900000000000451002 +6845286022 20170731 1 900000000000207008 430248009 258604001 0 116680003 900000000000011006 900000000000451002 +6845287029 20170731 1 900000000000207008 430248009 363311008 0 116680003 900000000000011006 900000000000451002 +6845293021 20170731 1 900000000000207008 447391001 258604001 0 116680003 900000000000011006 900000000000451002 +6845294026 20170731 1 900000000000207008 447391001 363311008 0 116680003 900000000000011006 900000000000451002 +6845295025 20170731 1 900000000000207008 472881004 363311008 0 116680003 900000000000011006 900000000000451002 +6845325021 20170731 1 900000000000207008 16222771000119104 119389009 0 116680003 900000000000011006 900000000000451002 +6845325021 20200131 0 900000000000207008 16222771000119104 119389009 0 116680003 900000000000011006 900000000000451002 +6860704027 20170731 1 900000000000207008 258470000 432825001 0 116680003 900000000000011006 900000000000451002 +6860705026 20170731 1 900000000000207008 258470000 41216001 2 118169006 900000000000011006 900000000000451002 +6860706025 20170731 1 900000000000207008 258470000 81689006 2 370133003 900000000000011006 900000000000451002 +6860707023 20170731 1 900000000000207008 258471001 41216001 2 118169006 900000000000011006 900000000000451002 +6860708029 20170731 1 900000000000207008 258471001 64663002 2 118171006 900000000000011006 900000000000451002 +6860709021 20170731 1 900000000000207008 258471001 81689006 2 370133003 900000000000011006 900000000000451002 +6860712024 20170731 1 900000000000207008 446700001 41216001 2 118169006 900000000000011006 900000000000451002 +6860713025 20170731 1 900000000000207008 446700001 252925009 2 118171006 900000000000011006 900000000000451002 +6860714020 20170731 1 900000000000207008 446700001 81689006 2 370133003 900000000000011006 900000000000451002 +6878875024 20170731 1 900000000000207008 258446004 955009 2 118169006 900000000000011006 900000000000451002 +6878876020 20170731 1 900000000000207008 258446004 725133006 2 370133003 900000000000011006 900000000000451002 +6878877027 20170731 1 900000000000207008 258461003 386152007 2 118168003 900000000000011006 900000000000451002 +6878878021 20170731 1 900000000000207008 258461003 725093005 2 370133003 900000000000011006 900000000000451002 +6878931021 20170731 1 900000000000207008 447345009 955009 2 118169006 900000000000011006 900000000000451002 +6878932025 20170731 1 900000000000207008 447345009 36370000 2 118170007 900000000000011006 900000000000451002 +6878933024 20170731 1 900000000000207008 447345009 257925000 2 118171006 900000000000011006 900000000000451002 +6878934029 20170731 1 900000000000207008 447345009 725133006 2 370133003 900000000000011006 900000000000451002 +6888475020 20170731 1 900000000000207008 725372003 119376003 0 116680003 900000000000011006 900000000000451002 +6888475020 20210131 0 900000000000207008 725372003 119376003 0 116680003 900000000000011006 900000000000451002 +6888476021 20170731 1 900000000000207008 725372003 309479002 0 116680003 900000000000011006 900000000000451002 +6888476021 20180131 0 900000000000207008 725372003 309479002 0 116680003 900000000000011006 900000000000451002 +6888477028 20170731 1 900000000000207008 725372003 430232008 0 116680003 900000000000011006 900000000000451002 +6888477028 20180131 0 900000000000207008 725372003 430232008 0 116680003 900000000000011006 900000000000451002 +6888478022 20170731 1 900000000000207008 725372003 15825003 1 118169006 900000000000011006 900000000000451002 +6888479025 20170731 1 900000000000207008 725372003 413675001 1 370133003 900000000000011006 900000000000451002 +6903820021 20170731 1 900000000000207008 725946000 119351004 0 116680003 900000000000011006 900000000000451002 +6903821020 20170731 1 900000000000207008 725946000 52802009 0 118169006 900000000000011006 900000000000451002 +6903821020 20190731 1 900000000000207008 725946000 52802009 1 118169006 900000000000011006 900000000000451002 +6915540028 20170731 1 900000000000207008 725957005 122736005 0 116680003 900000000000011006 900000000000451002 +6915541029 20170731 1 900000000000207008 725957005 78067005 1 118169006 900000000000011006 900000000000451002 +6915542020 20170731 1 900000000000207008 725957005 413675001 1 370133003 900000000000011006 900000000000451002 +6915697022 20170731 1 900000000000207008 16223251000119109 725874009 1 118170007 900000000000011006 900000000000451002 +6915697022 20210131 0 900000000000207008 16223251000119109 725874009 1 118170007 900000000000011006 900000000000451002 +6957468026 20170731 1 900000000000207008 732211001 409821005 0 116680003 900000000000011006 900000000000451002 +6957469023 20170731 1 900000000000207008 732211001 431938005 1 118169006 900000000000011006 900000000000451002 +6957470024 20170731 1 900000000000207008 732211001 40597003 1 118171006 900000000000011006 900000000000451002 +6957471023 20170731 1 900000000000207008 732211001 78014005 1 370133003 900000000000011006 900000000000451002 +6957491027 20170731 1 900000000000207008 732217002 409821005 0 116680003 900000000000011006 900000000000451002 +6957492023 20170731 1 900000000000207008 732217002 431938005 1 118169006 900000000000011006 900000000000451002 +6957493029 20170731 1 900000000000207008 732217002 732218007 1 118171006 900000000000011006 900000000000451002 +6957494024 20170731 1 900000000000207008 732217002 78014005 1 370133003 900000000000011006 900000000000451002 +6957500023 20170731 1 900000000000207008 732220005 409821005 0 116680003 900000000000011006 900000000000451002 +6957501022 20170731 1 900000000000207008 732220005 431938005 1 118169006 900000000000011006 900000000000451002 +6957502026 20170731 1 900000000000207008 732220005 732221009 1 118171006 900000000000011006 900000000000451002 +6957503020 20170731 1 900000000000207008 732220005 78014005 1 370133003 900000000000011006 900000000000451002 +6957507021 20170731 1 900000000000207008 732222002 409821005 0 116680003 900000000000011006 900000000000451002 +6957508027 20170731 1 900000000000207008 732222002 431938005 1 118169006 900000000000011006 900000000000451002 +6957509024 20170731 1 900000000000207008 732222002 732223007 1 118171006 900000000000011006 900000000000451002 +6957510025 20170731 1 900000000000207008 732222002 78014005 1 370133003 900000000000011006 900000000000451002 +6966935023 20170731 1 900000000000207008 732227008 119339001 0 116680003 900000000000011006 900000000000451002 +6966936024 20170731 1 900000000000207008 732227008 732228003 1 118171006 900000000000011006 900000000000451002 +6966937026 20170731 1 900000000000207008 732227008 39477002 1 370133003 900000000000011006 900000000000451002 +6968745024 20170731 1 900000000000207008 732226004 119339001 0 116680003 900000000000011006 900000000000451002 +6968746020 20170731 1 900000000000207008 732226004 732292007 1 118171006 900000000000011006 900000000000451002 +6968747027 20170731 1 900000000000207008 732226004 39477002 1 370133003 900000000000011006 900000000000451002 +6968757026 20170731 1 900000000000207008 732293002 119350003 0 116680003 900000000000011006 900000000000451002 +6968758020 20170731 1 900000000000207008 732293002 732294008 0 370133003 900000000000011006 900000000000451002 +6968758020 20190731 1 900000000000207008 732293002 732294008 1 370133003 900000000000011006 900000000000451002 +6968760022 20170731 1 900000000000207008 732295009 119397002 0 116680003 900000000000011006 900000000000451002 +6968761021 20170731 1 900000000000207008 732295009 258439008 0 116680003 900000000000011006 900000000000451002 +6968762025 20170731 1 900000000000207008 732295009 18911002 1 118169006 900000000000011006 900000000000451002 +6968763024 20170731 1 900000000000207008 732295009 307488001 1 370133003 900000000000011006 900000000000451002 +6968879026 20170731 1 900000000000207008 732964006 119310001 0 116680003 900000000000011006 900000000000451002 +6968879026 20210131 0 900000000000207008 732964006 119310001 0 116680003 900000000000011006 900000000000451002 +6968880028 20170731 1 900000000000207008 732964006 472919007 0 116680003 900000000000011006 900000000000451002 +6968880028 20210131 0 900000000000207008 732964006 472919007 0 116680003 900000000000011006 900000000000451002 +6968881029 20170731 1 900000000000207008 732964006 470571004 1 118170007 900000000000011006 900000000000451002 +6968881029 20210131 0 900000000000207008 732964006 470571004 1 118170007 900000000000011006 900000000000451002 +6968882020 20170731 1 900000000000207008 732964006 472917009 1 118171006 900000000000011006 900000000000451002 +6975648026 20170731 1 900000000000207008 438545007 732975005 0 116680003 900000000000011006 900000000000451002 +6978919020 20170731 1 900000000000207008 732972008 258453008 0 116680003 900000000000011006 900000000000451002 +6978920025 20170731 1 900000000000207008 732972008 309291009 0 116680003 900000000000011006 900000000000451002 +6978921026 20170731 1 900000000000207008 732972008 367643001 1 118168003 900000000000011006 900000000000451002 +6978922022 20170731 1 900000000000207008 732972008 15497006 1 118169006 900000000000011006 900000000000451002 +6978926020 20170731 1 900000000000207008 732975005 309051001 0 116680003 900000000000011006 900000000000451002 +6978927027 20170731 1 900000000000207008 732975005 309140003 0 116680003 900000000000011006 900000000000451002 +6978928021 20170731 1 900000000000207008 732975005 87644002 1 118169006 900000000000011006 900000000000451002 +6978929029 20170731 1 900000000000207008 732975005 32457005 1 370133003 900000000000011006 900000000000451002 +6978932026 20170731 1 900000000000207008 732976006 84301002 1 118169006 900000000000011006 900000000000451002 +6993364023 20170731 1 900000000000207008 258466008 733056005 0 116680003 900000000000011006 900000000000451002 +6994077029 20170731 1 900000000000207008 732976006 733056005 0 116680003 900000000000011006 900000000000451002 +6994180026 20170731 1 900000000000207008 733056005 117590005 1 118169006 900000000000011006 900000000000451002 +6995820023 20170731 1 900000000000207008 472931009 733458001 2 118170007 900000000000011006 900000000000451002 +6995820023 20210131 0 900000000000207008 472931009 733458001 2 118170007 900000000000011006 900000000000451002 +6995821022 20170731 1 900000000000207008 472931009 472917009 2 118171006 900000000000011006 900000000000451002 +6995821022 20210131 0 900000000000207008 472931009 472917009 2 118171006 900000000000011006 900000000000451002 +6996047022 20170731 1 900000000000207008 733101007 258442002 0 116680003 900000000000011006 900000000000451002 +6996048028 20170731 1 900000000000207008 733101007 433323009 0 116680003 900000000000011006 900000000000451002 +6996049020 20170731 1 900000000000207008 733101007 243986007 1 118169006 900000000000011006 900000000000451002 +6996050020 20170731 1 900000000000207008 733101007 33463005 1 370133003 900000000000011006 900000000000451002 +6996051024 20170731 1 900000000000207008 733103005 119376003 0 116680003 900000000000011006 900000000000451002 +6996052028 20170731 1 900000000000207008 733103005 309049000 0 116680003 900000000000011006 900000000000451002 +6996052028 20180131 0 900000000000207008 733103005 309049000 0 116680003 900000000000011006 900000000000451002 +6996053022 20170731 1 900000000000207008 733103005 12402003 1 118168003 900000000000011006 900000000000451002 +6996054027 20170731 1 900000000000207008 733103005 413675001 1 370133003 900000000000011006 900000000000451002 +6996055026 20170731 1 900000000000207008 733104004 257261003 0 116680003 900000000000011006 900000000000451002 +6996055026 20200731 0 900000000000207008 733104004 257261003 0 116680003 900000000000011006 900000000000451002 +6996056025 20170731 1 900000000000207008 733104004 309072003 0 116680003 900000000000011006 900000000000451002 +6996056025 20210131 0 900000000000207008 733104004 309072003 0 116680003 900000000000011006 900000000000451002 +6996057023 20170731 1 900000000000207008 733104004 363311008 0 116680003 900000000000011006 900000000000451002 +6996058029 20170731 1 900000000000207008 733104004 430220009 0 116680003 900000000000011006 900000000000451002 +6996058029 20200731 0 900000000000207008 733104004 430220009 0 116680003 900000000000011006 900000000000451002 +6996059021 20170731 1 900000000000207008 733104004 16811007 1 118169006 900000000000011006 900000000000451002 +6996060027 20170731 1 900000000000207008 733104004 285570007 1 118171006 900000000000011006 900000000000451002 +6996061028 20170731 1 900000000000207008 733105003 110898006 0 116680003 900000000000011006 900000000000451002 +6996063025 20170731 1 900000000000207008 733105003 432382007 0 116680003 900000000000011006 900000000000451002 +6996064020 20170731 1 900000000000207008 733105003 81105003 1 118169006 900000000000011006 900000000000451002 +6996065021 20170731 1 900000000000207008 733105003 234281000 1 118171006 900000000000011006 900000000000451002 +6997234027 20170731 1 900000000000207008 122642003 85774003 2 118169006 900000000000011006 900000000000451002 +6997235026 20170731 1 900000000000207008 122642003 359571009 2 118171006 900000000000011006 900000000000451002 +6997236025 20170731 1 900000000000207008 122642003 413675001 2 370133003 900000000000011006 900000000000451002 +6997237023 20170731 1 900000000000207008 122648004 309223002 0 116680003 900000000000011006 900000000000451002 +6997237023 20190731 0 900000000000207008 122648004 309223002 0 116680003 900000000000011006 900000000000451002 +6997238029 20170731 1 900000000000207008 122648004 51342009 2 118169006 900000000000011006 900000000000451002 +6997239021 20170731 1 900000000000207008 122648004 359571009 2 118171006 900000000000011006 900000000000451002 +6997240023 20170731 1 900000000000207008 122648004 413675001 2 370133003 900000000000011006 900000000000451002 +6997317022 20170731 1 900000000000207008 422991009 51342009 1 118169006 900000000000011006 900000000000451002 +6997318028 20170731 1 900000000000207008 422991009 359571009 1 118171006 900000000000011006 900000000000451002 +6997319020 20170731 1 900000000000207008 422991009 413675001 1 370133003 900000000000011006 900000000000451002 +6999657021 20170731 1 900000000000207008 116161004 733476008 0 116680003 900000000000011006 900000000000451002 +6999688020 20170731 1 900000000000207008 258662004 733478009 0 118171006 900000000000011006 900000000000451002 +6999688020 20190731 1 900000000000207008 258662004 733478009 1 118171006 900000000000011006 900000000000451002 +6999688020 20220131 0 900000000000207008 258662004 733478009 1 118171006 900000000000011006 900000000000451002 +6999689028 20170731 1 900000000000207008 258663009 733478009 0 118171006 900000000000011006 900000000000451002 +6999689028 20190731 1 900000000000207008 258663009 733478009 1 118171006 900000000000011006 900000000000451002 +6999689028 20220131 0 900000000000207008 258663009 733478009 1 118171006 900000000000011006 900000000000451002 +6999690021 20170731 1 900000000000207008 258664003 733478009 0 118171006 900000000000011006 900000000000451002 +6999690021 20190731 1 900000000000207008 258664003 733478009 1 118171006 900000000000011006 900000000000451002 +6999690021 20220131 0 900000000000207008 258664003 733478009 1 118171006 900000000000011006 900000000000451002 +6999819023 20170731 1 900000000000207008 733105003 733476008 0 116680003 900000000000011006 900000000000451002 +7000282026 20170731 1 900000000000207008 733475007 420548004 0 116680003 900000000000011006 900000000000451002 +7000283020 20170731 1 900000000000207008 733475007 733476008 0 116680003 900000000000011006 900000000000451002 +7000284025 20170731 1 900000000000207008 733475007 4147007 1 118168003 900000000000011006 900000000000451002 +7000285029 20170731 1 900000000000207008 733475007 45048000 1 118169006 900000000000011006 900000000000451002 +7000286028 20170731 1 900000000000207008 733475007 238363005 1 118171006 900000000000011006 900000000000451002 +7000287021 20170731 1 900000000000207008 733476008 48469005 0 116680003 900000000000011006 900000000000451002 +7000288027 20170731 1 900000000000207008 733476008 431886004 0 116680003 900000000000011006 900000000000451002 +7000288027 20240701 0 900000000000207008 733476008 431886004 0 116680003 900000000000011006 900000000000451002 +7000289024 20170731 1 900000000000207008 733476008 45048000 1 118169006 900000000000011006 900000000000451002 +7000290026 20170731 1 900000000000207008 733476008 733477004 1 118171006 900000000000011006 900000000000451002 +7000306027 20170731 1 900000000000207008 733482006 122575003 0 116680003 900000000000011006 900000000000451002 +7000307020 20170731 1 900000000000207008 733482006 431938005 1 118169006 900000000000011006 900000000000451002 +7000308026 20170731 1 900000000000207008 733482006 733481004 1 118171006 900000000000011006 900000000000451002 +7000309023 20170731 1 900000000000207008 733482006 78014005 1 370133003 900000000000011006 900000000000451002 +7000313027 20170731 1 900000000000207008 733484007 119397002 0 116680003 900000000000011006 900000000000451002 +7000314022 20170731 1 900000000000207008 733484007 258431006 0 116680003 900000000000011006 900000000000451002 +7000315023 20170731 1 900000000000207008 733484007 309049000 0 116680003 900000000000011006 900000000000451002 +7000316024 20170731 1 900000000000207008 733484007 52988006 1 118168003 900000000000011006 900000000000451002 +7000317026 20170731 1 900000000000207008 733484007 18911002 1 118169006 900000000000011006 900000000000451002 +7000318020 20170731 1 900000000000207008 733484007 56757003 1 118171006 900000000000011006 900000000000451002 +7000319028 20170731 1 900000000000207008 733485008 258431006 0 116680003 900000000000011006 900000000000451002 +7000320023 20170731 1 900000000000207008 733485008 309049000 0 116680003 900000000000011006 900000000000451002 +7000321022 20170731 1 900000000000207008 733485008 430232008 0 116680003 900000000000011006 900000000000451002 +7000322026 20170731 1 900000000000207008 733485008 52988006 1 118168003 900000000000011006 900000000000451002 +7000323020 20170731 1 900000000000207008 733485008 397158004 1 118169006 900000000000011006 900000000000451002 +7000324025 20170731 1 900000000000207008 733485008 56757003 1 118171006 900000000000011006 900000000000451002 +7085584027 20170731 1 900000000000207008 258466008 25342003 2 118169006 900000000000011006 900000000000451002 +7085585026 20170731 1 900000000000207008 258466008 733753009 2 370133003 900000000000011006 900000000000451002 +7085586025 20170731 1 900000000000207008 258482009 82515000 2 118168003 900000000000011006 900000000000451002 +7085587023 20170731 1 900000000000207008 258482009 733754003 2 370133003 900000000000011006 900000000000451002 +7085713025 20170731 1 900000000000207008 732976006 733752004 1 370133003 900000000000011006 900000000000451002 +7085714020 20170731 1 900000000000207008 733056005 309051001 0 116680003 900000000000011006 900000000000451002 +7085714020 20200731 0 900000000000207008 733056005 309051001 0 116680003 900000000000011006 900000000000451002 +7085715021 20170731 1 900000000000207008 733056005 447148003 0 116680003 900000000000011006 900000000000451002 +7085716022 20170731 1 900000000000207008 733056005 733752004 1 370133003 900000000000011006 900000000000451002 +7115737024 20170731 1 900000000000207008 167868004 85537004 2 118169006 900000000000011006 900000000000451002 +7115738025 20170731 1 900000000000207008 167868004 734130007 2 370133003 900000000000011006 900000000000451002 +7115739022 20170731 1 900000000000207008 167869007 16953009 2 118169006 900000000000011006 900000000000451002 +7115740024 20170731 1 900000000000207008 167869007 734125008 2 370133003 900000000000011006 900000000000451002 +7115741023 20170731 1 900000000000207008 167870008 74670003 2 118169006 900000000000011006 900000000000451002 +7115741023 20210131 0 900000000000207008 167870008 74670003 2 118169006 900000000000011006 900000000000451002 +7115742027 20170731 1 900000000000207008 167870008 734131006 2 370133003 900000000000011006 900000000000451002 +7115742027 20210131 0 900000000000207008 167870008 734131006 2 370133003 900000000000011006 900000000000451002 +7115743021 20170731 1 900000000000207008 167871007 40238009 2 118169006 900000000000011006 900000000000451002 +7115744026 20170731 1 900000000000207008 167871007 734127000 2 370133003 900000000000011006 900000000000451002 +7115745025 20170731 1 900000000000207008 167872000 125682004 2 118169006 900000000000011006 900000000000451002 +7115746029 20170731 1 900000000000207008 167872000 734129002 2 370133003 900000000000011006 900000000000451002 +7115747022 20170731 1 900000000000207008 167873005 24136001 2 118169006 900000000000011006 900000000000451002 +7115748028 20170731 1 900000000000207008 167873005 734123001 2 370133003 900000000000011006 900000000000451002 +7115749020 20170731 1 900000000000207008 167874004 49076000 2 118169006 900000000000011006 900000000000451002 +7115750020 20170731 1 900000000000207008 167874004 734124007 2 370133003 900000000000011006 900000000000451002 +7115751024 20170731 1 900000000000207008 167875003 70258002 2 118169006 900000000000011006 900000000000451002 +7115752028 20170731 1 900000000000207008 167875003 734122006 2 370133003 900000000000011006 900000000000451002 +7115753022 20170731 1 900000000000207008 167876002 26552008 2 118169006 900000000000011006 900000000000451002 +7115754027 20170731 1 900000000000207008 167876002 734126009 2 370133003 900000000000011006 900000000000451002 +7115755026 20170731 1 900000000000207008 167877006 122477008 2 118169006 900000000000011006 900000000000451002 +7115756025 20170731 1 900000000000207008 167877006 734128005 2 370133003 900000000000011006 900000000000451002 +7115799024 20170731 1 900000000000207008 256889002 367643001 2 118168003 900000000000011006 900000000000451002 +7115800023 20170731 1 900000000000207008 256889002 76752008 2 118169006 900000000000011006 900000000000451002 +7115801022 20170731 1 900000000000207008 256889002 734112000 2 370133003 900000000000011006 900000000000451002 +7115802026 20170731 1 900000000000207008 258448003 309051001 0 116680003 900000000000011006 900000000000451002 +7115803020 20170731 1 900000000000207008 258448003 13351007 2 118169006 900000000000011006 900000000000451002 +7115804025 20170731 1 900000000000207008 258448003 734089002 2 370133003 900000000000011006 900000000000451002 +7115805029 20170731 1 900000000000207008 258453008 367643001 2 118168003 900000000000011006 900000000000451002 +7115806028 20170731 1 900000000000207008 258453008 734110008 2 370133003 900000000000011006 900000000000451002 +7115821023 20170731 1 900000000000207008 309147000 367643001 2 118168003 900000000000011006 900000000000451002 +7115822027 20170731 1 900000000000207008 309147000 69748006 2 118169006 900000000000011006 900000000000451002 +7115823021 20170731 1 900000000000207008 309147000 734121004 2 370133003 900000000000011006 900000000000451002 +7115886026 20170731 1 900000000000207008 438545007 367643001 2 118168003 900000000000011006 900000000000451002 +7115887024 20170731 1 900000000000207008 438545007 88731002 2 118169006 900000000000011006 900000000000451002 +7115888025 20170731 1 900000000000207008 438545007 734119009 2 370133003 900000000000011006 900000000000451002 +7115890029 20170731 1 900000000000207008 438595008 734118001 2 370133003 900000000000011006 900000000000451002 +7115891025 20170731 1 900000000000207008 446128003 367643001 2 118168003 900000000000011006 900000000000451002 +7115892021 20170731 1 900000000000207008 446128003 87176006 2 118169006 900000000000011006 900000000000451002 +7115893027 20170731 1 900000000000207008 446128003 734115003 2 370133003 900000000000011006 900000000000451002 +7115894022 20170731 1 900000000000207008 446908003 19633006 2 118168003 900000000000011006 900000000000451002 +7115895023 20170731 1 900000000000207008 446908003 3954005 2 118169006 900000000000011006 900000000000451002 +7115896024 20170731 1 900000000000207008 446908003 734117006 2 370133003 900000000000011006 900000000000451002 +7115967022 20170731 1 900000000000207008 732972008 734116002 1 370133003 900000000000011006 900000000000451002 +7116218024 20170731 1 900000000000207008 16209251000119104 367643001 2 118168003 900000000000011006 900000000000451002 +7116219027 20170731 1 900000000000207008 16209251000119104 21483005 2 118169006 900000000000011006 900000000000451002 +7116220022 20170731 1 900000000000207008 16209251000119104 734113005 2 370133003 900000000000011006 900000000000451002 +7116221021 20170731 1 900000000000207008 16209291000119109 367643001 2 118168003 900000000000011006 900000000000451002 +7116222025 20170731 1 900000000000207008 16209291000119109 12738006 2 118169006 900000000000011006 900000000000451002 +7116223024 20170731 1 900000000000207008 16209291000119109 734114004 2 370133003 900000000000011006 900000000000451002 +7116224029 20170731 1 900000000000207008 16220931000119104 367643001 2 118168003 900000000000011006 900000000000451002 +7116225028 20170731 1 900000000000207008 16220931000119104 15776009 2 118169006 900000000000011006 900000000000451002 +7116226027 20170731 1 900000000000207008 16220931000119104 734120003 2 370133003 900000000000011006 900000000000451002 +7116227020 20170731 1 900000000000207008 16220971000119101 367643001 2 118168003 900000000000011006 900000000000451002 +7116228026 20170731 1 900000000000207008 16220971000119101 64033007 2 118169006 900000000000011006 900000000000451002 +7116229023 20170731 1 900000000000207008 16220971000119101 734111007 2 370133003 900000000000011006 900000000000451002 +7138029029 20180131 1 900000000000207008 122739003 734343002 0 116680003 900000000000011006 900000000000451002 +7138030023 20180131 1 900000000000207008 122739003 4147007 2 118168003 900000000000011006 900000000000451002 +7138031022 20180131 1 900000000000207008 122739003 76752008 2 118169006 900000000000011006 900000000000451002 +7138032026 20180131 1 900000000000207008 122739003 28768007 2 118171006 900000000000011006 900000000000451002 +7138033020 20180131 1 900000000000207008 122739003 413675001 2 370133003 900000000000011006 900000000000451002 +7138207020 20180131 1 900000000000207008 434249007 734425002 0 116680003 900000000000011006 900000000000451002 +7138212021 20180131 1 900000000000207008 472882006 734381007 0 116680003 900000000000011006 900000000000451002 +7138213027 20180131 1 900000000000207008 472883001 734380008 0 116680003 900000000000011006 900000000000451002 +7138214022 20180131 1 900000000000207008 699285000 89837001 2 118169006 900000000000011006 900000000000451002 +7138214022 20230331 0 900000000000207008 699285000 89837001 2 118169006 900000000000011006 900000000000451002 +7138215023 20180131 1 900000000000207008 699285000 24139008 2 118171006 900000000000011006 900000000000451002 +7138215023 20230331 0 900000000000207008 699285000 24139008 2 118171006 900000000000011006 900000000000451002 +7138216024 20180131 1 900000000000207008 699285000 78014005 2 370133003 900000000000011006 900000000000451002 +7138216024 20230331 0 900000000000207008 699285000 78014005 2 370133003 900000000000011006 900000000000451002 +7138248023 20180131 1 900000000000207008 725372003 734336008 0 116680003 900000000000011006 900000000000451002 +7138249026 20180131 1 900000000000207008 733103005 734335007 0 116680003 900000000000011006 900000000000451002 +7138376028 20180131 1 900000000000207008 734307008 123038009 0 116680003 900000000000011006 900000000000451002 +7138376028 20221130 0 900000000000207008 734307008 123038009 0 116680003 900000000000011006 900000000000451002 +7138377021 20180131 1 900000000000207008 734307008 311411003 0 118169006 900000000000011006 900000000000451002 +7138377021 20190731 1 900000000000207008 734307008 311411003 1 118169006 900000000000011006 900000000000451002 +7138405026 20180131 1 900000000000207008 734333000 119368000 0 116680003 900000000000011006 900000000000451002 +7138406025 20180131 1 900000000000207008 734333000 419670003 0 118168003 900000000000011006 900000000000451002 +7138406025 20190731 1 900000000000207008 734333000 419670003 1 118168003 900000000000011006 900000000000451002 +7138407023 20180131 1 900000000000207008 734334006 734333000 0 116680003 900000000000011006 900000000000451002 +7138408029 20180131 1 900000000000207008 734334006 417992006 0 118168003 900000000000011006 900000000000451002 +7138408029 20190731 1 900000000000207008 734334006 417992006 1 118168003 900000000000011006 900000000000451002 +7138409021 20180131 1 900000000000207008 734335007 309049000 0 116680003 900000000000011006 900000000000451002 +7138410027 20180131 1 900000000000207008 734335007 12402003 0 118168003 900000000000011006 900000000000451002 +7138410027 20190731 1 900000000000207008 734335007 12402003 1 118168003 900000000000011006 900000000000451002 +7138411028 20180131 1 900000000000207008 734336008 309479002 0 116680003 900000000000011006 900000000000451002 +7138412024 20180131 1 900000000000207008 734336008 430232008 0 116680003 900000000000011006 900000000000451002 +7138413025 20180131 1 900000000000207008 734336008 15825003 0 118169006 900000000000011006 900000000000451002 +7138413025 20190731 1 900000000000207008 734336008 15825003 1 118169006 900000000000011006 900000000000451002 +7138414020 20180131 1 900000000000207008 734337004 420548004 0 116680003 900000000000011006 900000000000451002 +7138415021 20180131 1 900000000000207008 734337004 430248009 0 116680003 900000000000011006 900000000000451002 +7138416022 20180131 1 900000000000207008 734337004 4147007 1 118168003 900000000000011006 900000000000451002 +7138417029 20180131 1 900000000000207008 734337004 71836000 1 118169006 900000000000011006 900000000000451002 +7138418023 20180131 1 900000000000207008 734338009 123038009 0 116680003 900000000000011006 900000000000451002 +7138419026 20180131 1 900000000000207008 734338009 447511000124102 0 370133003 900000000000011006 900000000000451002 +7138419026 20190731 1 900000000000207008 734338009 447511000124102 1 370133003 900000000000011006 900000000000451002 +7138420021 20190731 1 900000000000207008 734341000 420548004 0 116680003 900000000000011006 900000000000451002 +7138421020 20180131 1 900000000000207008 734341000 433326001 0 116680003 900000000000011006 900000000000451002 +7138422029 20180131 1 900000000000207008 734341000 4147007 1 118168003 900000000000011006 900000000000451002 +7138423023 20180131 1 900000000000207008 734341000 27291007 1 118169006 900000000000011006 900000000000451002 +7138424028 20180131 1 900000000000207008 734342007 420548004 0 116680003 900000000000011006 900000000000451002 +7138424028 20180731 0 900000000000207008 734342007 420548004 0 116680003 900000000000011006 900000000000451002 +7138424028 20190731 1 900000000000207008 734342007 420548004 0 116680003 900000000000011006 900000000000451002 +7138425027 20180131 1 900000000000207008 734342007 433326001 0 116680003 900000000000011006 900000000000451002 +7138426026 20180131 1 900000000000207008 734342007 4147007 1 118168003 900000000000011006 900000000000451002 +7138427024 20180131 1 900000000000207008 734342007 76386002 1 118169006 900000000000011006 900000000000451002 +7138428025 20180131 1 900000000000207008 734343002 127456000 0 116680003 900000000000011006 900000000000451002 +7138429022 20180131 1 900000000000207008 734343002 420548004 0 116680003 900000000000011006 900000000000451002 +7138430028 20180131 1 900000000000207008 734343002 4147007 1 118168003 900000000000011006 900000000000451002 +7138431029 20180131 1 900000000000207008 734343002 76752008 1 118169006 900000000000011006 900000000000451002 +7138498022 20180131 1 900000000000207008 734375004 420548004 0 116680003 900000000000011006 900000000000451002 +7138499025 20180131 1 900000000000207008 734375004 433323009 0 116680003 900000000000011006 900000000000451002 +7138500023 20180131 1 900000000000207008 734375004 4147007 1 118168003 900000000000011006 900000000000451002 +7138501022 20180131 1 900000000000207008 734375004 82849001 1 118169006 900000000000011006 900000000000451002 +7138504025 20180131 1 900000000000207008 734377007 258548000 0 116680003 900000000000011006 900000000000451002 +7138505029 20180131 1 900000000000207008 734377007 309072003 0 116680003 900000000000011006 900000000000451002 +7138505029 20210131 0 900000000000207008 734377007 309072003 0 116680003 900000000000011006 900000000000451002 +7138506028 20180131 1 900000000000207008 734377007 420548004 0 116680003 900000000000011006 900000000000451002 +7138507021 20180131 1 900000000000207008 734377007 4147007 1 118168003 900000000000011006 900000000000451002 +7138508027 20180131 1 900000000000207008 734377007 71966008 1 118169006 900000000000011006 900000000000451002 +7138511026 20180131 1 900000000000207008 734379005 309072003 0 116680003 900000000000011006 900000000000451002 +7138511026 20230731 0 900000000000207008 734379005 309072003 0 116680003 900000000000011006 900000000000451002 +7138512022 20180131 1 900000000000207008 734379005 363311008 0 116680003 900000000000011006 900000000000451002 +7138512022 20210131 0 900000000000207008 734379005 363311008 0 116680003 900000000000011006 900000000000451002 +7138513028 20180131 1 900000000000207008 734379005 430220009 0 116680003 900000000000011006 900000000000451002 +7138513028 20220630 0 900000000000207008 734379005 430220009 0 116680003 900000000000011006 900000000000451002 +7138514023 20180131 1 900000000000207008 734379005 8711009 0 118169006 900000000000011006 900000000000451002 +7138514023 20190731 1 900000000000207008 734379005 8711009 1 118169006 900000000000011006 900000000000451002 +7138515024 20180131 1 900000000000207008 734380008 119365002 0 116680003 900000000000011006 900000000000451002 +7138516020 20180131 1 900000000000207008 734380008 112633009 0 118168003 900000000000011006 900000000000451002 +7138516020 20190731 1 900000000000207008 734380008 112633009 1 118168003 900000000000011006 900000000000451002 +7138517027 20180131 1 900000000000207008 734381007 119365002 0 116680003 900000000000011006 900000000000451002 +7138518021 20180131 1 900000000000207008 734381007 37205004 0 118168003 900000000000011006 900000000000451002 +7138518021 20190731 1 900000000000207008 734381007 37205004 1 118168003 900000000000011006 900000000000451002 +7138571021 20180131 1 900000000000207008 734417004 420548004 0 116680003 900000000000011006 900000000000451002 +7138572025 20180131 1 900000000000207008 734417004 443418008 0 116680003 900000000000011006 900000000000451002 +7138573024 20180131 1 900000000000207008 734417004 4147007 1 118168003 900000000000011006 900000000000451002 +7138574029 20180131 1 900000000000207008 734417004 43799004 1 118169006 900000000000011006 900000000000451002 +7138579023 20180131 1 900000000000207008 734419001 258589002 0 116680003 900000000000011006 900000000000451002 +7138580021 20180131 1 900000000000207008 734419001 420548004 0 116680003 900000000000011006 900000000000451002 +7138581020 20180131 1 900000000000207008 734419001 430232008 0 116680003 900000000000011006 900000000000451002 +7138581020 20180731 0 900000000000207008 734419001 430232008 0 116680003 900000000000011006 900000000000451002 +7138582029 20180131 1 900000000000207008 734419001 430246008 0 116680003 900000000000011006 900000000000451002 +7138583023 20180131 1 900000000000207008 734419001 4147007 1 118168003 900000000000011006 900000000000451002 +7138584028 20180131 1 900000000000207008 734419001 68171009 1 118169006 900000000000011006 900000000000451002 +7138585027 20180131 1 900000000000207008 734420007 258589002 0 116680003 900000000000011006 900000000000451002 +7138586026 20180131 1 900000000000207008 734420007 420548004 0 116680003 900000000000011006 900000000000451002 +7138587024 20180131 1 900000000000207008 734420007 430214008 0 116680003 900000000000011006 900000000000451002 +7138588025 20180131 1 900000000000207008 734420007 430232008 0 116680003 900000000000011006 900000000000451002 +7138589022 20180131 1 900000000000207008 734420007 4147007 1 118168003 900000000000011006 900000000000451002 +7138590029 20180131 1 900000000000207008 734420007 8928004 1 118169006 900000000000011006 900000000000451002 +7138591025 20180131 1 900000000000207008 734421006 258589002 0 116680003 900000000000011006 900000000000451002 +7138592021 20180131 1 900000000000207008 734421006 420548004 0 116680003 900000000000011006 900000000000451002 +7138593027 20180131 1 900000000000207008 734421006 433326001 0 116680003 900000000000011006 900000000000451002 +7138594022 20180131 1 900000000000207008 734421006 4147007 1 118168003 900000000000011006 900000000000451002 +7138595023 20180131 1 900000000000207008 734421006 62683002 1 118169006 900000000000011006 900000000000451002 +7138596024 20180131 1 900000000000207008 734422004 119380008 0 116680003 900000000000011006 900000000000451002 +7138597026 20180131 1 900000000000207008 734422004 309072003 0 116680003 900000000000011006 900000000000451002 +7138597026 20210131 0 900000000000207008 734422004 309072003 0 116680003 900000000000011006 900000000000451002 +7138598020 20180131 1 900000000000207008 734422004 608842007 0 116680003 900000000000011006 900000000000451002 +7138599028 20180131 1 900000000000207008 734422004 77763002 0 118169006 900000000000011006 900000000000451002 +7138599028 20190731 1 900000000000207008 734422004 77763002 1 118169006 900000000000011006 900000000000451002 +7138600025 20180131 1 900000000000207008 734425002 119295008 0 116680003 900000000000011006 900000000000451002 +7138601026 20180131 1 900000000000207008 734425002 309165001 0 116680003 900000000000011006 900000000000451002 +7138602022 20180131 1 900000000000207008 734425002 117590005 1 118169006 900000000000011006 900000000000451002 +7138603028 20180131 1 900000000000207008 734425002 14766002 1 118171006 900000000000011006 900000000000451002 +7138604023 20180131 1 900000000000207008 734426001 119295008 0 116680003 900000000000011006 900000000000451002 +7138605024 20180131 1 900000000000207008 734426001 119380008 0 116680003 900000000000011006 900000000000451002 +7138606020 20180131 1 900000000000207008 734426001 21306003 1 118169006 900000000000011006 900000000000451002 +7138607027 20180131 1 900000000000207008 734426001 14766002 1 118171006 900000000000011006 900000000000451002 +7138608021 20180131 1 900000000000207008 734427005 119295008 0 116680003 900000000000011006 900000000000451002 +7138609029 20180131 1 900000000000207008 734427005 119380008 0 116680003 900000000000011006 900000000000451002 +7138610023 20180131 1 900000000000207008 734427005 608842007 0 116680003 900000000000011006 900000000000451002 +7138611022 20180131 1 900000000000207008 734427005 38848004 1 118169006 900000000000011006 900000000000451002 +7138612026 20180131 1 900000000000207008 734427005 14766002 1 118171006 900000000000011006 900000000000451002 +7138644027 20180131 1 900000000000207008 734442008 119331003 0 116680003 900000000000011006 900000000000451002 +7138645026 20180131 1 900000000000207008 734442008 430214008 0 116680003 900000000000011006 900000000000451002 +7138646025 20180131 1 900000000000207008 734442008 392565009 0 118169006 900000000000011006 900000000000451002 +7138646025 20190731 1 900000000000207008 734442008 392565009 1 118169006 900000000000011006 900000000000451002 +7138647023 20180131 1 900000000000207008 734443003 444937002 0 116680003 900000000000011006 900000000000451002 +7138648029 20180131 1 900000000000207008 734443003 87953007 1 118169006 900000000000011006 900000000000451002 +7138649021 20180131 1 900000000000207008 734443003 24139008 1 118171006 900000000000011006 900000000000451002 +7138649021 20230331 0 900000000000207008 734443003 24139008 1 118171006 900000000000011006 900000000000451002 +7138650021 20180131 1 900000000000207008 734443003 78014005 1 370133003 900000000000011006 900000000000451002 +7140457025 20180131 1 900000000000207008 16210691000119101 734343002 0 116680003 900000000000011006 900000000000451002 +7140458024 20180131 1 900000000000207008 16211011000119108 734380008 0 116680003 900000000000011006 900000000000451002 +7140459027 20180131 1 900000000000207008 16220971000119101 734375004 0 116680003 900000000000011006 900000000000451002 +7169601026 20170731 1 900000000000207008 438595008 367643001 2 118168003 900000000000011006 900000000000451002 +7171280023 20180131 1 900000000000207008 735197003 127456000 0 116680003 900000000000011006 900000000000451002 +7171281022 20180131 1 900000000000207008 735197003 73056007 0 118169006 900000000000011006 900000000000451002 +7171281022 20190731 1 900000000000207008 735197003 73056007 1 118169006 900000000000011006 900000000000451002 +7171282026 20180131 1 900000000000207008 735198008 127456000 0 116680003 900000000000011006 900000000000451002 +7171283020 20180131 1 900000000000207008 735198008 80248007 0 118169006 900000000000011006 900000000000451002 +7171283020 20190731 1 900000000000207008 735198008 80248007 1 118169006 900000000000011006 900000000000451002 +7177524023 20180131 1 900000000000207008 735950000 258531008 0 116680003 900000000000011006 900000000000451002 +7177525024 20180131 1 900000000000207008 735950000 735951001 1 118168003 900000000000011006 900000000000451002 +7177526020 20180131 1 900000000000207008 735950000 285570007 1 118171006 900000000000011006 900000000000451002 +7199559022 20180131 1 900000000000207008 432441006 309072003 0 116680003 900000000000011006 900000000000451002 +7199559022 20190731 0 900000000000207008 432441006 309072003 0 116680003 900000000000011006 900000000000451002 +7226186020 20180131 1 900000000000207008 444965000 399436000 0 116680003 900000000000011006 900000000000451002 +7226200021 20180131 1 900000000000207008 472886009 309072003 0 116680003 900000000000011006 900000000000451002 +7226200021 20210131 0 900000000000207008 472886009 309072003 0 116680003 900000000000011006 900000000000451002 +7226201020 20180131 1 900000000000207008 473399006 309072003 0 116680003 900000000000011006 900000000000451002 +7226201020 20210131 0 900000000000207008 473399006 309072003 0 116680003 900000000000011006 900000000000451002 +7226299026 20180131 1 900000000000207008 16211131000119102 399436000 0 116680003 900000000000011006 900000000000451002 +7240292023 20180131 1 900000000000207008 737016007 309049000 0 116680003 900000000000011006 900000000000451002 +7240293029 20180131 1 900000000000207008 737016007 439479000 0 116680003 900000000000011006 900000000000451002 +7240294024 20180131 1 900000000000207008 737016007 85659009 1 118168003 900000000000011006 900000000000451002 +7240295020 20180131 1 900000000000207008 737016007 65801008 1 118171006 900000000000011006 900000000000451002 +7240296021 20180131 1 900000000000207008 737016007 413675001 1 370133003 900000000000011006 900000000000451002 +7240297028 20180131 1 900000000000207008 737017003 309049000 0 116680003 900000000000011006 900000000000451002 +7240298022 20180131 1 900000000000207008 737017003 309125000 0 116680003 900000000000011006 900000000000451002 +7240299025 20180131 1 900000000000207008 737017003 20456003 1 118168003 900000000000011006 900000000000451002 +7240300022 20180131 1 900000000000207008 737017003 39352004 1 118169006 900000000000011006 900000000000451002 +7242649028 20180131 1 900000000000207008 122559001 737087006 0 116680003 900000000000011006 900000000000451002 +7242730020 20180131 1 900000000000207008 737087006 123038009 0 116680003 900000000000011006 900000000000451002 +7242731024 20180131 1 900000000000207008 737089009 119364003 0 116680003 900000000000011006 900000000000451002 +7242732028 20180131 1 900000000000207008 737089009 737087006 0 116680003 900000000000011006 900000000000451002 +7242733022 20180131 1 900000000000207008 737089009 67922002 0 370133003 900000000000011006 900000000000451002 +7242733022 20190731 1 900000000000207008 737089009 67922002 2 370133003 900000000000011006 900000000000451002 +7243207024 20180131 1 900000000000207008 122556008 737357006 0 116680003 900000000000011006 900000000000451002 +7243207024 20230228 0 900000000000207008 122556008 737357006 0 116680003 900000000000011006 900000000000451002 +7243296022 20180131 1 900000000000207008 737356002 119297000 0 116680003 900000000000011006 900000000000451002 +7243296022 20200131 0 900000000000207008 737356002 119297000 0 116680003 900000000000011006 900000000000451002 +7243297029 20180131 1 900000000000207008 737356002 309051001 0 116680003 900000000000011006 900000000000451002 +7243297029 20200131 0 900000000000207008 737356002 309051001 0 116680003 900000000000011006 900000000000451002 +7243298023 20180131 1 900000000000207008 737356002 116202001 0 370133003 900000000000011006 900000000000451002 +7243298023 20190731 1 900000000000207008 737356002 116202001 1 370133003 900000000000011006 900000000000451002 +7243299026 20180131 1 900000000000207008 737357006 119297000 0 116680003 900000000000011006 900000000000451002 +7243300023 20180131 1 900000000000207008 737357006 309502007 0 116680003 900000000000011006 900000000000451002 +7243301022 20180131 1 900000000000207008 737357006 55460000 0 118169006 900000000000011006 900000000000451002 +7243301022 20190731 1 900000000000207008 737357006 55460000 1 118169006 900000000000011006 900000000000451002 +7243302026 20180131 1 900000000000207008 737357006 256906008 0 370133003 900000000000011006 900000000000451002 +7243302026 20190731 1 900000000000207008 737357006 256906008 2 370133003 900000000000011006 900000000000451002 +7298713027 20180131 1 900000000000207008 127462005 443418008 0 116680003 900000000000011006 900000000000451002 +7298713027 20190731 0 900000000000207008 127462005 443418008 0 116680003 900000000000011006 900000000000451002 +7298942027 20180131 1 900000000000207008 396896007 443418008 0 116680003 900000000000011006 900000000000451002 +7298942027 20190731 0 900000000000207008 396896007 443418008 0 116680003 900000000000011006 900000000000451002 +7299074027 20180131 1 900000000000207008 430244006 443418008 0 116680003 900000000000011006 900000000000451002 +7299074027 20190731 0 900000000000207008 430244006 443418008 0 116680003 900000000000011006 900000000000451002 +7299099026 20180131 1 900000000000207008 734341000 734417004 0 116680003 900000000000011006 900000000000451002 +7299099026 20190731 0 900000000000207008 734341000 734417004 0 116680003 900000000000011006 900000000000451002 +7340105020 20180131 1 900000000000207008 122720008 119228002 2 118169006 900000000000011006 900000000000451002 +7340106021 20180131 1 900000000000207008 122720008 120053002 2 118171006 900000000000011006 900000000000451002 +7340107028 20180131 1 900000000000207008 122720008 413675001 2 370133003 900000000000011006 900000000000451002 +7602045029 20180131 1 900000000000207008 309499008 119397002 0 116680003 900000000000011006 900000000000451002 +7602045029 20190731 0 900000000000207008 309499008 119397002 0 116680003 900000000000011006 900000000000451002 +7602046028 20180131 1 900000000000207008 309499008 258415003 0 116680003 900000000000011006 900000000000451002 +7602046028 20190731 0 900000000000207008 309499008 258415003 0 116680003 900000000000011006 900000000000451002 +8095848021 20180131 1 900000000000207008 119361006 762634006 0 370133003 900000000000011006 900000000000451002 +8095848021 20190731 1 900000000000207008 119361006 762634006 2 370133003 900000000000011006 900000000000451002 +8095848021 20200131 0 900000000000207008 119361006 762634006 1 370133003 900000000000011006 900000000000451002 +8095849029 20180131 1 900000000000207008 119362004 762634006 0 370133003 900000000000011006 900000000000451002 +8095849029 20190731 1 900000000000207008 119362004 762634006 2 370133003 900000000000011006 900000000000451002 +8095849029 20200131 0 900000000000207008 119362004 762634006 1 370133003 900000000000011006 900000000000451002 +8095850029 20180131 1 900000000000207008 119363009 762634006 0 370133003 900000000000011006 900000000000451002 +8095850029 20190731 1 900000000000207008 119363009 762634006 2 370133003 900000000000011006 900000000000451002 +8095850029 20200131 0 900000000000207008 119363009 762634006 1 370133003 900000000000011006 900000000000451002 +8095851025 20180131 1 900000000000207008 119364003 762634006 0 370133003 900000000000011006 900000000000451002 +8095851025 20190731 1 900000000000207008 119364003 762634006 2 370133003 900000000000011006 900000000000451002 +8095851025 20200131 0 900000000000207008 119364003 762634006 1 370133003 900000000000011006 900000000000451002 +8095852021 20180131 1 900000000000207008 122587005 762634006 0 370133003 900000000000011006 900000000000451002 +8095852021 20190731 1 900000000000207008 122587005 762634006 1 370133003 900000000000011006 900000000000451002 +8095852021 20200131 0 900000000000207008 122587005 762634006 1 370133003 900000000000011006 900000000000451002 +8095853027 20180131 1 900000000000207008 122588000 762634006 0 370133003 900000000000011006 900000000000451002 +8095853027 20190731 1 900000000000207008 122588000 762634006 2 370133003 900000000000011006 900000000000451002 +8095853027 20200131 0 900000000000207008 122588000 762634006 2 370133003 900000000000011006 900000000000451002 +8095854022 20180131 1 900000000000207008 122589008 762634006 0 370133003 900000000000011006 900000000000451002 +8095854022 20190731 1 900000000000207008 122589008 762634006 2 370133003 900000000000011006 900000000000451002 +8095854022 20200131 0 900000000000207008 122589008 762634006 2 370133003 900000000000011006 900000000000451002 +8095855023 20180131 1 900000000000207008 122590004 762634006 0 370133003 900000000000011006 900000000000451002 +8095855023 20190731 1 900000000000207008 122590004 762634006 2 370133003 900000000000011006 900000000000451002 +8095855023 20200131 0 900000000000207008 122590004 762634006 2 370133003 900000000000011006 900000000000451002 +8095856024 20180131 1 900000000000207008 122591000 762634006 0 370133003 900000000000011006 900000000000451002 +8095856024 20190731 1 900000000000207008 122591000 762634006 3 370133003 900000000000011006 900000000000451002 +8095856024 20200131 0 900000000000207008 122591000 762634006 2 370133003 900000000000011006 900000000000451002 +8095857026 20180131 1 900000000000207008 122592007 762634006 0 370133003 900000000000011006 900000000000451002 +8095857026 20190731 1 900000000000207008 122592007 762634006 1 370133003 900000000000011006 900000000000451002 +8095885029 20180131 1 900000000000207008 258590006 762634006 0 370133003 900000000000011006 900000000000451002 +8095885029 20190731 1 900000000000207008 258590006 762634006 2 370133003 900000000000011006 900000000000451002 +8095885029 20200131 0 900000000000207008 258590006 762634006 1 370133003 900000000000011006 900000000000451002 +8095913029 20180131 1 900000000000207008 442166002 762634006 0 370133003 900000000000011006 900000000000451002 +8095913029 20190731 1 900000000000207008 442166002 762634006 2 370133003 900000000000011006 900000000000451002 +8095913029 20200131 0 900000000000207008 442166002 762634006 1 370133003 900000000000011006 900000000000451002 +8095914024 20180131 1 900000000000207008 442427000 762634006 0 370133003 900000000000011006 900000000000451002 +8095914024 20190731 1 900000000000207008 442427000 762634006 2 370133003 900000000000011006 900000000000451002 +8095914024 20200131 0 900000000000207008 442427000 762634006 1 370133003 900000000000011006 900000000000451002 +8095928029 20180131 1 900000000000207008 703432000 762634006 0 370133003 900000000000011006 900000000000451002 +8095928029 20190731 1 900000000000207008 703432000 762634006 2 370133003 900000000000011006 900000000000451002 +8095928029 20200131 0 900000000000207008 703432000 762634006 1 370133003 900000000000011006 900000000000451002 +8095929021 20180131 1 900000000000207008 708048008 762634006 0 370133003 900000000000011006 900000000000451002 +8095929021 20190731 1 900000000000207008 708048008 762634006 1 370133003 900000000000011006 900000000000451002 +8095929021 20200131 0 900000000000207008 708048008 762634006 1 370133003 900000000000011006 900000000000451002 +8095930027 20180131 1 900000000000207008 708049000 762634006 0 370133003 900000000000011006 900000000000451002 +8095930027 20190731 1 900000000000207008 708049000 762634006 1 370133003 900000000000011006 900000000000451002 +8095930027 20200131 0 900000000000207008 708049000 762634006 1 370133003 900000000000011006 900000000000451002 +8095941025 20180131 1 900000000000207008 737089009 762634006 0 370133003 900000000000011006 900000000000451002 +8095941025 20190731 1 900000000000207008 737089009 762634006 1 370133003 900000000000011006 900000000000451002 +8095941025 20200131 0 900000000000207008 737089009 762634006 1 370133003 900000000000011006 900000000000451002 +9186456026 20180731 1 900000000000207008 48469005 309050000 0 116680003 900000000000011006 900000000000451002 +9186457024 20180731 1 900000000000207008 48469005 764445001 0 370133003 900000000000011006 900000000000451002 +9186457024 20190731 1 900000000000207008 48469005 764445001 1 370133003 900000000000011006 900000000000451002 +9186511024 20180731 1 900000000000207008 110893002 764445001 0 370133003 900000000000011006 900000000000451002 +9186511024 20190731 1 900000000000207008 110893002 764445001 2 370133003 900000000000011006 900000000000451002 +9186512028 20180731 1 900000000000207008 110894008 764445001 0 370133003 900000000000011006 900000000000451002 +9186512028 20190731 1 900000000000207008 110894008 764445001 2 370133003 900000000000011006 900000000000451002 +9186513022 20180731 1 900000000000207008 110896005 764445001 0 370133003 900000000000011006 900000000000451002 +9186513022 20190731 1 900000000000207008 110896005 764445001 2 370133003 900000000000011006 900000000000451002 +9186514027 20180731 1 900000000000207008 110897001 14016003 0 118169006 900000000000011006 900000000000451002 +9186514027 20190731 1 900000000000207008 110897001 14016003 1 118169006 900000000000011006 900000000000451002 +9186515026 20180731 1 900000000000207008 110897001 764445001 0 370133003 900000000000011006 900000000000451002 +9186515026 20190731 1 900000000000207008 110897001 764445001 2 370133003 900000000000011006 900000000000451002 +9186516025 20180731 1 900000000000207008 110898006 764445001 0 370133003 900000000000011006 900000000000451002 +9186516025 20190731 1 900000000000207008 110898006 764445001 2 370133003 900000000000011006 900000000000451002 +9186517023 20180731 1 900000000000207008 110899003 764445001 0 370133003 900000000000011006 900000000000451002 +9186517023 20190731 1 900000000000207008 110899003 764445001 2 370133003 900000000000011006 900000000000451002 +9186518029 20180731 1 900000000000207008 110900008 764445001 0 370133003 900000000000011006 900000000000451002 +9186518029 20190731 1 900000000000207008 110900008 764445001 2 370133003 900000000000011006 900000000000451002 +9186519021 20180731 1 900000000000207008 110901007 764445001 0 370133003 900000000000011006 900000000000451002 +9186519021 20190731 1 900000000000207008 110901007 764445001 2 370133003 900000000000011006 900000000000451002 +9186520026 20180731 1 900000000000207008 110902000 764445001 0 370133003 900000000000011006 900000000000451002 +9186520026 20190731 1 900000000000207008 110902000 764445001 2 370133003 900000000000011006 900000000000451002 +9186521027 20180731 1 900000000000207008 110903005 764445001 0 370133003 900000000000011006 900000000000451002 +9186521027 20190731 1 900000000000207008 110903005 764445001 2 370133003 900000000000011006 900000000000451002 +9186522023 20180731 1 900000000000207008 110904004 764445001 0 370133003 900000000000011006 900000000000451002 +9186522023 20190731 1 900000000000207008 110904004 764445001 2 370133003 900000000000011006 900000000000451002 +9186523029 20180731 1 900000000000207008 110905003 764445001 0 370133003 900000000000011006 900000000000451002 +9186523029 20190731 1 900000000000207008 110905003 764445001 2 370133003 900000000000011006 900000000000451002 +9186524024 20180731 1 900000000000207008 110906002 764445001 0 370133003 900000000000011006 900000000000451002 +9186524024 20190731 1 900000000000207008 110906002 764445001 2 370133003 900000000000011006 900000000000451002 +9186525020 20180731 1 900000000000207008 110907006 764445001 0 370133003 900000000000011006 900000000000451002 +9186525020 20190731 1 900000000000207008 110907006 764445001 2 370133003 900000000000011006 900000000000451002 +9186526021 20180731 1 900000000000207008 110908001 764445001 0 370133003 900000000000011006 900000000000451002 +9186526021 20190731 1 900000000000207008 110908001 764445001 2 370133003 900000000000011006 900000000000451002 +9186527028 20180731 1 900000000000207008 110909009 764445001 0 370133003 900000000000011006 900000000000451002 +9186527028 20190731 1 900000000000207008 110909009 764445001 2 370133003 900000000000011006 900000000000451002 +9186528022 20180731 1 900000000000207008 110910004 764445001 0 370133003 900000000000011006 900000000000451002 +9186528022 20190731 1 900000000000207008 110910004 764445001 2 370133003 900000000000011006 900000000000451002 +9186529025 20180731 1 900000000000207008 110912007 764445001 0 370133003 900000000000011006 900000000000451002 +9186529025 20190731 1 900000000000207008 110912007 764445001 2 370133003 900000000000011006 900000000000451002 +9186530024 20180731 1 900000000000207008 110913002 764445001 0 370133003 900000000000011006 900000000000451002 +9186530024 20190731 1 900000000000207008 110913002 764445001 2 370133003 900000000000011006 900000000000451002 +9186531023 20180731 1 900000000000207008 110914008 764445001 0 370133003 900000000000011006 900000000000451002 +9186531023 20190731 1 900000000000207008 110914008 764445001 2 370133003 900000000000011006 900000000000451002 +9186532027 20180731 1 900000000000207008 110915009 764445001 0 370133003 900000000000011006 900000000000451002 +9186532027 20190731 1 900000000000207008 110915009 764445001 2 370133003 900000000000011006 900000000000451002 +9186533021 20180731 1 900000000000207008 110916005 764445001 0 370133003 900000000000011006 900000000000451002 +9186533021 20190731 1 900000000000207008 110916005 764445001 2 370133003 900000000000011006 900000000000451002 +9186534026 20180731 1 900000000000207008 110917001 764445001 0 370133003 900000000000011006 900000000000451002 +9186534026 20190731 1 900000000000207008 110917001 764445001 2 370133003 900000000000011006 900000000000451002 +9186535025 20180731 1 900000000000207008 110918006 764445001 0 370133003 900000000000011006 900000000000451002 +9186535025 20190731 1 900000000000207008 110918006 764445001 2 370133003 900000000000011006 900000000000451002 +9186536029 20180731 1 900000000000207008 110919003 764445001 0 370133003 900000000000011006 900000000000451002 +9186536029 20190731 1 900000000000207008 110919003 764445001 2 370133003 900000000000011006 900000000000451002 +9186537022 20180731 1 900000000000207008 110920009 764445001 0 370133003 900000000000011006 900000000000451002 +9186537022 20190731 1 900000000000207008 110920009 764445001 2 370133003 900000000000011006 900000000000451002 +9186538028 20180731 1 900000000000207008 110921008 764445001 0 370133003 900000000000011006 900000000000451002 +9186538028 20190731 1 900000000000207008 110921008 764445001 2 370133003 900000000000011006 900000000000451002 +9186539020 20180731 1 900000000000207008 110922001 764445001 0 370133003 900000000000011006 900000000000451002 +9186539020 20190731 1 900000000000207008 110922001 764445001 2 370133003 900000000000011006 900000000000451002 +9186540022 20180731 1 900000000000207008 110923006 764445001 0 370133003 900000000000011006 900000000000451002 +9186540022 20190731 1 900000000000207008 110923006 764445001 2 370133003 900000000000011006 900000000000451002 +9186541021 20180731 1 900000000000207008 110924000 764445001 0 370133003 900000000000011006 900000000000451002 +9186541021 20190731 1 900000000000207008 110924000 764445001 2 370133003 900000000000011006 900000000000451002 +9186542025 20180731 1 900000000000207008 110925004 764445001 0 370133003 900000000000011006 900000000000451002 +9186542025 20190731 1 900000000000207008 110925004 764445001 2 370133003 900000000000011006 900000000000451002 +9186543024 20180731 1 900000000000207008 110926003 764445001 0 370133003 900000000000011006 900000000000451002 +9186543024 20190731 1 900000000000207008 110926003 764445001 2 370133003 900000000000011006 900000000000451002 +9186544029 20180731 1 900000000000207008 110927007 764445001 0 370133003 900000000000011006 900000000000451002 +9186544029 20190731 1 900000000000207008 110927007 764445001 2 370133003 900000000000011006 900000000000451002 +9186545028 20180731 1 900000000000207008 110928002 764445001 0 370133003 900000000000011006 900000000000451002 +9186545028 20190731 1 900000000000207008 110928002 764445001 2 370133003 900000000000011006 900000000000451002 +9186546027 20180731 1 900000000000207008 110929005 764445001 0 370133003 900000000000011006 900000000000451002 +9186546027 20190731 1 900000000000207008 110929005 764445001 2 370133003 900000000000011006 900000000000451002 +9186547020 20180731 1 900000000000207008 110930000 764445001 0 370133003 900000000000011006 900000000000451002 +9186547020 20190731 1 900000000000207008 110930000 764445001 2 370133003 900000000000011006 900000000000451002 +9186548026 20180731 1 900000000000207008 110931001 764445001 0 370133003 900000000000011006 900000000000451002 +9186548026 20190731 1 900000000000207008 110931001 764445001 2 370133003 900000000000011006 900000000000451002 +9186549023 20180731 1 900000000000207008 110932008 764445001 0 370133003 900000000000011006 900000000000451002 +9186549023 20190731 1 900000000000207008 110932008 764445001 2 370133003 900000000000011006 900000000000451002 +9186550023 20180731 1 900000000000207008 110933003 764445001 0 370133003 900000000000011006 900000000000451002 +9186550023 20190731 1 900000000000207008 110933003 764445001 2 370133003 900000000000011006 900000000000451002 +9186551022 20180731 1 900000000000207008 110934009 764445001 0 370133003 900000000000011006 900000000000451002 +9186551022 20190731 1 900000000000207008 110934009 764445001 2 370133003 900000000000011006 900000000000451002 +9186552026 20180731 1 900000000000207008 110935005 764445001 0 370133003 900000000000011006 900000000000451002 +9186552026 20190731 1 900000000000207008 110935005 764445001 2 370133003 900000000000011006 900000000000451002 +9186553020 20180731 1 900000000000207008 110936006 764445001 0 370133003 900000000000011006 900000000000451002 +9186553020 20190731 1 900000000000207008 110936006 764445001 2 370133003 900000000000011006 900000000000451002 +9186554025 20180731 1 900000000000207008 110937002 764445001 0 370133003 900000000000011006 900000000000451002 +9186554025 20190731 1 900000000000207008 110937002 764445001 2 370133003 900000000000011006 900000000000451002 +9186555029 20180731 1 900000000000207008 110938007 764445001 0 370133003 900000000000011006 900000000000451002 +9186555029 20190731 1 900000000000207008 110938007 764445001 2 370133003 900000000000011006 900000000000451002 +9186556028 20180731 1 900000000000207008 110939004 764445001 0 370133003 900000000000011006 900000000000451002 +9186556028 20190731 1 900000000000207008 110939004 764445001 2 370133003 900000000000011006 900000000000451002 +9186557021 20180731 1 900000000000207008 110940002 764445001 0 370133003 900000000000011006 900000000000451002 +9186557021 20190731 1 900000000000207008 110940002 764445001 2 370133003 900000000000011006 900000000000451002 +9186558027 20180731 1 900000000000207008 110941003 764445001 0 370133003 900000000000011006 900000000000451002 +9186558027 20190731 1 900000000000207008 110941003 764445001 2 370133003 900000000000011006 900000000000451002 +9186559024 20180731 1 900000000000207008 110942005 764445001 0 370133003 900000000000011006 900000000000451002 +9186559024 20190731 1 900000000000207008 110942005 764445001 2 370133003 900000000000011006 900000000000451002 +9186560025 20180731 1 900000000000207008 110943000 764445001 0 370133003 900000000000011006 900000000000451002 +9186560025 20190731 1 900000000000207008 110943000 764445001 2 370133003 900000000000011006 900000000000451002 +9186561026 20180731 1 900000000000207008 110944006 764445001 0 370133003 900000000000011006 900000000000451002 +9186561026 20190731 1 900000000000207008 110944006 764445001 2 370133003 900000000000011006 900000000000451002 +9186562022 20180731 1 900000000000207008 110945007 764445001 0 370133003 900000000000011006 900000000000451002 +9186562022 20190731 1 900000000000207008 110945007 764445001 2 370133003 900000000000011006 900000000000451002 +9186563028 20180731 1 900000000000207008 110946008 764445001 0 370133003 900000000000011006 900000000000451002 +9186563028 20190731 1 900000000000207008 110946008 764445001 2 370133003 900000000000011006 900000000000451002 +9186564023 20180731 1 900000000000207008 110947004 764445001 0 370133003 900000000000011006 900000000000451002 +9186564023 20190731 1 900000000000207008 110947004 764445001 2 370133003 900000000000011006 900000000000451002 +9186565024 20180731 1 900000000000207008 110948009 764445001 0 370133003 900000000000011006 900000000000451002 +9186565024 20190731 1 900000000000207008 110948009 764445001 2 370133003 900000000000011006 900000000000451002 +9186566020 20180731 1 900000000000207008 110949001 764445001 0 370133003 900000000000011006 900000000000451002 +9186566020 20190731 1 900000000000207008 110949001 764445001 2 370133003 900000000000011006 900000000000451002 +9186567027 20180731 1 900000000000207008 110950001 764445001 0 370133003 900000000000011006 900000000000451002 +9186567027 20190731 1 900000000000207008 110950001 764445001 2 370133003 900000000000011006 900000000000451002 +9186568021 20180731 1 900000000000207008 110951002 764445001 0 370133003 900000000000011006 900000000000451002 +9186568021 20190731 1 900000000000207008 110951002 764445001 2 370133003 900000000000011006 900000000000451002 +9186569029 20180731 1 900000000000207008 110952009 764445001 0 370133003 900000000000011006 900000000000451002 +9186569029 20190731 1 900000000000207008 110952009 764445001 2 370133003 900000000000011006 900000000000451002 +9186570028 20180731 1 900000000000207008 110953004 764445001 0 370133003 900000000000011006 900000000000451002 +9186570028 20190731 1 900000000000207008 110953004 764445001 1 370133003 900000000000011006 900000000000451002 +9186571029 20180731 1 900000000000207008 110954005 764445001 0 370133003 900000000000011006 900000000000451002 +9186571029 20190731 1 900000000000207008 110954005 764445001 2 370133003 900000000000011006 900000000000451002 +9186572020 20180731 1 900000000000207008 110955006 764445001 0 370133003 900000000000011006 900000000000451002 +9186572020 20190731 1 900000000000207008 110955006 764445001 2 370133003 900000000000011006 900000000000451002 +9186573026 20180731 1 900000000000207008 110956007 764445001 0 370133003 900000000000011006 900000000000451002 +9186573026 20190731 1 900000000000207008 110956007 764445001 2 370133003 900000000000011006 900000000000451002 +9186574021 20180731 1 900000000000207008 110957003 764445001 0 370133003 900000000000011006 900000000000451002 +9186574021 20190731 1 900000000000207008 110957003 764445001 2 370133003 900000000000011006 900000000000451002 +9186575022 20180731 1 900000000000207008 110958008 764445001 0 370133003 900000000000011006 900000000000451002 +9186575022 20190731 1 900000000000207008 110958008 764445001 2 370133003 900000000000011006 900000000000451002 +9186576023 20180731 1 900000000000207008 110959000 764445001 0 370133003 900000000000011006 900000000000451002 +9186576023 20190731 1 900000000000207008 110959000 764445001 2 370133003 900000000000011006 900000000000451002 +9186577025 20180731 1 900000000000207008 110960005 764445001 0 370133003 900000000000011006 900000000000451002 +9186577025 20190731 1 900000000000207008 110960005 764445001 2 370133003 900000000000011006 900000000000451002 +9186578024 20180731 1 900000000000207008 110961009 764445001 0 370133003 900000000000011006 900000000000451002 +9186578024 20190731 1 900000000000207008 110961009 764445001 2 370133003 900000000000011006 900000000000451002 +9186579027 20180731 1 900000000000207008 110962002 764445001 0 370133003 900000000000011006 900000000000451002 +9186579027 20190731 1 900000000000207008 110962002 764445001 2 370133003 900000000000011006 900000000000451002 +9186580029 20180731 1 900000000000207008 110963007 764445001 0 370133003 900000000000011006 900000000000451002 +9186580029 20190731 1 900000000000207008 110963007 764445001 2 370133003 900000000000011006 900000000000451002 +9186581025 20180731 1 900000000000207008 110964001 764445001 0 370133003 900000000000011006 900000000000451002 +9186581025 20190731 1 900000000000207008 110964001 764445001 2 370133003 900000000000011006 900000000000451002 +9186582021 20180731 1 900000000000207008 110965000 764445001 0 370133003 900000000000011006 900000000000451002 +9186582021 20190731 1 900000000000207008 110965000 764445001 2 370133003 900000000000011006 900000000000451002 +9186583027 20180731 1 900000000000207008 110966004 764445001 0 370133003 900000000000011006 900000000000451002 +9186583027 20190731 1 900000000000207008 110966004 764445001 2 370133003 900000000000011006 900000000000451002 +9186584022 20180731 1 900000000000207008 110967008 764445001 0 370133003 900000000000011006 900000000000451002 +9186584022 20190731 1 900000000000207008 110967008 764445001 2 370133003 900000000000011006 900000000000451002 +9186584022 20220630 0 900000000000207008 110967008 764445001 2 370133003 900000000000011006 900000000000451002 +9186585023 20180731 1 900000000000207008 110968003 764445001 0 370133003 900000000000011006 900000000000451002 +9186585023 20190731 1 900000000000207008 110968003 764445001 2 370133003 900000000000011006 900000000000451002 +9186586024 20180731 1 900000000000207008 110969006 309051001 0 116680003 900000000000011006 900000000000451002 +9186587026 20180731 1 900000000000207008 110969006 399436000 0 116680003 900000000000011006 900000000000451002 +9186588020 20180731 1 900000000000207008 110969006 764445001 0 370133003 900000000000011006 900000000000451002 +9186588020 20190731 1 900000000000207008 110969006 764445001 2 370133003 900000000000011006 900000000000451002 +9186589028 20180731 1 900000000000207008 110970007 119398007 0 116680003 900000000000011006 900000000000451002 +9186590021 20180731 1 900000000000207008 110970007 764445001 0 370133003 900000000000011006 900000000000451002 +9186590021 20190731 1 900000000000207008 110970007 764445001 2 370133003 900000000000011006 900000000000451002 +9186596026 20180731 1 900000000000207008 116155002 764445001 0 370133003 900000000000011006 900000000000451002 +9186596026 20190731 1 900000000000207008 116155002 764445001 2 370133003 900000000000011006 900000000000451002 +9186597024 20180731 1 900000000000207008 116156001 764445001 0 370133003 900000000000011006 900000000000451002 +9186597024 20190731 1 900000000000207008 116156001 764445001 2 370133003 900000000000011006 900000000000451002 +9186598025 20180731 1 900000000000207008 116157005 764445001 0 370133003 900000000000011006 900000000000451002 +9186598025 20190731 1 900000000000207008 116157005 764445001 2 370133003 900000000000011006 900000000000451002 +9186599022 20180731 1 900000000000207008 116158000 764445001 0 370133003 900000000000011006 900000000000451002 +9186599022 20190731 1 900000000000207008 116158000 764445001 2 370133003 900000000000011006 900000000000451002 +9186600020 20180731 1 900000000000207008 116159008 764445001 0 370133003 900000000000011006 900000000000451002 +9186600020 20190731 1 900000000000207008 116159008 764445001 2 370133003 900000000000011006 900000000000451002 +9186601024 20180731 1 900000000000207008 116160003 764445001 0 370133003 900000000000011006 900000000000451002 +9186601024 20190731 1 900000000000207008 116160003 764445001 2 370133003 900000000000011006 900000000000451002 +9186602028 20180731 1 900000000000207008 116161004 764445001 0 370133003 900000000000011006 900000000000451002 +9186602028 20190731 1 900000000000207008 116161004 764445001 2 370133003 900000000000011006 900000000000451002 +9186603022 20180731 1 900000000000207008 116162006 764445001 0 370133003 900000000000011006 900000000000451002 +9186603022 20190731 1 900000000000207008 116162006 764445001 1 370133003 900000000000011006 900000000000451002 +9186604027 20180731 1 900000000000207008 116213003 764445001 0 370133003 900000000000011006 900000000000451002 +9186604027 20190731 1 900000000000207008 116213003 764445001 2 370133003 900000000000011006 900000000000451002 +9186651025 20180731 1 900000000000207008 258563002 764445001 0 370133003 900000000000011006 900000000000451002 +9186651025 20190731 1 900000000000207008 258563002 764445001 2 370133003 900000000000011006 900000000000451002 +9186651025 20220630 0 900000000000207008 258563002 764445001 2 370133003 900000000000011006 900000000000451002 +9186704022 20180731 1 900000000000207008 309176002 764445001 0 370133003 900000000000011006 900000000000451002 +9186704022 20190731 1 900000000000207008 309176002 764445001 2 370133003 900000000000011006 900000000000451002 +9186704022 20220630 0 900000000000207008 309176002 764445001 2 370133003 900000000000011006 900000000000451002 +9186705023 20180731 1 900000000000207008 309210009 764445001 0 370133003 900000000000011006 900000000000451002 +9186705023 20190731 1 900000000000207008 309210009 764445001 2 370133003 900000000000011006 900000000000451002 +9186705023 20220630 0 900000000000207008 309210009 764445001 2 370133003 900000000000011006 900000000000451002 +9186706024 20180731 1 900000000000207008 309261004 764445001 0 370133003 900000000000011006 900000000000451002 +9186706024 20190731 1 900000000000207008 309261004 764445001 2 370133003 900000000000011006 900000000000451002 +9186706024 20220630 0 900000000000207008 309261004 764445001 2 370133003 900000000000011006 900000000000451002 +9186783029 20180731 1 900000000000207008 370108001 764445001 0 370133003 900000000000011006 900000000000451002 +9186783029 20190731 1 900000000000207008 370108001 764445001 2 370133003 900000000000011006 900000000000451002 +9186786021 20180731 1 900000000000207008 373101006 764445001 0 370133003 900000000000011006 900000000000451002 +9186786021 20190731 1 900000000000207008 373101006 764445001 2 370133003 900000000000011006 900000000000451002 +9186787028 20180731 1 900000000000207008 373103009 764445001 0 370133003 900000000000011006 900000000000451002 +9186787028 20190731 1 900000000000207008 373103009 764445001 2 370133003 900000000000011006 900000000000451002 +9186923020 20180731 1 900000000000207008 430117006 764445001 0 370133003 900000000000011006 900000000000451002 +9186923020 20190731 1 900000000000207008 430117006 764445001 2 370133003 900000000000011006 900000000000451002 +9186932022 20180731 1 900000000000207008 430241003 764445001 0 370133003 900000000000011006 900000000000451002 +9186932022 20190731 1 900000000000207008 430241003 764445001 2 370133003 900000000000011006 900000000000451002 +9186933028 20180731 1 900000000000207008 430297000 764445001 0 370133003 900000000000011006 900000000000451002 +9186933028 20190731 1 900000000000207008 430297000 764445001 1 370133003 900000000000011006 900000000000451002 +9186934023 20180731 1 900000000000207008 430309006 764445001 0 370133003 900000000000011006 900000000000451002 +9186934023 20190731 1 900000000000207008 430309006 764445001 2 370133003 900000000000011006 900000000000451002 +9186935024 20180731 1 900000000000207008 430310001 764445001 0 370133003 900000000000011006 900000000000451002 +9186935024 20190731 1 900000000000207008 430310001 764445001 2 370133003 900000000000011006 900000000000451002 +9186937027 20180731 1 900000000000207008 430312009 764445001 0 370133003 900000000000011006 900000000000451002 +9186937027 20190731 1 900000000000207008 430312009 764445001 2 370133003 900000000000011006 900000000000451002 +9186938021 20180731 1 900000000000207008 430312009 39352004 1 118169006 900000000000011006 900000000000451002 +9186939029 20180731 1 900000000000207008 430312009 6085005 1 370133003 900000000000011006 900000000000451002 +9186940027 20180731 1 900000000000207008 430318008 764445001 0 370133003 900000000000011006 900000000000451002 +9186940027 20190731 1 900000000000207008 430318008 764445001 2 370133003 900000000000011006 900000000000451002 +9186941028 20180731 1 900000000000207008 430346005 764445001 0 370133003 900000000000011006 900000000000451002 +9186941028 20190731 1 900000000000207008 430346005 764445001 1 370133003 900000000000011006 900000000000451002 +9186947029 20180731 1 900000000000207008 430379005 764445001 0 370133003 900000000000011006 900000000000451002 +9186947029 20190731 1 900000000000207008 430379005 764445001 2 370133003 900000000000011006 900000000000451002 +9186951027 20180731 1 900000000000207008 430386002 764445001 0 370133003 900000000000011006 900000000000451002 +9186951027 20190731 1 900000000000207008 430386002 764445001 1 370133003 900000000000011006 900000000000451002 +9186952023 20180731 1 900000000000207008 430387006 764445001 0 370133003 900000000000011006 900000000000451002 +9186952023 20190731 1 900000000000207008 430387006 764445001 1 370133003 900000000000011006 900000000000451002 +9186953029 20180731 1 900000000000207008 430389009 764445001 0 370133003 900000000000011006 900000000000451002 +9186953029 20190731 1 900000000000207008 430389009 764445001 1 370133003 900000000000011006 900000000000451002 +9186954024 20180731 1 900000000000207008 430408004 764445001 0 370133003 900000000000011006 900000000000451002 +9186954024 20190731 1 900000000000207008 430408004 764445001 2 370133003 900000000000011006 900000000000451002 +9186961023 20180731 1 900000000000207008 430855004 764445001 0 370133003 900000000000011006 900000000000451002 +9186961023 20190731 1 900000000000207008 430855004 764445001 2 370133003 900000000000011006 900000000000451002 +9186967022 20180731 1 900000000000207008 431058008 764445001 0 370133003 900000000000011006 900000000000451002 +9186967022 20190731 1 900000000000207008 431058008 764445001 2 370133003 900000000000011006 900000000000451002 +9186979022 20180731 1 900000000000207008 431771004 764445001 0 370133003 900000000000011006 900000000000451002 +9186979022 20190731 1 900000000000207008 431771004 764445001 2 370133003 900000000000011006 900000000000451002 +9186997025 20180731 1 900000000000207008 432897002 764445001 0 370133003 900000000000011006 900000000000451002 +9186997025 20190731 1 900000000000207008 432897002 764445001 2 370133003 900000000000011006 900000000000451002 +9187042027 20180731 1 900000000000207008 440135000 764445001 0 370133003 900000000000011006 900000000000451002 +9187042027 20190731 1 900000000000207008 440135000 764445001 2 370133003 900000000000011006 900000000000451002 +9187107029 20180731 1 900000000000207008 733105003 764445001 0 370133003 900000000000011006 900000000000451002 +9187107029 20190731 1 900000000000207008 733105003 764445001 2 370133003 900000000000011006 900000000000451002 +9187108023 20180731 1 900000000000207008 733475007 764445001 0 370133003 900000000000011006 900000000000451002 +9187108023 20190731 1 900000000000207008 733475007 764445001 2 370133003 900000000000011006 900000000000451002 +9187109026 20180731 1 900000000000207008 733476008 764445001 0 370133003 900000000000011006 900000000000451002 +9187109026 20190731 1 900000000000207008 733476008 764445001 2 370133003 900000000000011006 900000000000451002 +9187261021 20180731 1 900000000000207008 16212371000119106 764445001 0 370133003 900000000000011006 900000000000451002 +9187261021 20190731 1 900000000000207008 16212371000119106 764445001 2 370133003 900000000000011006 900000000000451002 +9187261021 20220630 0 900000000000207008 16212371000119106 764445001 2 370133003 900000000000011006 900000000000451002 +9273821023 20180731 1 900000000000207008 309287004 765470006 0 116680003 900000000000011006 900000000000451002 +9273822027 20180731 1 900000000000207008 309287004 765469005 0 116680003 900000000000011006 900000000000451002 +9273831027 20180731 1 900000000000207008 765469005 413675001 3 370133003 900000000000011006 900000000000451002 +9273832023 20180731 1 900000000000207008 765469005 122712006 0 116680003 900000000000011006 900000000000451002 +9273833029 20180731 1 900000000000207008 765469005 35039007 3 118169006 900000000000011006 900000000000451002 +9273835020 20180731 1 900000000000207008 765469005 309501000 0 116680003 900000000000011006 900000000000451002 +9273836021 20180731 1 900000000000207008 765469005 413675001 2 370133003 900000000000011006 900000000000451002 +9273839025 20180731 1 900000000000207008 765469005 413675001 1 370133003 900000000000011006 900000000000451002 +9273840028 20180731 1 900000000000207008 765469005 399388008 0 116680003 900000000000011006 900000000000451002 +9273841029 20180731 1 900000000000207008 765469005 236886002 3 118171006 900000000000011006 900000000000451002 +9273845022 20180731 1 900000000000207008 765470006 413675001 3 370133003 900000000000011006 900000000000451002 +9273847025 20180731 1 900000000000207008 765470006 413675001 2 370133003 900000000000011006 900000000000451002 +9273849027 20180731 1 900000000000207008 765470006 122712006 0 116680003 900000000000011006 900000000000451002 +9273850027 20180731 1 900000000000207008 765470006 413675001 1 370133003 900000000000011006 900000000000451002 +9273851028 20180731 1 900000000000207008 765470006 397326000 0 116680003 900000000000011006 900000000000451002 +9273854020 20180731 1 900000000000207008 765470006 309501000 0 116680003 900000000000011006 900000000000451002 +9275116021 20180731 1 900000000000207008 765469005 113293009 2 118169006 900000000000011006 900000000000451002 +9275117028 20180731 1 900000000000207008 765469005 120053002 2 118171006 900000000000011006 900000000000451002 +9275118022 20180731 1 900000000000207008 765469005 15497006 1 118169006 900000000000011006 900000000000451002 +9275119025 20180731 1 900000000000207008 765469005 83152002 1 118171006 900000000000011006 900000000000451002 +9275123022 20180731 1 900000000000207008 765470006 120053002 3 118171006 900000000000011006 900000000000451002 +9275125026 20180731 1 900000000000207008 765470006 2033006 3 118169006 900000000000011006 900000000000451002 +9279280021 20180731 1 900000000000207008 765470006 35039007 2 118169006 900000000000011006 900000000000451002 +9279281020 20180731 1 900000000000207008 765470006 236886002 2 118171006 900000000000011006 900000000000451002 +9280709022 20180731 1 900000000000207008 765470006 15497006 1 118169006 900000000000011006 900000000000451002 +9280712020 20180731 1 900000000000207008 765470006 83152002 1 118171006 900000000000011006 900000000000451002 +9551592025 20180731 1 900000000000207008 734342007 734417004 0 116680003 900000000000011006 900000000000451002 +9551592025 20190731 0 900000000000207008 734342007 734417004 0 116680003 900000000000011006 900000000000451002 +10449274026 20190131 1 900000000000207008 16212971000119107 771314001 2 118169006 900000000000011006 900000000000451002 +10449275025 20190131 1 900000000000207008 16212971000119107 122479006 1 118171006 900000000000011006 900000000000451002 +10449276029 20190131 1 900000000000207008 16212971000119107 413675001 1 370133003 900000000000011006 900000000000451002 +10449277022 20190131 1 900000000000207008 16212971000119107 771314001 1 118169006 900000000000011006 900000000000451002 +10569881025 20190131 1 900000000000207008 309109005 309072003 0 116680003 900000000000011006 900000000000451002 +10569881025 20210131 0 900000000000207008 309109005 309072003 0 116680003 900000000000011006 900000000000451002 +10569897024 20190131 1 900000000000207008 309110000 119376003 0 116680003 900000000000011006 900000000000451002 +10569897024 20210131 0 900000000000207008 309110000 119376003 0 116680003 900000000000011006 900000000000451002 +10569918025 20190131 1 900000000000207008 309111001 309074002 0 116680003 900000000000011006 900000000000451002 +10569918025 20210131 0 900000000000207008 309111001 309074002 0 116680003 900000000000011006 900000000000451002 +10575338025 20190131 1 900000000000207008 122553000 309072003 0 116680003 900000000000011006 900000000000451002 +10575338025 20210131 0 900000000000207008 122553000 309072003 0 116680003 900000000000011006 900000000000451002 +10575420027 20190131 1 900000000000207008 258436001 309072003 0 116680003 900000000000011006 900000000000451002 +10575420027 20240201 0 900000000000207008 258436001 309072003 0 116680003 900000000000011006 900000000000451002 +10575471025 20190131 1 900000000000207008 445367006 309072003 0 116680003 900000000000011006 900000000000451002 +10575471025 20210131 0 900000000000207008 445367006 309072003 0 116680003 900000000000011006 900000000000451002 +10607155029 20190131 1 900000000000207008 773611006 472919007 0 116680003 900000000000011006 900000000000451002 +10607155029 20210131 0 900000000000207008 773611006 472919007 0 116680003 900000000000011006 900000000000451002 +10607156028 20190131 1 900000000000207008 773611006 119311002 0 116680003 900000000000011006 900000000000451002 +10607157021 20190131 1 900000000000207008 773611006 119308003 0 116680003 900000000000011006 900000000000451002 +10607158027 20190131 1 900000000000207008 773611006 472917009 1 118171006 900000000000011006 900000000000451002 +10607159024 20190131 1 900000000000207008 773611006 450866001 1 118170007 900000000000011006 900000000000451002 +10607159024 20210131 0 900000000000207008 773611006 450866001 1 118170007 900000000000011006 900000000000451002 +10607532021 20190131 1 900000000000207008 773630006 472919007 0 116680003 900000000000011006 900000000000451002 +10607532021 20210131 0 900000000000207008 773630006 472919007 0 116680003 900000000000011006 900000000000451002 +10607533027 20190131 1 900000000000207008 773630006 20568009 1 118170007 900000000000011006 900000000000451002 +10607533027 20210131 0 900000000000207008 773630006 20568009 1 118170007 900000000000011006 900000000000451002 +10607534022 20190131 1 900000000000207008 773630006 119311002 0 116680003 900000000000011006 900000000000451002 +10607535023 20190131 1 900000000000207008 773630006 472917009 1 118171006 900000000000011006 900000000000451002 +10747846026 20190131 1 900000000000207008 122730004 445405002 0 116680003 900000000000011006 900000000000451002 +10747870027 20190131 1 900000000000207008 122667000 127470000 0 116680003 900000000000011006 900000000000451002 +10747939020 20190131 1 900000000000207008 122672009 127474009 0 116680003 900000000000011006 900000000000451002 +10747962022 20190131 1 900000000000207008 397077004 445405002 0 116680003 900000000000011006 900000000000451002 +10747969029 20190131 1 900000000000207008 122739003 127457009 0 116680003 900000000000011006 900000000000451002 +10748088020 20190131 1 900000000000207008 373103009 127457009 0 116680003 900000000000011006 900000000000451002 +10748212022 20190131 1 900000000000207008 122691009 128175003 0 116680003 900000000000011006 900000000000451002 +10748302028 20190131 1 900000000000207008 122632000 128171007 0 116680003 900000000000011006 900000000000451002 +10748307023 20190131 1 900000000000207008 122698003 127481002 0 116680003 900000000000011006 900000000000451002 +10748376029 20190131 1 900000000000207008 309505009 119325001 0 116680003 900000000000011006 900000000000451002 +10748413026 20190131 1 900000000000207008 122709008 127482009 0 116680003 900000000000011006 900000000000451002 +11157465020 20190131 1 900000000000207008 309107007 309072003 0 116680003 900000000000011006 900000000000451002 +11157465020 20210131 0 900000000000207008 309107007 309072003 0 116680003 900000000000011006 900000000000451002 +11157676027 20190131 1 900000000000207008 309113003 309074002 0 116680003 900000000000011006 900000000000451002 +11157676027 20210131 0 900000000000207008 309113003 309074002 0 116680003 900000000000011006 900000000000451002 +11176140024 20190131 1 900000000000207008 16211371000119102 309126004 0 116680003 900000000000011006 900000000000451002 +11192474021 20190131 1 900000000000207008 119327009 770802007 0 118169006 900000000000011006 900000000000451002 +11192474021 20190731 1 900000000000207008 119327009 770802007 1 118169006 900000000000011006 900000000000451002 +11192911027 20190131 1 900000000000207008 447098004 770802007 1 118169006 900000000000011006 900000000000451002 +11225035024 20190731 1 900000000000207008 16209691000119106 782762003 1 118171006 900000000000011006 900000000000451002 +11226943022 20190731 1 900000000000207008 16209931000119102 782763008 1 118171006 900000000000011006 900000000000451002 +11226943022 20230331 0 900000000000207008 16209931000119102 782763008 1 118171006 900000000000011006 900000000000451002 +11227640029 20190731 1 900000000000207008 16209731000119104 782762003 1 118171006 900000000000011006 900000000000451002 +11260274024 20190731 1 900000000000207008 16209691000119106 258607008 0 116680003 900000000000011006 900000000000451002 +11260274024 20230331 0 900000000000207008 16209691000119106 258607008 0 116680003 900000000000011006 900000000000451002 +11260276021 20190731 1 900000000000207008 16215451000119103 440674008 0 116680003 900000000000011006 900000000000451002 +11260276021 20230331 0 900000000000207008 16215451000119103 440674008 0 116680003 900000000000011006 900000000000451002 +11260277028 20190731 1 900000000000207008 16215451000119103 16221811000119106 0 116680003 900000000000011006 900000000000451002 +11260277028 20230331 0 900000000000207008 16215451000119103 16221811000119106 0 116680003 900000000000011006 900000000000451002 +11260278022 20190731 1 900000000000207008 16215451000119103 119391001 0 116680003 900000000000011006 900000000000451002 +11260278022 20230331 0 900000000000207008 16215451000119103 119391001 0 116680003 900000000000011006 900000000000451002 +11260287029 20190731 1 900000000000207008 16209851000119100 782971002 1 118171006 900000000000011006 900000000000451002 +11260287029 20230331 0 900000000000207008 16209851000119100 782971002 1 118171006 900000000000011006 900000000000451002 +11260288023 20190731 1 900000000000207008 16209891000119105 782971002 1 118171006 900000000000011006 900000000000451002 +11260288023 20230331 0 900000000000207008 16209891000119105 782971002 1 118171006 900000000000011006 900000000000451002 +11260291023 20190731 1 900000000000207008 16215251000119104 440674008 0 116680003 900000000000011006 900000000000451002 +11260291023 20230331 0 900000000000207008 16215251000119104 440674008 0 116680003 900000000000011006 900000000000451002 +11260292027 20190731 1 900000000000207008 16215251000119104 16221811000119106 0 116680003 900000000000011006 900000000000451002 +11260292027 20230331 0 900000000000207008 16215251000119104 16221811000119106 0 116680003 900000000000011006 900000000000451002 +11260293021 20190731 1 900000000000207008 16215251000119104 119391001 0 116680003 900000000000011006 900000000000451002 +11260303026 20190731 1 900000000000207008 16215411000119104 397395005 1 118171006 900000000000011006 900000000000451002 +11260320027 20190731 1 900000000000207008 16209931000119102 16221811000119106 0 116680003 900000000000011006 900000000000451002 +11260320027 20230331 0 900000000000207008 16209931000119102 16221811000119106 0 116680003 900000000000011006 900000000000451002 +11260321028 20190731 1 900000000000207008 16215291000119109 397395005 1 118171006 900000000000011006 900000000000451002 +11260323025 20190731 1 900000000000207008 258607008 782971002 1 118171006 900000000000011006 900000000000451002 +11260323025 20230331 0 900000000000207008 258607008 782971002 1 118171006 900000000000011006 900000000000451002 +11260324020 20190731 1 900000000000207008 122609004 397395005 1 118171006 900000000000011006 900000000000451002 +11260325021 20190731 1 900000000000207008 16209811000119101 782971002 1 118171006 900000000000011006 900000000000451002 +11260325021 20230331 0 900000000000207008 16209811000119101 782971002 1 118171006 900000000000011006 900000000000451002 +11260326022 20190731 1 900000000000207008 16215331000119103 397395005 1 118171006 900000000000011006 900000000000451002 +11260337023 20190731 1 900000000000207008 16209731000119104 258607008 0 116680003 900000000000011006 900000000000451002 +11260337023 20230331 0 900000000000207008 16209731000119104 258607008 0 116680003 900000000000011006 900000000000451002 +11260340023 20190731 1 900000000000207008 16209771000119101 782971002 1 118171006 900000000000011006 900000000000451002 +11260340023 20230331 0 900000000000207008 16209771000119101 782971002 1 118171006 900000000000011006 900000000000451002 +11271305025 20190731 1 900000000000207008 16209691000119106 122609004 0 116680003 900000000000011006 900000000000451002 +11271306029 20190731 1 900000000000207008 16209691000119106 359744007 1 118169006 900000000000011006 900000000000451002 +11271393028 20190731 1 900000000000207008 16209851000119100 122609004 0 116680003 900000000000011006 900000000000451002 +11271394023 20190731 1 900000000000207008 16209851000119100 11339004 1 118169006 900000000000011006 900000000000451002 +11271449029 20190731 1 900000000000207008 258580003 309051001 0 116680003 900000000000011006 900000000000451002 +11271515024 20190731 1 900000000000207008 16209891000119105 122609004 0 116680003 900000000000011006 900000000000451002 +11271516020 20190731 1 900000000000207008 16209891000119105 113250009 1 118169006 900000000000011006 900000000000451002 +11271897024 20190731 1 900000000000207008 16209931000119102 122609004 0 116680003 900000000000011006 900000000000451002 +11271898025 20190731 1 900000000000207008 16209931000119102 64353002 1 118169006 900000000000011006 900000000000451002 +11272012029 20190731 1 900000000000207008 16209811000119101 122609004 0 116680003 900000000000011006 900000000000451002 +11272013023 20190731 1 900000000000207008 16209811000119101 23792002 1 118169006 900000000000011006 900000000000451002 +11272098026 20190731 1 900000000000207008 16209731000119104 122609004 0 116680003 900000000000011006 900000000000451002 +11272099023 20190731 1 900000000000207008 16209731000119104 359745008 1 118169006 900000000000011006 900000000000451002 +11367681021 20190731 1 900000000000207008 122569007 608969007 0 116680003 900000000000011006 900000000000451002 +11367709027 20190731 1 900000000000207008 258432004 608969007 0 116680003 900000000000011006 900000000000451002 +11367733022 20190731 1 900000000000207008 119326000 608969007 0 116680003 900000000000011006 900000000000451002 +11373970022 20190731 1 900000000000207008 16212171000119109 122668005 0 116680003 900000000000011006 900000000000451002 +11428742027 20190731 1 900000000000207008 440473005 258601009 0 116680003 900000000000011006 900000000000451002 +11428742027 20220531 0 900000000000207008 440473005 258601009 0 116680003 900000000000011006 900000000000451002 +11428743021 20190731 1 900000000000207008 440473005 81745001 1 118169006 900000000000011006 900000000000451002 +11428743021 20220531 0 900000000000207008 440473005 81745001 1 118169006 900000000000011006 900000000000451002 +11533917026 20190731 1 900000000000207008 787150001 258661006 0 116680003 900000000000011006 900000000000451002 +11533917026 20220131 0 900000000000207008 787150001 258661006 0 116680003 900000000000011006 900000000000451002 +11533925029 20190731 1 900000000000207008 787151002 123038009 0 116680003 900000000000011006 900000000000451002 +11533939029 20190731 1 900000000000207008 787152009 123038009 0 116680003 900000000000011006 900000000000451002 +11534152027 20190731 1 900000000000207008 787149001 258661006 0 116680003 900000000000011006 900000000000451002 +11534152027 20220131 0 900000000000207008 787149001 258661006 0 116680003 900000000000011006 900000000000451002 +11538283025 20190731 1 900000000000207008 119392008 363311008 0 116680003 900000000000011006 900000000000451002 +11538283025 20210131 0 900000000000207008 119392008 363311008 0 116680003 900000000000011006 900000000000451002 +11538473026 20190731 1 900000000000207008 127470000 438803004 0 116680003 900000000000011006 900000000000451002 +11538617026 20190731 1 900000000000207008 128155007 309048008 0 116680003 900000000000011006 900000000000451002 +11539215024 20190731 1 900000000000207008 431406009 433118002 0 116680003 900000000000011006 900000000000451002 +11539711025 20190731 1 900000000000207008 309206006 434244002 0 116680003 900000000000011006 900000000000451002 +11541169026 20190731 1 900000000000207008 423696009 309488006 0 116680003 900000000000011006 900000000000451002 +11542290025 20190731 1 900000000000207008 433322004 363311008 0 116680003 900000000000011006 900000000000451002 +11542956026 20190731 1 900000000000207008 128156008 363328006 0 116680003 900000000000011006 900000000000451002 +11542956026 20210131 0 900000000000207008 128156008 363328006 0 116680003 900000000000011006 900000000000451002 +11542972023 20190731 1 900000000000207008 127469001 433323009 0 116680003 900000000000011006 900000000000451002 +11542973029 20190731 1 900000000000207008 127469001 309048008 0 116680003 900000000000011006 900000000000451002 +11543441021 20190731 1 900000000000207008 16220931000119104 734375004 0 116680003 900000000000011006 900000000000451002 +11543462022 20190731 1 900000000000207008 472889002 472904006 0 116680003 900000000000011006 900000000000451002 +11543462022 20200131 0 900000000000207008 472889002 472904006 0 116680003 900000000000011006 900000000000451002 +11543533023 20190731 1 900000000000207008 258512002 258517008 0 116680003 900000000000011006 900000000000451002 +11572229028 20190731 1 900000000000207008 309117002 26107004 2 118169006 900000000000011006 900000000000451002 +11572229028 20220630 0 900000000000207008 309117002 26107004 2 118169006 900000000000011006 900000000000451002 +11572267025 20190731 1 900000000000207008 309118007 26107004 2 118169006 900000000000011006 900000000000451002 +11572267025 20220630 0 900000000000207008 309118007 26107004 2 118169006 900000000000011006 900000000000451002 +11572334027 20190731 1 900000000000207008 309119004 26107004 2 118169006 900000000000011006 900000000000451002 +11572334027 20220630 0 900000000000207008 309119004 26107004 2 118169006 900000000000011006 900000000000451002 +12058560025 20200131 1 900000000000207008 119371008 420548004 0 116680003 900000000000011006 900000000000451002 +12058685029 20200131 1 900000000000207008 122592007 788707000 0 116680003 900000000000011006 900000000000451002 +12059768026 20200131 1 900000000000207008 16214651000119100 127458004 0 116680003 900000000000011006 900000000000451002 +12059769023 20200131 1 900000000000207008 16222771000119104 430220009 0 116680003 900000000000011006 900000000000451002 +12059769023 20240701 0 900000000000207008 16222771000119104 430220009 0 116680003 900000000000011006 900000000000451002 +12059770024 20200131 1 900000000000207008 16222771000119104 363311008 0 116680003 900000000000011006 900000000000451002 +12072527024 20200131 1 900000000000207008 258438000 309072003 0 116680003 900000000000011006 900000000000451002 +12072527024 20210131 0 900000000000207008 258438000 309072003 0 116680003 900000000000011006 900000000000451002 +12072528025 20200131 1 900000000000207008 258580003 788707000 0 116680003 900000000000011006 900000000000451002 +12072529022 20200131 1 900000000000207008 271514008 430232008 0 116680003 900000000000011006 900000000000451002 +12072530028 20200131 1 900000000000207008 271514008 430268003 0 116680003 900000000000011006 900000000000451002 +12072531029 20200131 1 900000000000207008 271516005 430268003 0 116680003 900000000000011006 900000000000451002 +12072532020 20200131 1 900000000000207008 271518006 430232008 0 116680003 900000000000011006 900000000000451002 +12072533026 20200131 1 900000000000207008 271518006 430268003 0 116680003 900000000000011006 900000000000451002 +12082136022 20200131 1 900000000000207008 432983009 258421004 0 116680003 900000000000011006 900000000000451002 +12082136022 20240101 0 900000000000207008 432983009 258421004 0 116680003 900000000000011006 900000000000451002 +12082731023 20200131 1 900000000000207008 396896007 608868000 0 116680003 900000000000011006 900000000000451002 +12088758022 20200131 1 900000000000207008 473415003 439961009 0 116680003 900000000000011006 900000000000451002 +12089629024 20200131 1 900000000000207008 621000009105 119303007 0 116680003 900000000000011006 900000000000451002 +12089630025 20200131 1 900000000000207008 621000009105 386126001 1 370133003 900000000000011006 900000000000451002 +12092961024 20200131 1 900000000000207008 737356002 119362004 0 116680003 900000000000011006 900000000000451002 +12099653027 20200131 1 900000000000207008 788524009 439479000 0 116680003 900000000000011006 900000000000451002 +12099654022 20200131 1 900000000000207008 788524009 413675001 1 370133003 900000000000011006 900000000000451002 +12099655023 20200131 1 900000000000207008 788524009 65801008 1 118171006 900000000000011006 900000000000451002 +12100079029 20200131 1 900000000000207008 788707000 119297000 0 116680003 900000000000011006 900000000000451002 +12100080026 20200131 1 900000000000207008 788707000 256906008 1 370133003 900000000000011006 900000000000451002 +12142517024 20200131 1 900000000000207008 309059004 817011007 1 118171006 900000000000011006 900000000000451002 +12142518025 20200131 1 900000000000207008 309276007 817011007 1 118171006 900000000000011006 900000000000451002 +12142519022 20200131 1 900000000000207008 309482007 817011007 1 118171006 900000000000011006 900000000000451002 +12142520027 20200131 1 900000000000207008 16214131000119104 817011007 1 118171006 900000000000011006 900000000000451002 +12142521028 20200131 1 900000000000207008 16222091000119100 413675001 1 370133003 900000000000011006 900000000000451002 +12142522024 20200131 1 900000000000207008 16222091000119100 817011007 1 118171006 900000000000011006 900000000000451002 +12142523025 20200131 1 900000000000207008 16222091000119100 39937001 1 118169006 900000000000011006 900000000000451002 +12175577029 20200131 1 900000000000207008 441750007 818987002 1 118169006 900000000000011006 900000000000451002 +12175593022 20200131 1 900000000000207008 608856009 818987002 2 118169006 900000000000011006 900000000000451002 +12175593022 20210131 0 900000000000207008 608856009 818987002 2 118169006 900000000000011006 900000000000451002 +12175594027 20200131 1 900000000000207008 608860007 818987002 2 118169006 900000000000011006 900000000000451002 +12175629021 20200131 1 900000000000207008 443654002 818987002 1 118169006 900000000000011006 900000000000451002 +12175637029 20200131 1 900000000000207008 16211211000119102 818987002 1 118169006 900000000000011006 900000000000451002 +12188392022 20200131 1 900000000000207008 472904006 818983003 1 118169006 900000000000011006 900000000000451002 +12191952020 20200131 1 900000000000207008 119355008 48791004 1 118169006 900000000000011006 900000000000451002 +12205100029 20200131 1 900000000000207008 258527002 472889002 0 116680003 900000000000011006 900000000000451002 +12205100029 20210131 0 900000000000207008 258527002 472889002 0 116680003 900000000000011006 900000000000451002 +12489102027 20200731 1 900000000000207008 840395001 309051001 0 116680003 900000000000011006 900000000000451002 +12489103021 20200731 1 900000000000207008 840395001 430220009 0 116680003 900000000000011006 900000000000451002 +12489103021 20240701 0 900000000000207008 840395001 430220009 0 116680003 900000000000011006 900000000000451002 +12489104026 20200731 1 900000000000207008 840395001 32457005 1 370133003 900000000000011006 900000000000451002 +12489105025 20200731 1 900000000000207008 840395001 61942001 1 118169006 900000000000011006 900000000000451002 +12489106029 20200731 1 900000000000207008 733056005 840395001 0 116680003 900000000000011006 900000000000451002 +12661882028 20200731 1 900000000000207008 473417006 472919007 0 116680003 900000000000011006 900000000000451002 +12661882028 20220228 0 900000000000207008 473417006 472919007 0 116680003 900000000000011006 900000000000451002 +12664782021 20200731 1 900000000000207008 472943005 472919007 0 116680003 900000000000011006 900000000000451002 +12664782021 20231101 0 900000000000207008 472943005 472919007 0 116680003 900000000000011006 900000000000451002 +12730569025 20200731 1 900000000000207008 454951000124103 430220009 0 116680003 900000000000011006 900000000000451002 +12730569025 20240701 0 900000000000207008 454951000124103 430220009 0 116680003 900000000000011006 900000000000451002 +12730570029 20200731 1 900000000000207008 454951000124103 257261003 0 116680003 900000000000011006 900000000000451002 +12730571025 20200731 1 900000000000207008 454951000124103 285570007 1 118171006 900000000000011006 900000000000451002 +12730572021 20200731 1 900000000000207008 454951000124103 69536005 1 118169006 900000000000011006 900000000000451002 +12730576024 20200731 1 900000000000207008 461911000124106 119389009 0 116680003 900000000000011006 900000000000451002 +12730577026 20200731 1 900000000000207008 461911000124106 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730578020 20200731 1 900000000000207008 461911000124106 472881004 0 116680003 900000000000011006 900000000000451002 +12730579028 20200731 1 900000000000207008 461911000124106 285570007 1 118171006 900000000000011006 900000000000451002 +12730580025 20200731 1 900000000000207008 461911000124106 31389004 1 118169006 900000000000011006 900000000000451002 +12730581026 20200731 1 900000000000207008 258500001 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730582022 20200731 1 900000000000207008 309166000 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730583028 20200731 1 900000000000207008 418932006 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730584023 20200731 1 900000000000207008 733104004 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730584023 20230630 0 900000000000207008 733104004 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730585024 20200731 1 900000000000207008 445160003 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730586020 20200731 1 900000000000207008 445297001 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730586020 20230630 0 900000000000207008 445297001 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730587027 20200731 1 900000000000207008 472866005 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730588021 20200731 1 900000000000207008 472867001 461911000124106 0 116680003 900000000000011006 900000000000451002 +12730589029 20200731 1 900000000000207008 472891005 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730589029 20230630 0 900000000000207008 472891005 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730590022 20200731 1 900000000000207008 472893008 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730591021 20200731 1 900000000000207008 472900002 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730592025 20200731 1 900000000000207008 472901003 454951000124103 0 116680003 900000000000011006 900000000000451002 +12730593024 20200731 1 900000000000207008 473400004 454951000124103 0 116680003 900000000000011006 900000000000451002 +12747065028 20200731 1 900000000000207008 122595009 397199005 0 116680003 900000000000011006 900000000000451002 +12747066027 20200731 1 900000000000207008 122599003 397199005 0 116680003 900000000000011006 900000000000451002 +12747067020 20200731 1 900000000000207008 309546004 397199005 0 116680003 900000000000011006 900000000000451002 +12747068026 20200731 1 900000000000207008 309547008 397199005 0 116680003 900000000000011006 900000000000451002 +12747069023 20200731 1 900000000000207008 309547008 119184005 1 118169006 900000000000011006 900000000000451002 +12747070024 20200731 1 900000000000207008 397199005 127457009 0 116680003 900000000000011006 900000000000451002 +12747071023 20200731 1 900000000000207008 397199005 439479000 0 116680003 900000000000011006 900000000000451002 +12747072027 20200731 1 900000000000207008 397199005 76752008 1 118169006 900000000000011006 900000000000451002 +12747073021 20200731 1 900000000000207008 16211771000119103 76752008 1 118169006 900000000000011006 900000000000451002 +12748463025 20200731 1 900000000000207008 866034009 119364003 0 116680003 900000000000011006 900000000000451002 +12748464020 20200731 1 900000000000207008 866034009 67922002 1 370133003 900000000000011006 900000000000451002 +12748465021 20200731 1 900000000000207008 866035005 119364003 0 116680003 900000000000011006 900000000000451002 +12748466022 20200731 1 900000000000207008 866035005 67922002 1 370133003 900000000000011006 900000000000451002 +12748467029 20200731 1 900000000000207008 866033003 446131002 0 116680003 900000000000011006 900000000000451002 +12748467029 20210131 0 900000000000207008 866033003 446131002 0 116680003 900000000000011006 900000000000451002 +12748468023 20200731 1 900000000000207008 866033003 256906008 1 370133003 900000000000011006 900000000000451002 +12748468023 20210131 0 900000000000207008 866033003 256906008 1 370133003 900000000000011006 900000000000451002 +12748469026 20200731 1 900000000000207008 866032008 446131002 0 116680003 900000000000011006 900000000000451002 +12748469026 20210131 0 900000000000207008 866032008 446131002 0 116680003 900000000000011006 900000000000451002 +12748470025 20200731 1 900000000000207008 866032008 256906008 1 370133003 900000000000011006 900000000000451002 +12748470025 20210131 0 900000000000207008 866032008 256906008 1 370133003 900000000000011006 900000000000451002 +12840626025 20200731 1 900000000000207008 258490009 258492001 0 116680003 900000000000011006 900000000000451002 +12840627023 20200731 1 900000000000207008 258490009 447881000 0 116680003 900000000000011006 900000000000451002 +12840628029 20200731 1 900000000000207008 258490009 28273000 1 118169006 900000000000011006 900000000000451002 +12840629021 20200731 1 900000000000207008 258490009 256896000 1 370133003 900000000000011006 900000000000451002 +12840630027 20200731 1 900000000000207008 258492001 119350003 0 116680003 900000000000011006 900000000000451002 +12934919023 20210131 1 900000000000207008 878861003 309051001 0 116680003 900000000000011006 900000000000451002 +12934920028 20210131 1 900000000000207008 878861003 446131002 0 116680003 900000000000011006 900000000000451002 +12934921029 20210131 1 900000000000207008 878861003 87612001 1 370133003 900000000000011006 900000000000451002 +12934924021 20210131 1 900000000000207008 866033003 878861003 0 116680003 900000000000011006 900000000000451002 +12934925022 20210131 1 900000000000207008 866033003 87612001 1 370133003 900000000000011006 900000000000451002 +12934926023 20210131 1 900000000000207008 866032008 878861003 0 116680003 900000000000011006 900000000000451002 +12934927025 20210131 1 900000000000207008 866032008 87612001 1 370133003 900000000000011006 900000000000451002 +12945596028 20210131 1 900000000000207008 309072003 413675001 1 370133003 900000000000011006 900000000000451002 +12945597021 20210131 1 900000000000207008 309508006 413675001 2 370133003 900000000000011006 900000000000451002 +12945597021 20220630 0 900000000000207008 309508006 413675001 2 370133003 900000000000011006 900000000000451002 +12945598027 20210131 1 900000000000207008 309508006 87784001 2 118169006 900000000000011006 900000000000451002 +12945598027 20220630 0 900000000000207008 309508006 87784001 2 118169006 900000000000011006 900000000000451002 +12945599024 20210131 1 900000000000207008 128160006 309072003 0 116680003 900000000000011006 900000000000451002 +12945600022 20210131 1 900000000000207008 309074002 413675001 2 370133003 900000000000011006 900000000000451002 +12945600022 20220630 0 900000000000207008 309074002 413675001 2 370133003 900000000000011006 900000000000451002 +12945601021 20210131 1 900000000000207008 309074002 87784001 2 118169006 900000000000011006 900000000000451002 +12945601021 20220630 0 900000000000207008 309074002 87784001 2 118169006 900000000000011006 900000000000451002 +12945602025 20210131 1 900000000000207008 309110000 309072003 0 116680003 900000000000011006 900000000000451002 +12945603024 20210131 1 900000000000207008 309111001 258415003 0 116680003 900000000000011006 900000000000451002 +12945604029 20210131 1 900000000000207008 309118007 258415003 0 116680003 900000000000011006 900000000000451002 +12945605028 20210131 1 900000000000207008 309121009 309072003 0 116680003 900000000000011006 900000000000451002 +12945606027 20210131 1 900000000000207008 309122002 258415003 0 116680003 900000000000011006 900000000000451002 +12945607020 20210131 1 900000000000207008 309504008 309074002 0 116680003 900000000000011006 900000000000451002 +12945608026 20210131 1 900000000000207008 309505009 309074002 0 116680003 900000000000011006 900000000000451002 +12945609023 20210131 1 900000000000207008 309506005 309074002 0 116680003 900000000000011006 900000000000451002 +12945610029 20210131 1 900000000000207008 432058006 258415003 0 116680003 900000000000011006 900000000000451002 +12945611025 20210131 1 900000000000207008 432097003 258415003 0 116680003 900000000000011006 900000000000451002 +12945612021 20210131 1 900000000000207008 725372003 309072003 0 116680003 900000000000011006 900000000000451002 +12945613027 20210131 1 900000000000207008 16221891000119102 122550002 0 116680003 900000000000011006 900000000000451002 +13034634022 20210131 1 900000000000207008 734379005 363328006 0 116680003 900000000000011006 900000000000451002 +13034634022 20220630 0 900000000000207008 734379005 363328006 0 116680003 900000000000011006 900000000000451002 +13034635023 20210131 1 900000000000207008 734379005 413675001 1 370133003 900000000000011006 900000000000451002 +13034636024 20210131 1 900000000000207008 608856009 438803004 0 116680003 900000000000011006 900000000000451002 +13034637026 20210131 1 900000000000207008 608856009 413675001 1 370133003 900000000000011006 900000000000451002 +13053112024 20210131 1 900000000000207008 110963007 116156001 0 116680003 900000000000011006 900000000000451002 +13053113025 20210131 1 900000000000207008 128156008 127466008 0 116680003 900000000000011006 900000000000451002 +13078427026 20210131 1 900000000000207008 258628004 258620006 1 370133003 900000000000011006 900000000000451002 +13078431021 20210131 1 900000000000207008 258631003 258620006 2 370133003 900000000000011006 900000000000451002 +13078456026 20210131 1 900000000000207008 472919007 49062001 1 370133003 900000000000011006 900000000000451002 +13078480027 20210131 1 900000000000207008 472933007 49062001 1 370133003 900000000000011006 900000000000451002 +13078483025 20210131 1 900000000000207008 472934001 65818007 1 370133003 900000000000011006 900000000000451002 +13078496029 20210131 1 900000000000207008 472939006 129121000 1 370133003 900000000000011006 900000000000451002 +13078499020 20210131 1 900000000000207008 472940008 9017009 1 370133003 900000000000011006 900000000000451002 +13078522023 20210131 1 900000000000207008 473408006 446476009 1 370133003 900000000000011006 900000000000451002 +13078522023 20230228 0 900000000000207008 473408006 446476009 1 370133003 900000000000011006 900000000000451002 +13078528022 20210131 1 900000000000207008 473411007 49062001 1 370133003 900000000000011006 900000000000451002 +13078534026 20210131 1 900000000000207008 473414004 360078002 1 370133003 900000000000011006 900000000000451002 +13078540022 20210131 1 900000000000207008 473417006 360129009 1 370133003 900000000000011006 900000000000451002 +13078542025 20210131 1 900000000000207008 473432004 444893002 1 370133003 900000000000011006 900000000000451002 +13078546027 20210131 1 900000000000207008 699868006 27065002 1 370133003 900000000000011006 900000000000451002 +13078546027 20240501 0 900000000000207008 699868006 27065002 1 370133003 900000000000011006 900000000000451002 +13078548026 20210131 1 900000000000207008 258631003 258622003 1 370133003 900000000000011006 900000000000451002 +13078555029 20210131 1 900000000000207008 119312009 116204000 1 370133003 900000000000011006 900000000000451002 +13078561026 20210131 1 900000000000207008 472931009 733458001 1 370133003 900000000000011006 900000000000451002 +13078566020 20210131 1 900000000000207008 16213051000119108 116204000 1 370133003 900000000000011006 900000000000451002 +13078569029 20210131 1 900000000000207008 16213091000119103 257351008 1 370133003 900000000000011006 900000000000451002 +13078574021 20210131 1 900000000000207008 16213211000119101 116204000 1 370133003 900000000000011006 900000000000451002 +13078579027 20210131 1 900000000000207008 16219801000119102 713375000 1 370133003 900000000000011006 900000000000451002 +13078580029 20210131 1 900000000000207008 439961009 40388003 1 370133003 900000000000011006 900000000000451002 +13078584022 20210131 1 900000000000207008 472920001 446476009 1 370133003 900000000000011006 900000000000451002 +13078587026 20210131 1 900000000000207008 472921002 116204000 1 370133003 900000000000011006 900000000000451002 +13078590021 20210131 1 900000000000207008 472923004 116204000 1 370133003 900000000000011006 900000000000451002 +13078593023 20210131 1 900000000000207008 472924005 116204000 1 370133003 900000000000011006 900000000000451002 +13078596026 20210131 1 900000000000207008 472925006 116204000 1 370133003 900000000000011006 900000000000451002 +13078599022 20210131 1 900000000000207008 472926007 116204000 1 370133003 900000000000011006 900000000000451002 +13078602028 20210131 1 900000000000207008 472928008 116204000 1 370133003 900000000000011006 900000000000451002 +13078606025 20210131 1 900000000000207008 472935000 116204000 1 370133003 900000000000011006 900000000000451002 +13078609021 20210131 1 900000000000207008 472936004 116204000 1 370133003 900000000000011006 900000000000451002 +13078612024 20210131 1 900000000000207008 472941007 116204000 1 370133003 900000000000011006 900000000000451002 +13078616022 20210131 1 900000000000207008 473403002 116204000 1 370133003 900000000000011006 900000000000451002 +13078621020 20210131 1 900000000000207008 473406005 257351008 1 370133003 900000000000011006 900000000000451002 +13078627024 20210131 1 900000000000207008 473409003 52124006 1 370133003 900000000000011006 900000000000451002 +13078631029 20210131 1 900000000000207008 473415003 268460000 1 370133003 900000000000011006 900000000000451002 +13078635022 20210131 1 900000000000207008 773611006 450866001 1 370133003 900000000000011006 900000000000451002 +13078636023 20210131 1 900000000000207008 258629007 75192006 1 370133003 900000000000011006 900000000000451002 +13078644023 20210131 1 900000000000207008 16220041000119107 713377008 1 370133003 900000000000011006 900000000000451002 +13078645024 20210131 1 900000000000207008 446212001 446839002 1 370133003 900000000000011006 900000000000451002 +13078647027 20210131 1 900000000000207008 439580004 439579002 1 370133003 900000000000011006 900000000000451002 +13078650029 20210131 1 900000000000207008 472943005 446276007 1 370133003 900000000000011006 900000000000451002 +13078653027 20210131 1 900000000000207008 473405009 279107003 1 118169006 900000000000011006 900000000000451002 +13078654022 20210131 1 900000000000207008 473405009 65216001 1 370133003 900000000000011006 900000000000451002 +13078656024 20210131 1 900000000000207008 473416002 286628000 1 370133003 900000000000011006 900000000000451002 +13078659028 20210131 1 900000000000207008 473433009 446033002 1 370133003 900000000000011006 900000000000451002 +13084790023 20210131 1 900000000000207008 732964006 470571004 1 370133003 900000000000011006 900000000000451002 +13084799024 20210131 1 900000000000207008 16212331000119108 713441002 1 370133003 900000000000011006 900000000000451002 +13084800023 20210131 1 900000000000207008 444656005 257287003 1 370133003 900000000000011006 900000000000451002 +13084804025 20210131 1 900000000000207008 472938003 257462007 1 370133003 900000000000011006 900000000000451002 +13084808027 20210131 1 900000000000207008 472944004 31030004 1 370133003 900000000000011006 900000000000451002 +13084811026 20210131 1 900000000000207008 473404008 118427002 1 370133003 900000000000011006 900000000000451002 +13084816020 20210131 1 900000000000207008 773630006 20568009 1 370133003 900000000000011006 900000000000451002 +13084879023 20210131 1 900000000000207008 258630002 258621005 1 370133003 900000000000011006 900000000000451002 +13084883023 20210131 1 900000000000207008 119309006 261241001 1 370133003 900000000000011006 900000000000451002 +13084884028 20210131 1 900000000000207008 16223251000119109 725874009 1 370133003 900000000000011006 900000000000451002 +13084887024 20210131 1 900000000000207008 472929000 713376004 1 370133003 900000000000011006 900000000000451002 +13084888025 20210131 1 900000000000207008 439628000 41323003 1 370133003 900000000000011006 900000000000451002 +13084890029 20210131 1 900000000000207008 440468004 79287008 1 370133003 900000000000011006 900000000000451002 +13084893027 20210131 1 900000000000207008 472932002 258623008 1 370133003 900000000000011006 900000000000451002 +13084895023 20210131 1 900000000000207008 472937008 257366006 1 370133003 900000000000011006 900000000000451002 +13084897026 20210131 1 900000000000207008 473407001 398176008 1 370133003 900000000000011006 900000000000451002 +13084899028 20210131 1 900000000000207008 473410008 446559007 1 370133003 900000000000011006 900000000000451002 +13084914022 20210131 1 900000000000207008 119314005 16470007 1 370133003 900000000000011006 900000000000451002 +13084921022 20210131 1 900000000000207008 16213171000119103 116204000 1 370133003 900000000000011006 900000000000451002 +13084922026 20210131 1 900000000000207008 16213251000119100 713378003 1 370133003 900000000000011006 900000000000451002 +13084923020 20210131 1 900000000000207008 440473005 57368009 1 370133003 900000000000011006 900000000000451002 +13084924025 20210131 1 900000000000207008 472922009 258625001 1 370133003 900000000000011006 900000000000451002 +13084925029 20210131 1 900000000000207008 472927003 419818001 1 370133003 900000000000011006 900000000000451002 +13084926028 20210131 1 900000000000207008 472930005 68276009 1 370133003 900000000000011006 900000000000451002 +13084927021 20210131 1 900000000000207008 472942000 257354000 1 370133003 900000000000011006 900000000000451002 +13084928027 20210131 1 900000000000207008 473401000 257263000 1 370133003 900000000000011006 900000000000451002 +13084929024 20210131 1 900000000000207008 473412000 26412008 1 370133003 900000000000011006 900000000000451002 +13084930025 20210131 1 900000000000207008 473413005 52124006 1 370133003 900000000000011006 900000000000451002 +13110268022 20210131 1 900000000000207008 473405009 118427002 1 118170007 900000000000011006 900000000000451002 +13110269025 20210131 1 900000000000207008 898201001 123038009 0 116680003 900000000000011006 900000000000451002 +13110270029 20210131 1 900000000000207008 898201001 49062001 1 118170007 900000000000011006 900000000000451002 +13110271025 20210131 1 900000000000207008 122591000 122558009 0 116680003 900000000000011006 900000000000451002 +13110272021 20210131 1 900000000000207008 122591000 67922002 1 370133003 900000000000011006 900000000000451002 +13110273027 20210131 1 900000000000207008 258536003 898201001 0 116680003 900000000000011006 900000000000451002 +13110278020 20210131 1 900000000000207008 119304001 898201001 0 116680003 900000000000011006 900000000000451002 +13110280025 20210131 1 900000000000207008 438660002 898201001 0 116680003 900000000000011006 900000000000451002 +13110281026 20210131 1 900000000000207008 119300005 898201001 0 116680003 900000000000011006 900000000000451002 +13110282022 20210131 1 900000000000207008 119305000 898201001 0 116680003 900000000000011006 900000000000451002 +13110288021 20210131 1 900000000000207008 16212331000119108 472919007 0 116680003 900000000000011006 900000000000451002 +13110289029 20210131 1 900000000000207008 16212331000119108 472917009 1 118171006 900000000000011006 900000000000451002 +13110290022 20210131 1 900000000000207008 472872005 898201001 0 116680003 900000000000011006 900000000000451002 +13110292025 20210131 1 900000000000207008 472919007 123038009 0 116680003 900000000000011006 900000000000451002 +13110307028 20210131 1 900000000000207008 898203003 472917009 1 118171006 900000000000011006 900000000000451002 +13110309025 20210131 1 900000000000207008 898203003 472919007 0 116680003 900000000000011006 900000000000451002 +13110310024 20210131 1 900000000000207008 898203003 898204009 1 370133003 900000000000011006 900000000000451002 +13110311023 20210131 1 900000000000207008 898205005 119361006 0 116680003 900000000000011006 900000000000451002 +13110312027 20210131 1 900000000000207008 898205005 50863008 1 370133003 900000000000011006 900000000000451002 +13157878028 20210131 1 900000000000207008 167870008 699026005 1 118169006 900000000000011006 900000000000451002 +13157879020 20210131 1 900000000000207008 167870008 734131006 1 370133003 900000000000011006 900000000000451002 +13158519021 20210131 1 900000000000207008 472895001 430232008 0 116680003 900000000000011006 900000000000451002 +13179889026 20210131 1 900000000000207008 1003517007 123038009 0 116680003 900000000000011006 900000000000451002 +13179960029 20210131 1 900000000000207008 1003522007 419695002 0 116680003 900000000000011006 900000000000451002 +13179961025 20210131 1 900000000000207008 1003522007 285570007 1 118171006 900000000000011006 900000000000451002 +13179962021 20210131 1 900000000000207008 1003522007 276339004 1 118170007 900000000000011006 900000000000451002 +13186847026 20210131 1 900000000000207008 119307008 1003710006 0 116680003 900000000000011006 900000000000451002 +13186848020 20210131 1 900000000000207008 1003705007 472919007 0 116680003 900000000000011006 900000000000451002 +13186849028 20210131 1 900000000000207008 1003705007 764551008 1 370133003 900000000000011006 900000000000451002 +13186850028 20210131 1 900000000000207008 1003705007 472917009 1 118171006 900000000000011006 900000000000451002 +13186851029 20210131 1 900000000000207008 1003707004 472919007 0 116680003 900000000000011006 900000000000451002 +13186852020 20210131 1 900000000000207008 1003707004 472917009 1 118171006 900000000000011006 900000000000451002 +13186853026 20210131 1 900000000000207008 1003707004 32712000 1 370133003 900000000000011006 900000000000451002 +13186854021 20210131 1 900000000000207008 1003706008 898201001 0 116680003 900000000000011006 900000000000451002 +13186855022 20210131 1 900000000000207008 1003706008 764551008 1 118170007 900000000000011006 900000000000451002 +13186856023 20210131 1 900000000000207008 1003708009 898201001 0 116680003 900000000000011006 900000000000451002 +13186857025 20210131 1 900000000000207008 1003708009 32712000 1 118170007 900000000000011006 900000000000451002 +13186858024 20210131 1 900000000000207008 1003709001 472919007 0 116680003 900000000000011006 900000000000451002 +13186859027 20210131 1 900000000000207008 1003709001 472917009 1 118171006 900000000000011006 900000000000451002 +13186860021 20210131 1 900000000000207008 1003709001 83059008 1 370133003 900000000000011006 900000000000451002 +13186861020 20210131 1 900000000000207008 1003710006 898201001 0 116680003 900000000000011006 900000000000451002 +13186862029 20210131 1 900000000000207008 1003710006 83059008 1 118170007 900000000000011006 900000000000451002 +13186863023 20210131 1 900000000000207008 119309006 472919007 0 116680003 900000000000011006 900000000000451002 +13186864028 20210131 1 900000000000207008 119309006 472917009 1 118171006 900000000000011006 900000000000451002 +13186865027 20210131 1 900000000000207008 258627009 472917009 1 118171006 900000000000011006 900000000000451002 +13186866026 20210131 1 900000000000207008 258627009 12150006 1 370133003 900000000000011006 900000000000451002 +13186867024 20210131 1 900000000000207008 258628004 472917009 1 118171006 900000000000011006 900000000000451002 +13186868025 20210131 1 900000000000207008 258629007 472917009 1 118171006 900000000000011006 900000000000451002 +13186869022 20210131 1 900000000000207008 258630002 472917009 1 118171006 900000000000011006 900000000000451002 +13186870023 20210131 1 900000000000207008 258631003 473406005 0 116680003 900000000000011006 900000000000451002 +13186871022 20210131 1 900000000000207008 258631003 472917009 1 118171006 900000000000011006 900000000000451002 +13186872026 20210131 1 900000000000207008 258631003 472917009 2 118171006 900000000000011006 900000000000451002 +13186873020 20210131 1 900000000000207008 119311002 472919007 0 116680003 900000000000011006 900000000000451002 +13186874025 20210131 1 900000000000207008 119311002 19923001 1 370133003 900000000000011006 900000000000451002 +13186875029 20210131 1 900000000000207008 119311002 472917009 1 118171006 900000000000011006 900000000000451002 +13186876028 20210131 1 900000000000207008 119308003 472919007 0 116680003 900000000000011006 900000000000451002 +13186877021 20210131 1 900000000000207008 119308003 472917009 1 118171006 900000000000011006 900000000000451002 +13186878027 20210131 1 900000000000207008 119308003 12150006 1 370133003 900000000000011006 900000000000451002 +13186879024 20210131 1 900000000000207008 119313004 472932002 0 116680003 900000000000011006 900000000000451002 +13186880022 20210131 1 900000000000207008 119313004 102318003 1 370133003 900000000000011006 900000000000451002 +13186881021 20210131 1 900000000000207008 119313004 472917009 1 118171006 900000000000011006 900000000000451002 +13186882025 20210131 1 900000000000207008 431776009 1003708009 0 116680003 900000000000011006 900000000000451002 +13186883024 20210131 1 900000000000207008 732964006 1003709001 0 116680003 900000000000011006 900000000000451002 +13186884029 20210131 1 900000000000207008 444656005 1003707004 0 116680003 900000000000011006 900000000000451002 +13186885028 20210131 1 900000000000207008 472880003 898201001 0 116680003 900000000000011006 900000000000451002 +13186886027 20210131 1 900000000000207008 472938003 1003709001 0 116680003 900000000000011006 900000000000451002 +13186933029 20210131 1 900000000000207008 1003711005 309125000 0 116680003 900000000000011006 900000000000451002 +13186934024 20210131 1 900000000000207008 1003711005 438660002 0 116680003 900000000000011006 900000000000451002 +13186935020 20210131 1 900000000000207008 1003711005 15447007 1 118170007 900000000000011006 900000000000451002 +13186936021 20210131 1 900000000000207008 1003711005 39352004 1 118169006 900000000000011006 900000000000451002 +13186937028 20210131 1 900000000000207008 1003712003 438660002 0 116680003 900000000000011006 900000000000451002 +13186938022 20210131 1 900000000000207008 1003712003 15447007 1 118170007 900000000000011006 900000000000451002 +13186939025 20210131 1 900000000000207008 1003712003 472917009 1 118171006 900000000000011006 900000000000451002 +13186940028 20210131 1 900000000000207008 1003713008 258542004 0 116680003 900000000000011006 900000000000451002 +13186941029 20210131 1 900000000000207008 1003713008 439961009 0 116680003 900000000000011006 900000000000451002 +13186942020 20210131 1 900000000000207008 1003713008 17401000 1 118169006 900000000000011006 900000000000451002 +13186943026 20210131 1 900000000000207008 1003713008 472917009 1 118171006 900000000000011006 900000000000451002 +13186944021 20210131 1 900000000000207008 1003713008 25510005 1 370133003 900000000000011006 900000000000451002 +13186945022 20210131 1 900000000000207008 1003714002 258542004 0 116680003 900000000000011006 900000000000451002 +13186946023 20210131 1 900000000000207008 1003714002 438660002 0 116680003 900000000000011006 900000000000451002 +13186947025 20210131 1 900000000000207008 1003714002 17401000 1 118169006 900000000000011006 900000000000451002 +13186948024 20210131 1 900000000000207008 1003714002 25510005 1 118170007 900000000000011006 900000000000451002 +13186949027 20210131 1 900000000000207008 258545002 1003714002 0 116680003 900000000000011006 900000000000451002 +13188957023 20210131 1 900000000000207008 446306009 898201001 0 116680003 900000000000011006 900000000000451002 +13188958029 20210131 1 900000000000207008 473405009 898201001 0 116680003 900000000000011006 900000000000451002 +13188959021 20210131 1 900000000000207008 447345009 898201001 0 116680003 900000000000011006 900000000000451002 +13650631021 20210731 1 900000000000207008 473399006 430232008 0 116680003 900000000000011006 900000000000451002 +13650632025 20210731 1 900000000000207008 473399006 257261003 0 116680003 900000000000011006 900000000000451002 +13650633024 20210731 1 900000000000207008 473399006 822992007 1 118169006 900000000000011006 900000000000451002 +13667255024 20210731 1 900000000000207008 608870009 258570002 0 116680003 900000000000011006 900000000000451002 +13667255024 20231201 0 900000000000207008 608870009 258570002 0 116680003 900000000000011006 900000000000451002 +13743324021 20210731 1 900000000000207008 1149105007 309051001 0 116680003 900000000000011006 900000000000451002 +13743325022 20210731 1 900000000000207008 1149105007 31389004 1 118169006 900000000000011006 900000000000451002 +13743326023 20210731 1 900000000000207008 1149105007 440674008 0 116680003 900000000000011006 900000000000451002 +13743327025 20210731 1 900000000000207008 1149105007 363311008 0 116680003 900000000000011006 900000000000451002 +13743328024 20210731 1 900000000000207008 1149105007 119389009 0 116680003 900000000000011006 900000000000451002 +13743329027 20210731 1 900000000000207008 1149105007 67889009 1 118171006 900000000000011006 900000000000451002 +13743330021 20210731 1 900000000000207008 1149105007 32457005 1 370133003 900000000000011006 900000000000451002 +13805747021 20210731 1 900000000000207008 29041000087104 119371008 0 116680003 900000000000011006 900000000000451002 +13805748027 20210731 1 900000000000207008 29041000087104 44132006 1 118168003 900000000000011006 900000000000451002 +13805749024 20210731 1 900000000000207008 29041000087104 430232008 0 116680003 900000000000011006 900000000000451002 +13805750024 20210731 1 900000000000207008 29041000087104 826984001 1 118169006 900000000000011006 900000000000451002 +13805762023 20210731 1 900000000000207008 29011000087100 39607008 1 118169006 900000000000011006 900000000000451002 +13805763029 20210731 1 900000000000207008 29011000087100 119371008 0 116680003 900000000000011006 900000000000451002 +13805764024 20210731 1 900000000000207008 29011000087100 44132006 1 118168003 900000000000011006 900000000000451002 +13805765020 20210731 1 900000000000207008 29011000087100 127458004 0 116680003 900000000000011006 900000000000451002 +13805766021 20210731 1 900000000000207008 29021000087108 119371008 0 116680003 900000000000011006 900000000000451002 +13805767028 20210731 1 900000000000207008 29021000087108 363311008 0 116680003 900000000000011006 900000000000451002 +13805767028 20240501 0 900000000000207008 29021000087108 363311008 0 116680003 900000000000011006 900000000000451002 +13805768022 20210731 1 900000000000207008 29021000087108 44132006 1 118168003 900000000000011006 900000000000451002 +13805769025 20210731 1 900000000000207008 29021000087108 38199008 1 118169006 900000000000011006 900000000000451002 +13805770029 20210731 1 900000000000207008 29021000087108 430220009 0 116680003 900000000000011006 900000000000451002 +13805770029 20240501 0 900000000000207008 29021000087108 430220009 0 116680003 900000000000011006 900000000000451002 +13805777026 20210731 1 900000000000207008 29031000087105 260667007 1 370133003 900000000000011006 900000000000451002 +13805778020 20210731 1 900000000000207008 29031000087105 123038009 0 116680003 900000000000011006 900000000000451002 +13805779028 20210731 1 900000000000207008 440493002 29031000087105 0 116680003 900000000000011006 900000000000451002 +13805799023 20210731 1 900000000000207008 28971000087101 258531008 0 116680003 900000000000011006 900000000000451002 +13805800022 20210731 1 900000000000207008 28971000087101 285570007 1 118171006 900000000000011006 900000000000451002 +13805801021 20210731 1 900000000000207008 28971000087101 3404009 1 118168003 900000000000011006 900000000000451002 +13805802025 20210731 1 900000000000207008 28981000087104 119312009 0 116680003 900000000000011006 900000000000451002 +13805803024 20210731 1 900000000000207008 28981000087104 472917009 1 118171006 900000000000011006 900000000000451002 +13805804029 20210731 1 900000000000207008 28981000087104 258637004 1 370133003 900000000000011006 900000000000451002 +13805806027 20210731 1 900000000000207008 29001000087102 258531008 0 116680003 900000000000011006 900000000000451002 +13805807020 20210731 1 900000000000207008 29001000087102 285570007 1 118171006 900000000000011006 900000000000451002 +13805808026 20210731 1 900000000000207008 29001000087102 272725004 1 118169006 900000000000011006 900000000000451002 +13805809023 20210731 1 900000000000207008 29001000087102 13924000 1 118168003 900000000000011006 900000000000451002 +13805810029 20210731 1 900000000000207008 472870002 29001000087102 0 116680003 900000000000011006 900000000000451002 +13805817026 20210731 1 900000000000207008 28991000087102 472888005 0 116680003 900000000000011006 900000000000451002 +13805818020 20210731 1 900000000000207008 28991000087102 285570007 1 118171006 900000000000011006 900000000000451002 +13805819028 20210731 1 900000000000207008 28991000087102 61563008 1 118169006 900000000000011006 900000000000451002 +13831287023 20210731 1 900000000000207008 3040001000004107 413675001 1 370133003 900000000000011006 900000000000451002 +13831288029 20210731 1 900000000000207008 3040001000004107 119376003 0 116680003 900000000000011006 900000000000451002 +13896000028 20210930 1 900000000000207008 128157004 256865009 1 370133003 900000000000011006 900000000000451002 +13910813024 20210930 1 900000000000207008 441709004 1163303005 1 118169006 900000000000011006 900000000000451002 +13910831020 20210930 1 900000000000207008 16235301000119101 1163303005 1 118169006 900000000000011006 900000000000451002 +13917190022 20210930 1 900000000000207008 309131002 1163436007 1 118168003 900000000000011006 900000000000451002 +13920754024 20210930 1 900000000000207008 1163592005 119393003 0 116680003 900000000000011006 900000000000451002 +13920755020 20210930 1 900000000000207008 1163592005 258523003 0 116680003 900000000000011006 900000000000451002 +13920756021 20210930 1 900000000000207008 1163592005 285570007 1 118171006 900000000000011006 900000000000451002 +13920757028 20210930 1 900000000000207008 1163592005 367609005 1 118169006 900000000000011006 900000000000451002 +14010451026 20211031 1 900000000000207008 1172660005 399541005 0 116680003 900000000000011006 900000000000451002 +14010452022 20211031 1 900000000000207008 1172660005 439479000 0 116680003 900000000000011006 900000000000451002 +14010453028 20211031 1 900000000000207008 1172660005 65801008 1 118171006 900000000000011006 900000000000451002 +14010454023 20211031 1 900000000000207008 1172660005 16014003 1 118169006 900000000000011006 900000000000451002 +14010455024 20211031 1 900000000000207008 1172660005 413675001 1 370133003 900000000000011006 900000000000451002 +14010456020 20211031 1 900000000000207008 397483006 1172660005 0 116680003 900000000000011006 900000000000451002 +14010457027 20211031 1 900000000000207008 122658000 1172660005 0 116680003 900000000000011006 900000000000451002 +14010458021 20211031 1 900000000000207008 369615004 1172660005 0 116680003 900000000000011006 900000000000451002 +14010459029 20211031 1 900000000000207008 397482001 1172660005 0 116680003 900000000000011006 900000000000451002 +14026113025 20210930 1 900000000000207008 1173097006 127465007 0 116680003 900000000000011006 900000000000451002 +14026114020 20210930 1 900000000000207008 1173097006 430232008 0 116680003 900000000000011006 900000000000451002 +14026115021 20210930 1 900000000000207008 1173097006 281088000 1 118169006 900000000000011006 900000000000451002 +14026116022 20210930 1 900000000000207008 119392008 1173097006 0 116680003 900000000000011006 900000000000451002 +14026117029 20210930 1 900000000000207008 447955000 1173097006 0 116680003 900000000000011006 900000000000451002 +14696659025 20211031 1 900000000000207008 1173996004 420548004 0 116680003 900000000000011006 900000000000451002 +14696659025 20230630 0 900000000000207008 1173996004 420548004 0 116680003 900000000000011006 900000000000451002 +14696660024 20211031 1 900000000000207008 1173996004 439479000 0 116680003 900000000000011006 900000000000451002 +14696661023 20211031 1 900000000000207008 1173996004 82035006 1 118171006 900000000000011006 900000000000451002 +14696662027 20211031 1 900000000000207008 1173996004 41329004 1 118168003 900000000000011006 900000000000451002 +14696663021 20211031 1 900000000000207008 1173996004 413675001 1 370133003 900000000000011006 900000000000451002 +14696664026 20211031 1 900000000000207008 122633005 1173996004 0 116680003 900000000000011006 900000000000451002 +14696665025 20211031 1 900000000000207008 122645001 1173996004 0 116680003 900000000000011006 900000000000451002 +14696666029 20211031 1 900000000000207008 397053005 1173996004 0 116680003 900000000000011006 900000000000451002 +14696667022 20211031 1 900000000000207008 399731009 1173996004 0 116680003 900000000000011006 900000000000451002 +14893249028 20211031 1 900000000000207008 30961000087106 447104008 0 116680003 900000000000011006 900000000000451002 +14893250028 20211031 1 900000000000207008 30961000087106 118508005 1 118168003 900000000000011006 900000000000451002 +14893251029 20211031 1 900000000000207008 30961000087106 431938005 1 118169006 900000000000011006 900000000000451002 +14893252020 20211031 1 900000000000207008 30961000087106 78014005 1 370133003 900000000000011006 900000000000451002 +14893287020 20211031 1 900000000000207008 30941000087105 433324003 0 116680003 900000000000011006 900000000000451002 +14893288026 20211031 1 900000000000207008 30941000087105 454951000124103 0 116680003 900000000000011006 900000000000451002 +14893288026 20230630 0 900000000000207008 30941000087105 454951000124103 0 116680003 900000000000011006 900000000000451002 +14893289023 20211031 1 900000000000207008 30941000087105 285570007 1 118171006 900000000000011006 900000000000451002 +14893290025 20211031 1 900000000000207008 30941000087105 80243003 1 118169006 900000000000011006 900000000000451002 +14896132021 20211031 1 900000000000207008 433801000124107 258500001 0 116680003 900000000000011006 900000000000451002 +14896133027 20211031 1 900000000000207008 433801000124107 461911000124106 0 116680003 900000000000011006 900000000000451002 +14896134022 20211031 1 900000000000207008 433801000124107 285570007 1 118171006 900000000000011006 900000000000451002 +14896135023 20211031 1 900000000000207008 433801000124107 31389004 1 118169006 900000000000011006 900000000000451002 +14896136024 20211031 1 900000000000207008 433801000124107 285570007 2 118171006 900000000000011006 900000000000451002 +14896137026 20211031 1 900000000000207008 433801000124107 71836000 2 118169006 900000000000011006 900000000000451002 +14896150025 20211031 1 900000000000207008 433871000124101 410581002 0 116680003 900000000000011006 900000000000451002 +14896151026 20211031 1 900000000000207008 433871000124101 430245007 0 116680003 900000000000011006 900000000000451002 +14896152022 20211031 1 900000000000207008 433871000124101 440674008 0 116680003 900000000000011006 900000000000451002 +14896153028 20211031 1 900000000000207008 433871000124101 67889009 1 118171006 900000000000011006 900000000000451002 +14896154023 20211031 1 900000000000207008 433871000124101 53912006 1 118169006 900000000000011006 900000000000451002 +14896155024 20211031 1 900000000000207008 433871000124101 72869002 1 370133003 900000000000011006 900000000000451002 +14896164025 20211031 1 900000000000207008 429931000124105 119295008 0 116680003 900000000000011006 900000000000451002 +14896165029 20211031 1 900000000000207008 429931000124105 119388001 0 116680003 900000000000011006 900000000000451002 +14896167021 20211031 1 900000000000207008 429931000124105 279549004 1 118169006 900000000000011006 900000000000451002 +14896194020 20211031 1 900000000000207008 433859006 429931000124105 0 116680003 900000000000011006 900000000000451002 +14896291021 20211031 1 900000000000207008 429931000124105 14766002 1 118171006 900000000000011006 900000000000451002 +14914676024 20211031 1 900000000000207008 397131006 397130007 0 116680003 900000000000011006 900000000000451002 +14918016022 20220131 1 900000000000207008 1179252003 472919007 0 116680003 900000000000011006 900000000000451002 +14918017029 20220131 1 900000000000207008 1179252003 472917009 1 118171006 900000000000011006 900000000000451002 +14918018023 20220131 1 900000000000207008 1179252003 433466003 1 370133003 900000000000011006 900000000000451002 +14918019026 20220131 1 900000000000207008 258663009 733479001 1 370133003 900000000000011006 900000000000451002 +14918020021 20220131 1 900000000000207008 258664003 733479001 1 370133003 900000000000011006 900000000000451002 +14918022029 20220131 1 900000000000207008 258662004 733479001 1 370133003 900000000000011006 900000000000451002 +14918024028 20220131 1 900000000000207008 15650671000119107 123038009 0 116680003 900000000000011006 900000000000451002 +14918025027 20220131 1 900000000000207008 787149001 123038009 0 116680003 900000000000011006 900000000000451002 +14918026026 20220131 1 900000000000207008 787150001 123038009 0 116680003 900000000000011006 900000000000451002 +14918065028 20220131 1 900000000000207008 258663009 472917009 1 118171006 900000000000011006 900000000000451002 +14918067020 20220131 1 900000000000207008 258664003 472917009 1 118171006 900000000000011006 900000000000451002 +14918070024 20220131 1 900000000000207008 258662004 472917009 1 118171006 900000000000011006 900000000000451002 +14958685029 20211130 1 900000000000207008 119394009 702701006 0 116680003 900000000000011006 900000000000451002 +14958686028 20211130 1 900000000000207008 119395005 702701006 0 116680003 900000000000011006 900000000000451002 +14960661023 20220131 1 900000000000207008 258662004 1179252003 0 116680003 900000000000011006 900000000000451002 +15024663029 20220228 1 900000000000207008 1177151008 309072003 0 116680003 900000000000011006 900000000000451002 +15024664024 20220228 1 900000000000207008 1177151008 363328006 0 116680003 900000000000011006 900000000000451002 +15024665020 20220228 1 900000000000207008 1177151008 433322004 0 116680003 900000000000011006 900000000000451002 +15024666021 20220228 1 900000000000207008 1177151008 439479000 0 116680003 900000000000011006 900000000000451002 +15024667028 20220228 1 900000000000207008 1177151008 87677003 1 118171006 900000000000011006 900000000000451002 +15024668022 20220228 1 900000000000207008 1177151008 245460006 1 118169006 900000000000011006 900000000000451002 +15024669025 20220228 1 900000000000207008 1177151008 413675001 1 370133003 900000000000011006 900000000000451002 +15025105029 20220228 1 900000000000207008 57481000052108 122661004 0 116680003 900000000000011006 900000000000451002 +15025106028 20220228 1 900000000000207008 57481000052108 401004 1 118171006 900000000000011006 900000000000451002 +15025107021 20220228 1 900000000000207008 57481000052108 119218006 1 118169006 900000000000011006 900000000000451002 +15025108027 20220228 1 900000000000207008 57481000052108 413675001 1 370133003 900000000000011006 900000000000451002 +15025587028 20220228 1 900000000000207008 33331000087108 119371008 0 116680003 900000000000011006 900000000000451002 +15025588022 20220228 1 900000000000207008 33331000087108 397129002 0 116680003 900000000000011006 900000000000451002 +15025589025 20220228 1 900000000000207008 33331000087108 44132006 1 118168003 900000000000011006 900000000000451002 +15025590023 20220228 1 900000000000207008 33331000087108 45292006 1 118169006 900000000000011006 900000000000451002 +15025591022 20220228 1 900000000000207008 16215171000119102 33331000087108 0 116680003 900000000000011006 900000000000451002 +15025596028 20220228 1 900000000000207008 57731000052104 123038009 0 116680003 900000000000011006 900000000000451002 +15025597021 20220228 1 900000000000207008 57731000052104 419758009 1 118169006 900000000000011006 900000000000451002 +15025885029 20220228 1 900000000000207008 57741000052105 119390000 0 116680003 900000000000011006 900000000000451002 +15025886028 20220228 1 900000000000207008 57741000052105 415293009 0 116680003 900000000000011006 900000000000451002 +15025887021 20220228 1 900000000000207008 57741000052105 44567001 1 118169006 900000000000011006 900000000000451002 +15025888027 20220228 1 900000000000207008 57741000052105 423662002 1 370133003 900000000000011006 900000000000451002 +15027040027 20220228 1 900000000000207008 33501000087106 898201001 0 116680003 900000000000011006 900000000000451002 +15027041028 20220228 1 900000000000207008 33501000087106 468641001 2 118170007 900000000000011006 900000000000451002 +15027059025 20220228 1 900000000000207008 33501000087106 119316007 0 116680003 900000000000011006 900000000000451002 +15027060024 20220228 1 900000000000207008 33501000087106 116207007 1 370133003 900000000000011006 900000000000451002 +15028083020 20220228 1 900000000000207008 57711000052109 123038009 0 116680003 900000000000011006 900000000000451002 +15028084025 20220228 1 900000000000207008 57711000052109 85921004 1 118171006 900000000000011006 900000000000451002 +15028085029 20220228 1 900000000000207008 410729004 57711000052109 0 116680003 900000000000011006 900000000000451002 +15028086028 20220228 1 900000000000207008 122619005 57711000052109 0 116680003 900000000000011006 900000000000451002 +15028286021 20220228 1 900000000000207008 33541000087109 119371008 0 116680003 900000000000011006 900000000000451002 +15028287028 20220228 1 900000000000207008 33541000087109 16211131000119102 0 116680003 900000000000011006 900000000000451002 +15028288022 20220228 1 900000000000207008 33541000087109 44132006 1 118168003 900000000000011006 900000000000451002 +15028289025 20220228 1 900000000000207008 33541000087109 30636001 1 118169006 900000000000011006 900000000000451002 +15028294025 20220228 1 900000000000207008 32641000087102 128155007 0 116680003 900000000000011006 900000000000451002 +15028295029 20220228 1 900000000000207008 32641000087102 29041000087104 0 116680003 900000000000011006 900000000000451002 +15028296028 20220228 1 900000000000207008 32641000087102 44132006 1 118168003 900000000000011006 900000000000451002 +15028297021 20220228 1 900000000000207008 32641000087102 15497006 1 118169006 900000000000011006 900000000000451002 +15028298027 20220228 1 900000000000207008 33521000087100 119371008 0 116680003 900000000000011006 900000000000451002 +15028299024 20220228 1 900000000000207008 33521000087100 430220009 0 116680003 900000000000011006 900000000000451002 +15028299024 20240701 0 900000000000207008 33521000087100 430220009 0 116680003 900000000000011006 900000000000451002 +15028300027 20220228 1 900000000000207008 33521000087100 44132006 1 118168003 900000000000011006 900000000000451002 +15028301028 20220228 1 900000000000207008 33521000087100 89361003 1 118169006 900000000000011006 900000000000451002 +15028302024 20220228 1 900000000000207008 32651000087104 258415003 0 116680003 900000000000011006 900000000000451002 +15028303025 20220228 1 900000000000207008 32651000087104 396901009 1 118171006 900000000000011006 900000000000451002 +15028312028 20220228 1 900000000000207008 396902002 32651000087104 0 116680003 900000000000011006 900000000000451002 +15028320026 20220228 1 900000000000207008 396902002 1197224008 1 118171006 900000000000011006 900000000000451002 +15028984028 20220228 1 900000000000207008 57721000052101 309051001 0 116680003 900000000000011006 900000000000451002 +15028985027 20220228 1 900000000000207008 57721000052101 447955000 0 116680003 900000000000011006 900000000000451002 +15028986026 20220228 1 900000000000207008 57721000052101 34402009 1 118169006 900000000000011006 900000000000451002 +15028987024 20220228 1 900000000000207008 57721000052101 32457005 1 370133003 900000000000011006 900000000000451002 +15028988025 20220228 1 900000000000207008 57931000052101 122575003 0 116680003 900000000000011006 900000000000451002 +15028990029 20220228 1 900000000000207008 57931000052101 431938005 1 118169006 900000000000011006 900000000000451002 +15028991025 20220228 1 900000000000207008 57931000052101 78014005 1 370133003 900000000000011006 900000000000451002 +15028992021 20220228 1 900000000000207008 57931000052101 71252005 2 118169006 900000000000011006 900000000000451002 +15029041020 20220228 1 900000000000207008 33631000087102 119376003 0 116680003 900000000000011006 900000000000451002 +15029042029 20220228 1 900000000000207008 33631000087102 29031000087105 0 116680003 900000000000011006 900000000000451002 +15029043023 20220228 1 900000000000207008 33631000087102 432704009 1 370133003 900000000000011006 900000000000451002 +15029044028 20220228 1 900000000000207008 57931000052101 122577006 0 116680003 900000000000011006 900000000000451002 +15029045027 20220228 1 900000000000207008 57931000052101 26859008 2 370133003 900000000000011006 900000000000451002 +15029061025 20220228 1 900000000000207008 33491000087103 472919007 0 116680003 900000000000011006 900000000000451002 +15029062021 20220228 1 900000000000207008 33491000087103 472917009 1 118171006 900000000000011006 900000000000451002 +15029063027 20220228 1 900000000000207008 33491000087103 14106009 1 370133003 900000000000011006 900000000000451002 +15029095026 20220228 1 900000000000207008 33481000087100 472917009 1 118171006 900000000000011006 900000000000451002 +15029096025 20220228 1 900000000000207008 33481000087100 303913007 1 370133003 900000000000011006 900000000000451002 +15029097023 20220228 1 900000000000207008 473417006 33481000087100 0 116680003 900000000000011006 900000000000451002 +15029098029 20220228 1 900000000000207008 33551000087107 472919007 0 116680003 900000000000011006 900000000000451002 +15029099021 20220228 1 900000000000207008 33551000087107 472917009 1 118171006 900000000000011006 900000000000451002 +15029100029 20220228 1 900000000000207008 33551000087107 118416004 1 370133003 900000000000011006 900000000000451002 +15029140024 20220228 1 900000000000207008 33531000087103 439961009 0 116680003 900000000000011006 900000000000451002 +15029141023 20220228 1 900000000000207008 33531000087103 472917009 1 118171006 900000000000011006 900000000000451002 +15029142027 20220228 1 900000000000207008 33531000087103 118426006 1 370133003 900000000000011006 900000000000451002 +15029160027 20220228 1 900000000000207008 33351000087104 309049000 0 116680003 900000000000011006 900000000000451002 +15029161028 20220228 1 900000000000207008 33351000087104 444937002 0 116680003 900000000000011006 900000000000451002 +15029163025 20220228 1 900000000000207008 33351000087104 264604008 1 118168003 900000000000011006 900000000000451002 +15029164020 20220228 1 900000000000207008 33351000087104 87953007 1 118169006 900000000000011006 900000000000451002 +15029165021 20220228 1 900000000000207008 33351000087104 78014005 1 370133003 900000000000011006 900000000000451002 +15029778029 20220228 1 900000000000207008 309061008 447357000 0 116680003 900000000000011006 900000000000451002 +15029837022 20220228 1 900000000000207008 33481000087100 33491000087103 0 116680003 900000000000011006 900000000000451002 +15030217028 20220228 1 900000000000207008 33671000087100 258529004 0 116680003 900000000000011006 900000000000451002 +15030217028 20221231 0 900000000000207008 33671000087100 258529004 0 116680003 900000000000011006 900000000000451002 +15030219025 20220228 1 900000000000207008 33671000087100 285570007 1 118171006 900000000000011006 900000000000451002 +15030220020 20220228 1 900000000000207008 33671000087100 1797002 1 118169006 900000000000011006 900000000000451002 +15030221024 20220228 1 900000000000207008 33671000087100 285570007 2 118171006 900000000000011006 900000000000451002 +15030222028 20220228 1 900000000000207008 33671000087100 53505006 2 118169006 900000000000011006 900000000000451002 +15030223022 20220228 1 900000000000207008 33671000087100 312880001 3 118171006 900000000000011006 900000000000451002 +15030224027 20220228 1 900000000000207008 33671000087100 54066008 3 118169006 900000000000011006 900000000000451002 +15030225026 20220228 1 900000000000207008 697989009 285570007 1 118171006 900000000000011006 900000000000451002 +15030226025 20220228 1 900000000000207008 445297001 309164002 0 116680003 900000000000011006 900000000000451002 +15031952023 20220228 1 900000000000207008 33511000087108 309051001 0 116680003 900000000000011006 900000000000451002 +15031953029 20220228 1 900000000000207008 33511000087108 443654002 0 116680003 900000000000011006 900000000000451002 +15031954024 20220228 1 900000000000207008 33511000087108 818987002 1 118169006 900000000000011006 900000000000451002 +15031955020 20220228 1 900000000000207008 33511000087108 32457005 1 370133003 900000000000011006 900000000000451002 +15031956021 20220228 1 900000000000207008 168139001 33511000087108 0 116680003 900000000000011006 900000000000451002 +15031957028 20220228 1 900000000000207008 445745007 33511000087108 0 116680003 900000000000011006 900000000000451002 +15051531027 20220228 1 900000000000207008 57921000052103 258580003 0 116680003 900000000000011006 900000000000451002 +15051532023 20220228 1 900000000000207008 57921000052103 445295009 0 116680003 900000000000011006 900000000000451002 +15051533029 20220228 1 900000000000207008 57921000052103 420135007 1 370133003 900000000000011006 900000000000451002 +15052538024 20220228 1 900000000000207008 33661000087109 445367006 0 116680003 900000000000011006 900000000000451002 +15052540025 20220228 1 900000000000207008 33661000087109 285570007 1 118171006 900000000000011006 900000000000451002 +15052541026 20220228 1 900000000000207008 33661000087109 1797002 1 118169006 900000000000011006 900000000000451002 +15052542022 20220228 1 900000000000207008 33661000087109 285570007 2 118171006 900000000000011006 900000000000451002 +15052543028 20220228 1 900000000000207008 33661000087109 53505006 2 118169006 900000000000011006 900000000000451002 +15052544023 20220228 1 900000000000207008 33661000087109 285570007 3 118171006 900000000000011006 900000000000451002 +15052545024 20220228 1 900000000000207008 33661000087109 78220002 3 118169006 900000000000011006 900000000000451002 +15052551025 20220228 1 900000000000207008 33651000087106 258527002 0 116680003 900000000000011006 900000000000451002 +15052552021 20220228 1 900000000000207008 33651000087106 697989009 0 116680003 900000000000011006 900000000000451002 +15052553027 20220228 1 900000000000207008 33651000087106 285570007 1 118171006 900000000000011006 900000000000451002 +15052554022 20220228 1 900000000000207008 33651000087106 1797002 1 118169006 900000000000011006 900000000000451002 +15052555023 20220228 1 900000000000207008 33651000087106 285570007 2 118171006 900000000000011006 900000000000451002 +15052556024 20220228 1 900000000000207008 33651000087106 53505006 2 118169006 900000000000011006 900000000000451002 +15052557026 20220228 1 900000000000207008 33671000087100 33651000087106 0 116680003 900000000000011006 900000000000451002 +15052642025 20220228 1 900000000000207008 33641000087108 445364004 0 116680003 900000000000011006 900000000000451002 +15052644029 20220228 1 900000000000207008 33641000087108 285570007 1 118171006 900000000000011006 900000000000451002 +15052645028 20220228 1 900000000000207008 33641000087108 1797002 1 118169006 900000000000011006 900000000000451002 +15052646027 20220228 1 900000000000207008 33641000087108 285570007 2 118171006 900000000000011006 900000000000451002 +15052647020 20220228 1 900000000000207008 33641000087108 422543003 2 118169006 900000000000011006 900000000000451002 +15052648026 20220228 1 900000000000207008 33641000087108 285570007 3 118171006 900000000000011006 900000000000451002 +15052649023 20220228 1 900000000000207008 33641000087108 53505006 3 118169006 900000000000011006 900000000000451002 +15052813024 20220228 1 900000000000207008 33661000087109 33651000087106 0 116680003 900000000000011006 900000000000451002 +15052814029 20220228 1 900000000000207008 33641000087108 33651000087106 0 116680003 900000000000011006 900000000000451002 +15054558024 20220228 1 900000000000207008 703430008 122552005 0 116680003 900000000000011006 900000000000451002 +15054559027 20220228 1 900000000000207008 703430008 1201872009 1 370133003 900000000000011006 900000000000451002 +15054560021 20220228 1 900000000000207008 703431007 122555007 0 116680003 900000000000011006 900000000000451002 +15054561020 20220228 1 900000000000207008 703431007 1201871002 1 370133003 900000000000011006 900000000000451002 +15057023023 20220228 1 900000000000207008 1201985008 413675001 1 370133003 900000000000011006 900000000000451002 +15057024028 20220228 1 900000000000207008 1201985008 430861001 0 116680003 900000000000011006 900000000000451002 +15057025027 20220228 1 900000000000207008 430856003 1201985008 0 116680003 900000000000011006 900000000000451002 +15071404026 20220228 1 900000000000207008 33911000087102 399619004 0 116680003 900000000000011006 900000000000451002 +15071405025 20220228 1 900000000000207008 33911000087102 41296002 1 118169006 900000000000011006 900000000000451002 +15071406029 20220228 1 900000000000207008 33911000087102 413675001 1 370133003 900000000000011006 900000000000451002 +15071407022 20220228 1 900000000000207008 33901000087104 257261003 0 116680003 900000000000011006 900000000000451002 +15071408028 20220228 1 900000000000207008 33901000087104 285570007 1 118171006 900000000000011006 900000000000451002 +15071409020 20220228 1 900000000000207008 33901000087104 280361007 1 118169006 900000000000011006 900000000000451002 +15071410026 20220228 1 900000000000207008 472870002 33901000087104 0 116680003 900000000000011006 900000000000451002 +15071421024 20220228 1 900000000000207008 33921000087105 128164002 0 116680003 900000000000011006 900000000000451002 +15071422028 20220228 1 900000000000207008 33921000087105 18619003 1 118169006 900000000000011006 900000000000451002 +15071423022 20220228 1 900000000000207008 33921000087105 413675001 1 370133003 900000000000011006 900000000000451002 +15071424027 20220228 1 900000000000207008 33931000087107 472919007 0 116680003 900000000000011006 900000000000451002 +15071425026 20220228 1 900000000000207008 33931000087107 472917009 1 118171006 900000000000011006 900000000000451002 +15071426025 20220228 1 900000000000207008 33931000087107 465123006 1 370133003 900000000000011006 900000000000451002 +15071978024 20220228 1 900000000000207008 33891000087100 258456000 0 116680003 900000000000011006 900000000000451002 +15071979027 20220228 1 900000000000207008 33891000087100 444936006 0 116680003 900000000000011006 900000000000451002 +15071980029 20220228 1 900000000000207008 33891000087100 66696003 1 118168003 900000000000011006 900000000000451002 +15071981025 20220228 1 900000000000207008 33891000087100 54214006 1 118169006 900000000000011006 900000000000451002 +15071982021 20220228 1 900000000000207008 33891000087100 11311000 1 370133003 900000000000011006 900000000000451002 +15100350025 20220331 1 900000000000207008 34151000087104 119295008 0 116680003 900000000000011006 900000000000451002 +15100351026 20220331 1 900000000000207008 34151000087104 420548004 0 116680003 900000000000011006 900000000000451002 +15100352022 20220331 1 900000000000207008 34151000087104 14766002 1 118171006 900000000000011006 900000000000451002 +15100353028 20220331 1 900000000000207008 34151000087104 4147007 1 118168003 900000000000011006 900000000000451002 +15100355024 20220331 1 900000000000207008 34141000087102 432382007 0 116680003 900000000000011006 900000000000451002 +15100356020 20220331 1 900000000000207008 34141000087102 234279002 1 118171006 900000000000011006 900000000000451002 +15100357027 20220331 1 900000000000207008 34141000087102 59441001 1 118169006 900000000000011006 900000000000451002 +15179189026 20220531 1 900000000000207008 258602002 78076003 1 118169006 900000000000011006 900000000000451002 +15179191023 20220531 1 900000000000207008 258601009 78076003 1 118169006 900000000000011006 900000000000451002 +15221439027 20220630 1 900000000000207008 309117002 123038009 0 116680003 900000000000011006 900000000000451002 +15221443028 20220630 1 900000000000207008 168140004 418377002 1 370133003 900000000000011006 900000000000451002 +15221443028 20230430 0 900000000000207008 168140004 418377002 1 370133003 900000000000011006 900000000000451002 +15221444023 20220630 1 900000000000207008 258454002 119360007 0 116680003 900000000000011006 900000000000451002 +15221444023 20230430 0 900000000000207008 258454002 119360007 0 116680003 900000000000011006 900000000000451002 +15221445024 20220630 1 900000000000207008 258454002 418377002 1 370133003 900000000000011006 900000000000451002 +15221446020 20220630 1 900000000000207008 258572005 418377002 2 370133003 900000000000011006 900000000000451002 +15221542020 20220630 1 900000000000207008 309508006 413675001 1 370133003 900000000000011006 900000000000451002 +15221757027 20220630 1 900000000000207008 309176002 764445001 1 370133003 900000000000011006 900000000000451002 +15221950024 20220630 1 900000000000207008 309210009 764445001 1 370133003 900000000000011006 900000000000451002 +15221960026 20220630 1 900000000000207008 309074002 413675001 1 370133003 900000000000011006 900000000000451002 +15222113021 20220630 1 900000000000207008 258563002 764445001 1 370133003 900000000000011006 900000000000451002 +15222114026 20220630 1 900000000000207008 110967008 764445001 1 370133003 900000000000011006 900000000000451002 +15222405028 20220630 1 900000000000207008 258602002 313236002 1 370133003 900000000000011006 900000000000451002 +15224509020 20220630 1 900000000000207008 309049000 52988006 1 118168003 900000000000011006 900000000000451002 +15224510026 20220630 1 900000000000207008 440515008 52988006 2 118168003 900000000000011006 900000000000451002 +15224511027 20220630 1 900000000000207008 447103002 123038009 0 116680003 900000000000011006 900000000000451002 +15224512023 20220630 1 900000000000207008 16211251000119101 52988006 1 118168003 900000000000011006 900000000000451002 +15224523022 20220630 1 900000000000207008 258480001 309051001 0 116680003 900000000000011006 900000000000451002 +15224524027 20220630 1 900000000000207008 258480001 129112001 1 118171006 900000000000011006 900000000000451002 +15226432024 20220630 1 900000000000207008 258564008 363311008 0 116680003 900000000000011006 900000000000451002 +15226433025 20220630 1 900000000000207008 258564008 430220009 0 116680003 900000000000011006 900000000000451002 +15226433025 20240701 0 900000000000207008 258564008 430220009 0 116680003 900000000000011006 900000000000451002 +15226796021 20220630 1 900000000000207008 258544003 17401000 1 118169006 900000000000011006 900000000000451002 +15226803029 20220630 1 900000000000207008 16213571000119107 16213491000119109 0 116680003 900000000000011006 900000000000451002 +15226808022 20220630 1 900000000000207008 409876003 363311008 0 116680003 900000000000011006 900000000000451002 +15226809025 20220630 1 900000000000207008 409876003 430220009 0 116680003 900000000000011006 900000000000451002 +15226809025 20240701 0 900000000000207008 409876003 430220009 0 116680003 900000000000011006 900000000000451002 +15226815025 20220630 1 900000000000207008 16212371000119106 764445001 1 370133003 900000000000011006 900000000000451002 +15227245025 20220630 1 900000000000207008 309186001 430220009 0 116680003 900000000000011006 900000000000451002 +15227245025 20240701 0 900000000000207008 309186001 430220009 0 116680003 900000000000011006 900000000000451002 +15227246029 20220630 1 900000000000207008 309186001 700016008 1 118169006 900000000000011006 900000000000451002 +15227247022 20220630 1 900000000000207008 399645008 309186001 0 116680003 900000000000011006 900000000000451002 +15227248028 20220630 1 900000000000207008 734379005 309186001 0 116680003 900000000000011006 900000000000451002 +15227271026 20220630 1 900000000000207008 309508006 52988006 1 118168003 900000000000011006 900000000000451002 +15227272022 20220630 1 900000000000207008 122624008 52988006 1 118168003 900000000000011006 900000000000451002 +15227273028 20220630 1 900000000000207008 122629003 52988006 1 118168003 900000000000011006 900000000000451002 +15227274023 20220630 1 900000000000207008 122692002 52988006 1 118168003 900000000000011006 900000000000451002 +15227275024 20220630 1 900000000000207008 309068002 52988006 1 118168003 900000000000011006 900000000000451002 +15227276020 20220630 1 900000000000207008 16211131000119102 52988006 1 118168003 900000000000011006 900000000000451002 +15227277027 20220630 1 900000000000207008 258558001 363311008 0 116680003 900000000000011006 900000000000451002 +15227278021 20220630 1 900000000000207008 258558001 430220009 0 116680003 900000000000011006 900000000000451002 +15227278021 20240701 0 900000000000207008 258558001 430220009 0 116680003 900000000000011006 900000000000451002 +15227279029 20220630 1 900000000000207008 258558001 700016008 1 118169006 900000000000011006 900000000000451002 +15244647027 20220731 1 900000000000207008 122596005 1231734007 1 118171006 900000000000011006 900000000000451002 +15244648021 20220731 1 900000000000207008 122597001 1231734007 1 118171006 900000000000011006 900000000000451002 +15244649029 20220731 1 900000000000207008 122598006 1231734007 1 118171006 900000000000011006 900000000000451002 +15244662025 20220731 1 900000000000207008 397199005 1231734007 1 118171006 900000000000011006 900000000000451002 +15244671023 20220731 1 900000000000207008 16211771000119103 1231734007 1 118171006 900000000000011006 900000000000451002 +15244672027 20220731 1 900000000000207008 16215491000119108 1231734007 1 118171006 900000000000011006 900000000000451002 +15245172023 20220731 1 900000000000207008 122599003 405902005 0 116680003 900000000000011006 900000000000451002 +15291317022 20220831 1 900000000000207008 1237234002 119295008 0 116680003 900000000000011006 900000000000451002 +15291318028 20220831 1 900000000000207008 1237234002 309291009 0 116680003 900000000000011006 900000000000451002 +15291319020 20220831 1 900000000000207008 1237234002 14766002 1 118171006 900000000000011006 900000000000451002 +15291320025 20220831 1 900000000000207008 1237234002 52321009 1 118168003 900000000000011006 900000000000451002 +15291321026 20220831 1 900000000000207008 1237234002 15497006 1 118169006 900000000000011006 900000000000451002 +15292528020 20221231 1 900000000000207008 258480001 258455001 0 116680003 900000000000011006 900000000000451002 +15292528020 20230228 0 900000000000207008 258480001 258455001 0 116680003 900000000000011006 900000000000451002 +15292542028 20221231 1 900000000000207008 122877000 258455001 0 116680003 900000000000011006 900000000000451002 +15292542028 20230228 0 900000000000207008 122877000 258455001 0 116680003 900000000000011006 900000000000451002 +15292543022 20221231 1 900000000000207008 410729004 258455001 0 116680003 900000000000011006 900000000000451002 +15292543022 20230228 0 900000000000207008 410729004 258455001 0 116680003 900000000000011006 900000000000451002 +15292592027 20221231 1 900000000000207008 122619005 258455001 0 116680003 900000000000011006 900000000000451002 +15292592027 20230228 0 900000000000207008 122619005 258455001 0 116680003 900000000000011006 900000000000451002 +15292593021 20221231 1 900000000000207008 168137004 258455001 0 116680003 900000000000011006 900000000000451002 +15292593021 20230228 0 900000000000207008 168137004 258455001 0 116680003 900000000000011006 900000000000451002 +15292597022 20221231 1 900000000000207008 258411007 258455001 0 116680003 900000000000011006 900000000000451002 +15292597022 20230228 0 900000000000207008 258411007 258455001 0 116680003 900000000000011006 900000000000451002 +15292668029 20221231 1 900000000000207008 708112008 258455001 0 116680003 900000000000011006 900000000000451002 +15292668029 20230228 0 900000000000207008 708112008 258455001 0 116680003 900000000000011006 900000000000451002 +15292669021 20221231 1 900000000000207008 16223931000119106 258455001 0 116680003 900000000000011006 900000000000451002 +15292669021 20230228 0 900000000000207008 16223931000119106 258455001 0 116680003 900000000000011006 900000000000451002 +15292670022 20221231 1 900000000000207008 16223971000119109 258455001 0 116680003 900000000000011006 900000000000451002 +15292670022 20230228 0 900000000000207008 16223971000119109 258455001 0 116680003 900000000000011006 900000000000451002 +15405997022 20221130 1 900000000000207008 734307008 430232008 0 116680003 900000000000011006 900000000000451002 +15451849024 20221130 1 900000000000207008 258479004 1259204008 1 370133003 900000000000011006 900000000000451002 +15451895028 20221231 1 900000000000207008 472885008 472862007 0 116680003 900000000000011006 900000000000451002 +15451896027 20221231 1 900000000000207008 472885008 1163214006 1 118168003 900000000000011006 900000000000451002 +15458137026 20221231 1 900000000000207008 119327009 608969007 0 116680003 900000000000011006 900000000000451002 +15464577020 20221231 1 900000000000207008 1259931002 119326000 0 116680003 900000000000011006 900000000000451002 +15464578026 20221231 1 900000000000207008 1259931002 430220009 0 116680003 900000000000011006 900000000000451002 +15464578026 20240701 0 900000000000207008 1259931002 430220009 0 116680003 900000000000011006 900000000000451002 +15464579023 20221231 1 900000000000207008 1259931002 62961004 1 118169006 900000000000011006 900000000000451002 +15465143028 20221231 1 900000000000207008 433881000124103 258529004 0 116680003 900000000000011006 900000000000451002 +15465144023 20221231 1 900000000000207008 433881000124103 697989009 0 116680003 900000000000011006 900000000000451002 +15465145024 20221231 1 900000000000207008 433881000124103 285570007 1 118171006 900000000000011006 900000000000451002 +15465146020 20221231 1 900000000000207008 433881000124103 1797002 1 118169006 900000000000011006 900000000000451002 +15465147027 20221231 1 900000000000207008 433881000124103 312880001 2 118171006 900000000000011006 900000000000451002 +15465148021 20221231 1 900000000000207008 433881000124103 54066008 2 118169006 900000000000011006 900000000000451002 +15465149029 20221231 1 900000000000207008 33671000087100 433881000124103 0 116680003 900000000000011006 900000000000451002 +15476707023 20230331 1 900000000000207008 699285000 386745004 1 118171006 900000000000011006 900000000000451002 +15476708029 20230331 1 900000000000207008 734443003 386745004 1 118171006 900000000000011006 900000000000451002 +15492557022 20230331 1 900000000000207008 16209931000119102 397397002 1 118171006 900000000000011006 900000000000451002 +15493853021 20230331 1 900000000000207008 16215451000119103 16209891000119105 0 116680003 900000000000011006 900000000000451002 +15493854026 20230331 1 900000000000207008 16215451000119103 397397002 1 118171006 900000000000011006 900000000000451002 +15495128022 20230331 1 900000000000207008 258607008 397397002 1 118171006 900000000000011006 900000000000451002 +15495129025 20230331 1 900000000000207008 16209771000119101 397397002 1 118171006 900000000000011006 900000000000451002 +15495130024 20230331 1 900000000000207008 16209811000119101 397397002 1 118171006 900000000000011006 900000000000451002 +15495131023 20230331 1 900000000000207008 16209851000119100 397397002 1 118171006 900000000000011006 900000000000451002 +15495132027 20230331 1 900000000000207008 16209891000119105 397397002 1 118171006 900000000000011006 900000000000451002 +15503289025 20230331 1 900000000000207008 309285007 396273004 0 116680003 900000000000011006 900000000000451002 +15503290023 20230331 1 900000000000207008 309285007 23140002 1 118171006 900000000000011006 900000000000451002 +15503600021 20230331 1 900000000000207008 309173005 445405002 0 116680003 900000000000011006 900000000000451002 +15503621021 20230331 1 900000000000207008 309176002 445405002 0 116680003 900000000000011006 900000000000451002 +15503622025 20230331 1 900000000000207008 16212411000119107 445405002 0 116680003 900000000000011006 900000000000451002 +15503623024 20230331 1 900000000000207008 16212451000119108 445405002 0 116680003 900000000000011006 900000000000451002 +15503624029 20230331 1 900000000000207008 16212491000119103 445405002 0 116680003 900000000000011006 900000000000451002 +15503625028 20230331 1 900000000000207008 16212531000119103 445405002 0 116680003 900000000000011006 900000000000451002 +15503626027 20230331 1 900000000000207008 16212571000119100 445405002 0 116680003 900000000000011006 900000000000451002 +15504676021 20230331 1 900000000000207008 16221811000119106 10847001 1 118171006 900000000000011006 900000000000451002 +15510213028 20230228 1 900000000000207008 431235004 445447003 0 116680003 900000000000011006 900000000000451002 +15530066029 20230228 1 900000000000207008 473408006 1268296006 1 370133003 900000000000011006 900000000000451002 +15590273028 20230430 1 900000000000207008 435541000124108 309049000 0 116680003 900000000000011006 900000000000451002 +15590274023 20230430 1 900000000000207008 435541000124108 1269523002 1 118168003 900000000000011006 900000000000451002 +15591043021 20230430 1 900000000000207008 168140004 387191005 1 370133003 900000000000011006 900000000000451002 +15591044026 20230430 1 900000000000207008 444959000 168140004 0 116680003 900000000000011006 900000000000451002 +15591045025 20230430 1 900000000000207008 444959000 444946008 0 116680003 900000000000011006 900000000000451002 +15591046029 20230430 1 900000000000207008 445069004 168140004 0 116680003 900000000000011006 900000000000451002 +15591047022 20230430 1 900000000000207008 445069004 445516007 0 116680003 900000000000011006 900000000000451002 +15591058029 20230430 1 900000000000207008 447355008 445516007 0 116680003 900000000000011006 900000000000451002 +15591059021 20230430 1 900000000000207008 447355008 418377002 1 370133003 900000000000011006 900000000000451002 +15591060027 20230430 1 900000000000207008 444946008 258454002 0 116680003 900000000000011006 900000000000451002 +15591061028 20230430 1 900000000000207008 445516007 258454002 0 116680003 900000000000011006 900000000000451002 +15671532029 20230531 1 900000000000207008 42061000087105 697989009 0 116680003 900000000000011006 900000000000451002 +15671533023 20230531 1 900000000000207008 42061000087105 285570007 1 118171006 900000000000011006 900000000000451002 +15671534028 20230531 1 900000000000207008 42061000087105 1797002 1 118169006 900000000000011006 900000000000451002 +15671535027 20230531 1 900000000000207008 42061000087105 285570007 2 118171006 900000000000011006 900000000000451002 +15671536026 20230531 1 900000000000207008 42061000087105 26893007 2 118169006 900000000000011006 900000000000451002 +15671537024 20230531 1 900000000000207008 42061000087105 285570007 3 118171006 900000000000011006 900000000000451002 +15671538025 20230531 1 900000000000207008 42061000087105 422543003 3 118169006 900000000000011006 900000000000451002 +15671539022 20230531 1 900000000000207008 38851000087103 898201001 0 116680003 900000000000011006 900000000000451002 +15671540024 20230531 1 900000000000207008 38851000087103 472917009 1 118171006 900000000000011006 900000000000451002 +15671541023 20230531 1 900000000000207008 38851000087103 469571006 1 118170007 900000000000011006 900000000000451002 +15671542027 20230531 1 900000000000207008 40371000087100 445364004 0 116680003 900000000000011006 900000000000451002 +15671543021 20230531 1 900000000000207008 40371000087100 445444005 0 116680003 900000000000011006 900000000000451002 +15671544026 20230531 1 900000000000207008 40371000087100 285570007 1 118171006 900000000000011006 900000000000451002 +15671545025 20230531 1 900000000000207008 40371000087100 26893007 1 118169006 900000000000011006 900000000000451002 +15671546029 20230531 1 900000000000207008 40371000087100 285570007 2 118171006 900000000000011006 900000000000451002 +15671547022 20230531 1 900000000000207008 40371000087100 422543003 2 118169006 900000000000011006 900000000000451002 +15671548028 20230531 1 900000000000207008 445364004 91470000 1 118169006 900000000000011006 900000000000451002 +15671800020 20230531 1 900000000000207008 42061000087105 40371000087100 0 116680003 900000000000011006 900000000000451002 +15674407028 20230630 1 900000000000207008 447357000 387733004 1 118171006 900000000000011006 900000000000451002 +15675742020 20230630 1 900000000000207008 447358005 258431006 0 116680003 900000000000011006 900000000000451002 +15675743026 20230630 1 900000000000207008 447358005 1268322000 1 118171006 900000000000011006 900000000000451002 +15675751028 20230630 1 900000000000207008 432980007 309140003 0 116680003 900000000000011006 900000000000451002 +15676608027 20230630 1 900000000000207008 441710009 128154006 0 116680003 900000000000011006 900000000000451002 +15678624020 20230630 1 900000000000207008 454911000124104 454951000124103 0 116680003 900000000000011006 900000000000451002 +15678625021 20230630 1 900000000000207008 454911000124104 285570007 1 118171006 900000000000011006 900000000000451002 +15678626022 20230630 1 900000000000207008 454911000124104 89545001 1 118169006 900000000000011006 900000000000451002 +15678627029 20230630 1 900000000000207008 472891005 454911000124104 0 116680003 900000000000011006 900000000000451002 +15678628023 20230630 1 900000000000207008 733104004 454911000124104 0 116680003 900000000000011006 900000000000451002 +15678629026 20230630 1 900000000000207008 445297001 454911000124104 0 116680003 900000000000011006 900000000000451002 +15678630020 20230630 1 900000000000207008 30941000087105 454911000124104 0 116680003 900000000000011006 900000000000451002 +15678631024 20230630 1 900000000000207008 433781000124108 119376003 0 116680003 900000000000011006 900000000000451002 +15678632028 20230630 1 900000000000207008 433781000124108 420548004 0 116680003 900000000000011006 900000000000451002 +15678633022 20230630 1 900000000000207008 433781000124108 4147007 1 118168003 900000000000011006 900000000000451002 +15678634027 20230630 1 900000000000207008 433781000124108 413675001 1 370133003 900000000000011006 900000000000451002 +15678635026 20230630 1 900000000000207008 122739003 433781000124108 0 116680003 900000000000011006 900000000000451002 +15678636025 20230630 1 900000000000207008 258407001 433781000124108 0 116680003 900000000000011006 900000000000451002 +15678637023 20230630 1 900000000000207008 258420003 433781000124108 0 116680003 900000000000011006 900000000000451002 +15678638029 20230630 1 900000000000207008 258435002 433781000124108 0 116680003 900000000000011006 900000000000451002 +15678639021 20230630 1 900000000000207008 309179009 433781000124108 0 116680003 900000000000011006 900000000000451002 +15678640023 20230630 1 900000000000207008 309226005 433781000124108 0 116680003 900000000000011006 900000000000451002 +15678641022 20230630 1 900000000000207008 309263001 433781000124108 0 116680003 900000000000011006 900000000000451002 +15678642026 20230630 1 900000000000207008 309266009 433781000124108 0 116680003 900000000000011006 900000000000451002 +15678643020 20230630 1 900000000000207008 309286008 433781000124108 0 116680003 900000000000011006 900000000000451002 +15678644025 20230630 1 900000000000207008 309288009 433781000124108 0 116680003 900000000000011006 900000000000451002 +15678645029 20230630 1 900000000000207008 703475006 433781000124108 0 116680003 900000000000011006 900000000000451002 +15678646028 20230630 1 900000000000207008 1173996004 433781000124108 0 116680003 900000000000011006 900000000000451002 +15682521022 20231001 1 900000000000207008 258487003 127465007 0 116680003 900000000000011006 900000000000451002 +15682522026 20231001 1 900000000000207008 258487003 122865005 1 118169006 900000000000011006 900000000000451002 +15686620025 20230630 1 900000000000207008 1285640000 258433009 0 116680003 900000000000011006 900000000000451002 +15686621026 20230630 1 900000000000207008 1285640000 258603007 0 116680003 900000000000011006 900000000000451002 +15686622022 20230630 1 900000000000207008 1285640000 448895004 1 118171006 900000000000011006 900000000000451002 +15686623028 20230630 1 900000000000207008 1285640000 20139000 1 118169006 900000000000011006 900000000000451002 +15686624023 20230630 1 900000000000207008 309177006 1285640000 0 116680003 900000000000011006 900000000000451002 +15686625024 20230630 1 900000000000207008 404643001 1285640000 0 116680003 900000000000011006 900000000000451002 +15701218021 20230901 1 900000000000207008 122697008 52224004 1 118171006 900000000000011006 900000000000451002 +15701219029 20230901 1 900000000000207008 122702004 122697008 0 116680003 900000000000011006 900000000000451002 +15701220024 20230901 1 900000000000207008 122707005 52224004 1 118171006 900000000000011006 900000000000451002 +15701221023 20230901 1 900000000000207008 399502008 52224004 1 118171006 900000000000011006 900000000000451002 +15719333023 20230901 1 900000000000207008 122665008 122661004 0 116680003 900000000000011006 900000000000451002 +15725863028 20230901 1 900000000000207008 50841000087100 258442002 0 116680003 900000000000011006 900000000000451002 +15725864023 20230901 1 900000000000207008 50841000087100 33463005 1 370133003 900000000000011006 900000000000451002 +15743688028 20230901 1 900000000000207008 119313004 439961009 0 116680003 900000000000011006 900000000000451002 +15765947020 20231101 1 900000000000207008 472943005 473406005 0 116680003 900000000000011006 900000000000451002 +15778906022 20231101 1 900000000000207008 397456005 445405002 0 116680003 900000000000011006 900000000000451002 +15780029022 20231101 1 900000000000207008 122620004 445405002 0 116680003 900000000000011006 900000000000451002 +15780030028 20231101 1 900000000000207008 122620004 14671001 1 118171006 900000000000011006 900000000000451002 +15783551022 20231101 1 900000000000207008 1293160008 445297001 0 116680003 900000000000011006 900000000000451002 +15783552026 20231101 1 900000000000207008 1293160008 285570007 1 118171006 900000000000011006 900000000000451002 +15783553020 20231101 1 900000000000207008 1293160008 1293158006 1 118169006 900000000000011006 900000000000451002 +15822383025 20240101 1 900000000000207008 447589008 57617002 2 118171006 900000000000011006 900000000000451002 +15822384020 20240101 1 900000000000207008 447589008 431938005 2 118169006 900000000000011006 900000000000451002 +15822385021 20240101 1 900000000000207008 447589008 78014005 2 370133003 900000000000011006 900000000000451002 +15833817027 20240101 1 900000000000207008 791000009104 119376003 0 116680003 900000000000011006 900000000000451002 +15833818021 20240101 1 900000000000207008 791000009104 31610004 1 118169006 900000000000011006 900000000000451002 +15833819029 20240101 1 900000000000207008 791000009104 413675001 1 370133003 900000000000011006 900000000000451002 +15833891025 20240101 1 900000000000207008 791000009104 309049000 0 116680003 900000000000011006 900000000000451002 +15833892021 20240101 1 900000000000207008 791000009104 82515000 1 118168003 900000000000011006 900000000000451002 +15872985028 20240201 1 900000000000207008 447158004 445405002 0 116680003 900000000000011006 900000000000451002 +15922933028 20240501 1 900000000000207008 438336007 608840004 0 116680003 900000000000011006 900000000000451002 +15926379029 20240501 1 900000000000207008 110940002 608840004 0 116680003 900000000000011006 900000000000451002 +15926380026 20240501 1 900000000000207008 110966004 608840004 0 116680003 900000000000011006 900000000000451002 +15926381027 20240501 1 900000000000207008 122640006 608840004 0 116680003 900000000000011006 900000000000451002 +15926382023 20240501 1 900000000000207008 122642003 608840004 0 116680003 900000000000011006 900000000000451002 +15926383029 20240501 1 900000000000207008 258462005 608840004 0 116680003 900000000000011006 900000000000451002 +15926384024 20240501 1 900000000000207008 258463000 608840004 0 116680003 900000000000011006 900000000000451002 +15926385020 20240501 1 900000000000207008 309217007 608840004 0 116680003 900000000000011006 900000000000451002 +15926386021 20240501 1 900000000000207008 309218002 608840004 0 116680003 900000000000011006 900000000000451002 +15926387028 20240501 1 900000000000207008 309219005 608840004 0 116680003 900000000000011006 900000000000451002 +15926399024 20240501 1 900000000000207008 734426001 608840004 0 116680003 900000000000011006 900000000000451002 +15977696028 20240601 1 900000000000207008 1331990008 127457009 0 116680003 900000000000011006 900000000000451002 +15977697021 20240601 1 900000000000207008 1331990008 735198008 0 116680003 900000000000011006 900000000000451002 +15977698027 20240601 1 900000000000207008 1331990008 80248007 1 118169006 900000000000011006 900000000000451002 +15977699024 20240601 1 900000000000207008 1331990008 413675001 1 370133003 900000000000011006 900000000000451002 +15977700020 20240601 1 900000000000207008 1331991007 127457009 0 116680003 900000000000011006 900000000000451002 +15977701024 20240601 1 900000000000207008 1331991007 735197003 0 116680003 900000000000011006 900000000000451002 +15977702028 20240601 1 900000000000207008 1331991007 73056007 1 118169006 900000000000011006 900000000000451002 +15977703022 20240601 1 900000000000207008 1331991007 413675001 1 370133003 900000000000011006 900000000000451002 +15991324029 20240501 1 900000000000207008 52041000087106 258508008 0 116680003 900000000000011006 900000000000451002 +15991325028 20240501 1 900000000000207008 52041000087106 472871003 0 116680003 900000000000011006 900000000000451002 +15991326027 20240501 1 900000000000207008 52041000087106 285570007 1 118171006 900000000000011006 900000000000451002 +15991327020 20240501 1 900000000000207008 52041000087106 56208002 1 118168003 900000000000011006 900000000000451002 +15991328026 20240501 1 900000000000207008 52041000087106 71934003 1 118169006 900000000000011006 900000000000451002 +15992340028 20240501 1 900000000000207008 35271000087102 439961009 0 116680003 900000000000011006 900000000000451002 +15992341029 20240501 1 900000000000207008 35271000087102 472917009 1 118171006 900000000000011006 900000000000451002 +15992342020 20240501 1 900000000000207008 35271000087102 360181009 1 370133003 900000000000011006 900000000000451002 +15992343026 20240501 1 900000000000207008 35261000087106 439961009 0 116680003 900000000000011006 900000000000451002 +15992344021 20240501 1 900000000000207008 35261000087106 472917009 1 118171006 900000000000011006 900000000000451002 +15992345022 20240501 1 900000000000207008 35261000087106 68183006 1 370133003 900000000000011006 900000000000451002 +15992346023 20240501 1 900000000000207008 35311000087102 439961009 0 116680003 900000000000011006 900000000000451002 +15992347025 20240501 1 900000000000207008 35311000087102 472917009 1 118171006 900000000000011006 900000000000451002 +15992348024 20240501 1 900000000000207008 35311000087102 271003 1 370133003 900000000000011006 900000000000451002 +15992349027 20240501 1 900000000000207008 35291000087103 472919007 0 116680003 900000000000011006 900000000000451002 +15992350027 20240501 1 900000000000207008 35291000087103 472917009 1 118171006 900000000000011006 900000000000451002 +15992351028 20240501 1 900000000000207008 35291000087103 386014009 1 370133003 900000000000011006 900000000000451002 +15992363022 20240501 1 900000000000207008 2431000181102 119361006 0 116680003 900000000000011006 900000000000451002 +15992738024 20240501 1 900000000000207008 2431000181102 1332250003 1 370133003 900000000000011006 900000000000451002 +15992750029 20240501 1 900000000000207008 2541000181108 116146000 1 118170007 900000000000011006 900000000000451002 +15992754022 20240501 1 900000000000207008 2541000181108 122558009 0 116680003 900000000000011006 900000000000451002 +15992755023 20240501 1 900000000000207008 2541000181108 419030006 1 370133003 900000000000011006 900000000000451002 +15992816029 20240501 1 900000000000207008 2521000181103 430319000 0 116680003 900000000000011006 900000000000451002 +15992817022 20240501 1 900000000000207008 2521000181103 3262009 1 118169006 900000000000011006 900000000000451002 +15992818028 20240501 1 900000000000207008 430249001 363311008 0 116680003 900000000000011006 900000000000451002 +15992819020 20240501 1 900000000000207008 430249001 430220009 0 116680003 900000000000011006 900000000000451002 +15992819020 20240701 0 900000000000207008 430249001 430220009 0 116680003 900000000000011006 900000000000451002 +15992820025 20240501 1 900000000000207008 430319000 363311008 0 116680003 900000000000011006 900000000000451002 +15992821026 20240501 1 900000000000207008 430319000 430220009 0 116680003 900000000000011006 900000000000451002 +15992821026 20240701 0 900000000000207008 430319000 430220009 0 116680003 900000000000011006 900000000000451002 +15992822022 20240501 1 900000000000207008 16210571000119101 430319000 0 116680003 900000000000011006 900000000000451002 +15992823028 20240501 1 900000000000207008 29021000087108 430319000 0 116680003 900000000000011006 900000000000451002 +15992856027 20240501 1 900000000000207008 2451000181107 119361006 0 116680003 900000000000011006 900000000000451002 +15992857020 20240501 1 900000000000207008 2451000181107 1332253001 1 370133003 900000000000011006 900000000000451002 +15993746028 20240601 1 900000000000207008 396906004 396896007 0 116680003 900000000000011006 900000000000451002 +15993747021 20240601 1 900000000000207008 396906004 445405002 0 116680003 900000000000011006 900000000000451002 +15994385026 20240501 1 900000000000207008 2441000181109 119361006 0 116680003 900000000000011006 900000000000451002 +15994386025 20240501 1 900000000000207008 2441000181109 1332334008 1 370133003 900000000000011006 900000000000451002 +15994387023 20240501 1 900000000000207008 2421000181104 119364003 0 116680003 900000000000011006 900000000000451002 +15994388029 20240501 1 900000000000207008 2421000181104 1332333002 1 370133003 900000000000011006 900000000000451002 +15994600028 20240501 1 900000000000207008 35281000087100 699868006 0 116680003 900000000000011006 900000000000451002 +15994601029 20240501 1 900000000000207008 35281000087100 472917009 1 118171006 900000000000011006 900000000000451002 +15994602020 20240501 1 900000000000207008 35281000087100 76091005 1 370133003 900000000000011006 900000000000451002 +15994603026 20240501 1 900000000000207008 699868006 408099007 1 370133003 900000000000011006 900000000000451002 +15995247023 20240501 1 900000000000207008 2531000181101 122575003 0 116680003 900000000000011006 900000000000451002 +15995248029 20240501 1 900000000000207008 2531000181101 431938005 1 118169006 900000000000011006 900000000000451002 +15995249021 20240501 1 900000000000207008 2531000181101 78014005 1 370133003 900000000000011006 900000000000451002 +15995350024 20240501 1 900000000000207008 142261000146106 123038009 0 116680003 900000000000011006 900000000000451002 +15995351023 20240501 1 900000000000207008 142261000146106 15433008 1 118169006 900000000000011006 900000000000451002 +15995832020 20240501 1 900000000000207008 35321000087105 472919007 0 116680003 900000000000011006 900000000000451002 +15995833026 20240501 1 900000000000207008 35321000087105 472917009 1 118171006 900000000000011006 900000000000451002 +15995834021 20240501 1 900000000000207008 35321000087105 1332390002 1 370133003 900000000000011006 900000000000451002 +15998656020 20240601 1 900000000000207008 434250007 445405002 0 116680003 900000000000011006 900000000000451002 +15998731021 20240501 1 900000000000207008 1332490003 309068002 0 116680003 900000000000011006 900000000000451002 +15998732025 20240501 1 900000000000207008 1332490003 69640009 1 118168003 900000000000011006 900000000000451002 +15998733024 20240501 1 900000000000207008 1332490003 39937001 1 118169006 900000000000011006 900000000000451002 +16000620024 20240501 1 900000000000207008 290211000146104 258591005 0 116680003 900000000000011006 900000000000451002 +16000621023 20240501 1 900000000000207008 290211000146104 55918008 1 118169006 900000000000011006 900000000000451002 +16000622027 20240501 1 900000000000207008 119352006 290211000146104 0 116680003 900000000000011006 900000000000451002 +16015369022 20240501 1 900000000000207008 2501000181105 258415003 0 116680003 900000000000011006 900000000000451002 +16015370023 20240501 1 900000000000207008 2501000181105 787151002 0 116680003 900000000000011006 900000000000451002 +16015371022 20240501 1 900000000000207008 2501000181105 86273004 1 118171006 900000000000011006 900000000000451002 +16024166026 20240701 1 900000000000207008 1335924000 123038009 0 116680003 900000000000011006 900000000000451002 +16024167024 20240701 1 900000000000207008 1335924000 69536005 1 118169006 900000000000011006 900000000000451002 +16024168025 20240701 1 900000000000207008 1335922001 1335925004 0 116680003 900000000000011006 900000000000451002 +16024169022 20240701 1 900000000000207008 1335922001 258415003 0 116680003 900000000000011006 900000000000451002 +16024171022 20240701 1 900000000000207008 1335922001 45048000 1 118169006 900000000000011006 900000000000451002 +16024172026 20240701 1 900000000000207008 1335921008 1335924000 0 116680003 900000000000011006 900000000000451002 +16024173020 20240701 1 900000000000207008 1335921008 258415003 0 116680003 900000000000011006 900000000000451002 +16024174025 20240701 1 900000000000207008 1335921008 702707005 1 118171006 900000000000011006 900000000000451002 +16024175029 20240701 1 900000000000207008 1335921008 69536005 1 118169006 900000000000011006 900000000000451002 +16024180022 20240701 1 900000000000207008 1335919003 122550002 0 116680003 900000000000011006 900000000000451002 +16024183024 20240701 1 900000000000207008 1335919003 69536005 1 118169006 900000000000011006 900000000000451002 +16024184029 20240701 1 900000000000207008 1335920009 122550002 0 116680003 900000000000011006 900000000000451002 +16024185028 20240701 1 900000000000207008 1335920009 1335922001 0 116680003 900000000000011006 900000000000451002 +16024187020 20240701 1 900000000000207008 1335920009 45048000 1 118169006 900000000000011006 900000000000451002 +16024188026 20240701 1 900000000000207008 1335925004 123038009 0 116680003 900000000000011006 900000000000451002 +16024189023 20240701 1 900000000000207008 1335925004 45048000 1 118169006 900000000000011006 900000000000451002 +16024197027 20240701 1 900000000000207008 119342007 1335924000 0 116680003 900000000000011006 900000000000451002 +16024198021 20240701 1 900000000000207008 119398007 1335924000 0 116680003 900000000000011006 900000000000451002 +16024200026 20240701 1 900000000000207008 309165001 1335924000 0 116680003 900000000000011006 900000000000451002 +16024201027 20240701 1 900000000000207008 309185002 1335924000 0 116680003 900000000000011006 900000000000451002 +16024202023 20240701 1 900000000000207008 399680007 1335925004 0 116680003 900000000000011006 900000000000451002 +16024206021 20240701 1 900000000000207008 440136004 1335924000 0 116680003 900000000000011006 900000000000451002 +16024207028 20240701 1 900000000000207008 409876003 1335924000 0 116680003 900000000000011006 900000000000451002 +16024210024 20240701 1 900000000000207008 110925004 1335924000 0 116680003 900000000000011006 900000000000451002 +16024211023 20240701 1 900000000000207008 258412000 1335924000 0 116680003 900000000000011006 900000000000451002 +16024212027 20240701 1 900000000000207008 258558001 1335924000 0 116680003 900000000000011006 900000000000451002 +16024213021 20240701 1 900000000000207008 258564008 1335924000 0 116680003 900000000000011006 900000000000451002 +16024214026 20240701 1 900000000000207008 309149002 1335925004 0 116680003 900000000000011006 900000000000451002 +16024215025 20240701 1 900000000000207008 309151003 1335922001 0 116680003 900000000000011006 900000000000451002 +16024216029 20240701 1 900000000000207008 309178001 1335921008 0 116680003 900000000000011006 900000000000451002 +16024217022 20240701 1 900000000000207008 309180007 1335921008 0 116680003 900000000000011006 900000000000451002 +16024218028 20240701 1 900000000000207008 309181006 1335921008 0 116680003 900000000000011006 900000000000451002 +16024219020 20240701 1 900000000000207008 309182004 1335922001 0 116680003 900000000000011006 900000000000451002 +16024220025 20240701 1 900000000000207008 309188000 1335921008 0 116680003 900000000000011006 900000000000451002 +16024221026 20240701 1 900000000000207008 309191000 1335921008 0 116680003 900000000000011006 900000000000451002 +16024222022 20240701 1 900000000000207008 309481000 1335924000 0 116680003 900000000000011006 900000000000451002 +16024223028 20240701 1 900000000000207008 399747006 1335924000 0 116680003 900000000000011006 900000000000451002 +16024227027 20240701 1 900000000000207008 430133009 1335924000 0 116680003 900000000000011006 900000000000451002 +16024228021 20240701 1 900000000000207008 430144001 1335925004 0 116680003 900000000000011006 900000000000451002 +16024229029 20240701 1 900000000000207008 430222001 1335924000 0 116680003 900000000000011006 900000000000451002 +16024230023 20240701 1 900000000000207008 430238007 1335924000 0 116680003 900000000000011006 900000000000451002 +16024231022 20240701 1 900000000000207008 430248009 1335924000 0 116680003 900000000000011006 900000000000451002 +16024232026 20240701 1 900000000000207008 430249001 1335924000 0 116680003 900000000000011006 900000000000451002 +16024234025 20240701 1 900000000000207008 432139004 1335921008 0 116680003 900000000000011006 900000000000451002 +16024235029 20240701 1 900000000000207008 432141003 1335920009 0 116680003 900000000000011006 900000000000451002 +16024237021 20240701 1 900000000000207008 432607005 1335919003 0 116680003 900000000000011006 900000000000451002 +16024238027 20240701 1 900000000000207008 432865002 1335920009 0 116680003 900000000000011006 900000000000451002 +16024239024 20240701 1 900000000000207008 432910000 1335921008 0 116680003 900000000000011006 900000000000451002 +16024240021 20240701 1 900000000000207008 432981006 1335919003 0 116680003 900000000000011006 900000000000451002 +16024242029 20240701 1 900000000000207008 432984003 1335922001 0 116680003 900000000000011006 900000000000451002 +16024244028 20240701 1 900000000000207008 433324003 1335924000 0 116680003 900000000000011006 900000000000451002 +16024245027 20240701 1 900000000000207008 433859006 1335919003 0 116680003 900000000000011006 900000000000451002 +16024246026 20240701 1 900000000000207008 433860001 1335921008 0 116680003 900000000000011006 900000000000451002 +16024247024 20240701 1 900000000000207008 433861002 1335919003 0 116680003 900000000000011006 900000000000451002 +16024248025 20240701 1 900000000000207008 434249007 1335919003 0 116680003 900000000000011006 900000000000451002 +16024249022 20240701 1 900000000000207008 840395001 1335924000 0 116680003 900000000000011006 900000000000451002 +16024250022 20240701 1 900000000000207008 454951000124103 1335924000 0 116680003 900000000000011006 900000000000451002 +16024252025 20240701 1 900000000000207008 733476008 1335920009 0 116680003 900000000000011006 900000000000451002 +16024256027 20240701 1 900000000000207008 446842008 1335925004 0 116680003 900000000000011006 900000000000451002 +16024257020 20240701 1 900000000000207008 447154002 1335924000 0 116680003 900000000000011006 900000000000451002 +16024258026 20240701 1 900000000000207008 430319000 1335924000 0 116680003 900000000000011006 900000000000451002 +16024260029 20240701 1 900000000000207008 16212771000119105 1335921008 0 116680003 900000000000011006 900000000000451002 +16024262021 20240701 1 900000000000207008 16222771000119104 1335924000 0 116680003 900000000000011006 900000000000451002 +16024263027 20240701 1 900000000000207008 16223091000119106 1335921008 0 116680003 900000000000011006 900000000000451002 +16024265023 20240701 1 900000000000207008 33521000087100 1335924000 0 116680003 900000000000011006 900000000000451002 +16024267026 20240701 1 900000000000207008 1259931002 1335924000 0 116680003 900000000000011006 900000000000451002 +16024268020 20240701 1 900000000000207008 1149105007 1335924000 0 116680003 900000000000011006 900000000000451002 +16024269028 20240701 1 900000000000207008 309186001 1335924000 0 116680003 900000000000011006 900000000000451002 +16024289027 20240701 1 900000000000207008 1335922001 1335926003 1 118171006 900000000000011006 900000000000451002 +16024290020 20240701 1 900000000000207008 1335919003 1335921008 0 116680003 900000000000011006 900000000000451002 +16024291024 20240701 1 900000000000207008 1335919003 1335923006 1 118171006 900000000000011006 900000000000451002 +16024292028 20240701 1 900000000000207008 1335920009 733477004 1 118171006 900000000000011006 900000000000451002 +16024333023 20240701 1 900000000000207008 432983009 1335919003 0 116680003 900000000000011006 900000000000451002 +16052013028 20240701 1 900000000000207008 1338034005 128169007 0 116680003 900000000000011006 900000000000451002 +16052014023 20240701 1 900000000000207008 1338034005 439479000 0 116680003 900000000000011006 900000000000451002 +16052015024 20240701 1 900000000000207008 1338034005 108044001 1 118171006 900000000000011006 900000000000451002 +16052016020 20240701 1 900000000000207008 1338034005 18911002 1 118169006 900000000000011006 900000000000451002 +16052017027 20240701 1 900000000000207008 1338034005 413675001 1 370133003 900000000000011006 900000000000451002 +16052322021 20240601 1 900000000000207008 396906004 449201002 1 118171006 900000000000011006 900000000000451002 +16098310022 20240701 1 900000000000207008 1340203001 258617003 0 116680003 900000000000011006 900000000000451002 +16160161029 20240701 1 900000000000207008 2511000181107 123038009 0 116680003 900000000000011006 900000000000451002 +16160162020 20240701 1 900000000000207008 258431006 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160163026 20240701 1 900000000000207008 440135000 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160164021 20240701 1 900000000000207008 440674008 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160165022 20240701 1 900000000000207008 309176002 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160166023 20240701 1 900000000000207008 309210009 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160167025 20240701 1 900000000000207008 309213006 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160168024 20240701 1 900000000000207008 309261004 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160169027 20240701 1 900000000000207008 718684005 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160170026 20240701 1 900000000000207008 16212371000119106 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160171027 20240701 1 900000000000207008 16212411000119107 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160172023 20240701 1 900000000000207008 16212451000119108 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160173029 20240701 1 900000000000207008 16212491000119103 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160174024 20240701 1 900000000000207008 16212531000119103 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160175020 20240701 1 900000000000207008 16212571000119100 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160176021 20240701 1 900000000000207008 16213691000119107 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160177028 20240701 1 900000000000207008 16216091000119108 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160178022 20240701 1 900000000000207008 16223771000119107 2511000181107 0 116680003 900000000000011006 900000000000451002 +16160183025 20240701 1 900000000000207008 1343300000 119370009 0 116680003 900000000000011006 900000000000451002 +16160184020 20240701 1 900000000000207008 1343300000 16210971000119108 0 116680003 900000000000011006 900000000000451002 +16160185021 20240701 1 900000000000207008 1343300000 285570007 1 118171006 900000000000011006 900000000000451002 +16160186022 20240701 1 900000000000207008 1343300000 118622000 1 118168003 900000000000011006 900000000000451002 +16160326026 20240701 1 900000000000207008 1343301001 1259931002 0 116680003 900000000000011006 900000000000451002 +16160327024 20240701 1 900000000000207008 1343301001 433324003 0 116680003 900000000000011006 900000000000451002 +16160328025 20240701 1 900000000000207008 1343301001 85803001 1 118169006 900000000000011006 900000000000451002 +16175037024 20240801 1 900000000000207008 396685001 122686008 0 116680003 900000000000011006 900000000000451002 +16189823025 20240901 1 900000000000207008 438659007 128168004 0 116680003 900000000000011006 900000000000451002 +16189940024 20240901 1 900000000000207008 438659007 397077004 0 116680003 900000000000011006 900000000000451002 +16189941023 20240901 1 900000000000207008 122673004 122672009 0 116680003 900000000000011006 900000000000451002 +16189942027 20240901 1 900000000000207008 384746001 397077004 0 116680003 900000000000011006 900000000000451002 +16189943021 20240901 1 900000000000207008 1344978009 472875007 0 116680003 900000000000011006 900000000000451002 +16189944026 20240901 1 900000000000207008 1344978009 285570007 1 118171006 900000000000011006 900000000000451002 +16189945025 20240901 1 900000000000207008 1344978009 47002008 1 118168003 900000000000011006 900000000000451002 +16194788029 20240901 1 900000000000207008 1345107007 258508008 0 116680003 900000000000011006 900000000000451002 +16194789021 20240901 1 900000000000207008 1345107007 258530009 0 116680003 900000000000011006 900000000000451002 +16194790028 20240901 1 900000000000207008 1345107007 312876006 1 118171006 900000000000011006 900000000000451002 +16194791029 20240901 1 900000000000207008 1345107007 13648007 1 118169006 900000000000011006 900000000000451002 +16194792020 20240901 1 900000000000207008 1345107007 285570007 2 118171006 900000000000011006 900000000000451002 +16194793026 20240901 1 900000000000207008 1345107007 71934003 2 118169006 900000000000011006 900000000000451002 +16194794021 20240901 1 900000000000207008 258511009 1345107007 0 116680003 900000000000011006 900000000000451002 +16197970022 20241001 1 900000000000207008 1345219005 258524009 0 116680003 900000000000011006 900000000000451002 +16197971021 20241001 1 900000000000207008 1345219005 285570007 1 118171006 900000000000011006 900000000000451002 +16197972025 20241001 1 900000000000207008 1345219005 279882009 1 118169006 900000000000011006 900000000000451002 +16198336027 20241001 1 900000000000207008 1345230008 119319000 0 116680003 900000000000011006 900000000000451002 +16198337020 20241001 1 900000000000207008 1345230008 410942007 1 370133003 900000000000011006 900000000000451002 +16198339023 20241001 1 900000000000207008 57221000087106 444937002 0 116680003 900000000000011006 900000000000451002 +16198340020 20241001 1 900000000000207008 57221000087106 387717002 1 118171006 900000000000011006 900000000000451002 +16198341024 20241001 1 900000000000207008 57221000087106 87953007 1 118169006 900000000000011006 900000000000451002 +16198342028 20241001 1 900000000000207008 57221000087106 78014005 1 370133003 900000000000011006 900000000000451002 +16198343022 20241001 1 900000000000207008 1345231007 472919007 0 116680003 900000000000011006 900000000000451002 +16198344027 20241001 1 900000000000207008 1345231007 472917009 1 118171006 900000000000011006 900000000000451002 +16198345026 20241001 1 900000000000207008 1345231007 439857004 1 370133003 900000000000011006 900000000000451002 +16198346025 20241001 1 900000000000207008 473432004 1345231007 0 116680003 900000000000011006 900000000000451002 +16198347023 20241001 1 900000000000207008 1345234004 303248007 0 116680003 900000000000011006 900000000000451002 +16198348029 20241001 1 900000000000207008 1345234004 448895004 1 118171006 900000000000011006 900000000000451002 +16198349021 20241001 1 900000000000207008 1345234004 87612001 1 370133003 900000000000011006 900000000000451002 +16198350021 20241001 1 900000000000207008 1345235003 303248007 0 116680003 900000000000011006 900000000000451002 +16198351020 20241001 1 900000000000207008 1345235003 448895004 1 118171006 900000000000011006 900000000000451002 +16198352029 20241001 1 900000000000207008 1345235003 87612001 1 370133003 900000000000011006 900000000000451002 +16198713023 20241001 1 900000000000207008 1345268005 1179252003 0 116680003 900000000000011006 900000000000451002 +16198714028 20241001 1 900000000000207008 1345268005 1345231007 0 116680003 900000000000011006 900000000000451002 +16198715027 20241001 1 900000000000207008 1345268005 472917009 1 118171006 900000000000011006 900000000000451002 +16198716026 20241001 1 900000000000207008 1345268005 444940002 1 370133003 900000000000011006 900000000000451002 +16198741022 20241001 1 900000000000207008 1345269002 1345231007 0 116680003 900000000000011006 900000000000451002 +16198742026 20241001 1 900000000000207008 1345269002 472917009 1 118171006 900000000000011006 900000000000451002 +16198743020 20241001 1 900000000000207008 1345269002 439857004 1 370133003 900000000000011006 900000000000451002 +16198744025 20241001 1 900000000000207008 1345270001 1345231007 0 116680003 900000000000011006 900000000000451002 +16198745029 20241001 1 900000000000207008 1345270001 472917009 1 118171006 900000000000011006 900000000000451002 +16198746028 20241001 1 900000000000207008 1345270001 439857004 1 370133003 900000000000011006 900000000000451002 +16220525028 20241001 1 900000000000207008 258571003 898201001 0 116680003 900000000000011006 900000000000451002 +16221602029 20241001 1 900000000000207008 46121000146104 119350003 0 116680003 900000000000011006 900000000000451002 +16221603023 20241001 1 900000000000207008 46121000146104 724376009 1 370133003 900000000000011006 900000000000451002 +16221604028 20241001 1 900000000000207008 258493006 46121000146104 0 116680003 900000000000011006 900000000000451002 +16221605027 20241001 1 900000000000207008 258495004 46121000146104 0 116680003 900000000000011006 900000000000451002 +16221606026 20241001 1 900000000000207008 258496003 46121000146104 0 116680003 900000000000011006 900000000000451002 +12717019021 20200731 1 900000000000207008 860958002 386725007 0 116680003 900000000000011006 900000000000451002 +12717019021 20220531 0 900000000000207008 860958002 386725007 0 116680003 900000000000011006 900000000000451002 +12717020026 20200731 1 900000000000207008 860958002 722490005 1 370130000 900000000000011006 900000000000451002 +12717020026 20220531 0 900000000000207008 860958002 722490005 1 370130000 900000000000011006 900000000000451002 +12717021027 20200731 1 900000000000207008 860958002 30766002 2 370132008 900000000000011006 900000000000451002 +12717021027 20220531 0 900000000000207008 860958002 30766002 2 370132008 900000000000011006 900000000000451002 +12717022023 20200731 1 900000000000207008 860958002 87612001 3 704319004 900000000000011006 900000000000451002 +12717022023 20220531 0 900000000000207008 860958002 87612001 3 704319004 900000000000011006 900000000000451002 diff --git a/modules/terminology-service/src/blaze/terminology_service.clj b/modules/terminology-service/src/blaze/terminology_service.clj index 3c93def98..e662ad3a6 100644 --- a/modules/terminology-service/src/blaze/terminology_service.clj +++ b/modules/terminology-service/src/blaze/terminology_service.clj @@ -2,9 +2,24 @@ (:require [blaze.terminology-service.protocols :as p])) +(defn code-systems + "Returns a CompletableFuture that will complete with a list of + TerminologyCapabilities codeSystem entries or will complete exceptionally with + an anomaly in case of an error." + [terminology-service] + (p/-code-systems terminology-service)) + +(defn code-system-validate-code + [terminology-service request] + (p/-code-system-validate-code terminology-service request)) + (defn expand-value-set "Returns a CompletableFuture that will complete with the expanded variant of the ValueSet specified in `request` or will complete exceptionally with an anomaly in case of an error." [terminology-service request] (p/-expand-value-set terminology-service request)) + +(defn value-set-validate-code + [terminology-service request] + (p/-value-set-validate-code terminology-service request)) diff --git a/modules/terminology-service/src/blaze/terminology_service/local.clj b/modules/terminology-service/src/blaze/terminology_service/local.clj index 32853b5ae..79e48d24a 100644 --- a/modules/terminology-service/src/blaze/terminology_service/local.clj +++ b/modules/terminology-service/src/blaze/terminology_service/local.clj @@ -2,213 +2,63 @@ (:require [blaze.anomaly :as ba :refer [if-ok when-ok]] [blaze.async.comp :as ac :refer [do-sync]] - [blaze.coll.core :as coll] [blaze.db.api :as d] [blaze.db.spec] - [blaze.fhir.spec.type :as type] [blaze.module :as m] [blaze.spec] [blaze.terminology-service :as ts] - [blaze.terminology-service.local.concept :as concept] - [blaze.terminology-service.local.filter :as filter] + [blaze.terminology-service.local.capabilities :as c] + [blaze.terminology-service.local.code-system :as cs] + [blaze.terminology-service.local.code-system.sct :as sct] + [blaze.terminology-service.local.code-system.ucum :as ucum] + [blaze.terminology-service.local.spec] + [blaze.terminology-service.local.value-set :as vs] + [blaze.terminology-service.local.value-set.expand :as vs-expand] + [blaze.terminology-service.local.value-set.validate-code :as vs-validate-code] [blaze.terminology-service.protocols :as p] [clojure.spec.alpha :as s] - [cognitect.anomalies :as anom] [integrant.core :as ig] - [java-time.api :as time] [taoensso.timbre :as log]) (:import [java.lang AutoCloseable])) (set! *warn-on-reflection* true) -(defn- expand-complete-code-system [{:keys [url] concepts :concept}] - (mapv - (fn [{:keys [code display]}] - (cond-> {:system url :code code} - display (assoc :display display))) - concepts)) - -(defn- code-system-not-found-msg [{:keys [system version]}] - (if version - (format "The code system with URL `%s` and version `%s` was not found." - (type/value system) (type/value version)) - (format "The code system with URL `%s` was not found." (type/value system)))) - -(defn- code-system-not-found-anom [include] - (ba/not-found (code-system-not-found-msg include))) - -(defn- all-version-expansion-msg [url] - (format "Expanding the code system with URL `%s` in all versions is unsupported." url)) - -(defn- all-version-expansion-anom [url] - (ba/unsupported (all-version-expansion-msg url))) - -(defn- include-clauses [{:keys [system version]}] - (if (= "*" (type/value version)) - (all-version-expansion-anom (type/value system)) - (cond-> [["url" (type/value system)]] - version (conj ["version" (type/value version)])))) - -(defn- code-system-query [db include] - (when-ok [clauses (include-clauses include)] - (d/type-query db "CodeSystem" clauses))) - -(defn- code-system-not-complete-msg [{:keys [url content]}] - (format "Can't expand the code system with URL `%s` because it is not complete. It's content is `%s`." - url (type/value content))) - -(defn- code-system-not-complete-anom [code-system] - (ba/unsupported (code-system-not-complete-msg code-system) :http/status 409)) - -(defn- check-code-system-content [{:keys [content] :as code-system}] - (if (= "complete" (type/value content)) - code-system - (code-system-not-complete-anom code-system))) - -(defn- find-code-system [db include] - (if-ok [resource-handles (code-system-query db include)] - (if-let [code-system (coll/first resource-handles)] - (-> (d/pull db code-system) - (ac/then-apply check-code-system-content)) - (ac/completed-future (code-system-not-found-anom include))) - ac/completed-future)) - -(defn- version-parameter [url version] - {:fhir/type :fhir.ValueSet.expansion/parameter - :name #fhir/string"version" - :value (type/uri (str url "|" version))}) - -(defn- append-version [concepts {:keys [url version]}] - (cond-> {:contains concepts} - version (assoc :parameter #{(version-parameter url version)}))) - -(defn- expand-code-system [code-system concepts filters] - (cond - (seq concepts) (concept/expand-code-system code-system concepts) - (seq filters) (filter/expand-code-system code-system filters) - :else (expand-complete-code-system code-system))) - -(defn- include-system - [{:keys [db]} {concepts :concept filters :filter :as include}] - (if (and (seq concepts) (seq filters)) - (ac/completed-future (ba/incorrect "Incorrect combination of concept and filter.")) - (do-sync [code-system (find-code-system db include)] - (when-ok [concepts (expand-code-system code-system concepts filters)] - (append-version concepts code-system))))) - -(declare find-value-set-by-url) -(declare expand-value-set) +(defn- non-deleted-resource-handle [db type id] + (when-let [handle (d/resource-handle db type id)] + (when-not (d/deleted? handle) + handle))) -(defn- expand-value-set-by-canonical [{:keys [db] :as context} canonical] - (-> (find-value-set-by-url db canonical) - (ac/then-compose (partial expand-value-set context)))) +(defn- code-system-not-found-by-id-anom [id] + (ba/not-found (format "The code system with id `%s` was not found." id))) -(defn- include-value-sets [context value-sets] - (let [futures (mapv #(expand-value-set-by-canonical context (type/value %)) value-sets)] - (do-sync [_ (ac/all-of futures)] - (transduce (map (comp #(select-keys % [:parameter :contains]) :expansion ac/join)) (partial merge-with into) futures)))) +(defn- find-code-system-by-id [{:keys [db] :as context} id] + (if-let [code-system-handle (non-deleted-resource-handle db "CodeSystem" id)] + (do-sync [code-system (d/pull db code-system-handle)] + (cs/enhance context code-system)) + (ac/completed-future (code-system-not-found-by-id-anom id)))) -(defn- include [context {:keys [system] value-sets :valueSet :as include}] +(defn- find-code-system [context {:keys [id url code-system version]}] (cond - (and system value-sets) - (ac/completed-future (ba/incorrect "Incorrect combination of system and valueSet.")) - - system (include-system context include) - value-sets (include-value-sets context value-sets) - - :else (ac/completed-future (ba/incorrect "Missing system or valueSet.")))) - -(defn- expand-includes [context includes] - (let [futures (mapv (partial include context) includes)] - (do-sync [_ (ac/all-of futures)] - (transduce (map ac/join) (partial merge-with into) futures)))) - -(defn remove-excludes-duplicates [includes excludes] - (into [] (comp (remove #(some (partial = %) excludes)) (distinct)) includes)) - -(defn- count-parameter [count] - {:fhir/type :fhir.ValueSet.expansion/parameter - :name #fhir/string"count" - :value (type/integer count)}) - -(defn- append-params [parameters {:keys [count]}] - (cond-> parameters - count (conj (count-parameter count)))) - -(defn- expansion [{:keys [clock] {:keys [count] :as request} :request} parameters concepts] - (cond-> - {:fhir/type :fhir.ValueSet/expansion - :identifier (type/uri (str "urn:uuid:" (random-uuid))) - :timestamp (time/offset-date-time clock) - :total (clojure.core/count concepts) - :parameter (append-params parameters request)} - (nil? count) (assoc :contains concepts) - (pos-int? count) (assoc :contains (into [] (take count) concepts)))) - -(defn- expand-value-set** - [{{:keys [include-definition] :or {include-definition false}} :request - :as context} - {{includes :include excludes :exclude} :compose :as value-set}] - (let [includes (expand-includes context includes) - excludes (expand-includes context excludes)] - (do-sync [_ (ac/all-of [includes excludes])] - (let [includes (ac/join includes) - excludes (ac/join excludes) - concepts (remove-excludes-duplicates (:contains includes) (:contains excludes))] - (cond-> - (assoc - value-set - :expansion - (expansion context (vec (:parameter includes)) concepts)) - (not include-definition) (dissoc :compose)))))) - -(defn- expand-value-set-msg [{:keys [url]}] - (format "Error while expanding the value set with URL `%s`. " url)) - -(defn- expand-value-set* [context {:keys [expansion] :as value-set}] - (if expansion - (ac/completed-future value-set) - (-> (expand-value-set** context value-set) - (ac/exceptionally - #(update % ::anom/message (partial str (expand-value-set-msg value-set))))))) - -(defn- expand-value-set [context value-set] - (expand-value-set* context (dissoc value-set :id :meta))) + code-system (ac/completed-future code-system) + (and url version) (cs/find context url version) + url (cs/find context url) + id (find-code-system-by-id context id) + :else (ac/completed-future (ba/incorrect "Missing ID or URL.")))) (defn- value-set-not-found-by-id-anom [id] (ba/not-found (format "The value set with id `%s` was not found." id))) -(defn- non-deleted-resource-handle [db type id] - (when-let [handle (d/resource-handle db type id)] - (when-not (d/deleted? handle) - handle))) - (defn- find-value-set-by-id [db id] (if-let [value-set (non-deleted-resource-handle db "ValueSet" id)] (d/pull db value-set) (ac/completed-future (value-set-not-found-by-id-anom id)))) -(defn- value-set-not-found-by-url-anom - ([url] - (ba/not-found (format "The value set with URL `%s` was not found." url))) - ([url version] - (ba/not-found (format "The value set with URL `%s` and version `%s` was not found." url version)))) - -(defn- find-value-set-by-url - ([db url] - (if-let [value-set (coll/first (d/type-query db "ValueSet" [["url" url]]))] - (d/pull db value-set) - (ac/completed-future (value-set-not-found-by-url-anom url)))) - ([db url version] - (if-let [value-set (coll/first (d/type-query db "ValueSet" [["url" url] ["version" version]]))] - (d/pull db value-set) - (ac/completed-future (value-set-not-found-by-url-anom url version))))) - -(defn- find-value-set [db {:keys [id url] version :value-set-version}] +(defn- find-value-set [db {:keys [id url value-set] version :value-set-version}] (cond - (and url version) (find-value-set-by-url db url version) - url (find-value-set-by-url db url) + value-set (ac/completed-future value-set) + (and url version) (vs/find db url version) + url (vs/find db url) id (find-value-set-by-id db id) :else (ac/completed-future (ba/incorrect "Missing ID or URL.")))) @@ -220,17 +70,55 @@ (.close ^AutoCloseable db) res)))) -(defmethod m/pre-init-spec ::ts/local [_] - (s/keys :req-un [:blaze.db/node :blaze/clock])) - -(defmethod ig/init-key ::ts/local - [_ {:keys [node clock]}] - (log/info "Init local terminology server") +(defn- context [{:keys [clock sct-release-path]}] + (if sct-release-path + (when-ok [sct-context (sct/build-context sct-release-path)] + {:clock clock :sct/context sct-context}) + {:clock clock})) + +(defn- ensure-code-systems + "Ensures that all code systems of internal terminologies like Snomed CT are + present in the database node." + [{:keys [enable-ucum] :as config} {sct-context :sct/context}] + (when enable-ucum + @(ucum/ensure-code-system config)) + (when sct-context + @(sct/ensure-code-systems config sct-context))) + +(defn- terminology-service [node context] (reify p/TerminologyService + (p/-code-systems [_] + (let [db (d/new-batch-db (d/db node))] + (-> (c/code-systems db) + (handle-close db)))) + (-code-system-validate-code [_ request] + (let [db (d/new-batch-db (d/db node))] + (-> (find-code-system (assoc context :db db) request) + (ac/then-apply #(cs/validate-code % request)) + (handle-close db)))) (-expand-value-set [_ request] (let [db (d/new-batch-db (d/db node))] (-> (find-value-set db request) - (ac/then-compose (partial expand-value-set {:db db :clock clock :request request})) + (ac/then-compose + (partial vs-expand/expand-value-set (assoc context :db db :request request))) + (handle-close db)))) + (-value-set-validate-code [_ request] + (let [db (d/new-batch-db (d/db node))] + (-> (find-value-set db request) + (ac/then-compose + (partial vs-validate-code/validate-code (assoc context :db db :request request))) (handle-close db)))))) +(defmethod m/pre-init-spec ::ts/local [_] + (s/keys :req-un [:blaze.db/node :blaze/clock :blaze/rng-fn] + :opt-un [::enable-ucum ::sct-release-path])) + +(defmethod ig/init-key ::ts/local + [_ {:keys [node] :as config}] + (log/info "Init local terminology server") + (if-ok [context (context config)] + (do (ensure-code-systems config context) + (terminology-service node context)) + ba/throw-anom)) + (derive ::ts/local :blaze/terminology-service) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/capabilities.clj b/modules/terminology-service/src/blaze/terminology_service/local/capabilities.clj new file mode 100644 index 000000000..a73f2b9c2 --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/capabilities.clj @@ -0,0 +1,24 @@ +(ns blaze.terminology-service.local.capabilities + (:require + [blaze.async.comp :refer [do-sync]] + [blaze.fhir.spec.type :as type] + [blaze.terminology-service.local.code-system :as cs])) + +(defn- code-system-version [{:keys [version]} default] + (cond-> + {:fhir/type :fhir.TerminologyCapabilities.codeSystem/version + :isDefault (type/boolean default)} + version (assoc :code version))) + +(defn code-systems [db] + (do-sync [code-system-index (cs/list db)] + (mapv + (fn [[url [first-code-system & more]]] + {:fhir/type :fhir.TerminologyCapabilities/codeSystem + :uri (type/canonical url) + :version + (into + [(code-system-version first-code-system true)] + (map #(code-system-version % false)) + more)}) + code-system-index))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/code_system.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system.clj new file mode 100644 index 000000000..c9a5cecd5 --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system.clj @@ -0,0 +1,63 @@ +(ns blaze.terminology-service.local.code-system + "Main code system functionality." + (:refer-clojure :exclude [find list]) + (:require + [blaze.async.comp :refer [do-sync]] + [blaze.db.api :as d] + [blaze.fhir.spec.type :as type] + [blaze.terminology-service.local.code-system.core :as c] + [blaze.terminology-service.local.code-system.default] + [blaze.terminology-service.local.code-system.sct] + [blaze.terminology-service.local.code-system.ucum] + [blaze.terminology-service.local.priority :as priority])) + +(defn list + "Returns a CompletableFuture that will complete with an index of CodeSystem + resources or complete exceptionally in case of errors. + + The index consists of a map of CodeSystem URL to a list of CodeSystem + resources ordered by falling priority." + [db] + (do-sync [code-systems (d/pull-many db (d/type-list db "CodeSystem"))] + (into + {} + (map + (fn [[url code-systems]] + [url (priority/sort-by-priority code-systems)])) + (group-by (comp type/value :url) code-systems)))) + +(defn find + "Returns a CompletableFuture that will complete with the first CodeSystem + resource with `url` and optional `version` in `context` according to priority + or complete exceptionally in case of none found or errors." + {:arglists '([context url] [context url version])} + [& args] + (apply c/find args)) + +(defn enhance + "Adds additional data to `code-system`." + [context code-system] + (c/enhance context code-system)) + +(defn validate-code + "Returns a Parameters resource that contains the response of the validation + `request`." + [code-system request] + (c/validate-code code-system request)) + +(defn expand-complete + "Returns a list of all concepts as expansion of `code-system`." + [request code-system] + (c/expand-complete request code-system)) + +(defn expand-concept + "Returns a list of concepts as expansion of `code-system` according to the + given `concepts`." + [request code-system concepts] + (c/expand-concept request code-system concepts)) + +(defn expand-filter + "Returns a set of concepts as expansion of `code-system` according to + `filter`." + [request code-system filter] + (c/expand-filter request code-system filter)) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/code_system/core.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/core.clj new file mode 100644 index 000000000..48f4e259f --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/core.clj @@ -0,0 +1,47 @@ +(ns blaze.terminology-service.local.code-system.core + (:refer-clojure :exclude [find]) + (:require + [blaze.fhir.spec.type :as type])) + +(defmulti find + {:arglists '([context url] [context url version])} + (fn [{:sct/keys [context]} url & _] + (when (and (= "http://snomed.info/sct" (type/value url)) context) + :sct))) + +(defmulti enhance + {:arglists '([context code-system])} + (fn [_ {:keys [url]}] + (condp = (type/value url) + "http://snomed.info/sct" :sct + nil))) + +(defmulti validate-code + {:arglists '([code-system request])} + (fn [{:keys [url]} _] + (condp = (type/value url) + "http://snomed.info/sct" :sct + "http://unitsofmeasure.org" :ucum + nil))) + +(defmulti expand-complete + {:arglists '([request code-system])} + (fn [_ {:keys [url]}] + (condp = (type/value url) + "http://snomed.info/sct" :sct + nil))) + +(defmulti expand-concept + {:arglists '([request code-system concepts])} + (fn [_ {:keys [url]} _] + (condp = (type/value url) + "http://snomed.info/sct" :sct + "http://unitsofmeasure.org" :ucum + nil))) + +(defmulti expand-filter + {:arglists '([request code-system filter])} + (fn [_ {:keys [url]} _] + (condp = (type/value url) + "http://snomed.info/sct" :sct + nil))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/code_system/default.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/default.clj new file mode 100644 index 000000000..93a6785d4 --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/default.clj @@ -0,0 +1,143 @@ +(ns blaze.terminology-service.local.code-system.default + (:require + [blaze.anomaly :as ba :refer [if-ok when-ok]] + [blaze.async.comp :refer [do-sync]] + [blaze.db.api :as d] + [blaze.fhir.spec.type :as type] + [blaze.terminology-service.local.code-system.core :as c] + [blaze.terminology-service.local.code-system.filter.core :as filter] + [blaze.terminology-service.local.code-system.filter.descendent-of] + [blaze.terminology-service.local.code-system.filter.equals] + [blaze.terminology-service.local.code-system.filter.exists] + [blaze.terminology-service.local.code-system.filter.is-a] + [blaze.terminology-service.local.code-system.util :as u] + [blaze.terminology-service.local.graph :as graph] + [blaze.terminology-service.local.priority :as priority] + [cognitect.anomalies :as anom])) + +(defmethod c/find :default + [{:keys [db]} url & [version]] + (do-sync [code-systems (d/pull-many db (d/type-query db "CodeSystem" (cond-> [["url" url]] version (conj ["version" version]))))] + (if-let [{concepts :concept :as code-system} (first (priority/sort-by-priority code-systems))] + (assoc code-system :default/graph (graph/build-graph concepts)) + (ba/not-found + (if version + (format "The code system with URL `%s` and version `%s` was not found." url version) + (format "The code system with URL `%s` was not found." url)))))) + +(defmethod c/enhance :default + [_ {concepts :concept :as code-system}] + (assoc code-system :default/graph (graph/build-graph concepts))) + +(defn- concept-pred [code] + (fn [concept] + (when (= code (type/value (:code concept))) + concept))) + +(defn- not-found-msg [{:keys [url]} code] + (if url + (format "The provided code `%s` was not found in the code system with URL `%s`." code (type/value url)) + (format "The provided code `%s` was not found in the provided code system." code))) + +(defn- find-concept + [{concepts :concept :as code-system} code] + (or (some (concept-pred code) concepts) + (ba/not-found (not-found-msg code-system code)))) + +(defn- check-complete [{:keys [content] :as code-system}] + (when-not (= "complete" (type/value content)) + (ba/incorrect (format "Can't use the code system with URL `%s` because it is not complete. It's content is `%s`." (type/value (:url code-system)) (type/value content))))) + +(defmethod c/validate-code :default + [{:keys [url] :as code-system} request] + (if-ok [_ (check-complete code-system) + code (u/extract-code request (type/value url)) + {:keys [code]} (find-concept code-system code)] + {:fhir/type :fhir/Parameters + :parameter + (cond-> + [(u/parameter "result" #fhir/boolean true) + (u/parameter "code" code)] + url (conj (u/parameter "system" url)))} + (fn [{::anom/keys [message]}] + {:fhir/type :fhir/Parameters + :parameter + [(u/parameter "result" #fhir/boolean false) + (u/parameter "message" (type/string message))]}))) + +(defn- code-system-not-complete-msg [{:keys [url content]}] + (format "Can't expand the code system with URL `%s` because it is not complete. It's content is `%s`." + url (type/value content))) + +(defn- code-system-not-complete-anom [code-system] + (ba/unsupported (code-system-not-complete-msg code-system) :http/status 409)) + +(defn- check-code-system-content [{:keys [content] :as code-system}] + (when-not (= "complete" (type/value content)) + (code-system-not-complete-anom code-system))) + +(defn- inactive? [{properties :property}] + (some + (fn [{:keys [code value]}] + (and (= "inactive" (type/value code)) + (type/value value))) + properties)) + +(defn- complete-xf [{:keys [url]}] + (map + (fn [{:keys [code display] :as concept}] + (cond-> {:system url :code code} + display (assoc :display display) + (inactive? concept) (assoc :inactive #fhir/boolean true))))) + +(defn- active-complete-xf [{:keys [url]}] + (keep + (fn [{:keys [code display] :as concept}] + (when-not (inactive? concept) + (cond-> {:system url :code code} + display (assoc :display display)))))) + +(defmethod c/expand-complete :default + [{:keys [active-only]} {concepts :concept :as code-system}] + (when-ok [_ (check-code-system-content code-system)] + (into + [] + ((if active-only active-complete-xf complete-xf) code-system) + concepts))) + +(defn- concept-xf [{:keys [url] {:keys [concepts]} :default/graph}] + (keep + (fn [{:keys [code] vs-display :display}] + (when-let [{:keys [display] :as concept} (concepts (type/value code))] + (let [display (or vs-display display)] + (cond-> {:system url :code code} + display (assoc :display display) + (inactive? concept) (assoc :inactive #fhir/boolean true))))))) + +(defn- active-concept-xf [{:keys [url] {:keys [concepts]} :default/graph}] + (keep + (fn [{:keys [code] vs-display :display}] + (when-let [{:keys [display] :as concept} (concepts (type/value code))] + (let [display (or vs-display display)] + (when-not (inactive? concept) + (cond-> {:system url :code code} + display (assoc :display display)))))))) + +(defmethod c/expand-concept :default + [{:keys [active-only]} code-system value-set-concepts] + (when-ok [_ (check-code-system-content code-system)] + (into + [] + ((if active-only active-concept-xf concept-xf) code-system) + value-set-concepts))) + +(defmethod c/expand-filter :default + [_ {:keys [url] :as code-system} filter] + (when-ok [_ (check-code-system-content code-system) + concepts (filter/filter-concepts filter code-system)] + (into + #{} + (map + (fn [{:keys [code display]}] + {:system url :code code :display display})) + concepts))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/core.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/core.clj new file mode 100644 index 000000000..19e0c350e --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/core.clj @@ -0,0 +1,16 @@ +(ns blaze.terminology-service.local.code-system.filter.core + (:require + [blaze.anomaly :as ba] + [blaze.fhir.spec.type :as type])) + +(defmulti filter-concepts + {:arglists '([filter code-system])} + (fn [{:keys [op]} _] (-> op type/value keyword))) + +(defn- unsupported-filter-op-msg [{:keys [op]} {:keys [url]}] + (format "Unsupported filter operator `%s` in code system `%s`." + (type/value op) (type/value url))) + +(defmethod filter-concepts :default + [filter code-system] + (ba/unsupported (unsupported-filter-op-msg filter code-system))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/descendent_of.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/descendent_of.clj new file mode 100644 index 000000000..fb2a8c35c --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/descendent_of.clj @@ -0,0 +1,11 @@ +(ns blaze.terminology-service.local.code-system.filter.descendent-of + "Includes all concepts that have a transitive is-a relationship with the + concept provided as the value (include descendant codes)." + (:require + [blaze.fhir.spec.type :as type] + [blaze.terminology-service.local.code-system.filter.core :as core] + [blaze.terminology-service.local.graph :as graph])) + +(defmethod core/filter-concepts :descendent-of + [{:keys [value]} {:default/keys [graph]}] + (graph/descendent-of graph (type/value value))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/equals.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/equals.clj new file mode 100644 index 000000000..7152a1146 --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/equals.clj @@ -0,0 +1,25 @@ +(ns blaze.terminology-service.local.code-system.filter.equals + (:require + [blaze.anomaly :as ba :refer [when-ok]] + [blaze.fhir.spec.type :as type] + [blaze.terminology-service.local.code-system.filter.core :as core])) + +(defn- xform + "Creates either a filter of a remove xform, depending on the filter value." + [{:keys [property value]}] + (if-let [property (type/value property)] + (if-some [search-value (type/value value)] + (filter + (fn [{properties :property}] + (some + (fn [{:keys [code value]}] + (and (= property (type/value code)) + (= search-value (type/value value)))) + properties))) + (ba/incorrect "Missing filter value.")) + (ba/incorrect "Missing filter property."))) + +(defmethod core/filter-concepts := + [filter {{:keys [concepts]} :default/graph}] + (when-ok [xform (xform filter)] + (into [] xform (vals concepts)))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/filter/exists.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/exists.clj similarity index 79% rename from modules/terminology-service/src/blaze/terminology_service/local/filter/exists.clj rename to modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/exists.clj index c5f6a7e2d..e6d8142f1 100644 --- a/modules/terminology-service/src/blaze/terminology_service/local/filter/exists.clj +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/exists.clj @@ -1,10 +1,10 @@ -(ns blaze.terminology-service.local.filter.exists +(ns blaze.terminology-service.local.code-system.filter.exists "When value is `true`, includes all codes that have the specified property. When value is `false`, includes all codes that lack the specified property." (:require [blaze.anomaly :as ba :refer [when-ok]] [blaze.fhir.spec.type :as type] - [blaze.terminology-service.local.filter.core :as core])) + [blaze.terminology-service.local.code-system.filter.core :as core])) (defn- xform "Creates either a filter of a remove xform, depending on the filter value." @@ -18,6 +18,6 @@ (ba/incorrect "Missing filter property."))) (defmethod core/filter-concepts :exists - [filter concepts] + [filter {{:keys [concepts]} :default/graph}] (when-ok [xform (xform filter)] - (into [] xform concepts))) + (into [] xform (vals concepts)))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/filter/is_a.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/is_a.clj similarity index 60% rename from modules/terminology-service/src/blaze/terminology_service/local/filter/is_a.clj rename to modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/is_a.clj index a899e64a4..fb2997880 100644 --- a/modules/terminology-service/src/blaze/terminology_service/local/filter/is_a.clj +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/filter/is_a.clj @@ -1,12 +1,12 @@ -(ns blaze.terminology-service.local.filter.is-a +(ns blaze.terminology-service.local.code-system.filter.is-a "Includes all concepts that have a transitive is-a relationship with the concept provided as the value, including the provided concept itself (include descendant codes and self)." (:require [blaze.fhir.spec.type :as type] - [blaze.terminology-service.local.filter.core :as core] + [blaze.terminology-service.local.code-system.filter.core :as core] [blaze.terminology-service.local.graph :as graph])) (defmethod core/filter-concepts :is-a - [{:keys [value]} concepts] - (graph/is-a (graph/build-graph concepts) (type/value value))) + [{:keys [value]} {:default/keys [graph]}] + (graph/is-a graph (type/value value))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/code_system/sct.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/sct.clj new file mode 100644 index 000000000..6b18f649c --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/sct.clj @@ -0,0 +1,181 @@ +(ns blaze.terminology-service.local.code-system.sct + (:require + [blaze.anomaly :as ba :refer [if-ok when-ok]] + [blaze.async.comp :as ac :refer [do-sync]] + [blaze.db.api :as d] + [blaze.fhir.spec.type :as type] + [blaze.luid :as luid] + [blaze.terminology-service.local.code-system.core :as c] + [blaze.terminology-service.local.code-system.sct.context :as context :refer [url core-version-prefix]] + [blaze.terminology-service.local.code-system.sct.type :refer [parse-sctid]] + [blaze.terminology-service.local.code-system.sct.util :as sct-u] + [blaze.terminology-service.local.code-system.util :as u] + [blaze.terminology-service.local.priority :as priority] + [clojure.string :as str] + [cognitect.anomalies :as anom] + [taoensso.timbre :as log])) + +(defn- code-systems [db] + (d/pull-many db (d/type-query db "CodeSystem" [["url" url]]))) + +(defn- handles [db version] + (cond + (re-matches sct-u/module-only-version-pattern version) + (do-sync [code-systems (code-systems db)] + (filterv + #(str/starts-with? (type/value (:version %)) version) + code-systems)) + + :else + (d/pull-many db (d/type-query db "CodeSystem" [["url" url] ["version" version]])))) + +(defn- assoc-context [{:keys [version] :as code-system} context] + (when-ok [[module-id version] (sct-u/module-version (type/value version))] + (assoc code-system :sct/context context :sct/module-id module-id + :sct/version version))) + +(defn- code-system-not-found-msg [version] + (format "The code system with URL `http://snomed.info/sct` and version `%s` was not found." version)) + +(defmethod c/find :sct + [{:keys [db] :sct/keys [context]} _ & [version]] + (if (or (nil? version) (= version core-version-prefix)) + (ac/completed-future (assoc-context (:current-int-system context) context)) + (do-sync [code-systems (handles db version)] + (or (some-> (first (priority/sort-by-priority code-systems)) + (assoc-context context)) + (ba/not-found (code-system-not-found-msg version)))))) + +(defmethod c/enhance :sct + [{:sct/keys [context]} code-system] + (assoc-context code-system context)) + +(defn- not-found-msg [code] + (format "The provided code `%s` was not found in the code system with URL `http://snomed.info/sct`." code)) + +(defn- find-concept + [{{:keys [concept-index]} :sct/context :sct/keys [module-id version]} code] + (context/find-concept concept-index module-id version code)) + +(defn- find-description + [{{:keys [description-index]} :sct/context :sct/keys [version]} code] + (context/find-description description-index code version)) + +(defmethod c/validate-code :sct + [{:keys [url version] :as code-system} request] + (if-ok [code (u/extract-code request (type/value url)) + code (or (parse-sctid code) (ba/not-found (not-found-msg code))) + _ (or (find-concept code-system code) + (ba/not-found (not-found-msg code)))] + {:fhir/type :fhir/Parameters + :parameter + [(u/parameter "result" #fhir/boolean true) + (u/parameter "code" (type/code (str code))) + (u/parameter "system" url) + (u/parameter "version" version) + (u/parameter "display" (find-description code-system code))]} + (fn [{::anom/keys [message]}] + {:fhir/type :fhir/Parameters + :parameter + [(u/parameter "result" #fhir/boolean false) + (u/parameter "message" (type/string message))]}))) + +(defmethod c/expand-complete :sct + [_ _] + (ba/conflict + "Expanding all Snomed CT concepts is too costly." + :fhir/issue "too-costly")) + +(defn- concept-xf + [{{:keys [concept-index description-index]} :sct/context + :sct/keys [module-id version]}] + (keep + (fn [code] + (when-some [active (context/find-concept concept-index module-id version code)] + (cond-> + {:system #fhir/uri"http://snomed.info/sct" + :code (type/code (str code)) + :display (type/string (context/find-description description-index code version))} + (false? active) + (assoc :inactive #fhir/boolean true)))))) + +(defn- active-concept-xf + [{{:keys [concept-index description-index]} :sct/context + :sct/keys [module-id version]}] + (keep + (fn [code] + (when (context/find-concept concept-index module-id version code) + {:system #fhir/uri"http://snomed.info/sct" + :code (type/code (str code)) + :display (type/string (context/find-description description-index code version))})))) + +(defmethod c/expand-concept :sct + [{:keys [active-only]} code-system concepts] + (into + [] + (comp + (keep (comp parse-sctid type/value :code)) + ((if active-only active-concept-xf concept-xf) code-system)) + concepts)) + +(defmulti filter-one + {:arglists '([code-system filter])} + (fn [_ {:keys [op]}] (-> op type/value keyword))) + +(defmethod filter-one :is-a + [{{:keys [child-index]} :sct/context :sct/keys [module-id version]} + {:keys [value]}] + (context/transitive-neighbors-including child-index module-id version + (parse-sctid (type/value value)))) + +(defmethod filter-one :descendent-of + [{{:keys [child-index]} :sct/context :sct/keys [module-id version]} + {:keys [value]}] + (context/transitive-neighbors child-index module-id version + (parse-sctid (type/value value)))) + +(defmethod filter-one :default + [_ {:keys [op]}] + (ba/unsupported (format "Unsupported filter operator `%s` in code system `http://snomed.info/sct`." (type/value op)))) + +(defmethod c/expand-filter :sct + [{:keys [active-only]} code-system filter] + (when-ok [codes (filter-one code-system filter)] + (into + #{} + ((if active-only active-concept-xf concept-xf) code-system) + codes))) + +(defn build-context [release-path] + (context/build release-path)) + +(defn- code-system-versions [db] + (do-sync [code-systems (code-systems db)] + (into #{} (map (comp type/value :version)) code-systems))) + +(defn- luid-generator [{:keys [clock rng-fn]}] + (luid/generator clock (rng-fn))) + +(defn- tx-ops [context existing-versions code-systems] + (transduce + (remove (comp existing-versions type/value :version)) + (fn + ([{:keys [tx-ops]}] tx-ops) + ([{:keys [luid-generator] :as ret} code-system] + (-> (update ret :tx-ops conj [:create (assoc code-system :id (luid/head luid-generator))]) + (update :luid-generator luid/next)))) + {:tx-ops [] + :luid-generator (luid-generator context)} + code-systems)) + +(defn ensure-code-systems + "Ensures that all Snomed CT code systems are present in the database node." + [{:keys [node] :as context} {:keys [code-systems]}] + (-> (code-system-versions (d/db node)) + (ac/then-compose + (fn [existing-versions] + (let [tx-ops (tx-ops context existing-versions code-systems)] + (if (seq tx-ops) + (do (log/debug "Create" (count tx-ops) "new Snomed CT CodeSystem resources...") + (d/transact node tx-ops)) + (ac/completed-future nil))))))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/code_system/sct/context.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/sct/context.clj new file mode 100644 index 000000000..1342b8a63 --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/sct/context.clj @@ -0,0 +1,262 @@ +(ns blaze.terminology-service.local.code-system.sct.context + (:require + [blaze.anomaly :as ba :refer [when-ok]] + [blaze.fhir.spec.type :as type] + [clojure.string :as str]) + (:import + [com.google.common.base CaseFormat] + [java.nio.file Files Path] + [java.time LocalDate] + [java.time.format DateTimeFormatter] + [java.util UUID] + [java.util.stream Stream])) + +(set! *warn-on-reflection* true) +(set! *unchecked-math* :warn-on-boxed) + +(def ^:private ^:const ^long fully-specified-name 900000000000003001) +(def ^:private ^:const ^long is-a 116680003) +(def ^:private ^:const ^long model-component-module 900000000000012004) +(def ^:private ^:const ^long core-module 900000000000207008) +(def ^:private ^:const ^long german-module 11000274103) + +(def ^:const ^String url "http://snomed.info/sct") +(def ^:const ^String core-version-prefix (str url "/" core-module)) + +(defn- pascal->kebab [s] + (.to CaseFormat/UPPER_CAMEL CaseFormat/LOWER_HYPHEN s)) + +(defn- string-arg [i] + `(.substring ~'line ~(if (pos? (long i)) `(inc ~(symbol (str "t" (dec (long i))))) 0) ~(symbol (str "t" i)))) + +(defmacro defparseline [constructor types] + `(defn- ~(symbol (pascal->kebab (name constructor))) [~(with-meta 'line {:tag `String})] + (let + ~(into + [] + (mapcat + (fn [i] + [(symbol (str "t" i)) + (conj (when (pos? (long i)) `((inc ~(symbol (str "t" (dec (long i))))))) 9 'line '.indexOf)])) + (range (dec (count types)))) + (new ~constructor + ~@(map-indexed + (fn [i type] + (condp = type + 'long + `(Long/parseLong ~'line ~(if (pos? (long i)) `(inc ~(symbol (str "t" (dec (long i))))) 0) ~(symbol (str "t" i)) 10) + 'String + (string-arg i) + 'UUID + `(UUID/fromString ~(string-arg i)))) + (butlast types)) + (Long/parseLong ~'line (inc ~(symbol (str "t" (- (count types) 2)))) (.length ~'line) 10))))) + +;; https://confluence.ihtsdotools.org/display/DOCRELFMT/4.2.1+Concept+File+Specification +(defrecord ConceptLine + [^long id ^long effective-time ^long active ^long module-id + ^long definition-status-id]) + +(declare concept-line) +(defparseline ConceptLine [long long long long long]) + +;; https://confluence.ihtsdotools.org/display/DOCRELFMT/4.2.2.+Description+File+Specification +(defrecord DescriptionLine + [^long id ^long effective-time ^long active ^long module-id + ^long concept-id ^String language-code ^long type-id ^String term + ^long case-significance-id]) + +(declare description-line) +(defparseline DescriptionLine [long long long long long String long String long]) + +;; https://confluence.ihtsdotools.org/display/DOCRELFMT/4.2.3+Relationship+File+Specification +(defrecord RelationshipLine + [^long id ^long effective-time ^long active ^long module-id + ^long source-id ^long destination-id ^long relationship-group + ^long type-id ^long characteristic-type-id ^long modifier-id]) + +(declare relationship-line) +(defparseline RelationshipLine [long long long long long long long long long long]) + +;; https://confluence.ihtsdotools.org/display/DOCRELFMT/5.2.4.2+Module+Dependency+Reference+Set +(defrecord ModuleDependencyRefsetLine + [^UUID id ^long effective-time ^long active ^long module-id + ^long refset-id ^long referenced-component-id + ^long source-effective-time ^long target-effective-time]) + +(declare module-dependency-refset-line) +(defparseline ModuleDependencyRefsetLine [UUID long long long long long long long]) + +(def ^:private assoc-time-map + (fnil assoc (sorted-map-by >))) + +(def ^:private update-time-map + (fnil update (sorted-map-by >))) + +(defn build-description-index [lines] + (-> ^Stream lines + (.map description-line) + (.filter #(= fully-specified-name (:type-id %))) + (.reduce + {} + (fn [index {:keys [concept-id effective-time active term]}] + (update index concept-id update-time-map effective-time assoc (= 1 active) term)) + (partial merge-with (partial merge-with merge))))) + +(defn find-description [description-index concept-id version] + (when-let [versions (get description-index concept-id)] + (some-> (first (subseq versions >= version)) val (get true)))) + +(defn build-child-index + "module -> concept -> sorted map of version info + + sorted map of version info: + * keyed by days-since-epoch (higher days come first) + * values are maps of added and removed children + + example: + {module-a {concept-a {days-1 {true (child-a) false (child-b)} + days-2 {true (child-b)}}}" + [lines] + (-> ^Stream lines + (.map relationship-line) + (.filter #(= is-a (:type-id %))) + (.reduce + {} + (fn [index {:keys [module-id destination-id effective-time active source-id]}] + (update-in index [module-id destination-id] + update-time-map effective-time + update (= 1 active) (fnil conj []) source-id)) + (partial merge-with (partial merge-with (partial merge-with (partial merge-with into))))))) + +(defn neighbors + "Returns a set of neighbors (parents or children) of concept in a module of a + certain version." + [index module-id version concept-id] + (when-let [versions (get-in index [module-id concept-id])] + (reduce + (fn [parents {added true removed false}] + (reduce conj (reduce disj parents removed) added)) + #{} + (vals (rsubseq versions >= version))))) + +(defn transitive-neighbors + "Returns a set of transitive neighbors (parents or children) of concept + excluding itself in a module of a certain version." + [index module-id version concept-id] + (loop [to-visit #{concept-id} + visited #{} + result #{}] + (if (empty? to-visit) + result + (let [current (first to-visit) + neighbors (neighbors index module-id version current)] + (recur (into (disj to-visit current) (remove visited) neighbors) + (conj visited current) + (into result neighbors)))))) + +(defn transitive-neighbors-including + "Returns a set of transitive neighbors (parents or children) of concept + including itself in a module of a certain version." + [index module-id version concept-id] + (loop [to-visit #{concept-id} + visited #{} + result #{concept-id}] + (if (empty? to-visit) + result + (let [current (first to-visit) + neighbors (neighbors index module-id version current) + new-neighbors (remove visited neighbors)] + (recur (into (disj to-visit current) new-neighbors) + (conj visited current) + (into result neighbors)))))) + +(defn build-concept-index + "module -> concept -> list versions ordered by time with active" + [lines] + (-> ^Stream lines + (.map concept-line) + (.reduce + {} + (fn [index {:keys [module-id id effective-time active]}] + (update-in index [module-id id] assoc-time-map effective-time (= 1 active))) + (partial merge-with (partial merge-with merge))))) + +(defn find-concept + "Searches a concept in a module of a certain version. + + Returns `true` if the concept is active, `false` if it is inactive and `nil` + if it doesn't exist." + [concept-index module-id version concept-id] + (when-let [versions (get-in concept-index [module-id concept-id])] + (some-> (first (subseq versions >= version)) val))) + +(defn- version-url [module-id date] + (format "http://snomed.info/sct/%s/version/%s" module-id date)) + +(defn- build-code-systems + "Generates a list of CodeSystem resources based on the module dependency + refset file in `path`. + + Here only the international (900000000000207008) and the German (11000274103) + edition." + [description-index lines] + (-> ^Stream lines + (.map module-dependency-refset-line) + (.filter #(= 1 (:active %))) + (.filter #(= model-component-module (:referenced-component-id %))) + (.filter #(contains? #{core-module german-module} (:module-id %))) + (.map + (fn [{:keys [module-id source-effective-time]}] + {:fhir/type :fhir/CodeSystem + :url #fhir/uri"http://snomed.info/sct" + :version (type/string (version-url module-id source-effective-time)) + :title (type/string (find-description description-index module-id source-effective-time)) + :status #fhir/code"active" + :experimental #fhir/boolean false + :date (type/dateTime (str (LocalDate/parse (str source-effective-time) DateTimeFormatter/BASIC_ISO_DATE))) + :caseSensitive #fhir/boolean true + :hierarchyMeaning #fhir/code"is-a" + :versionNeeded #fhir/boolean false + :content #fhir/code"not-present" + :filter + [{:fhir/type :fhir.CodeSystem/filter + :code #fhir/code"concept" + :description #fhir/string"Includes all concept ids that have a transitive is-a relationship with the code provided as the value." + :operator [#fhir/code"is-a"] + :value #fhir/string"A SNOMED CT code"} + {:fhir/type :fhir.CodeSystem/filter + :code #fhir/code"concept" + :description #fhir/string"Includes all concept ids that have a transitive is-a relationship with the code provided as the value, excluding the code itself." + :operator [#fhir/code"descendent-of"] + :value #fhir/string"A SNOMED CT code"}]})) + (.toList))) + +(defn- find-file [path prefix] + (with-open [stream (Files/newDirectoryStream ^Path path (str prefix "*"))] + (or (first stream) + (ba/not-found (format "Can't find a file starting with `%s` in `%s`." prefix path))))) + +(defn- stream-file [f path & args] + (with-open [lines (-> (Files/lines ^Path path) (.skip 1) (.parallel))] + (apply f lines args))) + +(defn- find-current-int-system [code-systems] + (last (sort-by :date (filter #(str/starts-with? (type/value (:version %)) (str "http://snomed.info/sct/" core-module)) code-systems)))) + +(defn build [release-path] + (when-ok [full-path (find-file release-path "Full") + refset-path (find-file full-path "Refset") + metadata-path (find-file refset-path "Metadata") + module-dependency-file (find-file metadata-path "der2_ssRefset_ModuleDependencyFull") + term-path (find-file full-path "Terminology") + concept-file (find-file term-path "sct2_Concept_Full") + relationship-file (find-file term-path "sct2_Relationship_Full") + description-file (find-file term-path "sct2_Description_Full") + description-index (stream-file build-description-index description-file) + code-systems (stream-file (partial build-code-systems description-index) module-dependency-file)] + {:code-systems code-systems + :current-int-system (find-current-int-system code-systems) + :concept-index (stream-file build-concept-index concept-file) + :child-index (stream-file build-child-index relationship-file) + :description-index description-index})) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/code_system/sct/type.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/sct/type.clj new file mode 100644 index 000000000..b101de39d --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/sct/type.clj @@ -0,0 +1,8 @@ +(ns blaze.terminology-service.local.code-system.sct.type + (:require [clojure.string :as str])) + +(defn parse-sctid + "Parses `s` as SCTID which is an integer between 6 and 18 digits long." + [s] + (when-not (str/starts-with? s "0") + (parse-long s))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/code_system/sct/util.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/sct/util.clj new file mode 100644 index 000000000..1c319c2eb --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/sct/util.clj @@ -0,0 +1,12 @@ +(ns blaze.terminology-service.local.code-system.sct.util + (:require + [blaze.anomaly :as ba] + [blaze.terminology-service.local.code-system.sct.type :refer [parse-sctid]])) + +(def module-only-version-pattern + #"http\:\/\/snomed\.info\/sct\/(\d+)") + +(defn module-version [version] + (if-let [[_ module version] (re-find #"http\:\/\/snomed\.info\/sct\/(\d+)\/version\/(\d{8})" version)] + [(parse-sctid module) (parse-sctid version)] + (ba/incorrect (format "Incorrectly formatted Snomed CT version `%s`." version)))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/code_system/ucum.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/ucum.clj new file mode 100644 index 000000000..805cef8de --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/ucum.clj @@ -0,0 +1,82 @@ +(ns blaze.terminology-service.local.code-system.ucum + (:require + [blaze.anomaly :as ba :refer [if-ok]] + [blaze.async.comp :as ac] + [blaze.coll.core :as coll] + [blaze.db.api :as d] + [blaze.fhir.spec.type :as type] + [blaze.luid :as luid] + [blaze.terminology-service.local.code-system.core :as c] + [blaze.terminology-service.local.code-system.util :as u] + [cognitect.anomalies :as anom] + [taoensso.timbre :as log]) + (:import + [org.fhir.ucum UcumEssenceService UcumService])) + +(set! *warn-on-reflection* true) + +(def ^:private service + (let [classloader (.getContextClassLoader (Thread/currentThread))] + (with-open [stream (.getResourceAsStream classloader "ucum-essence.xml")] + (UcumEssenceService. stream)))) + +(defn- validate [code] + (when (.validate ^UcumService service code) + (ba/incorrect (format "The provided code `%s` was not found in the code system with URL `http://unitsofmeasure.org`." code)))) + +(defmethod c/validate-code :ucum + [{:keys [url version]} request] + (if-ok [code (u/extract-code request (type/value url)) + _ (validate code)] + {:fhir/type :fhir/Parameters + :parameter + [(u/parameter "result" #fhir/boolean true) + (u/parameter "code" (type/code code)) + (u/parameter "system" #fhir/uri"http://unitsofmeasure.org") + (u/parameter "version" version)]} + (fn [{::anom/keys [message]}] + {:fhir/type :fhir/Parameters + :parameter + [(u/parameter "result" #fhir/boolean false) + (u/parameter "message" (type/string message))]}))) + +(defmethod c/expand-concept :ucum + [_ _ concepts] + (into + [] + (keep + (fn [{:keys [code]}] + (when (nil? (.validate ^UcumService service (type/value code))) + {:system #fhir/uri"http://unitsofmeasure.org" + :code code}))) + concepts)) + +(defn- ucum-query [db] + (d/type-query db "CodeSystem" [["url" "http://unitsofmeasure.org"]])) + +(defn- luid [{:keys [clock rng-fn]}] + (luid/luid clock (rng-fn))) + +(defn- create-code-system [{:keys [node] :as context}] + (log/debug "Create UCUM code system...") + (d/transact + node + [[:create + {:fhir/type :fhir/CodeSystem + :id (luid context) + :url #fhir/uri"http://unitsofmeasure.org" + :version #fhir/string"2013.10.21" + :name #fhir/string"UCUM" + :title #fhir/string"Unified Code for Units of Measure (UCUM)" + :status #fhir/code"active" + :experimental #fhir/boolean false + :date #fhir/dateTime"2013-10-21" + :caseSensitive #fhir/boolean true + :content #fhir/code"not-present"}]])) + +(defn ensure-code-system + "Ensures that the UCUM code system is present in the database node." + [{:keys [node] :as context}] + (if-let [_ (coll/first (ucum-query (d/db node)))] + (ac/completed-future nil) + (create-code-system context))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/code_system/util.clj b/modules/terminology-service/src/blaze/terminology_service/local/code_system/util.clj new file mode 100644 index 000000000..e8e0f9da5 --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/code_system/util.clj @@ -0,0 +1,16 @@ +(ns blaze.terminology-service.local.code-system.util + (:require + [blaze.anomaly :as ba] + [blaze.fhir.spec.type :as type])) + +(defn extract-code [request url] + (or (:code request) + (let [{:keys [system code]} (-> request :coding)] + (if (= url (type/value system)) + (type/value code) + (ba/incorrect (format "The system of the provided coding `%s` does not match the code system with URL `%s`." (type/value system) url)))))) + +(defn parameter [name value] + {:fhir/type :fhir.Parameters/parameter + :name name + :value value}) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/concept.clj b/modules/terminology-service/src/blaze/terminology_service/local/concept.clj deleted file mode 100644 index 4be777b66..000000000 --- a/modules/terminology-service/src/blaze/terminology_service/local/concept.clj +++ /dev/null @@ -1,23 +0,0 @@ -(ns blaze.terminology-service.local.concept) - -(defn- index-by-code [concepts] - (reduce - (fn [ret {:keys [code] :as concept}] - (assoc ret code concept)) - {} - concepts)) - -(defn expand-code-system - "Returns a list of concepts as expansion of `code-system` according to the - given `value-set-concepts`." - {:arglists '([code-system value-set-concepts])} - [{:keys [url] concepts :concept} value-set-concepts] - (let [code-index (index-by-code value-set-concepts)] - (into - [] - (keep - (fn [{:keys [code display]}] - (when-let [{:keys [display] :or {display display}} (get code-index code)] - (cond-> {:system url :code code} - display (assoc :display display))))) - concepts))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/filter.clj b/modules/terminology-service/src/blaze/terminology_service/local/filter.clj deleted file mode 100644 index 9d0064f90..000000000 --- a/modules/terminology-service/src/blaze/terminology_service/local/filter.clj +++ /dev/null @@ -1,36 +0,0 @@ -(ns blaze.terminology-service.local.filter - (:require - [blaze.anomaly :as ba :refer [when-ok]] - [blaze.fhir.spec.type :as type] - [blaze.terminology-service.local.filter.core :as core] - [blaze.terminology-service.local.filter.exists] - [blaze.terminology-service.local.filter.is-a])) - -(defn- priority [{:keys [op]}] - (case (type/value op) - "is-a" 0 - 1)) - -(defn- order-filters [filters] - (sort-by priority filters)) - -(defn- filter-concepts [filters concepts] - (reduce - (fn [concepts filter] - (let [res (core/filter-concepts filter concepts)] - (cond-> res (ba/anomaly? res) reduced))) - concepts - filters)) - -(defn expand-code-system - "Returns a list of concepts as expansion of `code-system` according to the - given `filters`." - {:arglists '([code-system filters])} - [{:keys [url] concepts :concept} filters] - (when-ok [concepts (filter-concepts (order-filters filters) concepts)] - (into - [] - (map - (fn [{:keys [code display]}] - {:system url :code code :display display})) - concepts))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/filter/core.clj b/modules/terminology-service/src/blaze/terminology_service/local/filter/core.clj deleted file mode 100644 index b2465aa38..000000000 --- a/modules/terminology-service/src/blaze/terminology_service/local/filter/core.clj +++ /dev/null @@ -1,12 +0,0 @@ -(ns blaze.terminology-service.local.filter.core - (:require - [blaze.anomaly :as ba] - [blaze.fhir.spec.type :as type])) - -(defmulti filter-concepts - {:arglists '([filter concepts])} - (fn [{:keys [op]} _concepts] (-> op type/value keyword))) - -(defmethod filter-concepts :default - [{:keys [op]} _concepts] - (ba/unsupported (format "The filter operation `%s` is not supported." op))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/graph.clj b/modules/terminology-service/src/blaze/terminology_service/local/graph.clj index 0d69d014e..90eb1e131 100644 --- a/modules/terminology-service/src/blaze/terminology_service/local/graph.clj +++ b/modules/terminology-service/src/blaze/terminology_service/local/graph.clj @@ -103,3 +103,9 @@ {:arglists '([graph code])} [{:keys [concepts child-index]} code] (into [] (map concepts) (is-a-codes child-index code))) + +(defn descendent-of + "Returns a list of all descendant concepts of `code`." + {:arglists '([graph code])} + [{:keys [concepts child-index]} code] + (into [] (map concepts) (disj (is-a-codes child-index code) code))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/priority.clj b/modules/terminology-service/src/blaze/terminology_service/local/priority.clj new file mode 100644 index 000000000..858041b1d --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/priority.clj @@ -0,0 +1,22 @@ +(ns blaze.terminology-service.local.priority + (:require + [blaze.async.comp] + [blaze.fhir.spec.type :as type] + [blaze.terminology-service.local.version :as version]) + (:import + [java.util Comparator])) + +(set! *warn-on-reflection* true) + +(defn- t [code-system] + (:blaze.db/t (:blaze.db/tx (meta code-system)))) + +(def ^:private priority-cmp + (-> (Comparator/comparing #(-> % :status type/value) (Comparator/nullsFirst (.reversed (Comparator/naturalOrder)))) + (.thenComparing #(-> % :version type/value) version/cmp) + (.thenComparing t (Comparator/naturalOrder)) + (.thenComparing #(% :id) (Comparator/naturalOrder)) + (.reversed))) + +(defn sort-by-priority [resources] + (sort priority-cmp resources)) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/spec.clj b/modules/terminology-service/src/blaze/terminology_service/local/spec.clj new file mode 100644 index 000000000..669b42211 --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/spec.clj @@ -0,0 +1,11 @@ +(ns blaze.terminology-service.local.spec + (:require + [blaze.path.spec] + [blaze.terminology-service.local :as-alias local] + [clojure.spec.alpha :as s])) + +(s/def ::local/enable-ucum + boolean?) + +(s/def ::local/sct-release-path + :blaze/dir) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/value_set.clj b/modules/terminology-service/src/blaze/terminology_service/local/value_set.clj new file mode 100644 index 000000000..e4b39570e --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/value_set.clj @@ -0,0 +1,20 @@ +(ns blaze.terminology-service.local.value-set + (:refer-clojure :exclude [find]) + (:require + [blaze.anomaly :as ba] + [blaze.async.comp :refer [do-sync]] + [blaze.db.api :as d] + [blaze.terminology-service.local.priority :as priority])) + +(defn find + "Returns a CompletableFuture that will complete with the first ValueSet + resource with `url` and optional `version` in `db` according to priority or + complete exceptionally in case of none found or errors." + ([db url] + (do-sync [code-systems (d/pull-many db (d/type-query db "ValueSet" [["url" url]]))] + (or (first (priority/sort-by-priority code-systems)) + (ba/not-found (format "The value set `%s` was not found." url))))) + ([db url version] + (do-sync [code-systems (d/pull-many db (d/type-query db "ValueSet" [["url" url] ["version" version]]))] + (or (first (priority/sort-by-priority code-systems)) + (ba/not-found (format "The value set `%s` and version `%s` was not found." url version)))))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/value_set/expand.clj b/modules/terminology-service/src/blaze/terminology_service/local/value_set/expand.clj new file mode 100644 index 000000000..36c70cc0e --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/value_set/expand.clj @@ -0,0 +1,143 @@ +(ns blaze.terminology-service.local.value-set.expand + (:require + [blaze.anomaly :as ba :refer [when-ok]] + [blaze.async.comp :as ac :refer [do-sync]] + [blaze.db.spec] + [blaze.fhir.spec.type :as type] + [blaze.spec] + [blaze.terminology-service.local.code-system :as cs] + [blaze.terminology-service.local.value-set :as vs] + [clojure.set :as set] + [clojure.string :as str] + [cognitect.anomalies :as anom] + [java-time.api :as time])) + +(defn- all-version-expansion-msg [url] + (format "Expanding the code system with URL `%s` in all versions is unsupported." url)) + +(defn- all-version-expansion-anom [url] + (ba/unsupported (all-version-expansion-msg url))) + +(defn- find-version [{:keys [system-version]} system] + (some + #(let [[s v] (str/split (type/value %) #"\|")] + (when (= system s) v)) + system-version)) + +(defn- find-code-system [{:keys [request] :as context} {:keys [system version]}] + (condp = (type/value version) + "*" (ac/completed-future (all-version-expansion-anom (type/value system))) + nil (if-let [version (find-version request (type/value system))] + (cs/find context (type/value system) version) + (cs/find context (type/value system))) + (cs/find context (type/value system) (type/value version)))) + +(defn- expand-filters [request code-system filters] + (->> (map (partial cs/expand-filter request code-system) filters) + (apply set/intersection))) + +(defn- version-parameter [url version] + {:fhir/type :fhir.ValueSet.expansion/parameter + :name #fhir/string"version" + :value (type/uri (str url "|" version))}) + +(defn- append-version [concepts {:keys [url version]}] + (cond-> {:contains concepts} + version (assoc :parameter #{(version-parameter url version)}))) + +(defn- expand-code-system [{:keys [request]} code-system concepts filters] + (cond + (seq concepts) (cs/expand-concept request code-system concepts) + (seq filters) (expand-filters request code-system filters) + :else (cs/expand-complete request code-system))) + +(defn- include-system + [context {concepts :concept filters :filter :as include}] + (if (and (seq concepts) (seq filters)) + (ac/completed-future (ba/incorrect "Incorrect combination of concept and filter.")) + (do-sync [code-system (find-code-system context include)] + (when-ok [concepts (expand-code-system context code-system concepts filters)] + (append-version concepts code-system))))) + +(declare expand-value-set) + +(defn- expand-value-set-by-canonical [{:keys [db] :as context} canonical] + (-> (vs/find db canonical) + (ac/then-compose (partial expand-value-set context)))) + +(defn- include-value-sets [context value-sets] + (let [futures (mapv #(expand-value-set-by-canonical context (type/value %)) value-sets)] + (do-sync [_ (ac/all-of futures)] + (transduce (map (comp #(select-keys % [:parameter :contains]) :expansion ac/join)) (partial merge-with into) futures)))) + +(defn- include [context {:keys [system] value-sets :valueSet :as include}] + (cond + (and system value-sets) + (ac/completed-future (ba/incorrect "Incorrect combination of system and valueSet.")) + + system (include-system context include) + value-sets (include-value-sets context value-sets) + + :else (ac/completed-future (ba/incorrect "Missing system or valueSet.")))) + +(defn- expand-includes [context includes] + (let [futures (mapv (partial include context) includes)] + (do-sync [_ (ac/all-of futures)] + (transduce (map ac/join) (partial merge-with into) futures)))) + +(defn- remove-excludes-duplicates [includes excludes] + (into [] (comp (distinct) (remove (set excludes))) includes)) + +(defn- count-parameter [count] + {:fhir/type :fhir.ValueSet.expansion/parameter + :name #fhir/string"count" + :value (type/integer count)}) + +(defn- append-params [parameters {:keys [count]}] + (cond-> parameters + count (conj (count-parameter count)))) + +(defn- expansion [{:keys [clock] {:keys [count] :as request} :request} parameters concepts] + (cond-> + {:fhir/type :fhir.ValueSet/expansion + :identifier (type/uri (str "urn:uuid:" (random-uuid))) + :timestamp (time/offset-date-time clock) + :total (clojure.core/count concepts) + :parameter (append-params parameters request)} + (nil? count) (assoc :contains concepts) + (pos-int? count) (assoc :contains (into [] (take count) concepts)))) + +(defn- expand-value-set** + [{{:keys [include-definition] :or {include-definition false}} :request + :as context} + {{includes :include excludes :exclude} :compose :as value-set}] + (let [includes (expand-includes context includes) + excludes (expand-includes context excludes)] + (do-sync [_ (ac/all-of [includes excludes])] + (let [includes (ac/join includes) + excludes (ac/join excludes) + concepts (remove-excludes-duplicates (:contains includes) (:contains excludes))] + (cond-> + (assoc + value-set + :expansion + (expansion context (vec (:parameter includes)) concepts)) + (not include-definition) (dissoc :compose)))))) + +(defn- expand-value-set-msg [{:keys [url]}] + (if url + (format "Error while expanding the value set `%s`. " url) + "Error while expanding the provided value set. ")) + +(defn- expand-value-set* [context {:keys [expansion] :as value-set}] + (if expansion + (ac/completed-future value-set) + (-> (expand-value-set** context value-set) + (ac/exceptionally + #(update % ::anom/message (partial str (expand-value-set-msg value-set))))))) + +(defn expand-value-set + "Returns a CompletableFuture that will complete with the expanded `value-set` + or will complete exceptionally with an anomaly in case of errors." + [context value-set] + (expand-value-set* context (dissoc value-set :id :meta))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/value_set/validate_code.clj b/modules/terminology-service/src/blaze/terminology_service/local/value_set/validate_code.clj new file mode 100644 index 000000000..d9712ff75 --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/value_set/validate_code.clj @@ -0,0 +1,76 @@ +(ns blaze.terminology-service.local.value-set.validate-code + (:require + [blaze.anomaly :as ba :refer [if-ok]] + [blaze.async.comp :as ac] + [blaze.fhir.spec.type :as type] + [blaze.terminology-service.local.value-set.expand :as vs-expand] + [cognitect.anomalies :as anom])) + +(defn- infer-xf [{:keys [code]}] + (comp + (filter + (fn [concept] + (when (= code (type/value (:code concept))) + concept))) + (take 2))) + +(defn- infer-non-unique-msg [{:keys [url]} {:keys [code]}] + (if url + (format "While inferring the system was requested, the provided code `%s` was not unique in the value set `%s`." code url) + (format "While inferring the system was requested, the provided code `%s` was not unique in the provided value set." code))) + +(defn- concept-pred [code system] + (fn [concept] + (when (and (= code (type/value (:code concept))) + (= system (type/value (:system concept)))) + concept))) + +(defn- extract-code-system [request] + (if-let [code (:code request)] + [code (:system request)] + (let [{:keys [code system]} (:coding request)] + [(type/value code) (type/value system)]))) + +(defn- not-found-msg [{:keys [url]} code system] + (if url + (format "The provided code `%s` of system `%s` was not found in the value set `%s`." code system url) + (format "The provided code `%s` of system `%s` was not found in the provided value set." code system))) + +(defn- find-concept + [{{concepts :contains} :expansion :as value-set} + {:keys [infer-system] :as request}] + (if infer-system + (let [concepts (into [] (infer-xf request) concepts)] + (if (= 1 (count concepts)) + (first concepts) + (ba/not-found (infer-non-unique-msg value-set request)))) + (let [[code system] (extract-code-system request)] + (or (some (concept-pred code system) concepts) + (ba/not-found (not-found-msg value-set code system)))))) + +(defn- parameter [name value] + {:fhir/type :fhir.Parameters/parameter + :name name + :value value}) + +(defn build-response [value-set request] + (if-ok [{:keys [code system]} (find-concept value-set request)] + {:fhir/type :fhir/Parameters + :parameter + [(parameter "result" #fhir/boolean true) + (parameter "code" code) + (parameter "system" system)]} + (fn [{::anom/keys [message]}] + {:fhir/type :fhir/Parameters + :parameter + [(parameter "result" #fhir/boolean false) + (parameter "message" (type/string message))]}))) + +(defn validate-code + "Returns a CompletableFuture that will complete with a Parameters resource + that contains the response of the validation request over `value-set` + or will complete exceptionally with an anomaly in case of errors." + {:arglists '([context value-set])} + [{:keys [request] :as context} value-set] + (-> (vs-expand/expand-value-set context value-set) + (ac/then-apply #(build-response % request)))) diff --git a/modules/terminology-service/src/blaze/terminology_service/local/version.clj b/modules/terminology-service/src/blaze/terminology_service/local/version.clj new file mode 100644 index 000000000..0d23f096b --- /dev/null +++ b/modules/terminology-service/src/blaze/terminology_service/local/version.clj @@ -0,0 +1,35 @@ +(ns blaze.terminology-service.local.version + (:require + [clojure.string :as str])) + +(set! *warn-on-reflection* true) + +(defn- nat-cmp [^Comparable x y] + (.compareTo x y)) + +(defn cmp + "Compares two version numbers." + [v1 v2] + (loop [[p1 & p1s] (some-> v1 (str/split #"\.")) + [p2 & p2s] (some-> v2 (str/split #"\."))] + (if p1 + (if p2 + (let [n1 (parse-long p1) + n2 (parse-long p2)] + (if n1 + (if n2 + (let [r (nat-cmp n1 n2)] + (if (zero? r) + (recur p1s p2s) + r)) + -1) + (if n2 + 1 + (let [r (nat-cmp p1 p2)] + (if (zero? r) + (recur p1s p2s) + r))))) + 1) + (if p2 + -1 + 0)))) diff --git a/modules/terminology-service/src/blaze/terminology_service/protocols.clj b/modules/terminology-service/src/blaze/terminology_service/protocols.clj index 46ba3e419..7958e088e 100644 --- a/modules/terminology-service/src/blaze/terminology_service/protocols.clj +++ b/modules/terminology-service/src/blaze/terminology_service/protocols.clj @@ -1,4 +1,7 @@ (ns blaze.terminology-service.protocols) (defprotocol TerminologyService - (-expand-value-set [_ request])) + (-code-systems [_]) + (-code-system-validate-code [_ request]) + (-expand-value-set [_ request]) + (-value-set-validate-code [_ request])) diff --git a/modules/terminology-service/src/blaze/terminology_service/spec.clj b/modules/terminology-service/src/blaze/terminology_service/spec.clj index 33deec55f..de603bc3f 100644 --- a/modules/terminology-service/src/blaze/terminology_service/spec.clj +++ b/modules/terminology-service/src/blaze/terminology_service/spec.clj @@ -2,20 +2,25 @@ (:require [blaze.db.spec] [blaze.fhir.spec.spec] + [blaze.terminology-service.code-system-validate-code :as-alias cs-validate-code] [blaze.terminology-service.expand-value-set :as-alias expand-vs] [blaze.terminology-service.expand-value-set.request :as-alias request] [blaze.terminology-service.protocols :as p] + [blaze.terminology-service.value-set-validate-code :as-alias vs-validate-code] [clojure.spec.alpha :as s])) -(defn terminology-service? [x] - (satisfies? p/TerminologyService x)) - (s/def :blaze/terminology-service - terminology-service?) + #(satisfies? p/TerminologyService %)) (s/def ::request/url string?) +(s/def ::request/code-system + :fhir/CodeSystem) + +(s/def ::request/value-set + :fhir/ValueSet) + (s/def ::request/value-set-version string?) @@ -25,6 +30,32 @@ (s/def ::request/include-definition boolean?) +(s/def ::request/active-only + boolean?) + +(s/def ::request/code + string?) + +(s/def ::request/system + string?) + +(s/def ::request/version + string?) + +(s/def ::request/coding + :fhir/Coding) + +;; parameters are taken from: http://hl7.org/fhir/R4/codesystem-operation-validate-code.html +(s/def ::cs-validate-code/request + (s/keys + :opt-un + [:blaze.resource/id + ::request/url + ::request/code-system + ::request/code + ::request/version + ::request/coding])) + ;; parameters are taken from: http://hl7.org/fhir/R4/valueset-operation-expand.html (s/def ::expand-vs/request (s/keys @@ -33,4 +64,17 @@ ::request/url ::request/value-set-version ::request/count - ::request/include-definition])) + ::request/include-definition + ::request/active-only])) + +;; parameters are taken from: http://hl7.org/fhir/R4/valueset-operation-validate-code.html +(s/def ::vs-validate-code/request + (s/keys + :opt-un + [:blaze.resource/id + ::request/url + ::request/value-set + ::request/value-set-version + ::request/code + ::request/system + ::request/coding])) diff --git a/modules/terminology-service/src/blaze/terminology_service_spec.clj b/modules/terminology-service/src/blaze/terminology_service_spec.clj index e88de8814..e7ebc06da 100644 --- a/modules/terminology-service/src/blaze/terminology_service_spec.clj +++ b/modules/terminology-service/src/blaze/terminology_service_spec.clj @@ -2,11 +2,27 @@ (:require [blaze.async.comp :as ac] [blaze.terminology-service :as ts] + [blaze.terminology-service.code-system-validate-code :as-alias cs-validate-code] [blaze.terminology-service.expand-value-set :as-alias expand-vs] [blaze.terminology-service.spec] + [blaze.terminology-service.value-set-validate-code :as-alias vs-validate-code] [clojure.spec.alpha :as s])) +(s/fdef ts/code-systems + :args (s/cat :terminology-service :blaze/terminology-service) + :ret ac/completable-future?) + +(s/fdef ts/code-system-validate-code + :args (s/cat :terminology-service :blaze/terminology-service + :request ::cs-validate-code/request) + :ret ac/completable-future?) + (s/fdef ts/expand-value-set :args (s/cat :terminology-service :blaze/terminology-service :request ::expand-vs/request) :ret ac/completable-future?) + +(s/fdef ts/value-set-validate-code + :args (s/cat :terminology-service :blaze/terminology-service + :request ::vs-validate-code/request) + :ret ac/completable-future?) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/context_spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/context_spec.clj new file mode 100644 index 000000000..3579ee4ec --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/context_spec.clj @@ -0,0 +1,33 @@ +(ns blaze.terminology-service.local.code-system.sct.context-spec + (:require + [blaze.db.spec] + [blaze.fhir.spec.spec] + [blaze.path.spec] + [blaze.terminology-service.local.code-system.sct.context :as context] + [blaze.terminology-service.local.code-system.sct.spec] + [clojure.spec.alpha :as s] + [cognitect.anomalies :as anom])) + +(s/fdef context/find-concept + :args (s/cat :concept-index map? :module-id :sct/id :version :sct/time + :concept-id :sct/id) + :ret (s/nilable boolean?)) + +(s/fdef context/neighbors + :args (s/cat :index map? :module-id :sct/id :version :sct/time + :concept-id :sct/id) + :ret (s/coll-of :sct/id :kind set?)) + +(s/fdef context/transitive-neighbors + :args (s/cat :index map? :module-id :sct/id :version :sct/time + :concept-id :sct/id) + :ret (s/coll-of :sct/id :kind set?)) + +(s/fdef context/transitive-neighbors-including + :args (s/cat :index map? :module-id :sct/id :version :sct/time + :concept-id :sct/id) + :ret (s/coll-of :sct/id :kind set?)) + +(s/fdef context/build + :args (s/cat :path :blaze/dir) + :ret (s/or :context :sct/context :anomaly ::anom/anomaly)) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/context_test.clj b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/context_test.clj new file mode 100644 index 000000000..185d487a5 --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/context_test.clj @@ -0,0 +1,214 @@ +(ns blaze.terminology-service.local.code-system.sct.context-test + (:require + [blaze.fhir.test-util] + [blaze.path :refer [path]] + [blaze.terminology-service.local.code-system.sct.context :as context] + [blaze.terminology-service.local.code-system.sct.context-spec] + [blaze.test-util :as tu] + [clojure.spec.test.alpha :as st] + [clojure.test :as test :refer [deftest is testing]] + [cognitect.anomalies :as anom] + [juxt.iota :refer [given]])) + +(set! *warn-on-reflection* true) +(st/instrument) + +(test/use-fixtures :each tu/fixture) + +(deftest build-concept-index-test + (is (= (context/build-concept-index + (.stream + ["106004\t20020131\t1\t900000000000207008\t900000000000074008" + "106004\t20240301\t0\t900000000000207008\t900000000000074008"])) + {900000000000207008 {106004 {20240301 false + 20020131 true}}}))) + +(defn- time-map [& kvs] + (apply sorted-map-by > kvs)) + +(deftest find-concept-test + (let [index {900000000000207008 {106004 (time-map + 20240301 false + 20020131 true)}}] + + (testing "concept did not exist at this time" + (is (nil? (context/find-concept index 900000000000207008 20020130 106004)))) + + (testing "concept just became active" + (is (true? (context/find-concept index 900000000000207008 20020131 106004)))) + + (testing "concept is still active" + (is (true? (context/find-concept index 900000000000207008 20240229 106004)))) + + (testing "concept just became inactive" + (is (false? (context/find-concept index 900000000000207008 20240301 106004)))) + + (testing "concept is still inactive" + (is (false? (context/find-concept index 900000000000207008 20241216 106004)))))) + +(deftest build-child-index-test + (is (= (context/build-child-index + (.stream + ["100022\t20020131\t1\t900000000000207008\t100000000\t102272007\t0\t116680003\t900000000000011006\t900000000000451002" + "100022\t20090731\t0\t900000000000207008\t100000000\t102272007\t0\t116680003\t900000000000011006\t900000000000451002" + "104029\t20020131\t1\t900000000000207008\t100001001\t102272007\t0\t116680003\t900000000000011006\t900000000000451002" + "104029\t20090731\t0\t900000000000207008\t100001001\t102272007\t0\t116680003\t900000000000011006\t900000000000451002"])) + {900000000000207008 {102272007 {20090731 {false [100000000 100001001]} + 20020131 {true [100000000 100001001]}}}}))) + +(deftest neighbors-test + (testing "one neighbor" + (let [index {900000000000207008 {102272007 (time-map + 20090731 {false [100000000]} + 20020131 {true [100000000]})}}] + + (testing "neighbor did not exist at this time" + (is (= #{} (context/neighbors index 900000000000207008 20020130 102272007)))) + + (testing "neighbor just became active" + (is (= #{100000000} (context/neighbors index 900000000000207008 20020131 102272007)))) + + (testing "neighbor is still active" + (is (= #{100000000} (context/neighbors index 900000000000207008 20090730 102272007)))) + + (testing "neighbor just became inactive" + (is (= #{} (context/neighbors index 900000000000207008 20090731 102272007)))) + + (testing "neighbor is still inactive" + (is (= #{} (context/neighbors index 900000000000207008 20241216 102272007)))))) + + (testing "two neighbors" + (let [index {900000000000207008 {102272007 (time-map + 20090731 {false [100001001]} + 20030531 {false [100000000] true [100001001]} + 20020131 {true [100000000]})}}] + + (testing "neighbor 100000000 did not exist at this time" + (is (= #{} (context/neighbors index 900000000000207008 20020130 102272007)))) + + (testing "neighbor 100000000 just became active" + (is (= #{100000000} (context/neighbors index 900000000000207008 20020131 102272007)))) + + (testing "neighbor 100000000 is still active" + (is (= #{100000000} (context/neighbors index 900000000000207008 20030530 102272007)))) + + (testing "neighbor 100001001 just became active" + (is (= #{100001001} (context/neighbors index 900000000000207008 20030531 102272007)))) + + (testing "neighbor 100001001 is still active" + (is (= #{100001001} (context/neighbors index 900000000000207008 20090730 102272007)))) + + (testing "neighbor 100001001 just became inactive" + (is (= #{} (context/neighbors index 900000000000207008 20090731 102272007)))) + + (testing "neighbor is still inactive" + (is (= #{} (context/neighbors index 900000000000207008 20241216 102272007))))))) + +(deftest transitive-neighbors-test + (let [index {900000000000207008 {102272007 (time-map + 20090731 {false [100000000]} + 20020131 {true [100000000]}) + 100000000 (time-map + 20090731 {false [100001001]} + 20020131 {true [100001001]})}}] + (is (= #{100000000 100001001} (context/transitive-neighbors index 900000000000207008 20020131 102272007))))) + +(deftest transitive-neighbors-including-test + (let [index {900000000000207008 {102272007 (time-map + 20090731 {false [100000000]} + 20020131 {true [100000000]}) + 100000000 (time-map + 20090731 {false [100001001]} + 20020131 {true [100001001]})}}] + (is (= #{100000000 100001001 102272007} (context/transitive-neighbors-including index 900000000000207008 20020131 102272007))))) + +(deftest build-description-index-test + (is (= (context/build-description-index + (.stream + ["1145019\t20020131\t1\t900000000000207008\t127858008\ten\t900000000000003001\tEctopic female breast (body structure)\t900000000000020002" + "1145019\t20040731\t0\t900000000000207008\t127858008\ten\t900000000000003001\tEctopic female breast (body structure)\t900000000000020002" + "2461362011\t20040731\t1\t900000000000207008\t127858008\ten\t900000000000003001\tEctopic female breast (morphologic abnormality)\t900000000000020002" + "2461362011\t20170731\t1\t900000000000207008\t127858008\ten\t900000000000003001\tEctopic female breast (morphologic abnormality)\t900000000000448009"])) + {127858008 {20170731 {true "Ectopic female breast (morphologic abnormality)"}, + 20040731 {false "Ectopic female breast (body structure)", + true "Ectopic female breast (morphologic abnormality)"}, + 20020131 {true "Ectopic female breast (body structure)"}}}))) + +(deftest find-description-test + (let [index {127858008 (time-map + 20170731 {false "Ectopic female breast (morphologic abnormality)"}, + 20040731 {false "Ectopic female breast (body structure)", + true "Ectopic female breast (morphologic abnormality)"}, + 20020131 {true "Ectopic female breast (body structure)"})}] + + (testing "description did not exist at this time" + (is (nil? (context/find-description index 127858008 20020130)))) + + (testing "description just became active" + (is (= "Ectopic female breast (body structure)" (context/find-description index 127858008 20020131)))) + + (testing "description is still the first variant" + (is (= "Ectopic female breast (body structure)" (context/find-description index 127858008 20040730)))) + + (testing "description changed" + (is (= "Ectopic female breast (morphologic abnormality)" (context/find-description index 127858008 20040731)))) + + (testing "description is still the second variant" + (is (= "Ectopic female breast (morphologic abnormality)" (context/find-description index 127858008 20170730)))) + + (testing "description just became inactive" + (is (nil? (context/find-description index 127858008 20170731)))))) + +(deftest build-test + (testing "wrong path" + (given (context/build (path "src")) + ::anom/category := ::anom/not-found + ::anom/message := "Can't find a file starting with `Full` in `src`.")) + + (testing "correct path" + (given (context/build (path "sct-release")) + [:code-systems count] := 82 + [:code-systems 0 :fhir/type] := :fhir/CodeSystem + [:code-systems 0 :url] := #fhir/uri"http://snomed.info/sct" + [:code-systems 0 :version] := #fhir/string"http://snomed.info/sct/11000274103/version/20231115" + [:code-systems 0 :title] := #fhir/string"Germany National Extension module (core metadata concept)" + [:code-systems 0 :status] := #fhir/code"active" + [:code-systems 0 :experimental] := #fhir/boolean false + [:code-systems 0 :date] := #fhir/dateTime"2023-11-15" + [:code-systems 0 :caseSensitive] := #fhir/boolean true + [:code-systems 0 :hierarchyMeaning] := #fhir/code"is-a" + [:code-systems 0 :versionNeeded] := #fhir/boolean false + [:code-systems 0 :content] := #fhir/code"not-present" + [:code-systems 0 :filter count] := 2 + [:code-systems 0 :filter 0 :code] := #fhir/code"concept" + [:code-systems 0 :filter 0 :description] := #fhir/string"Includes all concept ids that have a transitive is-a relationship with the code provided as the value." + [:code-systems 0 :filter 0 :operator count] := 1 + [:code-systems 0 :filter 0 :operator 0] := #fhir/code"is-a" + [:code-systems 0 :filter 0 :value] := #fhir/string"A SNOMED CT code" + [:code-systems 0 :filter 1 :code] := #fhir/code"concept" + [:code-systems 0 :filter 1 :description] := #fhir/string"Includes all concept ids that have a transitive is-a relationship with the code provided as the value, excluding the code itself." + [:code-systems 0 :filter 1 :operator count] := 1 + [:code-systems 0 :filter 1 :operator 0] := #fhir/code"descendent-of" + [:code-systems 0 :filter 1 :value] := #fhir/string"A SNOMED CT code" + + [:code-systems 1 :version] := #fhir/string"http://snomed.info/sct/11000274103/version/20240115" + [:code-systems 1 :title] := #fhir/string"Germany National Extension module (core metadata concept)" + [:code-systems 1 :date] := #fhir/dateTime"2024-01-15" + + [:code-systems 2 :version] := #fhir/string"http://snomed.info/sct/11000274103/version/20240415" + [:code-systems 2 :title] := #fhir/string"Germany National Extension module (core metadata concept)" + [:code-systems 2 :date] := #fhir/dateTime"2024-04-15" + + [:code-systems 3 :version] := #fhir/string"http://snomed.info/sct/11000274103/version/20240711" + [:code-systems 3 :title] := #fhir/string"Germany National Extension module (core metadata concept)" + [:code-systems 3 :date] := #fhir/dateTime"2024-07-11" + + [:code-systems 4 :version] := #fhir/string"http://snomed.info/sct/900000000000207008/version/20020131" + [:code-systems 4 :title] := #fhir/string"SNOMED CT core module (core metadata concept)" + [:code-systems 4 :date] := #fhir/dateTime"2002-01-31" + + [:code-systems 5 :version] := #fhir/string"http://snomed.info/sct/900000000000207008/version/20020731" + [:code-systems 5 :title] := #fhir/string"SNOMED CT core module (core metadata concept)" + [:code-systems 5 :date] := #fhir/dateTime"2002-07-31" + + [:current-int-system :date] := #fhir/dateTime"2024-10-01"))) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/spec.clj new file mode 100644 index 000000000..9c7d17735 --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/spec.clj @@ -0,0 +1,41 @@ +(ns blaze.terminology-service.local.code-system.sct.spec + (:require + [clojure.spec.alpha :as s]) + (:import + [java.time LocalDate] + [java.time.format DateTimeFormatter DateTimeParseException])) + +(set! *warn-on-reflection* true) + +(s/def :sct/id + int?) + +(s/def :sct/module-id + :sct/id) + +(defn- valid-date? [date] + (try + (LocalDate/parse date DateTimeFormatter/BASIC_ISO_DATE) + (catch DateTimeParseException _))) + +(s/def :sct/time + (s/and int? (comp valid-date? str))) + +(s/def :sct/version + :sct/time) + +(s/def :sct/concept-index + map?) + +(s/def :sct/child-index + map?) + +(s/def :sct/description-index + map?) + +(s/def :sct/context + (s/keys + :req-un + [:sct/concept-index + :sct/child-index + :sct/description-index])) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/type_test.clj b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/type_test.clj new file mode 100644 index 000000000..257ae62aa --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/type_test.clj @@ -0,0 +1,13 @@ +(ns blaze.terminology-service.local.code-system.sct.type-test + (:require + [blaze.terminology-service.local.code-system.sct.type :refer [parse-sctid]] + [blaze.test-util :as tu] + [clojure.spec.test.alpha :as st] + [clojure.test :as test :refer [deftest is]])) + +(st/instrument) + +(test/use-fixtures :each tu/fixture) + +(deftest parse-sctid-test + (is (nil? (parse-sctid "0815")))) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/util_test.clj b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/util_test.clj new file mode 100644 index 000000000..e6ce9c9da --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct/util_test.clj @@ -0,0 +1,22 @@ +(ns blaze.terminology-service.local.code-system.sct.util-test + (:require + [blaze.terminology-service.local.code-system.sct.util :as u] + [blaze.test-util :as tu] + [clojure.spec.test.alpha :as st] + [clojure.test :as test :refer [deftest is testing]] + [cognitect.anomalies :as anom] + [juxt.iota :refer [given]])) + +(st/instrument) + +(test/use-fixtures :each tu/fixture) + +(deftest module-version-test + (testing "invalid" + (given (u/module-version "http://snomed.info/sct/900000000000207008/version") + ::anom/category := ::anom/incorrect + ::anom/message := "Incorrectly formatted Snomed CT version `http://snomed.info/sct/900000000000207008/version`.")) + + (testing "valid" + (is (= (u/module-version "http://snomed.info/sct/900000000000207008/version/20220228") + [900000000000207008 20220228])))) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct_spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct_spec.clj new file mode 100644 index 000000000..b227f646b --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct_spec.clj @@ -0,0 +1,10 @@ +(ns blaze.terminology-service.local.code-system.sct-spec + (:require + [blaze.path.spec] + [blaze.terminology-service.local.code-system.sct :as sct] + [clojure.spec.alpha :as s] + [cognitect.anomalies :as anom])) + +(s/fdef sct/build-context + :args (s/cat :release-path :blaze/dir) + :ret (s/or :context :sct/context :anomaly ::anom/anomaly)) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct_test.clj b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct_test.clj new file mode 100644 index 000000000..a3d4f841c --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/code_system/sct_test.clj @@ -0,0 +1,36 @@ +(ns blaze.terminology-service.local.code-system.sct-test + (:require + [blaze.db.api :as d] + [blaze.db.api-stub :refer [mem-node-config]] + [blaze.fhir.test-util] + [blaze.module.test-util :refer [with-system]] + [blaze.path :refer [path]] + [blaze.terminology-service.local.code-system.sct :as sct] + [blaze.terminology-service.local.code-system.sct-spec] + [blaze.test-util :as tu] + [clojure.spec.test.alpha :as st] + [clojure.test :as test :refer [deftest is testing]])) + +(st/instrument) + +(test/use-fixtures :each tu/fixture) + +(def config + (assoc + mem-node-config + :blaze.test/fixed-clock {} + :blaze.test/incrementing-rng-fn {})) + +(deftest ensure-code-systems-test + (with-system [{:blaze.db/keys [node] :blaze.test/keys [fixed-clock incrementing-rng-fn]} config] + (let [context {:node node :clock fixed-clock :rng-fn incrementing-rng-fn} + sct-context (sct/build-context (path "sct-release"))] + + (testing "after creation" + (let [db @(sct/ensure-code-systems context sct-context)] + + (testing "82 code systems are available" + (is (= 82 (d/type-total db "CodeSystem")))))) + + (testing "a second call does nothing" + (is (nil? @(sct/ensure-code-systems context sct-context))))))) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/code_system/spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/code_system/spec.clj new file mode 100644 index 000000000..dfcce7754 --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/code_system/spec.clj @@ -0,0 +1,13 @@ +(ns blaze.terminology-service.local.code-system.spec + (:require + [blaze.db.spec] + [blaze.terminology-service.expand-value-set.request :as-alias request] + [blaze.terminology-service.local.code-system :as-alias cs] + [blaze.terminology-service.local.code-system.sct.spec] + [clojure.spec.alpha :as s])) + +(s/def ::cs/find-context + (s/keys :req-un [:blaze.db/db] :opt [:sct/context])) + +(s/def ::cs/expand-request + (s/keys :opt-un [::request/active-only])) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/code_system/ucum_test.clj b/modules/terminology-service/test/blaze/terminology_service/local/code_system/ucum_test.clj new file mode 100644 index 000000000..06aa336f4 --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/code_system/ucum_test.clj @@ -0,0 +1,32 @@ +(ns blaze.terminology-service.local.code-system.ucum-test + (:require + [blaze.db.api :as d] + [blaze.db.api-stub :refer [mem-node-config]] + [blaze.fhir.test-util] + [blaze.module.test-util :refer [with-system]] + [blaze.terminology-service.local.code-system.ucum :as ucum] + [blaze.test-util :as tu] + [clojure.spec.test.alpha :as st] + [clojure.test :as test :refer [deftest is testing]])) + +(st/instrument) + +(test/use-fixtures :each tu/fixture) + +(def config + (assoc + mem-node-config + :blaze.test/fixed-clock {} + :blaze.test/incrementing-rng-fn {})) + +(deftest ensure-code-system-test + (with-system [{:blaze.db/keys [node] :blaze.test/keys [fixed-clock incrementing-rng-fn]} config] + (let [context {:node node :clock fixed-clock :rng-fn incrementing-rng-fn}] + (testing "after creation" + (let [db @(ucum/ensure-code-system context)] + + (testing "the code system is available" + (is (= 1 (d/type-total db "CodeSystem")))))) + + (testing "a second call does nothing" + (is (nil? @(ucum/ensure-code-system context))))))) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/code_system_spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/code_system_spec.clj new file mode 100644 index 000000000..f45c3606e --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/code_system_spec.clj @@ -0,0 +1,44 @@ +(ns blaze.terminology-service.local.code-system-spec + (:require + [blaze.async.comp :as ac] + [blaze.db.spec] + [blaze.fhir.spec.spec] + [blaze.terminology-service.code-system-validate-code :as-alias cs-validate-code] + [blaze.terminology-service.local.code-system :as cs] + [blaze.terminology-service.local.code-system.sct.context-spec] + [blaze.terminology-service.local.code-system.spec] + [blaze.terminology-service.local.priority-spec] + [blaze.terminology-service.spec] + [clojure.spec.alpha :as s])) + +(s/fdef cs/list + :args (s/cat :db :blaze.db/db) + :ret ac/completable-future?) + +(s/fdef cs/find + :args (s/cat :context ::cs/find-context :url string? :version (s/? string?)) + :ret ac/completable-future?) + +(s/fdef cs/enhance + :args (s/cat :context map? :code-system :fhir/CodeSystem) + :ret :fhir/CodeSystem) + +(s/fdef cs/validate-code + :args (s/cat :code-system :fhir/CodeSystem :request ::cs-validate-code/request) + :ret :fhir/Parameters) + +(s/fdef cs/expand-complete + :args (s/cat :request ::cs/expand-request :code-system :fhir/CodeSystem) + :ret (s/coll-of :fhir.ValueSet.expansion/contains)) + +(s/fdef cs/expand-concept + :args (s/cat :request ::cs/expand-request + :code-system :fhir/CodeSystem + :concepts (s/coll-of :fhir.ValueSet.compose.include/concept)) + :ret (s/coll-of :fhir.ValueSet.expansion/contains)) + +(s/fdef cs/expand-filter + :args (s/cat :request ::cs/expand-request + :code-system :fhir/CodeSystem + :filter :fhir.ValueSet.compose.include/filter) + :ret (s/coll-of :fhir.ValueSet.expansion/contains :kind set?)) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/code_system_test.clj b/modules/terminology-service/test/blaze/terminology_service/local/code_system_test.clj new file mode 100644 index 000000000..5e5121193 --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/code_system_test.clj @@ -0,0 +1,183 @@ +(ns blaze.terminology-service.local.code-system-test + (:require + [blaze.db.api :as d] + [blaze.db.api-stub :refer [mem-node-config with-system-data]] + [blaze.terminology-service.local.code-system :as cs] + [blaze.test-util :as tu] + [clojure.spec.test.alpha :as st] + [clojure.test :as test :refer [deftest testing]] + [juxt.iota :refer [given]])) + +(st/instrument) + +(test/use-fixtures :each tu/fixture) + +(deftest list-test + (testing "with one code system" + (with-system-data [{:blaze.db/keys [node]} mem-node-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "id-160617" + :url #fhir/uri"system-192435"}]]] + + (given @(cs/list (d/db node)) + count := 1 + [0 key] := "system-192435" + [0 val count] := 1 + [0 val 0 :id] := "id-160617"))) + + (testing "with two code system" + (testing "with same URL" + (testing "which are identical" + (testing "created in the same transaction" + (with-system-data [{:blaze.db/keys [node]} mem-node-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "id-0" + :url #fhir/uri"system-192435"}] + [:put {:fhir/type :fhir/CodeSystem :id "id-1" + :url #fhir/uri"system-192435"}]]] + + (testing "the one with the higher id comes first" + (given @(cs/list (d/db node)) + count := 1 + [0 key] := "system-192435" + [0 val count] := 2 + [0 val 0 :id] := "id-1" + [0 val 1 :id] := "id-0")))) + + (testing "created in different transactions" + (with-system-data [{:blaze.db/keys [node]} mem-node-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "id-1" + :url #fhir/uri"system-192435"}]] + [[:put {:fhir/type :fhir/CodeSystem :id "id-0" + :url #fhir/uri"system-192435"}]]] + + (testing "the newer one comes first" + (given @(cs/list (d/db node)) + count := 1 + [0 key] := "system-192435" + [0 val count] := 2 + [0 val 0 :id] := "id-0" + [0 val 1 :id] := "id-1"))))) + + (testing "with different versions" + (testing "major only" + (with-system-data [{:blaze.db/keys [node]} mem-node-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "id-0" + :url #fhir/uri"system-192435" + :version #fhir/string"2"}]] + [[:put {:fhir/type :fhir/CodeSystem :id "id-1" + :url #fhir/uri"system-192435" + :version #fhir/string"1"}]]] + + (testing "the higher version comes first" + (given @(cs/list (d/db node)) + count := 1 + [0 key] := "system-192435" + [0 val count] := 2 + [0 val 0 :id] := "id-0" + [0 val 1 :id] := "id-1")))) + + (testing "same major but different numeric minor" + (with-system-data [{:blaze.db/keys [node]} mem-node-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "id-0" + :url #fhir/uri"system-192435" + :version #fhir/string"1.10"}]] + [[:put {:fhir/type :fhir/CodeSystem :id "id-1" + :url #fhir/uri"system-192435" + :version #fhir/string"1.2"}]]] + + (testing "the higher version comes first" + (given @(cs/list (d/db node)) + count := 1 + [0 key] := "system-192435" + [0 val count] := 2 + [0 val 0 :id] := "id-0" + [0 val 1 :id] := "id-1")))) + + (testing "same major but different mixed minor" + (with-system-data [{:blaze.db/keys [node]} mem-node-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "id-0" + :url #fhir/uri"system-192435" + :version #fhir/string"1.a"}]] + [[:put {:fhir/type :fhir/CodeSystem :id "id-1" + :url #fhir/uri"system-192435" + :version #fhir/string"1.2"}]]] + + (testing "the alpha version comes first" + (given @(cs/list (d/db node)) + count := 1 + [0 key] := "system-192435" + [0 val count] := 2 + [0 val 0 :id] := "id-0" + [0 val 1 :id] := "id-1")))) + + (testing "major and major.minor" + (with-system-data [{:blaze.db/keys [node]} mem-node-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "id-0" + :url #fhir/uri"system-192435" + :version #fhir/string"2"}]] + [[:put {:fhir/type :fhir/CodeSystem :id "id-1" + :url #fhir/uri"system-192435" + :version #fhir/string"1.2"}]]] + + (testing "the alpha version comes first" + (given @(cs/list (d/db node)) + count := 1 + [0 key] := "system-192435" + [0 val count] := 2 + [0 val 0 :id] := "id-0" + [0 val 1 :id] := "id-1")))) + + (testing "active version comes before no version" + (with-system-data [{:blaze.db/keys [node]} mem-node-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "id-0" + :url #fhir/uri"system-192435" + :status #fhir/code"active" + :version #fhir/string"1.1"}]] + [[:put {:fhir/type :fhir/CodeSystem :id "id-1" + :url #fhir/uri"system-192435" + :version #fhir/string"1.2"}]]] + + (testing "the alpha version comes first" + (given @(cs/list (d/db node)) + count := 1 + [0 key] := "system-192435" + [0 val count] := 2 + [0 val 0 :id] := "id-0" + [0 val 1 :id] := "id-1")))) + + (testing "active version comes before draft version" + (with-system-data [{:blaze.db/keys [node]} mem-node-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "id-0" + :url #fhir/uri"system-192435" + :version #fhir/string"1.1" + :status #fhir/code"active"}]] + [[:put {:fhir/type :fhir/CodeSystem :id "id-1" + :url #fhir/uri"system-192435" + :version #fhir/string"1.2" + :status #fhir/code"draft"}]]] + + (testing "the alpha version comes first" + (given @(cs/list (d/db node)) + count := 1 + [0 key] := "system-192435" + [0 val count] := 2 + [0 val 0 :id] := "id-0" + [0 val 1 :id] := "id-1")))) + + (testing "draft version comes before retired version" + (with-system-data [{:blaze.db/keys [node]} mem-node-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "id-0" + :url #fhir/uri"system-192435" + :version #fhir/string"1.1" + :status #fhir/code"draft"}]] + [[:put {:fhir/type :fhir/CodeSystem :id "id-1" + :url #fhir/uri"system-192435" + :version #fhir/string"1.2" + :status #fhir/code"retired"}]]] + + (testing "the alpha version comes first" + (given @(cs/list (d/db node)) + count := 1 + [0 key] := "system-192435" + [0 val count] := 2 + [0 val 0 :id] := "id-0" + [0 val 1 :id] := "id-1")))))))) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/concept_spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/concept_spec.clj deleted file mode 100644 index b7fd963d2..000000000 --- a/modules/terminology-service/test/blaze/terminology_service/local/concept_spec.clj +++ /dev/null @@ -1,10 +0,0 @@ -(ns blaze.terminology-service.local.concept-spec - (:require - [blaze.fhir.spec.spec] - [blaze.terminology-service.local.concept :as concept] - [clojure.spec.alpha :as s])) - -(s/fdef concept/expand-code-system - :args (s/cat :code-system :fhir/CodeSystem - :value-set-concepts (s/coll-of :fhir.ValueSet.compose.include/concept)) - :ret (s/coll-of :fhir.ValueSet.expansion/contains)) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/filter/is_a_test.clj b/modules/terminology-service/test/blaze/terminology_service/local/filter/is_a_test.clj deleted file mode 100644 index 8b08e4109..000000000 --- a/modules/terminology-service/test/blaze/terminology_service/local/filter/is_a_test.clj +++ /dev/null @@ -1,46 +0,0 @@ -(ns blaze.terminology-service.local.filter.is-a-test - (:require - [blaze.fhir.test-util] - [blaze.terminology-service.local.filter.core :as core] - [blaze.terminology-service.local.filter.is-a] - [blaze.terminology-service.local.graph-spec] - [blaze.test-util :as tu] - [clojure.spec.test.alpha :as st] - [clojure.test :as test :refer [deftest is]] - [taoensso.timbre :as log])) - -(st/instrument) -(log/set-min-level! :trace) - -(test/use-fixtures :each tu/fixture) - -(deftest filter-concepts-test - (is (= (core/filter-concepts - {:fhir/type :fhir.ValueSet.compose.include/filter - :property #fhir/code"concept" - :op #fhir/code"is-a" - :value #fhir/string"code-182832"} - [{:fhir/type :fhir.CodeSystem/concept - :code #fhir/code"code-182832" - :display #fhir/string"display-182717"} - {:fhir/type :fhir.CodeSystem/concept - :code #fhir/code"code-191445" - :display #fhir/string"display-191448" - :property - [{:fhir/type :fhir.CodeSystem.concept/property - :code #fhir/code"parent" - :value #fhir/code"code-182832"}]}]) - [{:fhir/type :fhir.CodeSystem/concept - :code #fhir/code"code-191445" - :display #fhir/string"display-191448" - :property - [{:fhir/type :fhir.CodeSystem.concept/property - :code #fhir/code"parent" - :value #fhir/code"code-182832"}]} - {:fhir/type :fhir.CodeSystem/concept - :code #fhir/code"code-182832" - :display #fhir/string"display-182717" - :property - [{:fhir/type :fhir.CodeSystem.concept/property - :code #fhir/code"child" - :value #fhir/code"code-191445"}]}]))) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/filter_spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/filter_spec.clj deleted file mode 100644 index 80ee0030f..000000000 --- a/modules/terminology-service/test/blaze/terminology_service/local/filter_spec.clj +++ /dev/null @@ -1,10 +0,0 @@ -(ns blaze.terminology-service.local.filter-spec - (:require - [blaze.fhir.spec.spec] - [blaze.terminology-service.local.filter :as filter] - [clojure.spec.alpha :as s])) - -(s/fdef filter/expand-code-system - :args (s/cat :code-system :fhir/CodeSystem - :filters (s/coll-of :fhir.ValueSet.compose.include/filter)) - :ret (s/coll-of :fhir.ValueSet.expansion/contains)) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/priority_spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/priority_spec.clj new file mode 100644 index 000000000..737b962b6 --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/priority_spec.clj @@ -0,0 +1,9 @@ +(ns blaze.terminology-service.local.priority-spec + (:require + [blaze.fhir.spec.spec] + [blaze.terminology-service.local.priority :as priority] + [clojure.spec.alpha :as s])) + +(s/fdef priority/sort-by-priority + :args (s/cat :resources (s/coll-of (s/or :code-system :fhir/CodeSystem :value-set :fhir/ValueSet))) + :ret (s/coll-of (s/or :code-system :fhir/CodeSystem :value-set :fhir/ValueSet))) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/value_set/expand/spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/value_set/expand/spec.clj new file mode 100644 index 000000000..711c96fa2 --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/value_set/expand/spec.clj @@ -0,0 +1,9 @@ +(ns blaze.terminology-service.local.value-set.expand.spec + (:require + [blaze.terminology-service.expand-value-set :as-alias expand-vs] + [blaze.terminology-service.local.value-set.expand :as-alias vs-expand] + [blaze.terminology-service.spec] + [clojure.spec.alpha :as s])) + +(s/def ::vs-expand/context + (s/keys :req-un [::expand-vs/request])) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/value_set/expand_spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/value_set/expand_spec.clj new file mode 100644 index 000000000..4606d2344 --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/value_set/expand_spec.clj @@ -0,0 +1,11 @@ +(ns blaze.terminology-service.local.value-set.expand-spec + (:require + [blaze.async.comp :as ac] + [blaze.fhir.spec.spec] + [blaze.terminology-service.local.value-set.expand :as vs-expand] + [blaze.terminology-service.local.value-set.expand.spec] + [clojure.spec.alpha :as s])) + +(s/fdef vs-expand/expand-value-set + :args (s/cat :context ::vs-expand/context :value-set :fhir/ValueSet) + :ret ac/completable-future?) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/value_set/validate_code/spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/value_set/validate_code/spec.clj new file mode 100644 index 000000000..154f99ee5 --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/value_set/validate_code/spec.clj @@ -0,0 +1,9 @@ +(ns blaze.terminology-service.local.value-set.validate-code.spec + (:require + [blaze.terminology-service.local.value-set.validate-code :as-alias l-vs-validate-code] + [blaze.terminology-service.spec] + [blaze.terminology-service.value-set-validate-code :as-alias vs-validate-code] + [clojure.spec.alpha :as s])) + +(s/def ::l-vs-validate-code/context + (s/keys :req-un [::vs-validate-code/request])) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/value_set/validate_code_spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/value_set/validate_code_spec.clj new file mode 100644 index 000000000..090a22fa5 --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/value_set/validate_code_spec.clj @@ -0,0 +1,11 @@ +(ns blaze.terminology-service.local.value-set.validate-code-spec + (:require + [blaze.async.comp :as ac] + [blaze.fhir.spec.spec] + [blaze.terminology-service.local.value-set.validate-code :as vs-validate-code] + [blaze.terminology-service.local.value-set.validate-code.spec] + [clojure.spec.alpha :as s])) + +(s/fdef vs-validate-code/validate-code + :args (s/cat :context ::vs-validate-code/context :value-set :fhir/ValueSet) + :ret ac/completable-future?) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/value_set_spec.clj b/modules/terminology-service/test/blaze/terminology_service/local/value_set_spec.clj new file mode 100644 index 000000000..0e7001194 --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/value_set_spec.clj @@ -0,0 +1,13 @@ +(ns blaze.terminology-service.local.value-set-spec + (:require + [blaze.async.comp :as ac] + [blaze.db.spec] + [blaze.terminology-service.local.priority-spec] + [blaze.terminology-service.local.value-set :as vs] + [blaze.terminology-service.local.value-set.expand-spec] + [blaze.terminology-service.local.value-set.validate-code-spec] + [clojure.spec.alpha :as s])) + +(s/fdef vs/find + :args (s/cat :db :blaze.db/db :url string? :version (s/? string?)) + :ret ac/completable-future?) diff --git a/modules/terminology-service/test/blaze/terminology_service/local/version_test.clj b/modules/terminology-service/test/blaze/terminology_service/local/version_test.clj new file mode 100644 index 000000000..e166d13b9 --- /dev/null +++ b/modules/terminology-service/test/blaze/terminology_service/local/version_test.clj @@ -0,0 +1,23 @@ +(ns blaze.terminology-service.local.version-test + (:require + [blaze.terminology-service.local.version :as version] + [clojure.test :refer [deftest is]])) + +(deftest cmp-test + (is (zero? (version/cmp nil nil))) + (is (= -1 (version/cmp nil ""))) + (is (= 1 (version/cmp "" nil))) + (is (zero? (version/cmp "" ""))) + (is (= -1 (version/cmp "1" "2"))) + (is (zero? (version/cmp "1" "1"))) + (is (= 1 (version/cmp "2" "1"))) + (is (= -1 (version/cmp "a" "b"))) + (is (zero? (version/cmp "a" "a"))) + (is (= 1 (version/cmp "b" "a"))) + (is (= -1 (version/cmp "1" "a"))) + (is (= 1 (version/cmp "a" "1"))) + (is (= -1 (version/cmp "1.2" "1.10"))) + (is (zero? (version/cmp "1.2" "1.2"))) + (is (= 1 (version/cmp "1.10" "1.2"))) + (is (= -1 (version/cmp "1" "1.1"))) + (is (= 1 (version/cmp "1.1" "1")))) diff --git a/modules/terminology-service/test/blaze/terminology_service/local_test.clj b/modules/terminology-service/test/blaze/terminology_service/local_test.clj index 708cc2a67..3c81bc55c 100644 --- a/modules/terminology-service/test/blaze/terminology_service/local_test.clj +++ b/modules/terminology-service/test/blaze/terminology_service/local_test.clj @@ -1,19 +1,22 @@ (ns blaze.terminology-service.local-test (:require + [blaze.coll.core :as coll] + [blaze.db.api :as d] [blaze.db.api-stub :refer [mem-node-config with-system-data]] [blaze.db.node :refer [node?]] [blaze.fhir.spec.type :as type] [blaze.fhir.test-util] [blaze.module.test-util :refer [given-failed-future with-system]] + [blaze.path :refer [path]] [blaze.terminology-service :as ts] [blaze.terminology-service-spec] [blaze.terminology-service.local] - [blaze.terminology-service.local.concept-spec] - [blaze.terminology-service.local.filter-spec] + [blaze.terminology-service.local.code-system-spec] + [blaze.terminology-service.local.value-set-spec] [blaze.test-util :as tu :refer [given-thrown]] [clojure.spec.alpha :as s] [clojure.spec.test.alpha :as st] - [clojure.test :as test :refer [deftest testing]] + [clojure.test :as test :refer [deftest is testing]] [cognitect.anomalies :as anom] [integrant.core :as ig] [java-time.api :as time] @@ -38,38 +41,516 @@ :key := ::ts/local :reason := ::ig/build-failed-spec [:cause-data ::s/problems 0 :pred] := `(fn ~'[%] (contains? ~'% :node)) - [:cause-data ::s/problems 1 :pred] := `(fn ~'[%] (contains? ~'% :clock)))) + [:cause-data ::s/problems 1 :pred] := `(fn ~'[%] (contains? ~'% :clock)) + [:cause-data ::s/problems 2 :pred] := `(fn ~'[%] (contains? ~'% :rng-fn)))) (testing "invalid node" (given-thrown (ig/init {::ts/local {:node ::invalid}}) :key := ::ts/local :reason := ::ig/build-failed-spec [:cause-data ::s/problems 0 :pred] := `(fn ~'[%] (contains? ~'% :clock)) - [:cause-data ::s/problems 1 :via] := [:blaze.db/node] - [:cause-data ::s/problems 1 :pred] := `node? - [:cause-data ::s/problems 1 :val] := ::invalid)) + [:cause-data ::s/problems 1 :pred] := `(fn ~'[%] (contains? ~'% :rng-fn)) + [:cause-data ::s/problems 2 :via] := [:blaze.db/node] + [:cause-data ::s/problems 2 :pred] := `node? + [:cause-data ::s/problems 2 :val] := ::invalid)) (testing "invalid clock" (given-thrown (ig/init {::ts/local {:clock ::invalid}}) :key := ::ts/local :reason := ::ig/build-failed-spec [:cause-data ::s/problems 0 :pred] := `(fn ~'[%] (contains? ~'% :node)) - [:cause-data ::s/problems 1 :via] := [:blaze/clock] - [:cause-data ::s/problems 1 :pred] := `time/clock? - [:cause-data ::s/problems 1 :val] := ::invalid))) + [:cause-data ::s/problems 1 :pred] := `(fn ~'[%] (contains? ~'% :rng-fn)) + [:cause-data ::s/problems 2 :via] := [:blaze/clock] + [:cause-data ::s/problems 2 :pred] := `time/clock? + [:cause-data ::s/problems 2 :val] := ::invalid))) (def config (assoc mem-node-config ::ts/local {:node (ig/ref :blaze.db/node) - :clock (ig/ref :blaze.test/fixed-clock)} - :blaze.test/fixed-clock {})) + :clock (ig/ref :blaze.test/fixed-clock) + :rng-fn (ig/ref :blaze.test/fixed-rng-fn)} + :blaze.test/fixed-clock {} + :blaze.test/fixed-rng-fn {})) + +(def sct-config + (assoc + mem-node-config + ::ts/local + {:node (ig/ref :blaze.db/node) + :clock (ig/ref :blaze.test/fixed-clock) + :rng-fn (ig/ref :blaze.test/incrementing-rng-fn) + :sct-release-path (path "sct-release")} + :blaze.test/fixed-clock {} + :blaze.test/incrementing-rng-fn {})) + +(def ucum-config + (assoc + mem-node-config + ::ts/local + {:node (ig/ref :blaze.db/node) + :clock (ig/ref :blaze.test/fixed-clock) + :rng-fn (ig/ref :blaze.test/fixed-rng-fn) + :enable-ucum true} + :blaze.test/fixed-clock {} + :blaze.test/fixed-rng-fn {})) (defn- uuid-urn? [s] (some? (re-matches #"urn:uuid:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}" s))) -(deftest terminology-service-test-fails +(defn- sct-id [node] + (:id (coll/first (d/type-query (d/db node) "CodeSystem" [["url" "http://snomed.info/sct"] ["version" "http://snomed.info/sct/900000000000207008/version/20241001"]])))) + +(defn- ucum-id [node] + (:id (coll/first (d/type-query (d/db node) "CodeSystem" [["url" "http://unitsofmeasure.org"]])))) + +(defn- sort-expansion [value-set] + (update-in value-set [:expansion :contains] (partial sort-by (comp type/value :code)))) + +(deftest code-system-test + (testing "with no code system" + (with-system [{ts ::ts/local} config] + (is (empty? @(ts/code-systems ts))))) + + (testing "with one code system" + (testing "without version" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-192435" + :content #fhir/code"complete"}]]] + + (given @(ts/code-systems ts) + count := 1 + [0 :uri] := #fhir/canonical"system-192435" + [0 :version count] := 1 + [0 :version 0 :code] := nil + [0 :version 0 :isDefault] := #fhir/boolean true))) + + (testing "with version" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-192435" + :version #fhir/string"version-121451" + :content #fhir/code"complete"}]]] + + (given @(ts/code-systems ts) + [count] := 1 + [0 :uri] := #fhir/canonical"system-192435" + [0 :version count] := 1 + [0 :version 0 :code] := #fhir/string"version-121451" + [0 :version 0 :isDefault] := #fhir/boolean true))) + + (testing "with two versions" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-192435" + :version #fhir/string"1.2.0" + :content #fhir/code"complete"}] + [:put {:fhir/type :fhir/CodeSystem :id "1" + :url #fhir/uri"system-192435" + :version #fhir/string"1.10.0" + :content #fhir/code"complete"}]]] + + (given @(ts/code-systems ts) + [count] := 1 + [0 :uri] := #fhir/canonical"system-192435" + [0 :version count] := 2 + [0 :version 0 :code] := #fhir/string"1.10.0" + [0 :version 0 :isDefault] := #fhir/boolean true + [0 :version 1 :code] := #fhir/string"1.2.0" + [0 :version 1 :isDefault] := #fhir/boolean false)) + + (testing "but the newest as draft" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-192435" + :version #fhir/string"1.2.0" + :status #fhir/code"active" + :content #fhir/code"complete"}] + [:put {:fhir/type :fhir/CodeSystem :id "1" + :url #fhir/uri"system-192435" + :version #fhir/string"1.10.0" + :status #fhir/code"draft" + :content #fhir/code"complete"}]]] + + (given @(ts/code-systems ts) + [count] := 1 + [0 :uri] := #fhir/canonical"system-192435" + [0 :version count] := 2 + [0 :version 0 :code] := #fhir/string"1.2.0" + [0 :version 0 :isDefault] := #fhir/boolean true + [0 :version 1 :code] := #fhir/string"1.10.0" + [0 :version 1 :isDefault] := #fhir/boolean false))))) + + (testing "with two code systems" + (testing "without version" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-192435" + :content #fhir/code"complete"}] + [:put {:fhir/type :fhir/CodeSystem :id "1" + :url #fhir/uri"system-174248" + :content #fhir/code"complete"}]]] + + (given @(ts/code-systems ts) + count := 2 + [0 :uri] := #fhir/canonical"system-192435" + [0 :version count] := 1 + [0 :version 0 :code] := nil + [0 :version 0 :isDefault] := #fhir/boolean true + [1 :uri] := #fhir/canonical"system-174248" + [1 :version count] := 1 + [1 :version 0 :code] := nil + [1 :version 0 :isDefault] := #fhir/boolean true))))) + +(deftest code-system-validate-code-fails-test + (with-system [{ts ::ts/local} config] + (testing "missing id or url" + (given-failed-future (ts/code-system-validate-code ts {}) + ::anom/category := ::anom/incorrect + ::anom/message := "Missing ID or URL.")) + + (testing "not found" + (testing "id" + (given-failed-future (ts/code-system-validate-code ts {:id "id-175736"}) + ::anom/category := ::anom/not-found + ::anom/message := "The code system with id `id-175736` was not found." + :t := 0)) + + (testing "url" + (given-failed-future (ts/code-system-validate-code ts {:url "url-194718"}) + ::anom/category := ::anom/not-found + ::anom/message := "The code system with URL `url-194718` was not found." + :t := 0)) + + (testing "url and version" + (given-failed-future (ts/code-system-validate-code ts {:url "url-144258" :version "version-144244"}) + ::anom/category := ::anom/not-found + ::anom/message := "The code system with URL `url-144258` and version `version-144244` was not found." + :t := 0))))) + +(deftest code-system-validate-code-test + (testing "with id or url" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}]]] + + (testing "existing code" + (let [request {:code "code-115927"}] + (doseq [request (mapv (partial merge request) [{:url "system-115910"} {:id "0"}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910")))) + + (testing "non-existing code" + (let [request {:code "code-153948"}] + (doseq [request (mapv (partial merge request) [{:url "system-115910"} {:id "0"}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The provided code `code-153948` was not found in the code system with URL `system-115910`.")))) + + (testing "existing coding" + (let [request {:coding #fhir/Coding{:system #fhir/uri"system-115910" :code #fhir/code"code-115927"}}] + (doseq [request (mapv (partial merge request) [{:url "system-115910"} {:id "0"}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910")))) + + (testing "non-existing coding" + (testing "with non-existing system" + (let [request {:coding #fhir/Coding{:system #fhir/uri"system-170454" :code #fhir/code"code-115927"}}] + (doseq [request (mapv (partial merge request) [{:url "system-115910"} {:id "0"}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The system of the provided coding `system-170454` does not match the code system with URL `system-115910`.")))) + + (testing "with non-existing code" + (let [request {:coding #fhir/Coding{:system #fhir/uri"system-115910" :code #fhir/code"code-153948"}}] + (doseq [request (mapv (partial merge request) [{:url "system-115910"} {:id "0"}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The provided code `code-153948` was not found in the code system with URL `system-115910`."))))))) + + (testing "with non-complete code system" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"not-present"}]]] + + (given @(ts/code-system-validate-code ts {:url "system-115910" :code "code-115927"}) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"Can't use the code system with URL `system-115910` because it is not complete. It's content is `not-present`."))) + + (testing "with code-system" + (with-system [{ts ::ts/local} config] + (testing "existing code" + (let [request + {:code-system + {:fhir/type :fhir/CodeSystem + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]} + :code "code-115927"}] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927")) + + (testing "with url" + (let [request + {:code-system + {:fhir/type :fhir/CodeSystem + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]} + :code "code-115927"}] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910")))) + + (testing "non-existing code" + (let [request + {:code-system + {:fhir/type :fhir/CodeSystem + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]} + :code "code-153948"}] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The provided code `code-153948` was not found in the provided code system.")) + + (testing "with url" + (let [request + {:code-system + {:fhir/type :fhir/CodeSystem + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]} + :code "code-153948"}] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The provided code `code-153948` was not found in the code system with URL `system-115910`.")))) + + (testing "existing coding" + (let [request + {:code-system + {:fhir/type :fhir/CodeSystem + :url #fhir/uri"system-172718" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-172653"}]} + :coding #fhir/Coding{:system #fhir/uri"system-172718" :code #fhir/code"code-172653"}}] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-172653" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-172718")))))) + +(deftest code-system-validate-code-sct-test + (with-system [{ts ::ts/local :blaze.db/keys [node]} sct-config] + (testing "existing code" + (let [request {:code "441510007"}] + (doseq [request (mapv (partial merge request) + [{:url "http://snomed.info/sct"} + {:url "http://snomed.info/sct" + :version "http://snomed.info/sct/900000000000207008"} + {:url "http://snomed.info/sct" + :version "http://snomed.info/sct/900000000000207008/version/20241001"} + {:id (sct-id node)}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 5 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"441510007" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"http://snomed.info/sct" + [:parameter 3 :name] := #fhir/string"version" + [:parameter 3 :value] := #fhir/string"http://snomed.info/sct/900000000000207008/version/20241001" + [:parameter 4 :name] := #fhir/string"display" + [:parameter 4 :value] := #fhir/string"Blood specimen with anticoagulant (specimen)")))) + + (testing "non-existing code" + (doseq [request [{:code "non-existing"} {:code "0815"} {:code "441510008"}] + request (mapv (partial merge request) [{:url "http://snomed.info/sct"} {:id (sct-id node)}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := (type/string (format "The provided code `%s` was not found in the code system with URL `http://snomed.info/sct`." (:code request)))))) + + (testing "existing coding" + (let [request {:coding #fhir/Coding{:system #fhir/uri"http://snomed.info/sct" :code #fhir/code"441510007"}}] + (doseq [request (mapv (partial merge request) [{:url "http://snomed.info/sct"} {:id (sct-id node)}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 5 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"441510007" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"http://snomed.info/sct" + [:parameter 3 :name] := #fhir/string"version" + [:parameter 3 :value] := #fhir/string"http://snomed.info/sct/900000000000207008/version/20241001" + [:parameter 4 :name] := #fhir/string"display" + [:parameter 4 :value] := #fhir/string"Blood specimen with anticoagulant (specimen)")))) + + (testing "non-existing coding" + (let [request {:coding #fhir/Coding{:system #fhir/uri"http://snomed.info/sct" :code #fhir/code"non-existing"}}] + (doseq [request (mapv (partial merge request) [{:url "http://snomed.info/sct"} {:id (sct-id node)}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The provided code `non-existing` was not found in the code system with URL `http://snomed.info/sct`.")))) + + (testing "coding with non-matching code system" + (let [request {:coding #fhir/Coding{:system #fhir/uri"system-115433" :code #fhir/code"code-115438"}}] + (doseq [request (mapv (partial merge request) [{:url "http://snomed.info/sct"} {:id (sct-id node)}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The system of the provided coding `system-115433` does not match the code system with URL `http://snomed.info/sct`.")))))) + +(deftest code-system-validate-code-ucum-test + (testing "with id or url" + (with-system [{ts ::ts/local :blaze.db/keys [node]} ucum-config] + (testing "existing code" + (let [request {:code "s"}] + (doseq [request (mapv (partial merge request) [{:url "http://unitsofmeasure.org"} {:id (ucum-id node)}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 4 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"s" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"http://unitsofmeasure.org" + [:parameter 3 :name] := #fhir/string"version" + [:parameter 3 :value] := #fhir/string"2013.10.21")))) + + (testing "non-existing code" + (let [request {:code "non-existing"}] + (doseq [request (mapv (partial merge request) [{:url "http://unitsofmeasure.org"} {:id (ucum-id node)}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The provided code `non-existing` was not found in the code system with URL `http://unitsofmeasure.org`.")))) + + (testing "existing coding" + (let [request {:coding #fhir/Coding{:system #fhir/uri"http://unitsofmeasure.org" :code #fhir/code"km"}}] + (doseq [request (mapv (partial merge request) [{:url "http://unitsofmeasure.org"} {:id (ucum-id node)}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 4 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"km" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"http://unitsofmeasure.org" + [:parameter 3 :name] := #fhir/string"version" + [:parameter 3 :value] := #fhir/string"2013.10.21")))) + + (testing "non-existing coding" + (testing "with non-existing system" + (let [request {:coding #fhir/Coding{:system #fhir/uri"system-170454" :code #fhir/code"code-115927"}}] + (doseq [request (mapv (partial merge request) [{:url "http://unitsofmeasure.org"} {:id (ucum-id node)}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The system of the provided coding `system-170454` does not match the code system with URL `http://unitsofmeasure.org`.")))) + + (testing "with non-existing code" + (let [request {:coding #fhir/Coding{:system #fhir/uri"http://unitsofmeasure.org" :code #fhir/code"non-existing"}}] + (doseq [request (mapv (partial merge request) [{:url "http://unitsofmeasure.org"} {:id (ucum-id node)}])] + (given @(ts/code-system-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The provided code `non-existing` was not found in the code system with URL `http://unitsofmeasure.org`.")))))))) + +(deftest expand-value-set-fails-test (with-system [{ts ::ts/local} config] (testing "missing id or url" (given-failed-future (ts/expand-value-set ts {}) @@ -86,13 +567,13 @@ (testing "url" (given-failed-future (ts/expand-value-set ts {:url "url-194718"}) ::anom/category := ::anom/not-found - ::anom/message := "The value set with URL `url-194718` was not found." + ::anom/message := "The value set `url-194718` was not found." :t := 0)) (testing "url and version" (given-failed-future (ts/expand-value-set ts {:url "url-144258" :value-set-version "version-144244"}) ::anom/category := ::anom/not-found - ::anom/message := "The value set with URL `url-144258` and version `version-144244` was not found." + ::anom/message := "The value set `url-144258` and version `version-144244` was not found." :t := 0)))) (with-system-data [{ts ::ts/local} config] @@ -116,7 +597,7 @@ (given-failed-future (ts/expand-value-set ts {:url "value-set-135750"}) ::anom/category := ::anom/incorrect - ::anom/message := "Error while expanding the value set with URL `value-set-135750`. Missing system or valueSet." + ::anom/message := "Error while expanding the value set `value-set-135750`. Missing system or valueSet." :t := 1))) (testing "code system not found" @@ -131,7 +612,7 @@ (given-failed-future (ts/expand-value-set ts {:url "value-set-135750"}) ::anom/category := ::anom/not-found - ::anom/message := "Error while expanding the value set with URL `value-set-135750`. The code system with URL `system-115910` was not found." + ::anom/message := "Error while expanding the value set `value-set-135750`. The code system with URL `system-115910` was not found." :t := 1)) (testing "with version" @@ -147,7 +628,7 @@ (given-failed-future (ts/expand-value-set ts {:url "value-set-135750"}) ::anom/category := ::anom/not-found - ::anom/message := "Error while expanding the value set with URL `value-set-135750`. The code system with URL `system-115910` and version `version-093818` was not found." + ::anom/message := "Error while expanding the value set `value-set-135750`. The code system with URL `system-115910` and version `version-093818` was not found." :t := 1)) (testing "special * value is unsupported" @@ -163,7 +644,7 @@ (given-failed-future (ts/expand-value-set ts {:url "value-set-135750"}) ::anom/category := ::anom/unsupported - ::anom/message := "Error while expanding the value set with URL `value-set-135750`. Expanding the code system with URL `system-115910` in all versions is unsupported." + ::anom/message := "Error while expanding the value set `value-set-135750`. Expanding the code system with URL `system-115910` in all versions is unsupported." :t := 1))))) (testing "fails with value set ref and system" @@ -191,7 +672,7 @@ (given-failed-future (ts/expand-value-set ts {:url "value-set-161213"}) ::anom/category := ::anom/incorrect - ::anom/message := "Error while expanding the value set with URL `value-set-161213`. Incorrect combination of system and valueSet." + ::anom/message := "Error while expanding the value set `value-set-161213`. Incorrect combination of system and valueSet." :t := 1))) (testing "fails with concept and filter" @@ -219,7 +700,7 @@ (given-failed-future (ts/expand-value-set ts {:url "value-set-161213"}) ::anom/category := ::anom/incorrect - ::anom/message := "Error while expanding the value set with URL `value-set-161213`. Incorrect combination of concept and filter." + ::anom/message := "Error while expanding the value set `value-set-161213`. Incorrect combination of concept and filter." :t := 1))) (testing "fails on non-complete code system" @@ -230,21 +711,55 @@ :concept [{:fhir/type :fhir.CodeSystem/concept :code #fhir/code"code-180828"}]}] - [:put {:fhir/type :fhir/ValueSet :id "1" + [:put {:fhir/type :fhir/ValueSet :id "0" :url #fhir/uri"value-set-161213" :compose {:fhir/type :fhir.ValueSet/compose :include [{:fhir/type :fhir.ValueSet.compose/include - :system #fhir/uri"system-180814"}]}}]]] + :system #fhir/uri"system-180814"}]}}] + [:put {:fhir/type :fhir/ValueSet :id "1" + :url #fhir/uri"value-set-170447" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-180814" + :concept + [{:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"code-163824"}]}]}}] + [:put {:fhir/type :fhir/ValueSet :id "2" + :url #fhir/uri"value-set-170829" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-180814" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"property-160019" + :op #fhir/code"op-unknown-160011" + :value #fhir/string"value-160032"}]}]}}]]] (given-failed-future (ts/expand-value-set ts {:url "value-set-161213"}) ::anom/category := ::anom/unsupported - ::anom/message := "Error while expanding the value set with URL `value-set-161213`. Can't expand the code system with URL `system-180814` because it is not complete. It's content is `example`." + ::anom/message := "Error while expanding the value set `value-set-161213`. Can't expand the code system with URL `system-180814` because it is not complete. It's content is `example`." + :http/status := 409 + :t := 1) + + (given-failed-future (ts/expand-value-set ts {:url "value-set-170447"}) + ::anom/category := ::anom/unsupported + ::anom/message := "Error while expanding the value set `value-set-170447`. Can't expand the code system with URL `system-180814` because it is not complete. It's content is `example`." + :http/status := 409 + :t := 1) + + (given-failed-future (ts/expand-value-set ts {:url "value-set-170829"}) + ::anom/category := ::anom/unsupported + ::anom/message := "Error while expanding the value set `value-set-170829`. Can't expand the code system with URL `system-180814` because it is not complete. It's content is `example`." :http/status := 409 :t := 1)))) -(deftest terminology-service-test-existing-expansion +(deftest expand-value-set-existing-expansion-test (testing "retains already existing expansion" (with-system-data [{ts ::ts/local} config] [[[:put {:fhir/type :fhir/ValueSet :id "id-144002" @@ -276,7 +791,7 @@ [:expansion :contains 0 :code] := #fhir/code"code-115927" [:expansion :contains 0 :display] := #fhir/string"display-115927"))))) -(deftest terminology-service-test-include-concept +(deftest expand-value-set-include-concept-test (testing "with one code system" (testing "with one code" (with-system-data [{ts ::ts/local} config] @@ -302,41 +817,133 @@ [:expansion :contains 0 :code] := #fhir/code"code-115927" [:expansion :contains 0 #(contains? % :display)] := false))) - (testing "with version" - (with-system-data [{ts ::ts/local} config] - [[[:put {:fhir/type :fhir/CodeSystem :id "0" - :url #fhir/uri"system-115910" - :version "1.0.0" - :content #fhir/code"complete" - :concept - [{:fhir/type :fhir.CodeSystem/concept - :code #fhir/code"code-115927"}]}] - [:put {:fhir/type :fhir/CodeSystem :id "1" - :url #fhir/uri"system-115910" - :version "2.0.0" - :content #fhir/code"complete" - :concept - [{:fhir/type :fhir.CodeSystem/concept - :code #fhir/code"code-092722"}]}] - [:put {:fhir/type :fhir/ValueSet :id "0" - :url #fhir/uri"value-set-135750" - :compose - {:fhir/type :fhir.ValueSet/compose - :include - [{:fhir/type :fhir.ValueSet.compose/include - :system #fhir/uri"system-115910" - :version "2.0.0"}]}}]]] - - (doseq [request [{:url "value-set-135750"} {:id "0"}]] - (given @(ts/expand-value-set ts request) - :fhir/type := :fhir/ValueSet - [:expansion :parameter count] := 1 - [:expansion :parameter 0 :name] := #fhir/string"version" - [:expansion :parameter 0 :value] := #fhir/uri"system-115910|2.0.0" - [:expansion :contains count] := 1 - [:expansion :contains 0 :system] := #fhir/uri"system-115910" - [:expansion :contains 0 :code] := #fhir/code"code-092722" - [:expansion :contains 0 #(contains? % :display)] := false))))) + (testing "with versions" + (testing "choosing an explicit version" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :version "1.0.0" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}] + [:put {:fhir/type :fhir/CodeSystem :id "1" + :url #fhir/uri"system-115910" + :version "2.0.0" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-092722"}]}] + [:put {:fhir/type :fhir/CodeSystem :id "2" + :url #fhir/uri"system-115910" + :version "3.0.0" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115357"}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"value-set-135750" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910" + :version "2.0.0"}]}}]]] + + (doseq [request [{:url "value-set-135750"} {:id "0"}]] + (given @(ts/expand-value-set ts request) + :fhir/type := :fhir/ValueSet + [:expansion :parameter count] := 1 + [:expansion :parameter 0 :name] := #fhir/string"version" + [:expansion :parameter 0 :value] := #fhir/uri"system-115910|2.0.0" + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-115910" + [:expansion :contains 0 :code] := #fhir/code"code-092722" + [:expansion :contains 0 #(contains? % :display)] := false)))) + + (testing "choosing the newest version by default" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :version "1.0.0" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}] + [:put {:fhir/type :fhir/CodeSystem :id "1" + :url #fhir/uri"system-115910" + :version "2.0.0" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-092722"}]}] + [:put {:fhir/type :fhir/CodeSystem :id "2" + :url #fhir/uri"system-115910" + :version "3.0.0" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115357"}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"value-set-135750" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}]]] + + (doseq [request [{:url "value-set-135750"} {:id "0"}]] + (given @(ts/expand-value-set ts request) + :fhir/type := :fhir/ValueSet + [:expansion :parameter count] := 1 + [:expansion :parameter 0 :name] := #fhir/string"version" + [:expansion :parameter 0 :value] := #fhir/uri"system-115910|3.0.0" + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-115910" + [:expansion :contains 0 :code] := #fhir/code"code-115357" + [:expansion :contains 0 #(contains? % :display)] := false)))) + + (testing "choosing the version by parameter" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :version "1.0.0" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}] + [:put {:fhir/type :fhir/CodeSystem :id "1" + :url #fhir/uri"system-115910" + :version "2.0.0" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-092722"}]}] + [:put {:fhir/type :fhir/CodeSystem :id "2" + :url #fhir/uri"system-115910" + :version "3.0.0" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115357"}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"value-set-135750" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}]]] + + (doseq [request [{:url "value-set-135750"} {:id "0"}]] + (given @(ts/expand-value-set ts (assoc request :system-version [#fhir/canonical"system-115910|2.0.0"])) + :fhir/type := :fhir/ValueSet + [:expansion :parameter count] := 1 + [:expansion :parameter 0 :name] := #fhir/string"version" + [:expansion :parameter 0 :value] := #fhir/uri"system-115910|2.0.0" + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-115910" + [:expansion :contains 0 :code] := #fhir/code"code-092722" + [:expansion :contains 0 #(contains? % :display)] := false)))))) (testing "with two codes" (with-system-data [{ts ::ts/local} config] @@ -586,9 +1193,114 @@ :fhir/type := :fhir/ValueSet [:expansion :contains count] := 1 [:expansion :contains 0 :system] := #fhir/uri"system-135810" - [:expansion :contains 0 :code] := #fhir/code"code-135827")))) + [:expansion :contains 0 :code] := #fhir/code"code-135827"))) + + (testing "with inactive concepts" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-170702" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-170118" + :property + [{:fhir/type :fhir.CodeSystem.concept/property + :code #fhir/code"foo" + :value #fhir/boolean false} + {:fhir/type :fhir.CodeSystem.concept/property + :code #fhir/code"inactive" + :value #fhir/boolean true}]} + {:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-164637"} + {:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-163445" + :display #fhir/string"display-164521"}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-170702"}]}}]]] + + (given @(ts/expand-value-set ts {:id "0"}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 3 + [:expansion :contains 0 :system] := #fhir/uri"system-170702" + [:expansion :contains 0 :inactive] := #fhir/boolean true + [:expansion :contains 0 :code] := #fhir/code"code-170118" + [:expansion :contains 1 :system] := #fhir/uri"system-170702" + [:expansion :contains 1 :code] := #fhir/code"code-164637" + [:expansion :contains 2 :system] := #fhir/uri"system-170702" + [:expansion :contains 2 :code] := #fhir/code"code-163445" + [:expansion :contains 2 :display] := #fhir/string"display-164521") + + (testing "active only" + (given @(ts/expand-value-set ts {:id "0" :active-only true}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 2 + [:expansion :contains 0 :system] := #fhir/uri"system-170702" + [:expansion :contains 0 :code] := #fhir/code"code-164637" + [:expansion :contains 1 :system] := #fhir/uri"system-170702" + [:expansion :contains 1 :code] := #fhir/code"code-163445"))) -(deftest terminology-service-test-value-set-refs + (testing "including all codes" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-170702" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-170118" + :property + [{:fhir/type :fhir.CodeSystem.concept/property + :code #fhir/code"foo" + :value #fhir/boolean false} + {:fhir/type :fhir.CodeSystem.concept/property + :code #fhir/code"inactive" + :value #fhir/boolean true}]} + {:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-164637"} + {:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-163445" + :display #fhir/string"display-164521"}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-170702" + :concept + [{:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"code-170118"} + {:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"code-164637"} + {:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"code-163445" + :display #fhir/string"display-165751"}]}]}}]]] + + (given @(ts/expand-value-set ts {:id "0"}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 3 + [:expansion :contains 0 :system] := #fhir/uri"system-170702" + [:expansion :contains 0 :inactive] := #fhir/boolean true + [:expansion :contains 0 :code] := #fhir/code"code-170118" + [:expansion :contains 1 :system] := #fhir/uri"system-170702" + [:expansion :contains 1 :code] := #fhir/code"code-164637" + [:expansion :contains 2 :system] := #fhir/uri"system-170702" + [:expansion :contains 2 :code] := #fhir/code"code-163445" + [:expansion :contains 2 :display] := #fhir/string"display-165751") + + (testing "active only" + (given @(ts/expand-value-set ts {:id "0" :active-only true}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 2 + [:expansion :contains 0 :system] := #fhir/uri"system-170702" + [:expansion :contains 0 :code] := #fhir/code"code-164637" + [:expansion :contains 1 :system] := #fhir/uri"system-170702" + [:expansion :contains 1 :code] := #fhir/code"code-163445" + [:expansion :contains 1 :display] := #fhir/string"display-165751")))))) + +(deftest expand-value-set-value-include-set-refs-test (testing "one value set ref" (with-system-data [{ts ::ts/local} config] [[[:put {:fhir/type :fhir/CodeSystem :id "0" @@ -739,7 +1451,7 @@ [:expansion :contains 0 :code] := #fhir/code"code-180828" [:expansion :contains 0 #(contains? % :display)] := false)))) -(deftest terminology-service-test-include-filter +(deftest expand-value-set-include-filter-test (testing "unknown filter operator" (with-system-data [{ts ::ts/local} config] [[[:put {:fhir/type :fhir/CodeSystem :id "0" @@ -764,12 +1476,9 @@ (given-failed-future (ts/expand-value-set ts {:url "value-set-160118"}) ::anom/category := ::anom/unsupported - ::anom/message := "Error while expanding the value set with URL `value-set-160118`. The filter operation `op-unknown-160011` is not supported.")))) - -(defn- sort-expansion [value-set] - (update-in value-set [:expansion :contains] (partial sort-by (comp type/value :code)))) + ::anom/message := "Error while expanding the value set `value-set-160118`. Unsupported filter operator `op-unknown-160011` in code system `system-182822`.")))) -(deftest terminology-service-test-include-filter-is-a +(deftest expand-value-set-include-filter-is-a-test (testing "with a single concept" (with-system-data [{ts ::ts/local} config] [[[:put {:fhir/type :fhir/CodeSystem :id "0" @@ -940,7 +1649,119 @@ [:expansion :contains 2 :code] := #fhir/code"code-192308" [:expansion :contains 2 :display] := #fhir/string"display-192313")))))) -(deftest terminology-service-test-include-filter-exists +(deftest expand-value-set-include-filter-descendent-of-test + (testing "with a single concept" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-182822" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-182832" + :display #fhir/string"display-182717"}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"value-set-182905" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-182822" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"concept" + :op #fhir/code"descendent-of" + :value #fhir/string"code-182832"}]}]}}]]] + + (doseq [request [{:url "value-set-182905"} {:id "0"}]] + (given @(ts/expand-value-set ts request) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 0)))) + + (testing "with two concepts, a parent and a child" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-182822" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-182832" + :display #fhir/string"display-182717"} + {:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-191445" + :display #fhir/string"display-191448" + :property + [{:fhir/type :fhir.CodeSystem.concept/property + :code #fhir/code"parent" + :value #fhir/code"code-182832"}]}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"value-set-182905" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-182822" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"concept" + :op #fhir/code"descendent-of" + :value #fhir/string"code-182832"}]}]}}]]] + + (doseq [request [{:url "value-set-182905"} {:id "0"}]] + (given (sort-expansion @(ts/expand-value-set ts request)) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-182822" + [:expansion :contains 0 :code] := #fhir/code"code-191445" + [:expansion :contains 0 :display] := #fhir/string"display-191448")))) + + (testing "with three concepts, a parent, a child and a child of the child" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-182822" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-182832" + :display #fhir/string"display-182717"} + {:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-191445" + :display #fhir/string"display-191448" + :property + [{:fhir/type :fhir.CodeSystem.concept/property + :code #fhir/code"parent" + :value #fhir/code"code-182832"}]} + {:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-192308" + :display #fhir/string"display-192313" + :property + [{:fhir/type :fhir.CodeSystem.concept/property + :code #fhir/code"parent" + :value #fhir/code"code-191445"}]}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"value-set-182905" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-182822" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"concept" + :op #fhir/code"descendent-of" + :value #fhir/string"code-182832"}]}]}}]]] + + (doseq [request [{:url "value-set-182905"} {:id "0"}]] + (given (sort-expansion @(ts/expand-value-set ts request)) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 2 + [:expansion :contains 0 :system] := #fhir/uri"system-182822" + [:expansion :contains 0 :code] := #fhir/code"code-191445" + [:expansion :contains 0 :display] := #fhir/string"display-191448" + [:expansion :contains 1 :system] := #fhir/uri"system-182822" + [:expansion :contains 1 :code] := #fhir/code"code-192308" + [:expansion :contains 1 :display] := #fhir/string"display-192313"))))) + +(deftest expand-value-set-include-filter-exists-test (testing "with missing property" (with-system-data [{ts ::ts/local} config] [[[:put {:fhir/type :fhir/CodeSystem :id "0" @@ -964,7 +1785,7 @@ (given-failed-future (ts/expand-value-set ts {:url "value-set-182905"}) ::anom/category := ::anom/incorrect - ::anom/message := "Error while expanding the value set with URL `value-set-182905`. Missing filter property."))) + ::anom/message := "Error while expanding the value set `value-set-182905`. Missing filter property."))) (testing "with invalid value" (with-system-data [{ts ::ts/local} config] @@ -990,7 +1811,7 @@ (given-failed-future (ts/expand-value-set ts {:url "value-set-182905"}) ::anom/category := ::anom/incorrect - ::anom/message := "Error while expanding the value set with URL `value-set-182905`. The filter value should be one of `true` or `false` but was `invalid-162128`."))) + ::anom/message := "Error while expanding the value set `value-set-182905`. The filter value should be one of `true` or `false` but was `invalid-162128`."))) (testing "with a single concept" (testing "without a property" @@ -1117,11 +1938,112 @@ [:expansion :contains 0 :code] := #fhir/code"code-182832" [:expansion :contains 0 :display] := #fhir/string"display-182717"))))))) -(deftest terminology-service-test-include-filter-multiple - (testing "is-a and exists (and the other way around" - (let [is-a-filter {:fhir/type :fhir.ValueSet.compose.include/filter - :property #fhir/code"concept" - :op #fhir/code"is-a" +(deftest expand-value-set-include-filter-equals-test + (testing "with missing property" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-182822" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-182832" + :display #fhir/string"display-182717"}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"value-set-171904" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-182822" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :op #fhir/code"=" + :value #fhir/string"value-161324"}]}]}}]]] + + (given-failed-future (ts/expand-value-set ts {:url "value-set-171904"}) + ::anom/category := ::anom/incorrect + ::anom/message := "Error while expanding the value set `value-set-171904`. Missing filter property."))) + + (testing "with missing value" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-182822" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-182832" + :display #fhir/string"display-182717"}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"value-set-171904" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-182822" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"property-175506" + :op #fhir/code"="}]}]}}]]] + + (given-failed-future (ts/expand-value-set ts {:url "value-set-171904"}) + ::anom/category := ::anom/incorrect + ::anom/message := "Error while expanding the value set `value-set-171904`. Missing filter value."))) + + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-182822" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-175652" + :display #fhir/string"display-175659" + :property + [{:fhir/type :fhir.CodeSystem.concept/property + :code #fhir/code"property-175506" + :value #fhir/string"value-161324"}]} + {:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-175607" + :display #fhir/string"display-175610" + :property + [{:fhir/type :fhir.CodeSystem.concept/property + :code #fhir/code"property-175506" + :value #fhir/string"value-175614"}]} + {:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-172215" + :display #fhir/string"display-172220" + :property + [{:fhir/type :fhir.CodeSystem.concept/property + :code #fhir/code"property-172030" + :value #fhir/string"value-161324"}]} + {:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-175607" + :display #fhir/string"display-175610"}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"value-set-175628" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-182822" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"property-175506" + :op #fhir/code"=" + :value #fhir/string"value-161324"}]}]}}]]] + + (doseq [request [{:url "value-set-175628"} {:id "0"}]] + (given @(ts/expand-value-set ts request) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-182822" + [:expansion :contains 0 :code] := #fhir/code"code-175652" + [:expansion :contains 0 :display] := #fhir/string"display-175659")))) + +(deftest expand-value-set-include-filter-multiple-test + (testing "is-a and exists (and the other way around)" + (let [is-a-filter {:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"concept" + :op #fhir/code"is-a" :value #fhir/string"code-182832"} leaf-filter {:fhir/type :fhir.ValueSet.compose.include/filter :property #fhir/code"child" @@ -1160,7 +2082,392 @@ [:expansion :contains 0 :code] := #fhir/code"code-191445" [:expansion :contains 0 :display] := #fhir/string"display-191448"))))))) -(deftest terminology-service-test-other +(deftest expand-value-set-provided-value-set-test + (testing "fails on non-complete code system" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"not-present"}]]] + + (given-failed-future (ts/expand-value-set + ts + {:value-set + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}}) + ::anom/category := ::anom/unsupported + ::anom/message := "Error while expanding the provided value set. Can't expand the code system with URL `system-115910` because it is not complete. It's content is `not-present`." + :t := 1))) + + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}]]] + + (given @(ts/expand-value-set + ts + {:value-set + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"system-115910" + [:expansion :contains 0 :code] := #fhir/code"code-115927" + [:expansion :contains 0 #(contains? % :display)] := false))) + +(deftest expand-value-set-sct-include-all-test + (testing "including all of Snomed CT is too costly" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"system-182137" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct"}]}}]]] + + (given-failed-future (ts/expand-value-set ts {:id "0"}) + ::anom/category := ::anom/conflict + ::anom/message := "Error while expanding the value set `system-182137`. Expanding all Snomed CT concepts is too costly." + :fhir/issue "too-costly")))) + +(deftest expand-value-set-sct-include-concept-test + (testing "include one concept" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :concept + [{:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"441510007"}]}]}}]]] + + (given @(ts/expand-value-set ts {:id "0"}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 0 #(contains? % :inactive)] := false + [:expansion :contains 0 :code] := #fhir/code"441510007" + [:expansion :contains 0 :display] := #fhir/string"Blood specimen with anticoagulant (specimen)")) + + (testing "with inactive concepts" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :concept + [{:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"860958002"} + {:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"441510007"}]}]}}]]] + + (given @(ts/expand-value-set ts {:id "0"}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 2 + [:expansion :contains 0 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 0 :inactive] := #fhir/boolean true + [:expansion :contains 0 :code] := #fhir/code"860958002" + [:expansion :contains 0 :display] := #fhir/string"Temperature of blood (observable entity)" + [:expansion :contains 1 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 1 #(contains? % :inactive)] := false + [:expansion :contains 1 :code] := #fhir/code"441510007" + [:expansion :contains 1 :display] := #fhir/string"Blood specimen with anticoagulant (specimen)") + + (testing "active only" + (given @(ts/expand-value-set ts {:id "0" :active-only true}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 0 #(contains? % :inactive)] := false + [:expansion :contains 0 :code] := #fhir/code"441510007" + [:expansion :contains 0 :display] := #fhir/string"Blood specimen with anticoagulant (specimen)")))) + + (testing "with version (module)" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :version #fhir/string"http://snomed.info/sct/900000000000207008" + :concept + [{:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"441510007"}]}]}}]]] + + (given @(ts/expand-value-set ts {:id "0"}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 0 #(contains? % :inactive)] := false + [:expansion :contains 0 :code] := #fhir/code"441510007" + [:expansion :contains 0 :display] := #fhir/string"Blood specimen with anticoagulant (specimen)")) + + (testing "german module" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :version #fhir/string"http://snomed.info/sct/11000274103" + :concept + [{:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"441510007"}]}]}}]]] + + (given @(ts/expand-value-set ts {:id "0"}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 0)))) + + (testing "with version" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :version #fhir/string"http://snomed.info/sct/900000000000207008/version/20231201" + :concept + [{:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"441510007"}]}]}}]]] + + (given @(ts/expand-value-set ts {:id "0"}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 0 #(contains? % :inactive)] := false + [:expansion :contains 0 :code] := #fhir/code"441510007" + [:expansion :contains 0 :display] := #fhir/string"Blood specimen with anticoagulant (specimen)")) + + (testing "non-existing version" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :version #fhir/string"http://snomed.info/sct/900000000000207008/version/none-existing" + :concept + [{:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"441510007"}]}]}}]]] + + (given-failed-future (ts/expand-value-set ts {:id "0"}) + ::anom/category := ::anom/not-found + ::anom/message := "Error while expanding the provided value set. The code system with URL `http://snomed.info/sct` and version `http://snomed.info/sct/900000000000207008/version/none-existing` was not found.")))))) + +(deftest expand-value-set-sct-filter-test + (testing "unknown filter operator" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"value-set-120544" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"property-160019" + :op #fhir/code"op-unknown-120524" + :value #fhir/string"value-160032"}]}]}}]]] + + (given-failed-future (ts/expand-value-set ts {:url "value-set-120544"}) + ::anom/category := ::anom/unsupported + ::anom/message := "Error while expanding the value set `value-set-120544`. Unsupported filter operator `op-unknown-120524` in code system `http://snomed.info/sct`.")))) + +(deftest expand-value-set-sct-filter-is-a-test + (testing "with a single is-a filter" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"concept" + :op #fhir/code"is-a" + :value #fhir/string"441510007"}]}]}}]]] + + (doseq [request [{} {:system-version [#fhir/canonical"http://snomed.info/sct|http://snomed.info/sct/900000000000207008"]}]] + (given @(ts/expand-value-set ts (assoc request :id "0")) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 3 + [:expansion :contains 0 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 0 #(contains? % :inactive)] := false + [:expansion :contains 0 :code] := #fhir/code"445295009" + [:expansion :contains 0 :display] := #fhir/string"Blood specimen with edetic acid (specimen)" + [:expansion :contains 1 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 1 #(contains? % :inactive)] := false + [:expansion :contains 1 :code] := #fhir/code"57921000052103" + [:expansion :contains 1 :display] := #fhir/string"Whole blood specimen with edetic acid (specimen)" + [:expansion :contains 2 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 2 #(contains? % :inactive)] := false + [:expansion :contains 2 :code] := #fhir/code"441510007" + [:expansion :contains 2 :display] := #fhir/string"Blood specimen with anticoagulant (specimen)"))) + + (testing "with many children" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"concept" + :op #fhir/code"is-a" + :value #fhir/string"123038009"}]}]}}]]] + + (given @(ts/expand-value-set ts {:id "0"}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 1812 + [:expansion :contains 0 :code] := #fhir/code"396807009" + [:expansion :contains 1 :code] := #fhir/code"433881000124103"))) + + (testing "with inactive concepts" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"concept" + :op #fhir/code"is-a" + :value #fhir/string"860958002"}]}]}}]]] + + (given @(ts/expand-value-set ts {:id "0"}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 0 :inactive] := #fhir/boolean true + [:expansion :contains 0 :code] := #fhir/code"860958002" + [:expansion :contains 0 :display] := #fhir/string"Temperature of blood (observable entity)") + + (testing "active only" + (given @(ts/expand-value-set ts {:id "0" :active-only true}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 0)))))) + +(deftest expand-value-set-sct-filter-descendent-of-test + (testing "with a single descendent-of filter" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"concept" + :op #fhir/code"descendent-of" + :value #fhir/string"441510007"}]}]}}]]] + + (doseq [request [{} {:system-version [#fhir/canonical"http://snomed.info/sct|http://snomed.info/sct/900000000000207008"]}]] + (given @(ts/expand-value-set ts (assoc request :id "0")) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 2 + [:expansion :contains 0 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 0 #(contains? % :inactive)] := false + [:expansion :contains 0 :code] := #fhir/code"445295009" + [:expansion :contains 0 :display] := #fhir/string"Blood specimen with edetic acid (specimen)" + [:expansion :contains 1 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 1 #(contains? % :inactive)] := false + [:expansion :contains 1 :code] := #fhir/code"57921000052103" + [:expansion :contains 1 :display] := #fhir/string"Whole blood specimen with edetic acid (specimen)"))) + + (testing "with many children" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :filter + [{:fhir/type :fhir.ValueSet.compose.include/filter + :property #fhir/code"concept" + :op #fhir/code"descendent-of" + :value #fhir/string"123038009"}]}]}}]]] + + (given @(ts/expand-value-set ts {:id "0"}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 1811 + [:expansion :contains 0 :code] := #fhir/code"396807009" + [:expansion :contains 1 :code] := #fhir/code"433881000124103"))) + + (testing "with inactive concepts" + (with-system-data [{ts ::ts/local} sct-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://snomed.info/sct" + :concept + [{:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"860958002"}]}]}}]]] + + (given @(ts/expand-value-set ts {:id "0"}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 1 + [:expansion :contains 0 :system] := #fhir/uri"http://snomed.info/sct" + [:expansion :contains 0 :inactive] := #fhir/boolean true + [:expansion :contains 0 :code] := #fhir/code"860958002" + [:expansion :contains 0 :display] := #fhir/string"Temperature of blood (observable entity)") + + (testing "active only" + (given @(ts/expand-value-set ts {:id "0" :active-only true}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 0)))))) + +(deftest expand-value-set-ucum-test + (with-system-data [{ts ::ts/local} ucum-config] + [[[:put {:fhir/type :fhir/ValueSet :id "0" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"http://unitsofmeasure.org" + :concept + [{:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"Cel"} + {:fhir/type :fhir.ValueSet.compose.include/concept + :code #fhir/code"[degF]"}]}]}}]]] + + (given @(ts/expand-value-set ts {:id "0"}) + :fhir/type := :fhir/ValueSet + [:expansion :contains count] := 2 + [:expansion :contains 0 :system] := #fhir/uri"http://unitsofmeasure.org" + [:expansion :contains 0 :code] := #fhir/code"Cel" + [:expansion :contains 1 :system] := #fhir/uri"http://unitsofmeasure.org" + [:expansion :contains 1 :code] := #fhir/code"[degF]"))) + +(deftest expand-value-set-other-test (testing "display from code system is preserved" (with-system-data [{ts ::ts/local} config] [[[:put {:fhir/type :fhir/CodeSystem :id "0" @@ -1387,3 +2694,270 @@ [:expansion :contains count] := 1 [:expansion :contains 0 :system] := #fhir/uri"system-115910" [:expansion :contains 0 :code] := #fhir/code"code-115927"))))) + +(deftest value-set-validate-code-fails-test + (with-system [{ts ::ts/local} config] + (testing "missing id or url" + (given-failed-future (ts/value-set-validate-code ts {}) + ::anom/category := ::anom/incorrect + ::anom/message := "Missing ID or URL.")) + + (testing "not found" + (testing "id" + (given-failed-future (ts/value-set-validate-code ts {:id "id-175736"}) + ::anom/category := ::anom/not-found + ::anom/message := "The value set with id `id-175736` was not found." + :t := 0)) + + (testing "url" + (given-failed-future (ts/value-set-validate-code ts {:url "url-194718"}) + ::anom/category := ::anom/not-found + ::anom/message := "The value set `url-194718` was not found." + :t := 0)) + + (testing "url and version" + (given-failed-future (ts/value-set-validate-code ts {:url "url-144258" :value-set-version "version-144244"}) + ::anom/category := ::anom/not-found + ::anom/message := "The value set `url-144258` and version `version-144244` was not found." + :t := 0))))) + +(deftest value-set-validate-code-test + (testing "with id or url" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}] + [:put {:fhir/type :fhir/CodeSystem :id "1" + :url #fhir/uri"system-202449" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}] + [:put {:fhir/type :fhir/ValueSet :id "0" + :url #fhir/uri"value-set-135750" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}}] + [:put {:fhir/type :fhir/ValueSet :id "1" + :url #fhir/uri"value-set-203901" + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"} + {:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-202449"}]}}]]] + + (testing "existing code" + (let [request {:code "code-115927" :system "system-115910"}] + (doseq [request (mapv (partial merge request) [{:url "value-set-135750"} {:id "0"}])] + (given @(ts/value-set-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910"))) + + (testing "with infer-system" + (let [request {:code "code-115927" :infer-system true}] + (doseq [request (mapv (partial merge request) [{:url "value-set-135750"} {:id "0"}])] + (given @(ts/value-set-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910"))) + + (testing "with non-unique code" + (let [request {:code "code-115927" :infer-system true}] + (doseq [request (mapv (partial merge request) [{:url "value-set-203901"} {:id "1"}])] + (given @(ts/value-set-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"While inferring the system was requested, the provided code `code-115927` was not unique in the value set `value-set-203901`.")))))) + + (testing "non-existing code" + (let [request {:code "code-153948" :system "system-115910"}] + (doseq [request (mapv (partial merge request) [{:url "value-set-135750"} {:id "0"}])] + (given @(ts/value-set-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The provided code `code-153948` of system `system-115910` was not found in the value set `value-set-135750`.")))) + + (testing "existing coding" + (let [request {:coding #fhir/Coding{:system #fhir/uri"system-115910" :code #fhir/code"code-115927"}}] + (doseq [request (mapv (partial merge request) [{:url "value-set-135750"} {:id "0"}])] + (given @(ts/value-set-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910")))) + + (testing "non-existing coding" + (let [request {:coding #fhir/Coding{:system #fhir/uri"system-115910" :code #fhir/code"code-153948"}}] + (doseq [request (mapv (partial merge request) [{:url "value-set-135750"} {:id "0"}])] + (given @(ts/value-set-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The provided code `code-153948` of system `system-115910` was not found in the value set `value-set-135750`.")))))) + + (testing "with value-set" + (with-system-data [{ts ::ts/local} config] + [[[:put {:fhir/type :fhir/CodeSystem :id "0" + :url #fhir/uri"system-115910" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}] + [:put {:fhir/type :fhir/CodeSystem :id "1" + :url #fhir/uri"system-202449" + :content #fhir/code"complete" + :concept + [{:fhir/type :fhir.CodeSystem/concept + :code #fhir/code"code-115927"}]}]]] + + (testing "existing code" + (let [request + {:value-set + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}} + :code "code-115927" + :system "system-115910"}] + (given @(ts/value-set-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910")) + + (testing "with infer-system" + (let [request + {:value-set + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}} + :code "code-115927" + :infer-system true}] + (given @(ts/value-set-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910")) + + (testing "with non-unique code" + (let [request + {:value-set + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"} + {:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-202449"}]}} + :code "code-115927" + :infer-system true}] + (given @(ts/value-set-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"While inferring the system was requested, the provided code `code-115927` was not unique in the provided value set."))))) + + (testing "existing coding" + (let [request + {:value-set + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}} + :coding #fhir/Coding{:system #fhir/uri"system-115910" + :code #fhir/code"code-115927"}}] + (given @(ts/value-set-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 3 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean true + [:parameter 1 :name] := #fhir/string"code" + [:parameter 1 :value] := #fhir/code"code-115927" + [:parameter 2 :name] := #fhir/string"system" + [:parameter 2 :value] := #fhir/uri"system-115910"))) + + (testing "non-existing code" + (let [request + {:value-set + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}} + :system "system-115910" + :code "code-153948"}] + (given @(ts/value-set-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The provided code `code-153948` of system `system-115910` was not found in the provided value set."))) + + (testing "non-existing coding" + (let [request + {:value-set + {:fhir/type :fhir/ValueSet + :compose + {:fhir/type :fhir.ValueSet/compose + :include + [{:fhir/type :fhir.ValueSet.compose/include + :system #fhir/uri"system-115910"}]}} + :coding #fhir/Coding{:system #fhir/uri"system-115910" + :code #fhir/code"code-153948"}}] + (given @(ts/value-set-validate-code ts request) + :fhir/type := :fhir/Parameters + [:parameter count] := 2 + [:parameter 0 :name] := #fhir/string"result" + [:parameter 0 :value] := #fhir/boolean false + [:parameter 1 :name] := #fhir/string"message" + [:parameter 1 :value] := #fhir/string"The provided code `code-153948` of system `system-115910` was not found in the provided value set.")))))) diff --git a/resources/blaze.edn b/resources/blaze.edn index 5a004800a..320828b4a 100644 --- a/resources/blaze.edn +++ b/resources/blaze.edn @@ -110,15 +110,7 @@ :affects-state false :resource-types ["Resource"] :system-handler #blaze/ref :blaze.fhir.operation/totals - :documentation "Retrieves the total counts of resources available by resource type."} - #:blaze.rest-api.operation - {:code "expand" - :def-uri "http://hl7.org/fhir/OperationDefinition/ValueSet-expand" - :affects-state false - :resource-types ["ValueSet"] - :type-handler #blaze/ref :blaze.fhir.operation.value-set/expand - :instance-handler #blaze/ref :blaze.fhir.operation.value-set/expand - :documentation "The $expand operation can be used to expand all codes of a ValueSet."}] + :documentation "Retrieves the total counts of resources available by resource type."}] ;; ;; FHIR Interactions @@ -271,16 +263,6 @@ :blaze.fhir.operation/totals {:structure-definition-repo #blaze/ref :blaze.fhir/structure-definition-repo} - ;; - ;; FHIR Operation ValueSet Expand - ;; - :blaze.fhir.operation.value-set/expand - {:terminology-service #blaze/ref :blaze/terminology-service} - - :blaze.terminology-service/local - {:node #blaze/ref :blaze.db.main/node - :clock #blaze/ref :blaze/clock} - ;; ;; Admin API ;; @@ -1394,4 +1376,59 @@ :documentation "This operation is used to request the removal of all current and historical versions for all resources in a patient compartment or from a Group of patient compartments. The return is an OperationOutcome with results and/or details about execution."}] :blaze.operation.patient/purge - {:node #blaze/ref :blaze.db.main/node}}}]} + {:node #blaze/ref :blaze.db.main/node}}} + + {:key :terminology-service + :name "Terminology Service" + :toggle "ENABLE_TERMINOLOGY_SERVICE" + :config + {:blaze.rest-api/operations + [#:blaze.rest-api.operation + {:code "expand" + :def-uri "http://hl7.org/fhir/OperationDefinition/ValueSet-expand" + :affects-state false + :resource-types ["ValueSet"] + :type-handler #blaze/ref :blaze.fhir.operation.value-set/expand + :instance-handler #blaze/ref :blaze.fhir.operation.value-set/expand + :documentation "The $expand operation can be used to expand all codes of a ValueSet."} + #:blaze.rest-api.operation + {:code "validate-code" + :def-uri "http://hl7.org/fhir/OperationDefinition/CodeSystem-validate-code" + :affects-state false + :resource-types ["CodeSystem"] + :type-handler #blaze/ref :blaze.fhir.operation.code-system/validate-code + :instance-handler #blaze/ref :blaze.fhir.operation.code-system/validate-code + :documentation "Validate that a coded value is in the code system."} + #:blaze.rest-api.operation + {:code "validate-code" + :def-uri "http://hl7.org/fhir/OperationDefinition/ValueSet-validate-code" + :affects-state false + :resource-types ["ValueSet"] + :type-handler #blaze/ref :blaze.fhir.operation.value-set/validate-code + :instance-handler #blaze/ref :blaze.fhir.operation.value-set/validate-code + :documentation "Validate that a coded value is in the set of codes allowed by a value set."}] + + :blaze.fhir.operation.code-system/validate-code + {:terminology-service #blaze/ref :blaze.terminology-service/local} + + :blaze.fhir.operation.value-set/expand + {:terminology-service #blaze/ref :blaze.terminology-service/local} + + :blaze.fhir.operation.value-set/validate-code + {:terminology-service #blaze/ref :blaze.terminology-service/local} + + :blaze.terminology-service/local + {:node #blaze/ref :blaze.db.main/node + :clock #blaze/ref :blaze/clock + :rng-fn #blaze/ref :blaze/rng-fn + :enable-ucum true} + + :blaze.rest-api/capabilities-handler + {:terminology-service #blaze/ref :blaze.terminology-service/local}}} + + {:key :terminology-sct + :name "Snomed CT Terminology" + :toggle "ENABLE_TERMINOLOGY_SNOMED_CT" + :config + {:blaze.terminology-service/local + {:sct-release-path #blaze/cfg ["SNOMED_CT_RELEASE_PATH" blaze.path/dir?]}}}]} diff --git a/src/blaze/system.clj b/src/blaze/system.clj index 5420f0f7a..3d8a19fba 100644 --- a/src/blaze/system.clj +++ b/src/blaze/system.clj @@ -6,6 +6,7 @@ be given to `init!``. The server port has a default of `8080`." (:require [blaze.log] + [blaze.path :refer [dir? path]] [blaze.util :as u] [clojure.java.io :as io] [clojure.spec.alpha :as s] @@ -35,6 +36,19 @@ ::s/invalid)) :else ::s/invalid)))) +(defmethod sc/pred-coercer `dir? + [_] + (reify + sc/Coercer + (-coerce [_ x] + (cond + (string? x) + (let [path (path x)] + (if (dir? path) + path + ::s/invalid)) + :else ::s/invalid)))) + (defrecord Cfg [env-var spec default]) (defn- resolve-special-default-values [default] diff --git a/test/blaze/system_test.clj b/test/blaze/system_test.clj index 6696ea977..e0f49f9d1 100644 --- a/test/blaze/system_test.clj +++ b/test/blaze/system_test.clj @@ -26,6 +26,8 @@ [blaze.rest-api.capabilities-handler] [blaze.system :as system] [blaze.system-spec] + [blaze.terminology-service :as-alias ts] + [blaze.terminology-service.local] [blaze.test-util :as tu] [buddy.auth.protocols :as ap] [clojure.spec.alpha :as s] @@ -185,6 +187,7 @@ :release-date "2024-01-07" :structure-definition-repo structure-definition-repo :search-param-registry (ig/ref :blaze.db/search-param-registry) + :terminology-service (ig/ref ::ts/local) :search-system-handler (ig/ref :blaze.interaction/search-system) :transaction-handler-active? true :resource-patterns (ig/ref ::rest-api/resource-patterns)} @@ -219,6 +222,10 @@ :history-type #:blaze.rest-api.interaction {:handler (ig/ref :blaze.interaction.history/type)}}} + ::ts/local + {:node (ig/ref :blaze.db/node) + :clock (ig/ref :blaze.test/fixed-clock) + :rng-fn (ig/ref :blaze.test/fixed-rng-fn)} :blaze.test/executor {} :blaze.test/fixed-clock {} :blaze.test/fixed-rng-fn {}