From 9569f0acf0de76cd149ffb3bc7850864e167dfb8 Mon Sep 17 00:00:00 2001 From: alexfurmenkov Date: Mon, 15 Dec 2025 15:46:53 +0100 Subject: [PATCH 1/3] add filetype option to validate data directory --- core.py | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/core.py b/core.py index 52c44fc44..f93aed6bf 100644 --- a/core.py +++ b/core.py @@ -84,11 +84,20 @@ def cli(): pass -def _validate_data_directory(data: str, logger) -> tuple[list, set]: +def _validate_data_directory( + data: str, logger, filetype: str = None +) -> tuple[list, set]: """Validate data directory and return dataset paths and found formats.""" - dataset_paths, found_formats = valid_data_file( - [str(p) for p in Path(data).rglob("*") if p.is_file()] - ) + # Added filetype argument to filter files by extension if provided + if filetype: + pattern = f"*.{filetype}" + dataset_paths, found_formats = valid_data_file( + [str(p) for p in Path(data).rglob(pattern) if p.is_file()] + ) + else: + dataset_paths, found_formats = valid_data_file( + [str(p) for p in Path(data).rglob("*") if p.is_file()] + ) if DataFormatTypes.XLSX.value in found_formats and len(found_formats) > 1: logger.error( @@ -175,6 +184,12 @@ def _validate_no_arguments(logger) -> None: required=False, help=f"Path to directory containing data files ({VALIDATION_FORMATS_MESSAGE})", ) +@click.option( + "-filetype", + default=None, + required=False, + help="File extension to use for input files in the data directory (e.g., 'json', 'xpt', 'xlsx', 'ndjson')", +) @click.option( "-dp", "--dataset-path", @@ -352,6 +367,7 @@ def validate( cache: str, pool_size: int, data: str, + filetype: str, dataset_path: tuple[str], log_level: str, report_template: str, @@ -435,7 +451,7 @@ def validate( "Argument --dataset-path cannot be used together with argument --data" ) ctx.exit(2) - dataset_paths, found_formats = _validate_data_directory(data, logger) + dataset_paths, found_formats = _validate_data_directory(data, logger, filetype) if dataset_paths is None: ctx.exit(2) elif dataset_path: From 8c90cece4d8d018a2605bd01adf20075946663ec Mon Sep 17 00:00:00 2001 From: alexfurmenkov Date: Tue, 16 Dec 2025 13:19:38 +0100 Subject: [PATCH 2/3] add shorthand option for filetype in CLI --- core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core.py b/core.py index f93aed6bf..681cdd85c 100644 --- a/core.py +++ b/core.py @@ -185,7 +185,8 @@ def _validate_no_arguments(logger) -> None: help=f"Path to directory containing data files ({VALIDATION_FORMATS_MESSAGE})", ) @click.option( - "-filetype", + "-ft", + "--filetype", default=None, required=False, help="File extension to use for input files in the data directory (e.g., 'json', 'xpt', 'xlsx', 'ndjson')", From b2febcc0d66ddaa4e2d8c8501eb598e770c7637c Mon Sep 17 00:00:00 2001 From: alexfurmenkov Date: Tue, 16 Dec 2025 15:18:21 +0100 Subject: [PATCH 3/3] add test for filetype option --- .../test_Issues/test_CoreIssue1442.py | 61 + .../CoreIssue1442/CDISC_Pilot_Study.json | 19809 +++++++++++++++ .../CDISC_Pilot_Study_Invalid.jso1n | 20688 ++++++++++++++++ tests/resources/CoreIssue1442/rule.yml | 51 + .../CoreIssue1442/test_adam_dataset.xpt | Bin 0 -> 2415520 bytes .../CoreIssue1442/test_dataset.ndjson | 1584 ++ .../CoreIssue1442/test_datasets.xlsx | Bin 0 -> 22256 bytes 7 files changed, 42193 insertions(+) create mode 100644 tests/QARegressionTests/test_Issues/test_CoreIssue1442.py create mode 100644 tests/resources/CoreIssue1442/CDISC_Pilot_Study.json create mode 100644 tests/resources/CoreIssue1442/CDISC_Pilot_Study_Invalid.jso1n create mode 100644 tests/resources/CoreIssue1442/rule.yml create mode 100644 tests/resources/CoreIssue1442/test_adam_dataset.xpt create mode 100644 tests/resources/CoreIssue1442/test_dataset.ndjson create mode 100644 tests/resources/CoreIssue1442/test_datasets.xlsx diff --git a/tests/QARegressionTests/test_Issues/test_CoreIssue1442.py b/tests/QARegressionTests/test_Issues/test_CoreIssue1442.py new file mode 100644 index 000000000..7c71ba7c7 --- /dev/null +++ b/tests/QARegressionTests/test_Issues/test_CoreIssue1442.py @@ -0,0 +1,61 @@ +import os +import subprocess +import unittest +import openpyxl +import pytest +from conftest import get_python_executable + + +@pytest.mark.regression +class TestCoreIssue1442(unittest.TestCase): + def test_positive_dataset(self): + # Run the command in the terminal + command = [ + f"{get_python_executable()}", + "-m", + "core", + "validate", + "-s", + "usdm", + "-v", + "4-0", + "-d", + os.path.join("tests", "resources", "CoreIssue1442"), + "-ft", + "json", + "-lr", + os.path.join("tests", "resources", "CoreIssue1442", "rule.yml"), + ] + subprocess.run(command, check=True) + + # Get the latest created Excel file + files = os.listdir() + excel_files = [ + file + for file in files + if file.startswith("CORE-Report-") and file.endswith(".xlsx") + ] + excel_file_path = sorted(excel_files)[-1] + # # Open the Excel file + workbook = openpyxl.load_workbook(excel_file_path) + if "Conformance Details" in workbook.sheetnames: + conformance_sheet = workbook["Conformance Details"] + found = False + for row in conformance_sheet.iter_rows(min_row=2, values_only=True): + for idx, cell in enumerate(row[:-1]): + if ( + cell == "JSON file name" + and row[idx + 1] == "CDISC_Pilot_Study.json" + ): + found = True + break + if found: + break + assert ( + found + ), "Pair ('JSON file name', 'CDISC_Pilot_Study.json') not found in any row of 'Conformance Details' sheet." + else: + assert False, "'Conformance Details' sheet not found in report." + + if os.path.exists(excel_file_path): + os.remove(excel_file_path) diff --git a/tests/resources/CoreIssue1442/CDISC_Pilot_Study.json b/tests/resources/CoreIssue1442/CDISC_Pilot_Study.json new file mode 100644 index 000000000..861fce818 --- /dev/null +++ b/tests/resources/CoreIssue1442/CDISC_Pilot_Study.json @@ -0,0 +1,19809 @@ +{ + "study": { + "id": null, + "name": "CDISC PILOT - LZZT", + "description": null, + "label": null, + "versions": [ + { + "id": "StudyVersion_1", + "extensionAttributes": [], + "versionIdentifier": "2", + "rationale": "The discontinuation rate associated with this oral dosing regimen was 58.6% in previous studies, and alternative clinical strategies have been sought to improve tolerance for the compound. To that end, development of a Transdermal Therapeutic System (TTS) has been initiated.", + "documentVersionIds": [ + "StudyDefinitionDocumentVersion_1", + "StudyDefinitionDocumentVersion_2" + ], + "dateValues": [ + { + "id": "GovernanceDate_1", + "extensionAttributes": [], + "name": "D_APPROVE", + "label": "Design Approval", + "description": "Design approval date", + "type": { + "id": "Code_13", + "extensionAttributes": [], + "code": "C132352", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sponsor Approval Date", + "instanceType": "Code" + }, + "dateValue": "2006-06-01", + "geographicScopes": [ + { + "id": "GeographicScope_1", + "extensionAttributes": [], + "type": { + "id": "Code_14", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "amendments": [ + { + "id": "StudyAmendment_1", + "extensionAttributes": [], + "name": "AMEND_1", + "label": "Amendment 1", + "description": "The first amendment", + "number": "1", + "summary": "Updated inclusion criteria", + "primaryReason": { + "id": "StudyAmendmentReason_1", + "extensionAttributes": [], + "code": { + "id": "Code_88", + "extensionAttributes": [], + "code": "C99904x3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "IRB/IEC Feedback", + "instanceType": "Code" + }, + "otherReason": null, + "instanceType": "StudyAmendmentReason" + }, + "secondaryReasons": [ + { + "id": "StudyAmendmentReason_2", + "extensionAttributes": [], + "code": { + "id": "Code_89", + "extensionAttributes": [], + "code": "C17649", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Other", + "instanceType": "Code" + }, + "otherReason": "Fix typographical errors", + "instanceType": "StudyAmendmentReason" + } + ], + "changes": [ + { + "id": "StudyChange_1", + "extensionAttributes": [], + "name": "AMEND_CHG_1", + "label": "", + "description": "", + "summary": "Fixed F", + "rationale": "Disaster!", + "changedSections": [ + { + "id": "DocumentContentReference_1", + "extensionAttributes": [], + "sectionNumber": "1.5", + "sectionTitle": "Header 1.5", + "appliesToId": "StudyDefinitionDocument_1", + "instanceType": "DocumentContentReference" + } + ], + "instanceType": "StudyChange" + } + ], + "impacts": [ + { + "id": "StudyAmendmentImpact_1", + "extensionAttributes": [], + "type": { + "id": "Code_93", + "extensionAttributes": [], + "code": "C99912x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Study Subject Safety", + "instanceType": "Code" + }, + "text": "Amendment 1", + "isSubstantial": false, + "notes": [], + "instanceType": "StudyAmendmentImpact" + } + ], + "geographicScopes": [ + { + "id": "GeographicScope_5", + "extensionAttributes": [], + "type": { + "id": "Code_92", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "enrollments": [ + { + "id": "SubjectEnrollment_1", + "extensionAttributes": [], + "name": "XXX", + "label": null, + "description": null, + "quantity": { + "id": "Quantity_1", + "extensionAttributes": [], + "value": 15.0, + "unit": null, + "instanceType": "Quantity" + }, + "forGeographicScope": { + "id": "GeographicScope_4", + "extensionAttributes": [], + "type": { + "id": "Code_91", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_22", + "extensionAttributes": [], + "standardCode": { + "id": "Code_90", + "extensionAttributes": [], + "code": "150", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + }, + "forStudyCohortId": null, + "forStudySiteId": null, + "instanceType": "SubjectEnrollment" + } + ], + "dateValues": [ + { + "id": "GovernanceDate_3", + "extensionAttributes": [], + "name": "AMEND_DATE_1", + "label": "Protocol Approval", + "description": "Amendment approval date", + "type": { + "id": "Code_18", + "extensionAttributes": [], + "code": "C99903x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Protocol Effective Date", + "instanceType": "Code" + }, + "dateValue": "2006-06-01", + "geographicScopes": [ + { + "id": "GeographicScope_3", + "extensionAttributes": [], + "type": { + "id": "Code_19", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "previousId": null, + "notes": [], + "instanceType": "StudyAmendment" + } + ], + "businessTherapeuticAreas": [ + { + "id": "Code_8", + "extensionAttributes": [], + "code": "PHARMA", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Eli Lilly", + "instanceType": "Code" + } + ], + "studyIdentifiers": [ + { + "id": "StudyIdentifier_1", + "extensionAttributes": [], + "text": "H2Q-MC-LZZT", + "scopeId": "Organization_1", + "instanceType": "StudyIdentifier" + }, + { + "id": "StudyIdentifier_2", + "extensionAttributes": [], + "text": "NCT12345678", + "scopeId": "Organization_2", + "instanceType": "StudyIdentifier" + } + ], + "referenceIdentifiers": [ + { + "id": "ReferenceIdentifier_1", + "extensionAttributes": [], + "text": "LZZT CD Plan 1", + "scopeId": "Organization_1", + "instanceType": "ReferenceIdentifier", + "type": { + "id": "Code_94", + "extensionAttributes": [], + "code": "C142424", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinical Development Plan", + "instanceType": "Code" + } + } + ], + "studyDesigns": [ + { + "id": "InterventionalStudyDesign_1", + "extensionAttributes": [], + "name": "Study Design 1", + "label": "USDM Example Study Design", + "description": "The main design for the study", + "studyType": { + "id": "Code_159", + "extensionAttributes": [], + "code": "C98388", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Interventional Study", + "instanceType": "Code" + }, + "studyPhase": { + "id": "AliasCode_24", + "extensionAttributes": [], + "standardCode": { + "id": "Code_160", + "extensionAttributes": [], + "code": "C15601", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Phase II Trial", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "therapeuticAreas": [ + { + "id": "Code_149", + "extensionAttributes": [], + "code": "MILD_MOD_ALZ", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Mild to Moderate Alzheimer's Disease", + "instanceType": "Code" + }, + { + "id": "Code_150", + "extensionAttributes": [], + "code": "26929004", + "codeSystem": "SNOMED", + "codeSystemVersion": "January 31, 2018", + "decode": "Alzheimer's disease", + "instanceType": "Code" + } + ], + "characteristics": [ + { + "id": "Code_157", + "extensionAttributes": [], + "code": "C99907x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "EXTENSION", + "instanceType": "Code" + }, + { + "id": "Code_158", + "extensionAttributes": [], + "code": "C98704", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ADAPTIVE", + "instanceType": "Code" + } + ], + "encounters": [ + { + "id": "Encounter_1", + "extensionAttributes": [], + "name": "E1", + "label": "Screening 1", + "description": "Screening encounter", + "type": { + "id": "Code_98", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "Encounter_2", + "scheduledAtId": null, + "environmentalSettings": [ + { + "id": "Code_99", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_100", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_1", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_1", + "label": null, + "description": null, + "text": "Subject identifier", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_1", + "label": null, + "description": null, + "text": "completion of screening activities", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_2", + "extensionAttributes": [], + "name": "E2", + "label": "Screening 2", + "description": "Screening encounter - Ambulatory ECG Placement", + "type": { + "id": "Code_101", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_1", + "nextId": "Encounter_3", + "scheduledAtId": "Timing_2", + "environmentalSettings": [ + { + "id": "Code_102", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_103", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_2", + "label": null, + "description": null, + "text": "subject leaves clinic after connection of ambulatory ECG machine", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_3", + "extensionAttributes": [], + "name": "E3", + "label": "Baseline", + "description": "Baseline encounter - Ambulatory ECG Removal", + "type": { + "id": "Code_104", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_2", + "nextId": "Encounter_4", + "scheduledAtId": null, + "environmentalSettings": [ + { + "id": "Code_105", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_106", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_3", + "label": null, + "description": null, + "text": "subject has connection of ambulatory ECG machine removed", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_3", + "label": null, + "description": null, + "text": "Radomized", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_4", + "extensionAttributes": [], + "name": "E4", + "label": "Week 2", + "description": "Day 14", + "type": { + "id": "Code_107", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_3", + "nextId": "Encounter_5", + "scheduledAtId": "Timing_4", + "environmentalSettings": [ + { + "id": "Code_108", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_109", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_5", + "extensionAttributes": [], + "name": "E5", + "label": "Week 4", + "description": "Day 28", + "type": { + "id": "Code_110", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_4", + "nextId": "Encounter_6", + "scheduledAtId": "Timing_5", + "environmentalSettings": [ + { + "id": "Code_111", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_112", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_6", + "extensionAttributes": [], + "name": "E7", + "label": "Week 6", + "description": "Day 42", + "type": { + "id": "Code_113", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_5", + "nextId": "Encounter_7", + "scheduledAtId": "Timing_6", + "environmentalSettings": [ + { + "id": "Code_114", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_115", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_7", + "extensionAttributes": [], + "name": "E8", + "label": "Week 8", + "description": "Day 56", + "type": { + "id": "Code_116", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_6", + "nextId": "Encounter_8", + "scheduledAtId": "Timing_7", + "environmentalSettings": [ + { + "id": "Code_117", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_118", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + }, + { + "id": "Code_119", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Telephone Call", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_8", + "extensionAttributes": [], + "name": "E9", + "label": "Week 12", + "description": "Day 84", + "type": { + "id": "Code_120", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_7", + "nextId": "Encounter_9", + "scheduledAtId": "Timing_9", + "environmentalSettings": [ + { + "id": "Code_121", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_122", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + }, + { + "id": "Code_123", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Telephone Call", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_9", + "extensionAttributes": [], + "name": "E10", + "label": "Week 16", + "description": "Day 112", + "type": { + "id": "Code_124", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_8", + "nextId": "Encounter_10", + "scheduledAtId": "Timing_11", + "environmentalSettings": [ + { + "id": "Code_125", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_126", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + }, + { + "id": "Code_127", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Telephone Call", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_10", + "extensionAttributes": [], + "name": "E11", + "label": "Week 20", + "description": "Day 140", + "type": { + "id": "Code_128", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_9", + "nextId": "Encounter_11", + "scheduledAtId": "Timing_13", + "environmentalSettings": [ + { + "id": "Code_129", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_130", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + }, + { + "id": "Code_131", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Telephone Call", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_11", + "extensionAttributes": [], + "name": "E12", + "label": "Week 24", + "description": "Day 168", + "type": { + "id": "Code_132", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_10", + "nextId": "Encounter_12", + "scheduledAtId": "Timing_15", + "environmentalSettings": [ + { + "id": "Code_133", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_134", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_12", + "extensionAttributes": [], + "name": "E13", + "label": "Week 26", + "description": "Day 182", + "type": { + "id": "Code_135", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_11", + "nextId": null, + "scheduledAtId": "Timing_16", + "environmentalSettings": [ + { + "id": "Code_136", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinic", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_137", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "In Person", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_6", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_12", + "label": null, + "description": null, + "text": "End of treatment", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + } + ], + "activities": [ + { + "id": "Activity_1", + "extensionAttributes": [], + "name": "Informed consent", + "label": "Informed consent", + "description": "", + "previousId": null, + "nextId": "Activity_2", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_2", + "extensionAttributes": [], + "name": "Inclusion/exclusion criteria", + "label": "Inclusion and exclusion criteria", + "description": "", + "previousId": "Activity_1", + "nextId": "Activity_3", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_3", + "extensionAttributes": [], + "name": "Patient number assigned", + "label": "Patient number assigned", + "description": "", + "previousId": "Activity_2", + "nextId": "Activity_4", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_4", + "extensionAttributes": [], + "name": "Demographics", + "label": "Demographics", + "description": "", + "previousId": "Activity_3", + "nextId": "Activity_5", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21" + ], + "bcCategoryIds": [], + "bcSurrogateIds": ["BiomedicalConceptSurrogate_1"], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_5", + "extensionAttributes": [], + "name": "Hachinski", + "label": "Hachinski Ischemic Scale", + "description": "", + "previousId": "Activity_4", + "nextId": "Activity_6", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_6", + "extensionAttributes": [], + "name": "MMSE", + "label": "MMSE", + "description": "", + "previousId": "Activity_5", + "nextId": "Activity_7", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_7", + "extensionAttributes": [], + "name": "Physical examination", + "label": "Physical examination", + "description": "", + "previousId": "Activity_6", + "nextId": "Activity_8", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_8", + "extensionAttributes": [], + "name": "Medical history", + "label": "Medical history", + "description": "", + "previousId": "Activity_7", + "nextId": "Activity_9", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_9", + "extensionAttributes": [], + "name": "Habits", + "label": "Habits", + "description": "", + "previousId": "Activity_8", + "nextId": "Activity_10", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_10", + "extensionAttributes": [], + "name": "Chest X-ray", + "label": "Chest X-ray", + "description": "", + "previousId": "Activity_9", + "nextId": "Activity_11", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_11", + "extensionAttributes": [], + "name": "Apo E genotyping", + "label": "Apo E genotyping", + "description": "", + "previousId": "Activity_10", + "nextId": "Activity_12", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_12", + "extensionAttributes": [], + "name": "Patient randomised", + "label": "Patient randomised", + "description": "", + "previousId": "Activity_11", + "nextId": "Activity_13", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_13", + "extensionAttributes": [], + "name": "Vital signs / Temperature", + "label": "Vital Signs and Temperature", + "description": "", + "previousId": "Activity_12", + "nextId": "Activity_14", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_22", + "BiomedicalConcept_23", + "BiomedicalConcept_24" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": "ScheduleTimeline_3", + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_14", + "extensionAttributes": [], + "name": "Ambulatory ECG placed", + "label": "Ambulatory ECG placed", + "description": "", + "previousId": "Activity_13", + "nextId": "Activity_15", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_15", + "extensionAttributes": [], + "name": "Ambulatory ECG removed", + "label": "Ambulatory ECG removed", + "description": "", + "previousId": "Activity_14", + "nextId": "Activity_16", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_16", + "extensionAttributes": [], + "name": "ECG", + "label": "ECG", + "description": "", + "previousId": "Activity_15", + "nextId": "Activity_17", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_17", + "extensionAttributes": [], + "name": "Placebo TTS test", + "label": "Placebo TTS test", + "description": "", + "previousId": "Activity_16", + "nextId": "Activity_18", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_18", + "extensionAttributes": [], + "name": "CT scan", + "label": "CT scan", + "description": "", + "previousId": "Activity_17", + "nextId": "Activity_19", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_1", + "extensionAttributes": [], + "name": "PR1", + "label": "CT Scan", + "description": "CT Scan", + "procedureType": "CT Scan", + "code": { + "id": "Code_95", + "extensionAttributes": [], + "code": "383371000119108", + "codeSystem": "SNOMED", + "codeSystemVersion": "January 31, 2018", + "decode": "CT of head without contrast", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_19", + "extensionAttributes": [], + "name": "Concomitant medications", + "label": "Concomitant medications", + "description": "", + "previousId": "Activity_18", + "nextId": "Activity_20", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_20", + "extensionAttributes": [], + "name": "Hematology", + "label": "Hematology", + "description": "", + "previousId": "Activity_19", + "nextId": "Activity_21", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_21", + "extensionAttributes": [], + "name": "Chemistry", + "label": "Chemistry", + "description": "", + "previousId": "Activity_20", + "nextId": "Activity_22", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_25", + "BiomedicalConcept_26", + "BiomedicalConcept_27", + "BiomedicalConcept_28", + "BiomedicalConcept_29", + "BiomedicalConcept_30", + "BiomedicalConcept_31" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_22", + "extensionAttributes": [], + "name": "Uninalysis", + "label": "Uninalysis", + "description": "", + "previousId": "Activity_21", + "nextId": "Activity_23", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_23", + "extensionAttributes": [], + "name": "Plasma Specimen (Xanomeline)", + "label": "Plasma Specimen (Xanomeline)", + "description": "", + "previousId": "Activity_22", + "nextId": "Activity_24", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_24", + "extensionAttributes": [], + "name": "Hemoglobin A1C", + "label": "Hemoglobin A1C", + "description": "", + "previousId": "Activity_23", + "nextId": "Activity_25", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_32"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_25", + "extensionAttributes": [], + "name": "Study drug", + "label": "Study drug record , Medications dispensed, Medications returned", + "description": "", + "previousId": "Activity_24", + "nextId": "Activity_26", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_26", + "extensionAttributes": [], + "name": "TTS Acceptability Survey", + "label": "TTS Acceptability Survey", + "description": "", + "previousId": "Activity_25", + "nextId": "Activity_27", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_27", + "extensionAttributes": [], + "name": "ADAS-Cog", + "label": "ADAS-Cog", + "description": "", + "previousId": "Activity_26", + "nextId": "Activity_28", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_28", + "extensionAttributes": [], + "name": "CIBIC+", + "label": "CIBIC+", + "description": "", + "previousId": "Activity_27", + "nextId": "Activity_29", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_29", + "extensionAttributes": [], + "name": "DAD", + "label": "DAD", + "description": "", + "previousId": "Activity_28", + "nextId": "Activity_30", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_30", + "extensionAttributes": [], + "name": "NPI-X", + "label": "NPI-X", + "description": "", + "previousId": "Activity_29", + "nextId": "Activity_31", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_31", + "extensionAttributes": [], + "name": "Adverse events", + "label": "Adverse events", + "description": "", + "previousId": "Activity_30", + "nextId": "Activity_32", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_1"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_32", + "extensionAttributes": [], + "name": "Check adverse events", + "label": "Check adverse events", + "description": "", + "previousId": "Activity_31", + "nextId": "Activity_33", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": "ScheduleTimeline_1", + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_33", + "extensionAttributes": [], + "name": "Supine", + "label": "Subject supine", + "description": "", + "previousId": "Activity_32", + "nextId": "Activity_34", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_2", + "extensionAttributes": [], + "name": "PR_SUPINE", + "label": "", + "description": "Subject Supine", + "procedureType": "", + "code": { + "id": "Code_96", + "extensionAttributes": [], + "code": "123", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Subject Supine", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_34", + "extensionAttributes": [], + "name": "Vital Signs Supine", + "label": "Vital signs while supine", + "description": "", + "previousId": "Activity_33", + "nextId": "Activity_35", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_14", + "BiomedicalConcept_15", + "BiomedicalConcept_16" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_35", + "extensionAttributes": [], + "name": "Stand", + "label": "Subject Standing", + "description": "", + "previousId": "Activity_34", + "nextId": "Activity_36", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_3", + "extensionAttributes": [], + "name": "PR_STAND", + "label": "", + "description": "Subject Standing", + "procedureType": "", + "code": { + "id": "Code_97", + "extensionAttributes": [], + "code": "124", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Subject Standing", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_36", + "extensionAttributes": [], + "name": "Vital Signs Standing", + "label": "Vital signs while standing", + "description": "", + "previousId": "Activity_35", + "nextId": null, + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_17", + "BiomedicalConcept_18", + "BiomedicalConcept_19" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + } + ], + "arms": [ + { + "id": "StudyArm_1", + "extensionAttributes": [], + "name": "Placebo", + "label": "Placebo", + "description": "Placebo", + "type": { + "id": "Code_138", + "extensionAttributes": [], + "code": "C174268", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Placebo Control Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_139", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + }, + { + "id": "StudyArm_2", + "extensionAttributes": [], + "name": "Xanomeline Low Dose", + "label": "Xanomeline Low Dose", + "description": "Active Substance", + "type": { + "id": "Code_140", + "extensionAttributes": [], + "code": "C174267", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Active Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_141", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + }, + { + "id": "StudyArm_3", + "extensionAttributes": [], + "name": "Xanomeline High Dose", + "label": "Xanomeline High Dose", + "description": "Active Substance", + "type": { + "id": "Code_142", + "extensionAttributes": [], + "code": "C174267", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Active Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_143", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + } + ], + "studyCells": [ + { + "id": "StudyCell_1", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_1", + "elementIds": ["StudyElement_1"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_2", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_2", + "elementIds": ["StudyElement_2"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_3", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_3", + "elementIds": ["StudyElement_2"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_4", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_4", + "elementIds": ["StudyElement_2"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_5", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_5", + "elementIds": ["StudyElement_7"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_6", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_1", + "elementIds": ["StudyElement_1"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_7", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_2", + "elementIds": ["StudyElement_3"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_8", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_3", + "elementIds": ["StudyElement_3"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_9", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_4", + "elementIds": ["StudyElement_3"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_10", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_5", + "elementIds": ["StudyElement_7"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_11", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_1", + "elementIds": ["StudyElement_1"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_12", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_2", + "elementIds": ["StudyElement_4"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_13", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_3", + "elementIds": ["StudyElement_5"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_14", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_4", + "elementIds": ["StudyElement_6"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_15", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_5", + "elementIds": ["StudyElement_7"], + "instanceType": "StudyCell" + } + ], + "rationale": "The discontinuation rate associated with this oral dosing regimen was 58.6% in previous studies, and alternative clinical strategies have been sought to improve tolerance for the compound. To that end, development of a Transdermal Therapeutic System (TTS) has been initiated.", + "epochs": [ + { + "id": "StudyEpoch_1", + "extensionAttributes": [], + "name": "Screening", + "label": "Screening", + "description": "Screening Epoch", + "type": { + "id": "Code_144", + "extensionAttributes": [], + "code": "C202487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Screening Epoch", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "StudyEpoch_2", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_2", + "extensionAttributes": [], + "name": "Treatment 1", + "label": "Treatment One", + "description": "Treatment Epoch", + "type": { + "id": "Code_145", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Treatment Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_1", + "nextId": "StudyEpoch_3", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_3", + "extensionAttributes": [], + "name": "Treatment 2", + "label": "Treatment Two", + "description": "Treatment Epoch", + "type": { + "id": "Code_146", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Treatment Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_2", + "nextId": "StudyEpoch_4", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_4", + "extensionAttributes": [], + "name": "Treatment 3", + "label": "Treatment Three", + "description": "Treatment Epoch", + "type": { + "id": "Code_147", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Treatment Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_3", + "nextId": "StudyEpoch_5", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_5", + "extensionAttributes": [], + "name": "Follow-Up", + "label": "Follow Up", + "description": "Follow-up Epoch", + "type": { + "id": "Code_148", + "extensionAttributes": [], + "code": "C202578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Follow-Up Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_4", + "nextId": null, + "notes": [], + "instanceType": "StudyEpoch" + } + ], + "elements": [ + { + "id": "StudyElement_1", + "extensionAttributes": [], + "name": "EL1", + "label": "Screening", + "description": "Screening Element", + "transitionStartRule": { + "id": "TransitionRule_7", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_1", + "label": null, + "description": null, + "text": "Informed consent", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_8", + "extensionAttributes": [], + "name": "ELEMENT_END_RULE_1", + "label": null, + "description": null, + "text": "Completion of all screening activities and no more than 2 weeks from informed consent", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_2", + "extensionAttributes": [], + "name": "EL2", + "label": "Placebo", + "description": "Placebo TTS (adhesive patches)", + "transitionStartRule": { + "id": "TransitionRule_9", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_2", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_7", + "extensionAttributes": [], + "name": "EL7", + "label": "Follow up", + "description": "Follow Up Element", + "transitionStartRule": { + "id": "TransitionRule_14", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_7", + "label": null, + "description": null, + "text": "End\u00a0of\u00a0last\u00a0scheduled\u00a0visit\u00a0on\u00a0study\u00a0(including\u00a0early\u00a0termination)", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_15", + "extensionAttributes": [], + "name": "ELEMENT_END_RULE_7", + "label": null, + "description": null, + "text": "Completion\u00a0of\u00a0all\u00a0specified\u00a0followup\u00a0activities\u00a0(which\u00a0vary\u00a0on\u00a0a\u00a0patient-by-patient\u00a0basis)", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_3", + "extensionAttributes": [], + "name": "EL3", + "label": "Low", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_10", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_3", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_4", + "extensionAttributes": [], + "name": "EL4", + "label": "High - Start", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_11", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_4", + "label": null, + "description": null, + "text": "Randomized", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_5", + "extensionAttributes": [], + "name": "EL5", + "label": "High - Middle", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg + 25 cm2, 27 mg", + "transitionStartRule": { + "id": "TransitionRule_12", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_5", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose\u00a0(from\u00a0patches\u00a0supplied\u00a0at\u00a0Visit\u00a04)", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_6", + "extensionAttributes": [], + "name": "EL6", + "label": "High - End", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_13", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_6", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose\u00a0(from\u00a0patches\u00a0supplied\u00a0at\u00a0Visit\u00a012)", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + } + ], + "estimands": [ + { + "id": "Estimand_1", + "extensionAttributes": [], + "name": "EST1", + "label": "EST1", + "description": "", + "populationSummary": "Group mean changes from baseline in the primary efficacy parameters", + "analysisPopulationId": "AnalysisPopulation_1", + "interventionIds": ["StudyIntervention_1"], + "variableOfInterestId": "Endpoint_1", + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_1", + "extensionAttributes": [], + "name": "DISTRUPTION", + "label": "", + "description": "The disruption of treatment to the subject", + "text": "Temporary Treatment Interruption", + "dictionaryId": null, + "notes": [], + "instanceType": "IntercurrentEvent", + "strategy": "Treatment Policy \u2013 Continue to measure effect of treatment assignment regardless of interruption." + } + ], + "notes": [], + "instanceType": "Estimand" + } + ], + "indications": [ + { + "id": "Indication_1", + "extensionAttributes": [], + "name": "IND1", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "codes": [ + { + "id": "Code_604", + "extensionAttributes": [], + "code": "G30.9", + "codeSystem": "ICD-10-CM", + "codeSystemVersion": "1", + "decode": "Alzheimer's disease; unspecified", + "instanceType": "Code" + } + ], + "isRareDisease": false, + "notes": [], + "instanceType": "Indication" + }, + { + "id": "Indication_2", + "extensionAttributes": [], + "name": "IND2", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "codes": [ + { + "id": "Code_605", + "extensionAttributes": [], + "code": "26929004", + "codeSystem": "SNOMED", + "codeSystemVersion": "January 31, 2018", + "decode": "Alzheimer's disease", + "instanceType": "Code" + } + ], + "isRareDisease": false, + "notes": [], + "instanceType": "Indication" + } + ], + "studyInterventionIds": ["StudyIntervention_1"], + "objectives": [ + { + "id": "Objective_1", + "extensionAttributes": [], + "name": "OBJ1", + "label": "", + "description": "Main objective", + "text": "To determine if there is a statistically significant relationship (overall Type 1 erroralpha=0.05) between the change in both the ADAS-Cog (11) and CIBIC+ scores, and drug dose (0, 50 cm2 [54 mg], and 75 cm2 [81 mg]).", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_622", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_1", + "extensionAttributes": [], + "name": "END1", + "label": "", + "description": "", + "text": "Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Week 24", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_621", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_2", + "extensionAttributes": [], + "name": "END2", + "label": "", + "description": "", + "text": "Video-referenced Clinician\u2019s Interview-based Impression of Change (CIBIC+) at Week 24", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_623", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_2", + "extensionAttributes": [], + "name": "OBJ2", + "label": "", + "description": "Safety", + "text": "To document the safety profile of the xanomeline TTS.", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_625", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_3", + "extensionAttributes": [], + "name": "END3", + "label": "", + "description": "", + "text": "Adverse events", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_624", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_4", + "extensionAttributes": [], + "name": "END4", + "label": "", + "description": "", + "text": "Vital signs (weight, standing and supine blood pressure, heart rate)", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_626", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_5", + "extensionAttributes": [], + "name": "END5", + "label": "", + "description": "The change from baseline laboratory value will be calculated as the difference between the baseline lab value and the endpoint value (i.e., the value at the specified visit) or the end of treatment observation", + "text": "Laboratory evaluations (Change from Baseline)", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_627", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_3", + "extensionAttributes": [], + "name": "OBJ3", + "label": "", + "description": "Behaviour", + "text": "To assess the dose-dependent improvement in behavior. Improved scores on the Revised Neuropsychiatric Inventory (NPI-X) will indicate improvement in these\nareas.", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_629", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_6", + "extensionAttributes": [], + "name": "END6", + "label": "", + "description": "", + "text": "Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Weeks 8 and 16", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_628", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_7", + "extensionAttributes": [], + "name": "END7", + "label": "", + "description": "", + "text": "Video-referenced Clinician\u2019s Interview-based Impression of Change (CIBIC+) at Weeks 8 and 16", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_630", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_8", + "extensionAttributes": [], + "name": "END8", + "label": "", + "description": "", + "text": "Mean Revised Neuropsychiatric Inventory (NPI-X) from Week 4 to Week 24", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_631", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_4", + "extensionAttributes": [], + "name": "OBJ4", + "label": "", + "description": "", + "text": "To assess the dose-dependent improvements in activities of daily living. Improved scores on the Disability Assessment for Dementia (DAD) will indicate improvement in these areas (see Attachment LZZT.5).", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_633", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_9", + "extensionAttributes": [], + "name": "END9", + "label": "", + "description": "", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_632", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_5", + "extensionAttributes": [], + "name": "OBJ5", + "label": "", + "description": "", + "text": "To assess the dose-dependent improvements in an extended assessment of cognition that integrates attention/concentration tasks. The Alzheimer's Disease Assessment Scale-14 item Cognitive Subscale, hereafter referred to as ADAS-Cog (14), will be used for this assessment (see Attachment LZZT.2).", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_635", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_10", + "extensionAttributes": [], + "name": "END10", + "label": "", + "description": "", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_634", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_6", + "extensionAttributes": [], + "name": "OBJ6", + "label": "", + "description": "", + "text": "To assess the treatment response as a function of Apo E genotype.", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_637", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_11", + "extensionAttributes": [], + "name": "END11", + "label": "", + "description": "", + "text": "*** To be determined from protocol ***", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_636", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + } + ], + "population": { + "id": "StudyDesignPopulation_1", + "extensionAttributes": [], + "name": "POP1", + "label": "", + "description": "Patients with Probable Mild to Moderate Alzheimer's Disease", + "includesHealthySubjects": false, + "plannedEnrollmentNumber": { + "id": "Quantity_8", + "extensionAttributes": [], + "value": 300.0, + "unit": null, + "instanceType": "Quantity" + }, + "plannedCompletionNumber": { + "id": "Quantity_7", + "extensionAttributes": [], + "value": 300.0, + "unit": null, + "instanceType": "Quantity" + }, + "plannedSex": [ + { + "id": "Code_620", + "extensionAttributes": [], + "code": "C49636", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Both", + "instanceType": "Code" + } + ], + "criterionIds": [ + "EligibilityCriterion_1", + "EligibilityCriterion_2", + "EligibilityCriterion_3", + "EligibilityCriterion_4", + "EligibilityCriterion_5", + "EligibilityCriterion_6", + "EligibilityCriterion_7", + "EligibilityCriterion_8", + "EligibilityCriterion_9", + "EligibilityCriterion_10", + "EligibilityCriterion_11", + "EligibilityCriterion_12", + "EligibilityCriterion_13", + "EligibilityCriterion_14", + "EligibilityCriterion_15", + "EligibilityCriterion_16", + "EligibilityCriterion_17", + "EligibilityCriterion_18", + "EligibilityCriterion_19", + "EligibilityCriterion_20", + "EligibilityCriterion_21", + "EligibilityCriterion_22", + "EligibilityCriterion_23", + "EligibilityCriterion_24", + "EligibilityCriterion_25", + "EligibilityCriterion_26", + "EligibilityCriterion_27", + "EligibilityCriterion_28", + "EligibilityCriterion_29", + "EligibilityCriterion_30", + "EligibilityCriterion_31" + ], + "plannedAge": { + "id": "Range_1", + "extensionAttributes": [], + "minValue": { + "id": "Quantity_9", + "extensionAttributes": [], + "value": 50.0, + "unit": { + "id": "AliasCode_251", + "extensionAttributes": [], + "standardCode": { + "id": "Code_618", + "extensionAttributes": [], + "code": "C29848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Year", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "maxValue": { + "id": "Quantity_10", + "extensionAttributes": [], + "value": 100.0, + "unit": { + "id": "AliasCode_252", + "extensionAttributes": [], + "standardCode": { + "id": "Code_619", + "extensionAttributes": [], + "code": "C29848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Year", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "isApproximate": false, + "instanceType": "Range" + }, + "notes": [], + "instanceType": "StudyDesignPopulation", + "cohorts": [] + }, + "scheduleTimelines": [ + { + "id": "ScheduleTimeline_4", + "extensionAttributes": [], + "name": "Main Timeline", + "label": "Main Timeline", + "description": "This is the main timeline for the study design.", + "mainTimeline": true, + "entryCondition": "Potential subject identified", + "entryId": "ScheduledActivityInstance_9", + "exits": [ + { + "id": "ScheduleTimelineExit_4", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_1", + "extensionAttributes": [], + "name": "TIM1", + "label": "Screening", + "description": "Screening timing", + "type": { + "id": "Code_20", + "extensionAttributes": [], + "code": "C201357", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 weeks", + "relativeToFrom": { + "id": "Code_21", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_9", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_2", + "extensionAttributes": [], + "name": "TIM2", + "label": "Pre dose", + "description": "Pre dose timing", + "type": { + "id": "Code_22", + "extensionAttributes": [], + "code": "C201357", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Before", + "instanceType": "Code" + }, + "value": "P2D", + "valueLabel": "2 days", + "relativeToFrom": { + "id": "Code_23", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_10", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "PT4H", + "windowUpper": "PT0H", + "windowLabel": "-4..0 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_3", + "extensionAttributes": [], + "name": "TIM3", + "label": "Dosing", + "description": "Dosing anchor", + "type": { + "id": "Code_26", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_27", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_11", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_4", + "extensionAttributes": [], + "name": "TIM4", + "label": "Week 2", + "description": "Week 2 timing", + "type": { + "id": "Code_28", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_29", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_12", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_5", + "extensionAttributes": [], + "name": "TIM5", + "label": "Week 4", + "description": "Week 4 timing", + "type": { + "id": "Code_32", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P4W", + "valueLabel": "4 Weeks", + "relativeToFrom": { + "id": "Code_33", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_13", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_6", + "extensionAttributes": [], + "name": "TIM6", + "label": "Week 6", + "description": "Week 6 timing", + "type": { + "id": "Code_36", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P6W", + "valueLabel": "6 Weeks", + "relativeToFrom": { + "id": "Code_37", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_7", + "extensionAttributes": [], + "name": "TIM7", + "label": "Week 8", + "description": "Week 8 timing", + "type": { + "id": "Code_40", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P8W", + "valueLabel": "8 Weeks", + "relativeToFrom": { + "id": "Code_41", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_15", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_9", + "extensionAttributes": [], + "name": "TIM9", + "label": "Week 12", + "description": "Week 12 timing", + "type": { + "id": "Code_46", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P12W", + "valueLabel": "12 Weeks", + "relativeToFrom": { + "id": "Code_47", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_17", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_11", + "extensionAttributes": [], + "name": "TIM11", + "label": "Week 16", + "description": "Week 16 timing", + "type": { + "id": "Code_52", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P16W", + "valueLabel": "16 Weeks", + "relativeToFrom": { + "id": "Code_53", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_19", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_13", + "extensionAttributes": [], + "name": "TIM13", + "label": "Week 20", + "description": "Week 20 timing", + "type": { + "id": "Code_58", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P20W", + "valueLabel": "20 Weeks", + "relativeToFrom": { + "id": "Code_59", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_21", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_15", + "extensionAttributes": [], + "name": "TIM15", + "label": "Week 24", + "description": "Week 24 timing", + "type": { + "id": "Code_64", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P24W", + "valueLabel": "24 Weeks", + "relativeToFrom": { + "id": "Code_65", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_23", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_16", + "extensionAttributes": [], + "name": "TIM16", + "label": "Week 26", + "description": "Week 26 timing", + "type": { + "id": "Code_68", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P26W", + "valueLabel": "26 Weeks", + "relativeToFrom": { + "id": "Code_69", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_24", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_8", + "extensionAttributes": [], + "name": "TIM8", + "label": "Week 8 Home", + "description": "Week 8 at home timing", + "type": { + "id": "Code_44", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_45", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_16", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_15", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_10", + "extensionAttributes": [], + "name": "TIM10", + "label": "Week 12 Home", + "description": "Week 12 at home timing", + "type": { + "id": "Code_50", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_51", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_18", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_17", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_12", + "extensionAttributes": [], + "name": "TIM12", + "label": "Week 16 Home", + "description": "Week 16 at home timing", + "type": { + "id": "Code_56", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_57", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_20", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_19", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_14", + "extensionAttributes": [], + "name": "TIM14", + "label": "Week 20 Home", + "description": "Week 20 at home timing", + "type": { + "id": "Code_62", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_63", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_22", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_21", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_9", + "extensionAttributes": [], + "name": "SCREEN1", + "label": "Screen One", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_10", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_1", + "Activity_2", + "Activity_3", + "Activity_4", + "Activity_5", + "Activity_6", + "Activity_7", + "Activity_8", + "Activity_9", + "Activity_10", + "Activity_13", + "Activity_16", + "Activity_17", + "Activity_18", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_24", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_1" + }, + { + "id": "ScheduledActivityInstance_10", + "extensionAttributes": [], + "name": "SCREEN2", + "label": "Screen Two", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_11", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_13", "Activity_14"], + "encounterId": "Encounter_2" + }, + { + "id": "ScheduledActivityInstance_11", + "extensionAttributes": [], + "name": "DOSE", + "label": "Dose", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_12", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_12", + "Activity_13", + "Activity_15", + "Activity_19", + "Activity_23", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_3" + }, + { + "id": "ScheduledActivityInstance_12", + "extensionAttributes": [], + "name": "WK2", + "label": "Week 2", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_13", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_11", + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_4" + }, + { + "id": "ScheduledActivityInstance_13", + "extensionAttributes": [], + "name": "WK4", + "label": "Week 4", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_14", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_5" + }, + { + "id": "ScheduledActivityInstance_14", + "extensionAttributes": [], + "name": "WK6", + "label": "Week 6", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_15", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_6" + }, + { + "id": "ScheduledActivityInstance_15", + "extensionAttributes": [], + "name": "WK8", + "label": "Week 8", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_16", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_16", + "extensionAttributes": [], + "name": "WK8N", + "label": "Week NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_17", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_17", + "extensionAttributes": [], + "name": "WK12", + "label": "Week 12", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_18", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_8" + }, + { + "id": "ScheduledActivityInstance_18", + "extensionAttributes": [], + "name": "WK12N", + "label": "Week 12 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_19", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_8" + }, + { + "id": "ScheduledActivityInstance_19", + "extensionAttributes": [], + "name": "WK16", + "label": "Week 16", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_20", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_20", + "extensionAttributes": [], + "name": "WK16N", + "label": "Week 16 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_21", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_21", + "extensionAttributes": [], + "name": "WK20", + "label": "Week 20", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_22", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_10" + }, + { + "id": "ScheduledActivityInstance_22", + "extensionAttributes": [], + "name": "WK20N", + "label": "Week 20 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_23", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_10" + }, + { + "id": "ScheduledActivityInstance_23", + "extensionAttributes": [], + "name": "WK24", + "label": "Week 24", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_24", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_24", + "extensionAttributes": [], + "name": "WK26", + "label": "Week 26", + "description": "-", + "defaultConditionId": null, + "epochId": "StudyEpoch_5", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_4", + "activityIds": [ + "Activity_7", + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_25", + "Activity_26", + "Activity_30" + ], + "encounterId": "Encounter_12" + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_1", + "extensionAttributes": [], + "name": "Adverse Event Timeline", + "label": "Adverse Event Timeline", + "description": "This is the adverse event timeline", + "mainTimeline": false, + "entryCondition": "Subject suffers an adverse event", + "entryId": "ScheduledActivityInstance_1", + "exits": [ + { + "id": "ScheduleTimelineExit_1", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_17", + "extensionAttributes": [], + "name": "TIM17", + "label": "Adverse Event", + "description": "Adverse Event", + "type": { + "id": "Code_72", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_73", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_1", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_1", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_1", + "extensionAttributes": [], + "name": "AE", + "label": "Adevers Event", + "description": "-", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_1", + "activityIds": ["Activity_31"], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_2", + "extensionAttributes": [], + "name": "Early Termination Timeline", + "label": "Early Termination Timeline", + "description": "This is the early termination processing", + "mainTimeline": false, + "entryCondition": "Subject terminates the study early", + "entryId": "ScheduledActivityInstance_2", + "exits": [ + { + "id": "ScheduleTimelineExit_2", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_18", + "extensionAttributes": [], + "name": "TIM18", + "label": "Early Termination", + "description": "Early Termination", + "type": { + "id": "Code_74", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_75", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_2", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_2", + "extensionAttributes": [], + "name": "ET", + "label": "Early Termination", + "description": "-", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_2", + "activityIds": [ + "Activity_7", + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_26", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30", + "Activity_32" + ], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_3", + "extensionAttributes": [], + "name": "Vital Sign Blood Pressure Timeline", + "label": "Vital Sign Blood Pressure Timeline", + "description": "BP Profile", + "mainTimeline": false, + "entryCondition": "Automatic execution", + "entryId": "ScheduledActivityInstance_3", + "exits": [ + { + "id": "ScheduleTimelineExit_3", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_19", + "extensionAttributes": [], + "name": "TIM19", + "label": "Supine", + "description": "Supine", + "type": { + "id": "Code_76", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 mins", + "relativeToFrom": { + "id": "Code_77", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_3", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_20", + "extensionAttributes": [], + "name": "TIM20", + "label": "VS while supine", + "description": "VS while supine", + "type": { + "id": "Code_78", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT5M", + "valueLabel": "5 mins", + "relativeToFrom": { + "id": "Code_79", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_4", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_21", + "extensionAttributes": [], + "name": "TIM21", + "label": "Standing", + "description": "Standing", + "type": { + "id": "Code_80", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 min", + "relativeToFrom": { + "id": "Code_81", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_5", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_4", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_22", + "extensionAttributes": [], + "name": "TIM22", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_82", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT1M", + "valueLabel": "1 min", + "relativeToFrom": { + "id": "Code_83", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_6", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_5", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_23", + "extensionAttributes": [], + "name": "TIM23", + "label": "Standing", + "description": "Standing", + "type": { + "id": "Code_84", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 min", + "relativeToFrom": { + "id": "Code_85", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_7", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_6", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_24", + "extensionAttributes": [], + "name": "TIM24", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_86", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT2M", + "valueLabel": "2 min", + "relativeToFrom": { + "id": "Code_87", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_8", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_7", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_3", + "extensionAttributes": [], + "name": "VS_5MIN", + "label": "5 minute supine", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_4", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_33"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_4", + "extensionAttributes": [], + "name": "VS_SUPINE", + "label": "Vital signs supine", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_5", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_34"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_5", + "extensionAttributes": [], + "name": "VS_1MIN", + "label": "1 minute standing", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_6", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_35"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_6", + "extensionAttributes": [], + "name": "VS_STAND1", + "label": "Vital signs after 1 min standing", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_7", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_36"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_7", + "extensionAttributes": [], + "name": "VS_2MIN", + "label": "2 minute standing", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_8", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_35"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_8", + "extensionAttributes": [], + "name": "VS_STAND3", + "label": "Vital signs after 3 min standing", + "description": "", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_3", + "activityIds": ["Activity_36"], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + } + ], + "biospecimenRetentions": [], + "documentVersionIds": [], + "eligibilityCriteria": [ + { + "id": "EligibilityCriterion_1", + "extensionAttributes": [], + "name": "IN01", + "label": "Age greater than 50", + "description": "", + "category": { + "id": "Code_638", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "01", + "criterionItemId": "EligibilityCriterionItem_1", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_2", + "extensionAttributes": [], + "name": "IN02", + "label": "Diagnosis of Alzheimer's", + "description": "", + "category": { + "id": "Code_639", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "02", + "criterionItemId": "EligibilityCriterionItem_2", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_3", + "extensionAttributes": [], + "name": "IN03", + "label": "MMSE Score", + "description": "", + "category": { + "id": "Code_640", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "03", + "criterionItemId": "EligibilityCriterionItem_3", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_4", + "extensionAttributes": [], + "name": "IN04", + "label": "Hachinski Ischemic Score", + "description": "", + "category": { + "id": "Code_641", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "04", + "criterionItemId": "EligibilityCriterionItem_4", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_5", + "extensionAttributes": [], + "name": "IN05", + "label": "CNS imaging comptaible with Alzheimer's", + "description": "", + "category": { + "id": "Code_642", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "05", + "criterionItemId": "EligibilityCriterionItem_5", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_6", + "extensionAttributes": [], + "name": "IN06", + "label": "Informed consent criteria", + "description": "", + "category": { + "id": "Code_643", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "06", + "criterionItemId": "EligibilityCriterionItem_6", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_7", + "extensionAttributes": [], + "name": "IN07", + "label": "Geographic proximity criteria", + "description": "", + "category": { + "id": "Code_644", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "07", + "criterionItemId": "EligibilityCriterionItem_7", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_8", + "extensionAttributes": [], + "name": "IN08", + "label": "Reliable caregiver criteria", + "description": "", + "category": { + "id": "Code_645", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inclusion Criteria", + "instanceType": "Code" + }, + "identifier": "08", + "criterionItemId": "EligibilityCriterionItem_8", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_9", + "extensionAttributes": [], + "name": "EX01", + "label": "Previous study criteria", + "description": "", + "category": { + "id": "Code_646", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "09", + "criterionItemId": "EligibilityCriterionItem_9", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_10", + "extensionAttributes": [], + "name": "EX02", + "label": "Other Alzheimer's therapy criteria", + "description": "", + "category": { + "id": "Code_647", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "10", + "criterionItemId": "EligibilityCriterionItem_10", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_11", + "extensionAttributes": [], + "name": "EX03", + "label": "Serious illness criteria", + "description": "", + "category": { + "id": "Code_648", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "11", + "criterionItemId": "EligibilityCriterionItem_11", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_12", + "extensionAttributes": [], + "name": "EX04", + "label": "Serious neurolocal conditions criteria", + "description": "", + "category": { + "id": "Code_649", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "12", + "criterionItemId": "EligibilityCriterionItem_12", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_13", + "extensionAttributes": [], + "name": "EX05", + "label": "Depression criteria", + "description": "", + "category": { + "id": "Code_650", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "13", + "criterionItemId": "EligibilityCriterionItem_13", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_14", + "extensionAttributes": [], + "name": "EX06", + "label": "Schizophrenia, Bipolar, Ethanol or psychoactive abuse criteria", + "description": "", + "category": { + "id": "Code_651", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "14", + "criterionItemId": "EligibilityCriterionItem_14", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_15", + "extensionAttributes": [], + "name": "EX07", + "label": "Syncope criteria", + "description": "", + "category": { + "id": "Code_652", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "15", + "criterionItemId": "EligibilityCriterionItem_15", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_16", + "extensionAttributes": [], + "name": "EX08", + "label": "ECG Criteria", + "description": "", + "category": { + "id": "Code_653", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "16b", + "criterionItemId": "EligibilityCriterionItem_16", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_17", + "extensionAttributes": [], + "name": "EX09", + "label": "Cardiovascular criteria", + "description": "", + "category": { + "id": "Code_654", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "17", + "criterionItemId": "EligibilityCriterionItem_17", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_18", + "extensionAttributes": [], + "name": "EX10", + "label": "Gastrointensinal criteria", + "description": "", + "category": { + "id": "Code_655", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "18", + "criterionItemId": "EligibilityCriterionItem_18", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_19", + "extensionAttributes": [], + "name": "EX11", + "label": "Endocrine criteria", + "description": "", + "category": { + "id": "Code_656", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "19", + "criterionItemId": "EligibilityCriterionItem_19", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_20", + "extensionAttributes": [], + "name": "EX12", + "label": "Resporatory criteria", + "description": "", + "category": { + "id": "Code_657", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "20", + "criterionItemId": "EligibilityCriterionItem_20", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_21", + "extensionAttributes": [], + "name": "EX13", + "label": "Genitourinary criteria", + "description": "", + "category": { + "id": "Code_658", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "21", + "criterionItemId": "EligibilityCriterionItem_21", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_22", + "extensionAttributes": [], + "name": "EX14", + "label": "Rheumatologic criteria", + "description": "", + "category": { + "id": "Code_659", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "22", + "criterionItemId": "EligibilityCriterionItem_22", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_23", + "extensionAttributes": [], + "name": "EX15", + "label": "HIV criteria", + "description": "", + "category": { + "id": "Code_660", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "23", + "criterionItemId": "EligibilityCriterionItem_23", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_24", + "extensionAttributes": [], + "name": "EX16", + "label": "Neurosyphilis, Meningitis,Encephalitis criteria", + "description": "", + "category": { + "id": "Code_661", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "24", + "criterionItemId": "EligibilityCriterionItem_24", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_25", + "extensionAttributes": [], + "name": "EX17", + "label": "Malignant disease criteria", + "description": "", + "category": { + "id": "Code_662", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "25", + "criterionItemId": "EligibilityCriterionItem_25", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_26", + "extensionAttributes": [], + "name": "EX18", + "label": "Ability to participate in study criteria", + "description": "", + "category": { + "id": "Code_663", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "26", + "criterionItemId": "EligibilityCriterionItem_26", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_27", + "extensionAttributes": [], + "name": "EX19", + "label": "Laboratory values criteria", + "description": "", + "category": { + "id": "Code_664", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "27b", + "criterionItemId": "EligibilityCriterionItem_27", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_28", + "extensionAttributes": [], + "name": "EX20", + "label": "Central laboratory values criteria", + "description": "", + "category": { + "id": "Code_665", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "28b", + "criterionItemId": "EligibilityCriterionItem_28", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_29", + "extensionAttributes": [], + "name": "EX21", + "label": "Syphilia criteria", + "description": "", + "category": { + "id": "Code_666", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "29b", + "criterionItemId": "EligibilityCriterionItem_29", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_30", + "extensionAttributes": [], + "name": "EX22", + "label": "Hemoglobin criteria", + "description": "", + "category": { + "id": "Code_667", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "30b", + "criterionItemId": "EligibilityCriterionItem_30", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_31", + "extensionAttributes": [], + "name": "EX23", + "label": "Medications Criteria", + "description": "", + "category": { + "id": "Code_668", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Exclusion Criteria", + "instanceType": "Code" + }, + "identifier": "31b", + "criterionItemId": "EligibilityCriterionItem_31", + "nextId": null, + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + } + ], + "analysisPopulations": [ + { + "id": "AnalysisPopulation_1", + "extensionAttributes": [], + "name": "AP_1", + "label": null, + "description": null, + "text": "Patients with Mild to Moderate Alzheimer\u2019s Disease.", + "subsetOfIds": ["StudyDesignPopulation_1"], + "notes": [], + "instanceType": "AnalysisPopulation" + } + ], + "notes": [], + "instanceType": "InterventionalStudyDesign", + "subTypes": [ + { + "id": "Code_153", + "extensionAttributes": [], + "code": "C49666", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Efficacy Study", + "instanceType": "Code" + }, + { + "id": "Code_154", + "extensionAttributes": [], + "code": "C49667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Safety Study", + "instanceType": "Code" + }, + { + "id": "Code_155", + "extensionAttributes": [], + "code": "C49663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Pharmacokinetic Study", + "instanceType": "Code" + } + ], + "model": { + "id": "Code_156", + "extensionAttributes": [], + "code": "C82639", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Parallel Study", + "instanceType": "Code" + }, + "intentTypes": [ + { + "id": "Code_152", + "extensionAttributes": [], + "code": "C49656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Treatment Study", + "instanceType": "Code" + } + ], + "blindingSchema": { + "id": "AliasCode_23", + "extensionAttributes": [], + "standardCode": { + "id": "Code_151", + "extensionAttributes": [], + "code": "C15228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Double Blind Study", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + } + } + ], + "titles": [ + { + "id": "StudyTitle_1", + "extensionAttributes": [], + "text": "LZZT", + "type": { + "id": "Code_7", + "extensionAttributes": [], + "code": "C94108", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Study Acronym", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_2", + "extensionAttributes": [], + "text": "Xanomeline (LY246708)", + "type": { + "id": "Code_9", + "extensionAttributes": [], + "code": "C99905x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brief Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_3", + "extensionAttributes": [], + "text": "Safety and Efficacy of the Xanomeline Transdermal Therapeutic System (TTS) in Patients with Mild to Moderate Alzheimer's Disease", + "type": { + "id": "Code_10", + "extensionAttributes": [], + "code": "C99905x2", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Official Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_4", + "extensionAttributes": [], + "text": "Safety and Efficacy of the Xanomeline Transdermal Therapeutic System (TTS) in Patients with Mild to Moderate Alzheimer's Disease", + "type": { + "id": "Code_11", + "extensionAttributes": [], + "code": "C99905x3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Public Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + } + ], + "eligibilityCriterionItems": [ + { + "id": "EligibilityCriterionItem_1", + "extensionAttributes": [], + "name": "IN01", + "label": null, + "description": null, + "text": "

Males and postmenopausal females at least years of age.

", + "dictionaryId": "SyntaxTemplateDictionary_1", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_2", + "extensionAttributes": [], + "name": "IN02", + "label": null, + "description": null, + "text": "

as defined by National Institute of Neurological and Communicative Disorders and Stroke (NINCDS) and the Alzheimer's Disease and Related Disorders Association (ADRDA) guidelines (Attachment LZZT.7).

", + "dictionaryId": "SyntaxTemplateDictionary_1", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_3", + "extensionAttributes": [], + "name": "IN03", + "label": null, + "description": null, + "text": "

score of 10 to 23.

", + "dictionaryId": "SyntaxTemplateDictionary_2", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_4", + "extensionAttributes": [], + "name": "IN04", + "label": null, + "description": null, + "text": "

score of \u22644 (Attachment LZZT.8).

", + "dictionaryId": "SyntaxTemplateDictionary_2", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_5", + "extensionAttributes": [], + "name": "IN05", + "label": null, + "description": null, + "text": "

CNS imaging (CT scan or MRI of brain) compatible with AD within past 1 year.

\n

The following findings are incompatible with AD:

\n
    \n
  1. \n

    Large vessel strokes

    \n
      \n
    1. \n

      Any definite area of encephalomalacia consistent with ischemic necrosis in any cerebral artery territory.

      \n
    2. \n
    3. \n

      Large, confluent areas of encephalomalacia in parieto-occipital or frontal regions consistent with watershed\n infarcts.

      \n

      The above are exclusionary. Exceptions are made for small areas of cortical asymmetry which may represent a\n small cortical stroke or a focal area of atrophy provided there is no abnormal signal intensity in the\n immediately underlying parenchyma. Only one such questionable area allowed per scan, and size is restricted to\n \u22641cm in frontal/parietal/temporal cortices and \u22642 cm in occipital cortex.

      \n
    4. \n
    \n
  2. \n
  3. \n

    Small vessel ischemia

    \n
      \n
    1. \n

      Lacunar infarct is defined as an area of abnormal intensity seen on CT scan or on both T1 and T2 weighted MRI\n images in the basal ganglia, thalamus or deep white matter which is \u22641 cm in maximal diameter. A maximum of\n one\n lacune is allowed per scan.

      \n
    2. \n
    3. \n

      Leukoariosis or leukoencephalopathy is regarded as an abnormality seen on T2 but not T1 weighted MRIs, or on\n CT. This is accepted if mild or moderate in extent, meaning involvement of less than 25% of cortical white\n matter.\n

    4. \n
    \n
  4. \n
  5. \n

    Miscellaneous

    \n
      \n
    1. \n

      Benign small extra-axial tumors (ie, meningiomas) are accepted if they do not contact or indent the brain\n parenchyma.

      \n
    2. \n
    3. \n

      Small extra-axial arachnoid cysts are accepted if they do not indent or deform the brain parenchyma.

      \n
    4. \n
    \n
  6. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_6", + "extensionAttributes": [], + "name": "IN06", + "label": null, + "description": null, + "text": "

Investigator has obtained informed consent signed by the patient (and/or legal representative) and by the caregiver.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_7", + "extensionAttributes": [], + "name": "IN07", + "label": null, + "description": null, + "text": "

Geographic proximity to investigator's site that allows adequate follow-up.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_8", + "extensionAttributes": [], + "name": "IN08", + "label": null, + "description": null, + "text": "

A reliable caregiver who is in frequent or daily contact with the patient and who will accompany the patient to the office and/or be available by telephone at designated times, will monitor administration of prescribed medications, and will be responsible for the overall care of the patient at home. The caregiver and the patient must be able to communicate in English and willing to comply with 26 weeks of transdermal therapy.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_9", + "extensionAttributes": [], + "name": "EX01", + "label": null, + "description": null, + "text": "

Persons who have previously completed or withdrawn from this study or any other study investigating xanomeline TTS or the oral formulation of xanomeline.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_10", + "extensionAttributes": [], + "name": "EX02", + "label": null, + "description": null, + "text": "

Use of any investigational agent or approved Alzheimer's therapeutic medication within 30 days prior to enrollment into the study.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_11", + "extensionAttributes": [], + "name": "EX03", + "label": null, + "description": null, + "text": "

Serious illness which required hospitalization within 3 months of screening.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_12", + "extensionAttributes": [], + "name": "EX04", + "label": null, + "description": null, + "text": "

Diagnosis of serious neurological conditions, including

\n
    \n
  1. Stroke or vascular dementia documented by clinical history and/or radiographic findings interpretable by the investigator as indicative of these disorders

  2. \n
  3. Seizure disorder other than simple childhood febrile seizures

  4. \n
  5. Severe head trauma resulting in protracted loss of consciousness within the last 5 years, or multiple episodes of head trauma

  6. \n
  7. Parkinson's disease

  8. \n
  9. Multiple sclerosis

  10. \n
  11. Amyotrophic lateral sclerosis

  12. \n
  13. Myasthenia gravis.

  14. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_13", + "extensionAttributes": [], + "name": "EX05", + "label": null, + "description": null, + "text": "

Episode of depression meeting DSM-IV criteria within 3 months of screening.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_14", + "extensionAttributes": [], + "name": "EX06", + "label": null, + "description": null, + "text": "

A history within the last 5 years of the following:

\n
    \n
  1. Schizophrenia

  2. \n
  3. Bipolar Disease

  4. \n
  5. Ethanol or psychoactive drug abuse or dependence.

  6. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_15", + "extensionAttributes": [], + "name": "EX07", + "label": null, + "description": null, + "text": "

A history of syncope within the last 5 years.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_16", + "extensionAttributes": [], + "name": "EX08", + "label": null, + "description": null, + "text": "

Evidence from ECG recording at screening of any of the following conditions :

\n
    \n
  1. Left bundle branch block

  2. \n
  3. Bradycardia \u226450 beats per minute

  4. \n
  5. Sinus pauses >2 seconds

  6. \n
  7. Second or third degree heart block unless treated with a pacemaker

  8. \n
  9. Wolff-Parkinson-White syndrome

  10. \n
  11. Sustained supraventricular tachyarrhythmia including SVT\u226510 sec, atrial fibrillation, atrial flutter.

  12. \n
  13. Ventricular tachycardia at a rate of \u2265120 beats per minute lasting\u226510 seconds.

  14. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_17", + "extensionAttributes": [], + "name": "EX09", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious cardiovascular disorder, including

\n
    \n
  1. Clinically significant arrhythmia

  2. \n
  3. Symptomatic sick sinus syndrome not treated with a pacemaker

  4. \n
  5. Congestive heart failure refractory to treatment

  6. \n
  7. Angina except angina controlled with PRN nitroglycerin

  8. \n
  9. Resting heart rate <50 or >100 beats per minute, on physical exam

  10. \n
  11. Uncontrolled hypertension.

  12. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_18", + "extensionAttributes": [], + "name": "EX10", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious gastrointestinal disorder, including

\n
    \n
  1. Chronic peptic/duodenal/gastric/esophageal ulcer that are untreated or refractory to treatment

  2. \n
  3. Symptomatic diverticular disease

  4. \n
  5. Inflammatory bowel disease

  6. \n
  7. Pancreatitis

  8. \n
  9. Hepatitis

  10. \n
  11. Cirrhosis of the liver.

  12. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_19", + "extensionAttributes": [], + "name": "EX11", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious endocrine disorder, including

\n
    \n
  1. Uncontrolled Insulin Dependent Diabetes Mellitus (IDDM)

  2. \n
  3. Diabetic ketoacidosis

  4. \n
  5. Untreated hyperthyroidism

  6. \n
  7. Untreated hypothyroidism

  8. \n
  9. Other untreated endocrinological disorder

  10. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_20", + "extensionAttributes": [], + "name": "EX12", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious respiratory disorder, including

\n
    \n
  1. Asthma with bronchospasm refractory to treatment

  2. \n
  3. Decompensated chronic obstructive pulmonary disease.

  4. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_21", + "extensionAttributes": [], + "name": "EX13", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious genitourinary disorder, including

\n
    \n
  1. Renal failure

  2. \n
  3. Uncontrolled urinary retention.

  4. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_22", + "extensionAttributes": [], + "name": "EX14", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious rheumatologic disorder, including

\n
    \n
  1. Lupus

  2. \n
  3. Temporal arteritis

  4. \n
  5. Severe rheumatoid arthritis.

  6. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_23", + "extensionAttributes": [], + "name": "EX15", + "label": null, + "description": null, + "text": "

A known history of human immunodeficiency virus (HIV) within the last 5 years.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_24", + "extensionAttributes": [], + "name": "EX16", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a serious infectious disease including

\n
    \n
  1. a) Neurosyphilis

  2. \n
  3. b) Meningitis

  4. \n
  5. c) Encephalitis.

  6. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_25", + "extensionAttributes": [], + "name": "EX17", + "label": null, + "description": null, + "text": "

A history within the last 5 years of a primary or recurrent malignant disease with the exception of resected cutaneous squamous cell carcinoma in situ, basal cell carcinoma, cervical carcinoma in situ, or in situ prostate cancer with a normal PSA postresection.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_26", + "extensionAttributes": [], + "name": "EX18", + "label": null, + "description": null, + "text": "

Visual, hearing, or communication disabilities impairing the ability to participate in the study; (for example, inability to speak or understand English, illiteracy).

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_27", + "extensionAttributes": [], + "name": "EX19", + "label": null, + "description": null, + "text": "

Laboratory test values exceeding the Lilly Reference Range III for the patient's age in any of the following analytes: \u2191 creatinine, \u2191 total bilirubin, \u2191 SGOT, \u2191 SGPT, \u2191 alkaline phosphatase, \u2191 GGT, \u2191\u2193 hemoglobin, \u2191\u2193 white blood cell count, \u2191\u2193 platelet count, \u2191\u2193 serum sodium, potassium, or calcium.

\n

If values exceed these laboratory reference ranges, clinical significance will be judged by the monitoring physicians. If the monitoring physician determines that the deviation from the reference range is not clinically significant, the patient may be included in the study. This decision will be documented.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_28", + "extensionAttributes": [], + "name": "EX20", + "label": null, + "description": null, + "text": "

Central laboratory test values below reference range for folate, and Vitamin B 12 , and outside reference range for thyroid function tests.

\n
    \n
  1. \n

    Folate reference range 2.0 to 25.0 ng/mL. Patients will be allowed to enroll if their folate levels are above the upper end of the range if patients are taking vitamin supplements.

    \n
  2. \n
  3. \n

    Vitamin B 12 reference range 130 to 900 pg/mL. Patients will be allowed to enroll if their B 12 levels are above the upper reference range if patients are taking oral vitamin supplements.

    \n
  4. \n
  5. \n

    Thyroid functions

    \n
      \n
    1. \n

      Thyroid Uptake reference range 25 to 38%. Patients will be allowed to enroll with results of 23 to 51% provided the remainder of the thyroid profile is normal and there are no clinical signs or symptoms of thyroid abnormality.

      \n
    2. \n
    3. \n

      TSH reference range 0.32 to 5.0. Patients will be allowed to enroll with results of 0.03 to 6.2 if patients are taking stable doses of exogenous thyroid supplements, with normal free thyroid index, and show no clinical signs or symptoms of thyroid abnormality.

      \n
    4. \n
    5. \n

      Total T4 reference range 4.5 to 12.5. Patients will be allowed to enroll with results of 4.1 to 13.4 if patients are taking stable doses of exogenous thyroid hormone, with normal free thyroid index, and show no clinical signs or symptoms of thyroid abnormality.

      \n
    6. \n
    7. \n

      Free Thyroid Index reference range 1.1 to 4.6.

      \n
    8. \n
    \n
  6. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_29", + "extensionAttributes": [], + "name": "EX21", + "label": null, + "description": null, + "text": "

Positive syphilis screening.

\n

Positive syphilis screening. As determined by positive RPR followed up by confirmatory FTA-Abs. Confirmed patients are excluded unless there is a documented medical history of an alternative disease (for example, yaws) which caused the lab abnormality.

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_30", + "extensionAttributes": [], + "name": "EX22", + "label": null, + "description": null, + "text": "

Glycosylated hemoglobin (A1C). Required only on patients with known diabetes mellitus or random blood sugar >200 on screening labs. Patients will be excluded if levels are >9.5%

", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_31", + "extensionAttributes": [], + "name": "EX23", + "label": null, + "description": null, + "text": "

Treatment with the following medications within the specified washout periods prior to enrollment and during the\n study:

\n
    \n
  1. \n

    Anticonvulsants including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Depakote® (valproic acid) 2 weeks
    Dilantin® (phenytoin)2 weeks
    Felbatol®\n (felbamate)1 month
    Klonopin® (clonazepam)2\n weeks
    Lamictal® (lamotrigine)2 weeks
    Mysoline® (primidone)1 month
    Neurontin®\n (gabapentin)2 weeks
    Phenobarbitol1 month
    Tegretol® (carbamazepine)2 weeks
    \n
  2. \n
  3. \n

    Alpha receptor blockers including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Aldomet® (methyldopa) 2 weeks
    Cardura®\n (doxazosin) 2 weeks
    Catapres® (clonidine)\n 2 weeks
    Hytrin® (terazosin) 2 weeks
    Minipress® (prazosin)2 weeks
    Tenex® (guanfacine)2 weeks
    Wytensin®\n (guanabenz) 2 weeks
    \n

    The use of low doses\n (2 mg daily) of either Hytrin® or Cardura® for relief of\n urinary retention for patients with prostatic hypertrophy will be considered\n on a case-by-case basis provided blood pressure is stable and the medication\n has not had demonstrable effect on dementia symptoms in the opinion of the treating\n physician. Contact CRO medical monitor.

    \n
  4. \n
  5. \n

    Calcium channel blockers\n that are CNS active including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Calan® , Isoptin® , Verelan® (verapamil) 2 weeks
    Cardizem® (diltiazem) 2 weeks
    Nimotop®\n (nimodipine) 2 weeks
    Adalat® , Procardia XL®\n (nifedipine) 2 weeks
    \n

    Cardene® (nicardipine),\n Norvasc® , (amlodipine), and DynaCirc® (isradipine) will\n be allowed during the study. If a patient is taking an excluded calcium channel\n blocker and is changed to an equivalent dose of an allowed calcium channel blocker,\n enrollment may proceed in as little as 24 hours though 1 week is preferred when\n possible.

    \n
  6. \n
  7. \n

    Beta blockers including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Betapace® (sotalol) 2 weeks
    Inderal® (propranolol) 2 weeks
    Lopressor®\n , Toprol XL® (metoprolol) 2 weeks
    Corgard® (nadolol) 2 weeks
    Sectral® (acebutolol)2 weeks
    Tenormin® (atenolol) 2 weeks
    Visken® (pindolol)2 weeks
    \n

    Beta\n blocker eye drops for glaucoma will be considered on a case-by-case basis. Call\n medical monitor.

    \n
  8. \n
  9. \n

    Beta sympathomimetics (unless inhaled) including\n but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Alupent® tablets\n (metaproterenol) 2 weeks
    Brethine® tablets\n (terbutaline) 2 weeks
    Dopamine 2 weeks
    Proventil Repetabs® , Ventolin® tablets (albuterol tablets)\n 2 weeks
    \n
  10. \n
  11. Parasympathomimetics (cholinergics) (unless opthalmic) including but not limited to\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Antilirium® (physostigmine) 1 month
    Aricept® (donepezil) 1 month
    Cognex® (tacrine) 1\n month
    Mestinon® (pyridostigmine) 1 week
    Reglan® (metoclopramide)2 weeks
    Urecholine®\n , Duvoid (bethanechol) 2 weeks
    \n

    Cholinergic eye drops for treatment of glaucoma will be allowed during the study on a case-by-case basis.\n Please contact the CRO medical monitor.

    \n
  12. \n
  13. \n

    Muscle relaxants-centrally active including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Equanil® (meprobamate) 2 weeks
    Flexeril® (cyclobenzaprine)2 weeks
    Lioresal® (baclofen) 2 weeks
    Norflex® (orphenadrine) 2 weeks
    Parafon Forte® (chlorzoxazone)2 weeks
    Robaxin® (methocarbamol) 2 weeks
    Skelaxin® (metaxalone)\n 2 weeks
    Soma® (carisoprodol) 2 weeks
    \n
  14. \n
  15. \n

    Monamine oxidase inhibitors (MAOI) including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Eldepryl® (selegiline)1 month
    Nardil® (phenelzine) 1 month
    Parnate® (tranylcypromine) 1 month
    \n
  16. \n
  17. \n

    Parasympatholytics including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Antivert® , Bonine® , Dramamine II® (meclizine)3 days
    Artane® (trihexyphenidyl)2 weeks
    Bellergal-S® (alkaloids of belladonna and ergotamine) 2 weeks
    Bentyl® (dicyclomine) 3 days
    Cogentin® (benztropine) 2 weeks
    Cystospaz®, Levsin® , Levsinex® (hyoscyamine)2 weeks
    Ditropan®\n (oxybutynin) 2 weeks
    Donnatal® , Hyosophen®\n (atropine, scopolamine, hyoscyamine and phenobarbitol) 1 month
    Dramamine® (dimenhydrinate)3 days
    Lomotil®, Lonox® (atropine, diphenoxylate) 2 weeks
    Pro-Banthine®(propantheline) 2 weeks
    Robinul® (glycopyrrolate)3 days
    Tigan® (trimethobenzamide) 3 days
    Transderm-Scop® (scopolamine) 2 weeks
    Urispas® (flavoxate)2 weeks
    \n
  18. \n
  19. \n

    Antidepressants including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Anafranil® (clomipramine) 1 month
    Asendin®\n (amoxapine) 1 month
    Desyrel® (trazodone)\n 1 month
    Effexor® (venlafaxine) 1 month
    Elavil® (amitriptyline) 1 month
    Ludiomil®\n (maprotiline) 1 month
    Norpramin® (desipramine)\n 1 month
    Pamelor® , Aventyl® (nortriptyline) 1\n month
    Paxil® (paroxetine) 1 month
    Prozac®\n (fluoxetine 1 month
    Remeron® (mirtazapine)\n 1 month
    Serzone® (nefazodone) 1 month
    Sinequan®\n (doxepin) 1 month
    Tofranil® (imipramine)\n 1 month
    Vivactil® (protriptyline) 1 month
    Wellbutrin® (bupropion) 1 month
    Zoloft®\n (sertraline) 1 month
    \n
  20. \n
  21. \n

    Systemic corticosteroids including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Cortisone2 weeks
    Decadron® (dexamethasone)2 weeks
    Depo-Medrol® (methylprednisolone)1 month\n
    Prednisone2 weeks
    \n
  22. \n
  23. \n

    Xanthine derivatives\n including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Aminophylline2 weeks\n
    Fioricet® , Esgic® , Phrenilin Forte® (caffeine, butalbital)3 days\n
    Theo-Dur® (theophylline)2 weeks\n
    Wigraine® , Cafergot® (caffeine, ergotamine)3 days\n
    \n
  24. \n
  25. \n

    Histamine (H2 ) antagonists including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Axid® (nizatidine)1 week
    Pepcid® (famotidine)1 week
    Tagamet® (cimetidine)1 week
    Zantac® (ranitidine)1 week
    \n

    If an H 2 antagonist is needed by the patient, Axid® will be allowed on a case-by-case\n basis. Please consult CRO medical monitor.

    \n
  26. \n
  27. \n

    Narcotic Analgesics including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Darvocet-N\n 100® , (propoxyphene)1 week
    Demerol® (meperidine)1\n week
    Dilaudid® (hydromorphone)1 week
    Duragesic® (fentanyl)1 week
    MS\n Contin® , Roxanol® , Oramorph® (morphine) 1 week
    Percocet® , Roxicet® (oxycodone with acetaminophen)3\n days
    Percodan® , Roxiprin1 week
    Stadol® (butorphanol)1 week
    Talacen®\n (pentazocine)1 week
    Tylenol #2® , #3®\n , #4® (codeine and acetaminophen) 3 days
    Tylox®\n , Roxilox® (oxycodone)3 days
    Vicodin®, Lorcet® (hydrocodone)1 week
    \n

    Percocet\n (oxycodone with acetaminophen) and Tylenol® with codeine #2, #3, #4\n (acetaminophen + codeine) ARE allowed in the month prior to enrollment, but\n are not permitted in the 3 days prior to enrollment.

    \n
  28. \n
  29. \n

    Neuroleptics\n (antipsychotics) including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Clozaril®\n (clozapine)2 weeks
    Haldol® (haloperidol)2\n weeks
    Loxitane® (loxapine)2 weeks
    Mellaril® (thioridazine)2 weeks
    Moban®\n (molindone)2 weeks
    Navane® (thiothixene)2\n weeks
    Orap® (pimozide)2 weeks
    Prolixin® (fluphenazine)1 month
    Risperdal®\n (risperidone)2 weeks
    Stelazine® (trifluoperazine)2\n weeks
    Thorazine® (chlorpromazine)2 weeks
    Trilafon® (perphenazine)2 weeks
    Serentil®\n (mesoridazine)2 weeks
    \n

    The use of neuroleptics\n on a daily basis must be discontinued 2 to 4 weeks prior to enrollment. The\n use of neuroleptics on an as-needed basis is allowable during the screening\n period, but the last dose must be at least 7 days prior to enrollment.

    \n
  30. \n
  31. \n

    Antianxiety agents including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Atarax® (hydroxyzine)2 weeks
    BuSpar®\n (buspirone)2 weeks
    Librium® (chlordiazepoxide)2 weeks
    Serax® (oxazepam)2 weeks
    Tranxene® (clorazepate)2 weeks
    Valium® (diazepam)2 weeks
    Vistaril® (hydroxyzine pamoate)2 weeks
    Xanax® (alprazolam)2 weeks
    \n

    Ativan® (lorazepam) should be discontinued on a daily\n basis 2 weeks

    \n

    prior to enrollment. It may be used on an as-needed\n basis during the screening period, but is not permitted in the 24 hours prior\n to enrollment.

    \n
  32. \n
  33. \n

    Hypnotics/Sedatives including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Ambien® (zolpidem) 3 days\n
    Dalmane® (flurazepam)3 days
    Doral® (quazepam)3 days
    Halcion® (triazolam)3 days
    Nembutal® 2 weeks
    ProSom® (estazolam)3 days
    Restoril®\n (temazepam)3 days
    Seconal®2 weeks
    \n

    Chloral Hydrate is allowed on an as-needed basis during screening, but is not permitted in the 24 hours prior to enrollment.

    \n
  34. \n
  35. \n

    Histamine (H1 ) antagonists including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Actifed® , Actifed Plus® (triprolidine) Benadryl®\n , Unisom® , Tylenol P.M.® 3 days
    (diphenhydramine)3 days
    Compazine® (prochlorperazine)3 days
    Contac® , Coricidin D® , Sinutab® , Novahistine® , Alka\n Seltzer Plus® , Naldecon® , Sudafed Plus® , Tylenol Cold® , Tylenol\n Cold and Flu® (chlorpheniramine)3 days
    Dimetapp®\n (brompheniramine)3 days
    Drixoral® (dexbrompheniramine)3 days
    Hismanal® (astemizole)1 week
    Phenergan®\n (promethazine)3 days
    Seldane® (terfenadine)1\n week
    Tavist® (clemastine fumarate)3 days
    Zyrtec® (cetrizine) 1 week
    \n

    Allegra®\n (fexofenadine hydrochloride) or Claritin® (loratadine) may be taken\n on as-needed basis during screening but must be discontinued within 24 hours\n of enrollment.\n

    \n
  36. \n
  37. \n

    Stimulants including but not limited to

    \n \n \n \n \n \n \n \n \n \n
    Cylert® (pemoline) 1 month
    Ritalin® (methylphenidate)1 month
    \n
  38. \n
  39. \n

    Antiarrhythmics including but not limited to the following

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Adenocard® (adenosine)
    Cordarone®\n (amiodarone)
    Ethmozine® (moricizine)
    Mexitil® (mexiletine)
    Norpace® (disopyramide)\n
    Procan® (procainamide)
    Quinaglute®\n (quinidine)
    Rythmol® (propafenone)
    Tambocor®\n (flecainide)
    Tonocard® (tocainide)
    \n

    Requirement of these drugs for control of cardiac arrhythmia indicates that\n the patient should be excluded from the study. If discontinuation of an antiarrhythmic\n is considered, please discuss case with CRO medical monitor.

    \n
  40. \n
  41. \n

    Miscellaneous drugs including but not limited to

    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Coenzyme\n Q2 weeks
    Eskalith® , Lithobid® (lithium)2\n weeks
    Ginkgo biloba1 week
    Lecithin\n 1 week
    Lecithin 1 week
    Lupron2 weeks
    Tamoxifen1 month
    \n
  42. \n
  43. \n

    Estrogen supplements are permitted during the study, but dosage must be stable for at least 3 months prior to\n enrollment.

    \n
  44. \n
", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + } + ], + "narrativeContentItems": [ + { + "id": "NarrativeContentItem_1", + "extensionAttributes": [], + "name": "NCI_1", + "text": "
\n
\n
\n

The information contained in this clinical study protocol is

Copyright \u00a9 2006 Eli Lilly and Company.

\n
\n
\n
\n
\n

\n
\n
\n
\n
\n

\n
\n
\n
\n
\n

\n
\n
\n
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_2", + "extensionAttributes": [], + "name": "NCI_2", + "text": "

The M1 muscarinic-cholinergic receptor is 1 of 5 characterized muscarinic-cholinergic receptor subtypes (Fisher and Barak 1994). M1 receptors in the cerebral cortex and hippocampus are, for the most part, preserved in Alzheimer's disease (AD), while the presynaptic neurons projecting to these receptors from the nucleus basalis of Meynert degenerate (Bierer et al. 1995). The presynaptic loss of cholinergic neurons has been correlated to the antimortum cognitive impairment in AD patients, prompting speculation that replacement therapy with cholinomimetics will alleviate the cognitive dysfunction of the disorder (Fisher and Barak 1994).

\n

Xanomeline is a novel M1 agonist which has shown high affinity for the M1 receptor subtype (in transfected cells), and substantially less or no affinity for other muscarinic subtypes. Positron emission tomography (PET) studies of 11C-labeled xanomeline in cynomolgus monkeys have suggested that the compound crosses the blood-brain barrier and preferentially binds the striatum and neocortex.

\n

Clinical development of an oral formulation of xanomeline for the indication of mild and moderate AD was initiated approximately 4 years ago. A large-scale study of safety and efficacy provided evidence that an oral dosing regimen of 75 mg three times daily (TID) may be associated with enhanced cognition and improved clinical global impression, relative to placebo. As well, a dramatic reduction in psychosis, agitation, and other problematic behaviors, which often complicate the course of the disease, was documented. However, the discontinuation rate associated with this oral dosing regimen was 58.6%, and alternative clinical strategies have been sought to improve tolerance for the compound.

\n

To that end, development of a Transdermal Therapeutic System (TTS) has been initiated. Relative to the oral formulation, the transdermal formulation eliminates high concentrations of xanomeline in the gastrointestinal (GI) tract and presystemic (firstpass) metabolism. Three transdermal delivery systems, hereafter referred to as the xanomeline TTS Formulation A, xanomeline TTS Formulation B, and xanomeline TTS formulation E have been manufactured by Lohman Therapy Systems GmbH of Andernach Germany. TTS Formulation A is 27 mg xanomeline freebase in a 25-cm2 matrix. TTS Formulation B is 57.6 mg xanomeline freebase in a 40-cm2 matrix. Formulation E has been produced in 2 patch sizes: 1) 54 mg xanomeline freebase with 0.06 mg Vitamin E USP in a 50-cm2 matrix and 2) 27 mg xanomeline freebase with 0.03 mg Vitamin E USP in a 25-cm2 matrix. For a detailed description of the composition of these formulations please refer to Part II, Section 14 of the Xanomeline (LY246708) Clinical Investigator's Brochure. For characterization of the safety, tolerance, and pharmacokinetics of xanomeline TTS Formulations A, B, and E, please refer to Part II, Sections 7, 8, and 10 of the Xanomeline (LY246708) Clinical Investigator's Brochure. Formulation E will be studied in this protocol, H2Q-MC-LZZT(c).

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_3", + "extensionAttributes": [], + "name": "NCI_3", + "text": "
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_4", + "extensionAttributes": [], + "name": "NCI_4", + "text": "

The primary objectives of this study are

\n
    \n
  • \n
  • \n
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_5", + "extensionAttributes": [], + "name": "NCI_5", + "text": "

The secondary objectives of this study are

\n
    \n
  • \n
  • \n
  • \n
  • \n
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_6", + "extensionAttributes": [], + "name": "NCI_6", + "text": "
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_7", + "extensionAttributes": [], + "name": "NCI_7", + "text": "

Patients with probable mild to moderate AD will be studied in a randomized, double-blind, parallel (3 arm), placebo-controlled trial of 26 weeks duration. The study will be conducted on an outpatient basis. Approximately 300 patients will be enrolled (see Schedule of Events for Protocol H2Q-MC-LZZT(c), Attachment LZZT.1).

\n

Following informed consent, patients will be screened at Visit 1. At screening, patients will undergo complete neuropsychiatric assessment, psychometric testing, and general medical assessment (including medical history, pre-existing conditions, physical examination). In addition, vital signs, temperature, medication history, electrocardiogram (ECG), chest x-ray, and safety laboratories will be obtained. During the screening visit, patients will wear a placebo TTS to determine willingness and ability to comply with transdermal administration procedures. If patients have not had central nervous system (CNS) imaging in the previous 12 months, a computed tomography (CT) or magnetic resonance imaging (MRI) scan will be obtained. If patients are insulin dependent diabetics, a hemoglobin A 1c will be obtained. Screening exams and procedures may be performed after Visit 1; however, their results must be completed and available prior to randomization. The screening process should occur within 2 weeks of randomization (Visit 3 of the study).

\n

Patients who meet enrollment criteria from Visit 1 will proceed to Visit 2 at which time they will undergo a 24-hour Ambulatory ECG. At Visit 3 the Ambulatory ECG will be removed and patients will be randomized to 1 of 3 treatment arms. The treatment arms will include a placebo arm, a low-dose xanomeline arm (50 cm 2 TTS Formulation E, 54 mg xanomeline), and a high-dose xanomeline arm (75 cm 2 TTS Formulation E, 81 mg xanomeline). All patients receiving xanomeline will be started at 50 cm 2 TTS Formulation E. For the first 8 weeks of treatment, patients will be assessed at clinic visits every 2 weeks and, thereafter, at clinic visits every 4 weeks. Patients who discontinue prior to Visit 12 (Week 24) will be brought back for full efficacy assessments at or near to 24 weeks, whenever possible.

\n

A Data Safety Monitoring Board (DSMB), chaired by an external cardiologist, will meet after 75, 150, 225, and 300 patients have completed 1 month of treatment. The DSMB will review cardiovascular findings to decide if discontinuation of the study or any treatment arm is appropriate, if additional cardiovascular monitoring is required, if further cardiovascular monitoring is unnecessary, or if adjustment of dose within a treatment arm (or arms) is appropriate (see Section 3.9.4).

\n

At Visits 3, 8, 10, and 12, efficacy instruments (ADAS-Cog, CIBIC+, and DAD) will be administered. NPI-X will be administered at 2-week intervals either at clinic visits or via a telephone interview. Vital signs, temperature, and an assessment of adverse events will

\n

be obtained at all clinic visits. An electrocardiogram (ECG), and chemistry/hematology safety labs will be obtained at Visits 4, 5, 7, 8, 9, 10, 11, 12, and 13. Urinalysis will be done at Visits 4, 9, and 12. Use of concomitant medications will be collected at Visits 3, 4, 5, 7, 8, 9, 10, 11, 12, and 13. Plasma levels of xanomeline and metabolites will be obtained at Visits 3, 4, 5, 7, 9, and 11. At Visits 3, 4, 5, 7, 8, 9, 10, 11, and 12, medications will be dispensed to the patients.

\n

Visits 1 through 13 should be scheduled relative to Visit 3 (Week 0 - randomization). Visits 4, 5, 7, 8, and 13 should occur within 3 days of their scheduled date. Visits 9, 10, 11, and 12 should occur within 4 days of their scheduled date. At Visit 13 patients will be given the option to enter the open-label extension phase (see Section 3.10.3. Study Extensions).

\n\"Alt\n

Figure LZZT.1. Illustration of study design for Protocol H2Q-MC-LZZT(c).

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_8", + "extensionAttributes": [], + "name": "NCI_8", + "text": "

Previous studies of the oral formulation have shown that xanomeline tartrate may improve behavior and cognition. Effects on behavior are manifest within 2 to 4 weeks of initiation of treatment. The same studies have shown that 8 to 12 weeks are required to demonstrate effects on cognition and clinical global assessment. This study is intended to determine the acute and chronic effects of the TTS formulation in AD; for that reason, the study is of 26 weeks duration. Dosage specification has been made on the basis of tolerance to the xanomeline TTS in a clinical pharmacology study (H2Q-EW-LKAA), and target plasma levels as determined in studies of the oral formulation of xanomeline (H2Q-MC-LZZA).

\n

The parallel dosing regimen maximizes the ability to make direct comparisons between the treatment groups. The use of placebo allows for a blinded, thus minimally biased, study. The placebo treatment group is a comparator group for efficacy and safety assessment.

\n

Two interim analyses are planned for this study. The first interim analysis will occur when 50% of the patients have completed Visit 8 (8 weeks). If required, the second interim analysis will occur when 50% of the patients have completed Visit 12 (24 weeks). (See Section 4.6, Interim Analyses.)

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_9", + "extensionAttributes": [], + "name": "NCI_9", + "text": "

The name, title, and institution of the investigator(s) is/are listed on the Investigator/Contacts cover pages provided with this protocol. If the investigator is changed after the study has been approved by an ethical review board, or a regulatory agency, or by Lilly, this addition will not be considered a change to the protocol. However, the Investigator/Contacts cover pages will be updated to provide this information.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_10", + "extensionAttributes": [], + "name": "NCI_10", + "text": "

The final report coordinating investigator will sign the final clinical study report for this study, indicating agreement with the analyses, results, and conclusions of the report.

\n

The investigator who will serve as the final report coordinating investigator will be an individual that is involved with the design and analysis of the study. This final report coordinating investigator will be named by the sponsor of the study.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_11", + "extensionAttributes": [], + "name": "NCI_11", + "text": "
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_12", + "extensionAttributes": [], + "name": "NCI_12", + "text": "

An Ethical Review Board (ERB) approved informed consent will be signed by the patient (and/or legal representative) and caregiver after the nature of the study is explained.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_13", + "extensionAttributes": [], + "name": "NCI_13", + "text": "

For Lilly studies, the following definitions are used:

\n
\n
Screen
\n
\n

Screening is the act of determining if an individual meets minimum requirements to become part of a pool of potential candidates for participation in a clinical study.

\n

In this study, screening will include asking the candidate preliminary questions (such as age and general health status) and conducting invasive or diagnostic procedures and/or tests (for example, diagnostic psychological tests, x-rays, blood draws). Patients will sign the consent at their screening visit, thereby consenting to undergo the screening procedures and to participate in the study if they qualify.

\n
\n
\n
\n
To enter
\n
\n

Patients entered into the study are those from whom informed consent for the study has been obtained. Adverse events will be reported for each patient who has entered the study, even if the patient is never assigned to a treatment group (enrolled).

\n
\n
\n
\n
To enroll
\n
\n

Patients who are enrolled in the study are those who have been assigned to a treatment group. Patients who are entered into the study but fail to meet criteria specified in the protocol for treatment assignment will not be enrolled in the study.

\n
\n
\n

At Visit 1, patients who meet the enrollment criteria of Mini-Mental State Examination (MMSE) score of 10 to 23 (Attachment LZZT.6), Hachinski Ischemia Score \u22644 (Attachment LZZT.8), a physical exam, safety labs, ECG, and urinalysis, will proceed to Visit 2 and Visit 3. At Visit 3, patients whose CNS imaging and other pending labs from Visit 1 satisfy the inclusion criteria (Section 3.4.2.1) will be enrolled in the study. Approximately 300 patients with a diagnosis of probable mild to moderate AD will be enrolled in the study.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_14", + "extensionAttributes": [], + "name": "NCI_14", + "text": "

Patients may be included in the study only if they meet all the following criteria:

\n
01
02
03
04
05
06
07
08
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_15", + "extensionAttributes": [], + "name": "NCI_15", + "text": "

Patients will be excluded from the study for any of the following reasons:

\n
09
10
11
12
13
14
15
16b
17
18
19
20
21
22
23
24
25
26
27b
28b
29b
30b
31b
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_16", + "extensionAttributes": [], + "name": "NCI_16", + "text": "

The criteria for enrollment must be followed explicitly. If there is inadvertent enrollment of individuals who do not meet enrollment criteria, these individuals should be discontinued from the study. Such individuals can remain in the study only if there are ethical reasons to have them continue. In these cases, the investigator must obtain approval from the Lilly research physician for the study participant to continue in the study (even if the study is being conducted through a contract research organization).

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_17", + "extensionAttributes": [], + "name": "NCI_17", + "text": "

Probable AD will be defined clinically by NINCDS/ADRDA guidelines as follows:

\n
    \n
  • Diagnosis of probable AD as defined by National Institute of Neurological and Communicative Disorders and Stroke (NINCDS) and the Alzheimer's Disease and Related Disorders Association (ADRDA) guidelines.

  • \n
  • Mild to moderate severity of AD will be defined by the Mini-Mental State Exam as follows:

  • \n
  • Mini-Mental State Examination (MMSE) score of 10 to 23.

  • \n
  • The absence of other causes of dementia will be performed by clinical opinion and by the following:

  • \n
  • Hachinski Ischemic Scale score of \u22644.

  • \n
  • CNS imaging (CT scan or MRI of brain) compatible with AD within past 1 year (see Section 3.4.2.1).

  • \n
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_18", + "extensionAttributes": [], + "name": "NCI_18", + "text": "

Approximately 100 patients will be randomized to each of the 3 treatment groups. Previous experience with the oral formulation of xanomeline suggests that this sample size has 90% power to detect a 3.0 mean treatment difference in ADAS-Cog (p<.05, two-sided), based on a standard deviation of 6.5. Furthermore, this sample size has 80% power to detect a 0.36 mean treatment difference in CIBIC+ (p<.05, two-sided), based on a standard deviation of 0.9.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_19", + "extensionAttributes": [], + "name": "NCI_19", + "text": "

Commencing at Visit 1, all patients will be assigned an identification number. This identification number and the patient's three initials must appear on all patient-related documents submitted to Lilly.

\n

When qualified for enrollment at Visit 3 the patient will be randomized to 1 of 3 treatment arms.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_20", + "extensionAttributes": [], + "name": "NCI_20", + "text": "
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_21", + "extensionAttributes": [], + "name": "NCI_21", + "text": "
\n\n\n\n\n\n\n

Primary Study Material:

Xanomeline

TTS (adhesive patches)

50 cm 2 , 54 mg* 25 cm 2 , 27 mg*

Comparator Material:

Placebo

TTS

Identical in appearance to primary study material

\n

*All doses are measured in terms of the xanomeline base.

\n

Patches should be stored at controlled room temperature, and all used patches must be handled and disposed of as biohazardous waste.

\n

For a detailed description of the composition of these formulations please refer to Part II, Section 14 of the Xanomeline (LY246708) Clinical Investigator's Brochure.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_22", + "extensionAttributes": [], + "name": "NCI_22", + "text": "

To test acute tolerance of transdermal formulation, patients will have a TTS (placebo) administered at the start of Visit 1, and removed at the conclusion of Visit 1. The patient's and caregiver's willingness to comply with 26 weeks of transdermal therapy should be elicited, and those patients/caregivers unwilling to comply should be excluded.

\n

Upon enrollment at Visit 3, and on the morning of each subsequent day of therapy , xanomeline or placebo will be administered with the application of 2 adhesive patches, one 50 cm2 in area, the other 25 cm2 in area. Each morning, prior to the application of the patches, hydrocortisone cream (1%) should be applied to the skin at the intended site of administration, rubbed in, and allowed to penetrate for approximately 30 minutes. Thereafter, excess cream should be wiped away and the patches applied.

\n

The patches are to be worn continuously throughout the day, for a period of approximately 12 to 14 hours, and removed in the evening. After removal of the patches, hydrocortisone cream (1%) should be applied locally to the site of administration.

\n

Patches should be applied to a dry, intact, non-hairy area. Applying the patch to a shaved area is not recommended. The application site of the patches should be rotated according to the following schedule:

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n

Day

Patch Location

Sunday

right or left upper arm

Monday

right or left upper back

Tuesday

right or left lower back (above belt line)

Wednesday

right or left buttocks

Thursday

right or left mid-axillary region

Friday

right or left upper thigh

Saturday

right or left upper chest

\n

Patients and caregivers are free to select either the left or right site within the constraints of the rotation schedule noted above. Patches should be applied at approximately the same time each day. For patients who habitually bathe in the morning, the patient should bathe prior to application of new patches. Every effort should be taken to allow for morning administration of the patches. Exceptions allowing administration of TTS patches at night instead of in the morning will be made on a case-by-case basis by the CRO medical monitor. In the event that some adhesive remains on the patient's skin and cannot be removed with normal bathing, a special solution will be provided to remove the adhesive.

\n

Following randomization at Visit 3, patients will be instructed to call the site if they have difficulty with application or wearing of patches. In the event that a patch becomes detached, a new patch of the same size should be applied (at earliest convenience) to an area of the dermis adjacent to the detachment site, and the rotation schedule should be resumed the following morning. If needed, the edges of the patch may be secured with a special adhesive tape that will be provided. If daily doses are reduced, improperly administered, or if a patch becomes detached and requires application of a new patch on three or more days in any 30-day period, the CRO research physician will be notified.

\n

If the daily dose is reduced or improperly administered in the 24 hours prior to any scheduled clinic visit, the visit should be rescheduled (except for early termination and retrieval visits).

\n

Patients must be instructed to return all used and unused study drug to the investigator at each visit for proper disposal and CT reconciliation by the investigator.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_23", + "extensionAttributes": [], + "name": "NCI_23", + "text": "

The study will be double-blind. To further preserve the blinding of the study, only a minimum number of Lilly and CRO personnel will see the randomization table and codes before the study is complete.

\n

Emergency codes generated by a computer drug-labeling system will be available to the investigator. These codes, which reveal the patients treatment group, may be opened during the study only if the choice of follow-up treatment depends on the patient's therapy assignment.

\n

The investigator should make every effort to contact the clinical research physician prior to unblinding a patient's therapy assignment. If a patient's therapy assignment is unblinded, Lilly must be notified immediately by telephone. After the study, the investigator must return all sealed and any opened codes.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_24", + "extensionAttributes": [], + "name": "NCI_24", + "text": "

Intermittent use of chloral hydrate, zolpidem, or lorazepam is permitted during this clinical trial as indicated for agitation or sleep. If medication is required for agitation for a period exceeding 1 week, a review of the patient's status should be made in consultation with the CRO research physician. Caregivers and patients should be reminded that these medications should not be taken within 24 hours of a clinic visit (including the enrollment visit), and administration of efficacy measures should be deferred if the patient has been treated with these medications within the previous 24 hours.

\n

If an antihistamine is required during the study, Claritin\u00ae (loratadine) or Allegra\u00ae (fexofenadine hydrochloride) are the preferred agents, but should not be taken within 24 hours of a clinic visit. Intermittent use (per package insert) of antitussives (containing antihistamines or codeine) and select narcotic analgesics (acetaminophen with oxycodone, acetaminophen with codeine) are permitted during the trial. Caregivers and patients should be reminded that antihistamines and narcotics should not be taken within 3 days of a clinic efficacy visit (including enrollment visit). If an H 2 blocker is required during the study, Axid\u00ae (nizatidine) will be permitted on a case-by-case basis by the CRO medical monitor. For prostatic hypertrophy, small doses (2 mg per day) of Hytrin\u00ae (terazosin) or Cardura\u00ae (doxazosin) will be permitted on a case-by-case basis. Please consult the medical monitor. The calcium channel blockers Cardene\u00ae (nicardipine),

\n

Norvasc\u00ae (amlodipine), and DynaCirc\u00ae (isradipine) are allowed during the study. If a patient has been treated with any medication within disallowed time periods prior to the clinic visit, efficacy measures should be deferred.

\n

Other classes of medications not stated in Exclusion Criteria, Section 3.4.2.2, will be permitted. Patients who require treatment with an excluded medication (Section 3.4.2.2) will be discontinued from the study following consultation with the CRO research physician.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_25", + "extensionAttributes": [], + "name": "NCI_25", + "text": "
", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_26", + "extensionAttributes": [], + "name": "NCI_26", + "text": "

See Schedule of Events, Attachment LZZT.1 for the times of the study at which efficacy data will be collected.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_27", + "extensionAttributes": [], + "name": "NCI_27", + "text": "

The following measures will be performed in the course of the study. At Visits 3, 8, 10, and 12, ADAS-Cog, CIBIC+, and DAD will be administered. NPI-X will be administered at 2-week intervals either at clinic visits or via a telephone interview. Efficacy measures will also be collected at early termination visits, and at the retrieval visit. The neuropsychological assessment should be performed first; other protocol requirements, such as labs and the physical, should follow.

\n
    \n
  1. Alzheimer's Disease Assessment Scale - Cognitive Subscale (ADAS-Cog): ADAS-Cog is an established measure of cognitive function in Alzheimer's Disease. This scale has been incorporated into this study by permission of Dr. Richard C. Mohs and the American Journal of Psychiatry and was adapted from an article entitled, \u201cThe Alzheimer's Disease Assessment Scale (ADAS),\u201d which was published in the American Journal of Psychiatry, Volume No.141, pages 1356-1364, November, 1984, Copyright 1984.

    \n

    The ADAS-Cog (11) and the ADAS-Cog (14): The ADAS-Cog (11) is a standard 11-item instrument used to assess word recall, naming objects, commands, constructional praxis, ideational praxis, orientation, word recognition tasks, spoken language ability, comprehension, word finding difficulty, and recall of test instructions. For the purposes of this study, three items (delayed word recall, attention/visual search task, and maze solution) have been added to the ADAS-Cog (11) to assess the patient's attention and concentration. The 14 item instrument will be referred to as the ADAS-Cog (14). At each efficacy visit, all 14 items will be assessed, and in subsequent data analyses, performance on the ADAS-Cog (14) and performance on the subset ADAS-Cog (11) will be considered.

  2. \n
  3. Video-referenced Clinician's Interview-Based Impression of Change (CIBIC+): The CIBIC+ is an assessment of the global clinical status relative to baseline. The CIBIC+ used in this study is derived from the Clinical Global Impression of Change, an instrument in the public domain, developed by the National Institute on Aging Alzheimer's Disease Study Units Program (1 U01 AG10483; Leon Thal, Principal Investigator). The instrument employs semi-structured interviews with the patient and caregiver, to assess mental/cognitive state, behavior, and function. These domains are not individually scored, but rather are aggregated in the assignment of a global numeric score on a 1 to 7 scale (1 = marked improvement; 4 = no change; and 7 = marked worsening).

    \n

    The clinician assessing CIBIC+ will have at least one year of experience with the instrument and will remain blinded to all other efficacy and safety measures.

  4. \n
  5. Revised Neuropsychiatric Inventory (NPI-X): The NPI-X is an assessment of change in psychopathology in patients with dementia. The NPI-X is administered to the designated caregiver. This instrument has been revised from its original version (Cummings et al. 1994) and incorporated into this study with the permission of Dr. Jeffrey L. Cummings.

  6. \n
  7. Disability Assessment for Dementia (DAD): The DAD is used to assess functional abilities of activities of daily living (ADL) in individuals with cognitive impairment. This scale has been revised and incorporated into this study by permission of Louise Gauthier, M.Sc., and Dr. Isabelle Gelinas. The DAD is administered to the designated caregiver.

  8. \n
\n

For each instrument, each assessment is to be performed by the same trained health care professional. If circumstances preclude meeting this requirement, the situation is to be documented on the Clinical Report Form (CRF), and the CRO research physician is to be notified.

\n

In addition to the efficacy measures noted above, a survey form will be used to collect information from the caregiver on TTS acceptability (Attachment LZZT.9).

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_28", + "extensionAttributes": [], + "name": "NCI_28", + "text": "

Group mean changes from baseline in the primary efficacy parameters will serve as efficacy criteria. The ADAS-Cog (11) and the video-referenced CIBIC+ will serve as the primary efficacy instruments. Secondary efficacy instruments will include the DAD, the NPI-X, and the ADAS-Cog (14). The procedures and types of analyses to be done are outlined in Section 4.

\n

The primary analysis of efficacy will include only the data obtained up to and including the visit of discontinuation of study drug. Furthermore, the primary analysis will not include efficacy data obtained at any visit where the study drug was not administered in the preceding three days. Analyses that include the retrieved dropouts are considered secondary.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_29", + "extensionAttributes": [], + "name": "NCI_29", + "text": "

Blood samples (7 mL) for the determination of xanomeline concentrations in plasma will be collected from each patient at Visits 3, 4, 5, 7, 9, and 11. The blood sample drawn at Visit 3 is a baseline sample. The remaining 5 clinic visits should be scheduled so that 1 blood sample is collected at any time during each of the following intervals: early AM visit (hold application of new patch until after blood sample is collected); 9AM to 11AM; 11AM to 1PM; 1PM to 3PM; and 3PM to 5PM. Collection of blood samples during each of these intervals should not occur in any particular order, nor should they occur in the same order for each patient. Every effort should be made to comply with the suggested sampling times. This blood-sampling schedule is based on a sparse sampling strategy where only a few samples will be collected from each patient. The most crucial aspect of the sampling design is to record the date and exact time the sample was drawn and to record the date and time of patch application on the day of the clinic visit and the previous 2 days.

\n

If a patient is discontinued from the study prior to protocol completion, a pharmacokinetic blood sample should be drawn at the early discontinuation visit. The date and exact time the sample was drawn and the date of the last patch application should be recorded.

\n

Immediately after collection, each sample will be centrifuged at approximately 177 \u00d7 G for 15 minutes. The plasma will be transferred into a polypropylene tube bearing the identical label as the blood collection tube. Samples will be capped and frozen at approximately \u221220\u00b0C. Care must be taken to insure that the samples remain frozen during transit.

\n

The samples will be shipped on dry ice to Central Laboratory.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_30", + "extensionAttributes": [], + "name": "NCI_30", + "text": "

Investigators are responsible for monitoring the safety of patients who have entered this study and for alerting CRO to any event that seems unusual, even if this event may be considered an unanticipated benefit to the patient. See Section 3.9.3.2.1.

\n

Investigators must ensure that appropriate medical care is maintained throughout the study and after the trial (for example, to follow adverse events).

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_31", + "extensionAttributes": [], + "name": "NCI_31", + "text": "

Safety measures will be performed at designated times by recording adverse events, laboratory test results, vital signs (including supine/standing pulse and blood pressure readings) ECG monitoring, and Ambulatory ECGs (see Schedule of Events, Attachment LZZT.1).

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_32", + "extensionAttributes": [], + "name": "NCI_32", + "text": "

Lilly has standards for reporting adverse events that are to be followed, regardless of applicable regulatory requirements that are less stringent. For purposes of collecting and evaluating all information about Lilly drugs used in clinical trials, an adverse event is defined as any undesirable experience or an unanticipated benefit (see Section 3.9.3.2.1) that occurs after informed consent for the study has been obtained, without regard to treatment group assignment, even if no study medication has been taken. Lack of drug effect is not an adverse event in clinical trials, because the purpose of the clinical trial is to establish drug effect.

\n

At the first visit, study site personnel will question the patient and will note the occurrence and nature of presenting condition(s) and of any preexisting condition(s). At subsequent visits, site personnel will again question the patient and will note any change in the presenting condition(s), any change in the preexisting condition(s), and/or the occurrence and nature of any adverse events.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_33", + "extensionAttributes": [], + "name": "NCI_33", + "text": "

All adverse events must be reported to CRO via case report form.

\n

Study site personnel must report to CRO immediately, by telephone, any serious adverse event (see Section 3.9.3.2.2 below), or if the investigator unblinds a patient's treatment group assignment because of an adverse event or for any other reason.

\n

If a patient's dosage is reduced or if a patient is discontinued from the study because of any significant laboratory abnormality, inadequate response to treatment, or any other reason, the circumstances and data leading to any such dosage reduction or discontinuation must be reported and clearly documented by study site personnel on the clinical report form.

\n

An event that may be considered an unanticipated benefit to the patient (for example, sleeping longer) should be reported to CRO as an adverse event on the clinical report form. \u201cUnanticipated benefit\u201d is a COSTART classification term. In cases where the investigator notices an unanticipated benefit to the patient, study site personnel should enter the actual term such as \u201csleeping longer,\u201d and code \u201cunanticipated benefit\u201d in the clinical report form adverse event section.

\n

Solicited adverse events from the skin rash questionnaire (see Section 3.9.3.4) should be reported on the questionnaire only and not also on the adverse event clinical report form

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_34", + "extensionAttributes": [], + "name": "NCI_34", + "text": "

Study site personnel must report to CRO immediately, by telephone, any adverse event from this study that is alarming or that:

\n
    \n
  • Results in death

  • \n
  • Results in initial or prolonged inpatient hospitalization

  • \n
  • Is life-threatening

  • \n
  • Results in severe or permanent disability

  • \n
  • Results in cancer [(other than cancers diagnosed prior to enrollment in studies involving patients with cancer)]

  • \n
  • Results in a congenital anomaly

  • \n
  • Is a drug overdose

  • \n
  • Is significant for any other reason.

  • \n
\n

Definition of overdose: For a drug under clinical investigation, an overdose is any intentional or unintentional consumption of the drug (by any route) that exceeds the dose recommended in the Clinical Investigator's Brochure or in an investigational protocol, whichever dose is larger. For a marketed drug, a drug overdose is any intentional or unintentional consumption of the drug (by any route) that exceeds the dose listed in product labeling, even if the larger dose is prescribed by a physician.

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_35", + "extensionAttributes": [], + "name": "NCI_35", + "text": "

Table LZZT.1 lists the clinical laboratory tests that will be performed at Visit 1.

\n

Table LZZT.1. Laboratory Tests Performed at Admission (Visit 1)

\n\n

Safety Laboratory Tests

\n\n\n\n\n\n
\n

Hematology:

\n

    \n
  • Hemoglobin
  • \n
  • Hematocrit
  • \n
  • Erythrocyte count (RBC)
  • \n
  • Mean cell volume (MCV)
  • \n
  • Mean cell hemoglobin (MCH)
  • \n
  • Mean cell hemoglobin concentration (MCHC)
  • \n
  • Leukocytes (WBC)
  • \n
  • Neutrophils, segmented
  • \n
  • Neutrophils, juvenile (bands)
  • \n
  • Lymphocytes
  • \n
  • Monocytes
  • \n
  • Eosinophils
  • \n
  • Basophils
  • \n
  • Platelet
  • \n
  • Cell morphology
  • \n

\n

Urinalysis:

\n

    \n
  • Color
  • \n
  • Specific gravity
  • \n
  • pH
  • \n
  • Protein
  • \n
  • Glucose
  • \n
  • Ketones
  • \n
  • Bilirubin
  • \n
  • Urobilinogen
  • \n
  • Blood
  • \n
  • Nitrite
  • \n
  • Microscopic examination of sediment
  • \n

\n
\n

Clinical Chemistry - Serum Concentration of:

\n

    \n
  • Sodium
  • \n
  • Potassium
  • \n
  • Bicarbonate
  • \n
  • Total bilirubin
  • \n
  • Alkaline phosphatase (ALP)
  • \n
  • Gamma-glutamyl transferase (GGT)
  • \n
  • Alanine transaminase (ALT/SGPT)
  • \n
  • Aspartate transaminase (AST/SGOT)
  • \n
  • Blood urea nitrogen (BUN)
  • \n
  • Serum creatinine
  • \n
  • Uric acid
  • \n
  • Phosphorus
  • \n
  • Calcium
  • \n
  • Glucose, nonfasting
  • \n
  • Total protein
  • \n
  • Albumin
  • \n
  • Cholesterol
  • \n
  • Creatine kinase (CK)
  • \n

\n

Thyroid Function Test (Visit 1 only):

\n
    \n
  • Free thyroid index
  • \n
  • T3 Uptake
  • \n
  • T4
  • \n
  • Thyroid-stimulating hormone (TSH)
  • \n
\n

Other Tests (Visit 1 only):

\n
    \n
  • Folate
  • \n
  • Vitamin B 12
  • \n
  • Syphilis screening
  • \n
  • Hemoglobin A1C (IDDM patients only)
\n
\n

Laboratory values that fall outside a clinically accepted reference range or values that differ significantly from previous values must be evaluated and commented on by the investigator by marking CS (for clinically significant) or NCS (for not clinically significant) next to the values. Any clinically significant laboratory values that are outside a clinically acceptable range or differ importantly from a previous value should be further commented on in the clinical report form comments page.

\n

Hematology, and clinical chemistry will also be performed at Visits 4, 5, 7, 8, 9, 10, 11, 12, and 13. Patients that experience a rash and/or eosinophilia may have additional hematology samples obtained as described in 3.9.3.4 (Other Safety Measures).

\n

Urinalysis will also be performed at Visits 4, 9, and 12. The following criteria have been developed to monitor hepatic function.

\n
    \n
  • Patients with ALT/SGPT levels >120 IU will be retested weekly.

    \n
  • Patients with ALT/SGPT values >400 IU, or alternatively, an elevated ALT/SGPT accompanied by GGT and/or ALP values >500 IU will be retested within 2 days. The sponsor's clinical research administrator or clinical research physician is to be notified. If the retest value does not decrease by at least 10%, the study drug will be discontinued; additional laboratory tests will be performed until levels return to normal. If the retest value does decrease by 10% or more, the study drug may be continued with monitoring at 3 day intervals until ALT/SGPT values decrease to <400 IU or GGT and/or ALP values decrease to <500 IU. \n

", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_36", + "extensionAttributes": [], + "name": "NCI_36", + "text": "
Patients experiencing Rash and/or Eosinophilia\n

The administration of placebo and xanomeline TTS is associated with a rash and/or eosinophilia in some patients. The rash is characterized in the following ways:

\n
    \n
  • The rash is confined to sites of application.

  • \n
  • The rash may be associated with pruritus.

  • \n
  • In 5% of cases of rash observed in the Interim Analysis, blistering has been observed.

  • \n
  • The onset of rash may occur at any time during the course of the study.

  • \n
  • A moderate eosinophilia (0.6-1.5 x 103 /microliter) is associated with rash and has been noted in approximately 10% of patients.

  • \n
\n

It does not appear that the rash constitutes a significant safety risk; however, it could affect the well-being of the patients. The following monitoring is specified:

\n

Skin Rash Follow-up

\n

For patients who exit the study or its extension with rash at the site(s) of application:

\n
    \n
  1. Approximately 2 weeks after the last visit, the study site personnel should contact the patient/caregiver by phone and complete the skin rash questionnaire. (Note: those patients with rash who have previously exited the study or its extension should be contacted at earliest convenience.)

  2. \n
  3. If caregiver states unequivocally that skin problems have completely resolved, no further follow-up is needed.

  4. \n
  5. If caregiver reports scarring and/or other problems, patient should return to clinic for a follow-up visit. The skin rash questionnaire should again be completed. If in the opinion of the investigator, further follow-up is required, contact the CRO medical monitor. Completed skin rash questionnaires should be faxed to CRO.

  6. \n
\n

Completion of the questionnaires will create a separate data set for solicited adverse events. In completing these forms please note the following:

\n
    \n
  1. Solicited events (events discovered as result of completion of follow-up questionnaires) should be reported on questionnaire page only.

  2. \n
  3. Spontaneously reported adverse events (events presented by the patient without direct questioning of the event) should be reported as described in 3.9.3.2 .1 (Adverse Event Reporting Requirements).

  4. \n
\n

Serious adverse events should be handled and reported as described in 3.9.3.2.1 without regard to whether the event is solicited or spontaneously reported.

\n

Eosinophilia Follow-up

\n
    \n
  1. For patients that are currently in the study with eosinophil counts greater than 0. 6x10 3 /microliter:

    \n
    • Repeat hematology at each visit until resolved in the opinion of the investigator.

    \n
  2. For patients that are currently in the study with eosinophil counts greater than 1.5x10 3 /microliter:

    \n
    • Obtain hematology profile every 2 weeks until resolved or explained by other causes in the opinion of the investigator.

    • \n
    • Notify CRO medical monitor.

    • \n
    \n
  3. For patients with eosinophil counts greater than 0.6x10 3 /microliter at exit \nfrom the study or its extension:

    \n
      \n
    • Obtain hematology profile approximately every 2 weeks until resolved or, in the opinion of the investigator, explained by other causes. (Note: patients with eosinophil counts greater than 0.6x10 3 /microliter who have previously exited the study or its extension should return for hematology profile at earliest convenience.)

    • \n
    \n
    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_37", + "extensionAttributes": [], + "name": "NCI_37", + "text": "

    Patient should lie supine quietly for at least 5 minutes prior to vital signs measurement. Blood pressure should be measured in the dominant arm with a standardized mercury manometer according to the American Heart Association standard recommendations. Diastolic blood pressure will be measured as the point of disappearance of the Korotkoff sounds (phase V). Heart rate will be measured by auscultation. Patient should then stand up. Blood pressure should again be measured in the dominant arm and heart rate should be measured after approximately 1 and 3 minutes.

    \n

    An automated blood pressure cuff may be used in place of a mercury manometer if it is regularly (at least monthly) standardized against a mercury manometer.

    ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_38", + "extensionAttributes": [], + "name": "NCI_38", + "text": "

    Cardiovascular status will be assessed during the trial with the following measures:

    \n
      \n
    • All patients will be screened by obtaining a 12-lead ECG, and will have repeat ECGs performed at Visits 4, 5, 7, 8, 9, 10, 11, 12, 13, and early termination (ET) (see Schedule of Events, Attachment LZZT.1).

    • \n
    • All patients will undergo a 24-hour Ambulatory ECG at Visit 2 (prior to the initiation of study medication). Although every effort will be made to obtain the entire 24-hour ambulatory ECG recording, this may not always be feasible because of patient behavior or technical difficulties. The minimal recording period for an ambulatory ECG to be considered interpretable will be 8 hours, of which at least 3 hours must be sleep.

    • \n
    • The incidence of syncope, defined as an observed loss of consciousness and muscle tone not attributable to transient ischemic attack or to seizure, will be closely monitored. Caregivers will be instructed to report any instance of syncopal episodes to the investigator within 24 hours. The investigator should immediately report such events to the CRO research physician. The CRO research physician will make a clinical assessment of each episode, and with the investigator determine if continuation of \ntherapy is appropriate. These findings will be reported to the Lilly research physician immediately.

    • \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_39", + "extensionAttributes": [], + "name": "NCI_39", + "text": "

      The CRO research physician will monitor safety data throughout the course of the study.

      \n

      Cardiovascular measures, including ECGs and 24-hour Ambulatory ECGs (see Section 3.9.3.4.2) will be monitored on an ongoing basis as follows:

      \n
        \n
      • As noted in Section 3.9.3.4.2, all patients will be screened by obtaining a 12-lead ECG, and will have repeat ECGs performed at Visits 4, 5, 7, 8, 9, 10, 11, 12, 13, and early termination (ET) (see Schedule of Events for Protocol H2Q-MC-LZZT(c), Attachment LZZT.1). ECG data will be interpreted at the site and express mailed overnight to a central facility which will produce a report within 48 hours. The report will be forwarded to the investigator. At screening, the report of the central facility will be used to exclude patients according to criteria specified in Section 3.4.2.2. If, during the treatment phase of the study, review of ECG data (either at the site or at the central facility) reveals left bundle branch block, bradycardia \u226450 beats per minute, sinus pauses >2 seconds, second degree heart block, third degree heart block, Wolff-Parkinson-White syndrome, sustained supraventricular tachyarrhythmia, or ventricular tachycardia at a rate of \u2265120 beats per minute lasting \u226510 seconds, the investigator, the Lilly research physician, the CRO research physician, and the cardiologist chairing the DSMB will be notified immediately, and discontinuation of the patient will be considered.

      • \n
      • As noted in Section 3.9.3.4.2, all patients will undergo a 24-hour Ambulatory ECG at Visit 2 (prior to the initiation of study medication). Ambulatory ECG data from Visit 2 will be express mailed overnight to a central facility which will produce a report within 24 hours. The report will be forwarded to the investigator. If a report documents sustained ventricular tachycardia with rate >120 beats per minute, third degree heart block, or sinus pauses of >6.0 seconds, the investigator, the Lilly research \nphysician, the CRO research physician, and the cardiologist chairing the DSMB will be notified immediately, and the patient will be discontinued. If any report documents sinus pauses of >3.0 seconds or second degree heart block, the CRO research physician, and Lilly research physician, and cardiologist chairing the DSMB will be immediately notified and the record will be reviewed within 24 hours of notification by the cardiologist chairing the DSMB.

      • \n
      \n

      In addition to ongoing monitoring of cardiac measures, a comprehensive, periodic review of cardiovascular safety data will be conducted by the DSMB, which will be chaired by an external cardiologist with expertise in arrhythmias, their pharmacological bases, and their clinical implications. The membership of the board will also include two other external cardiologists, a cardiologist from Lilly, a statistician from Lilly, and the Lilly research physician. Only the three external cardiologists will be voting members.

      \n

      After approximately 75 patients have completed 1 month of treatment, the DSMB will meet to decide:

      \n
        \n
      • If discontinuation of the study or any treatment arm is appropriate

      • \n
      • If additional cardiovascular monitoring is required

      • \n
      • If further cardiovascular monitoring is unnecessary

      • \n
      • If adjustment of dose within a treatment arm (or arms) is appropriate.

      • \n
      \n

      If necessary, this analysis will be repeated after 150 patients have completed 1 month of treatment, after 225 patients have completed 1 month of treatment, and after 300 patients have completed 1 month of treatment. Primary consideration will be given to the frequency of pauses documented in Ambulatory ECG reports. The number of pauses greater than or equal to 2, 3, 4, 5, and 6 seconds will be tabulated. Primary analysis will focus on the number of pauses greater than or equal to 3 seconds.

      \n

      In the event of a high incidence of patient discontinuation due to syncope, the following guideline may be employed by the DSMB in determining if discontinuation of any treatment arm is appropriate. If the frequency of syncope in a xanomeline treatment arm relative to the frequency of syncope in the placebo arm equals or exceeds the following numbers, then consideration will be given to discontinuing that treatment arm. The Type I error rate for this rule is approximately 0.032 if the incidence in each group is 0.04. The power of this rule is 0.708 if the incidence is 0.04 for placebo and 0.16 for xanomeline TTS.

      \n\n\n\n\n\n\n\n\n

      Placebo

      Xanomeline

      PlaceboXanomeline

      0

      6

      615

      1

      7

      716

      2

      9

      817

      3

      11

      918

      4

      12

      1020

      5

      13

      X2X (2-fold)
      \n

      This rule has been used in other studies for monitoring spontaneous events with an incidence of less than 10%. This rule is constructed assuming a 2-group comparison with each group having a final sample size of 100. Unblinding which occurs during these analyses will be at the group level and will be documented.

      \n

      The stopping rule based on Ambulatory ECG findings is as follows:

      \n\n

      If the number of patients experiencing a pause of \u22656 seconds in a xanomeline treatment arm relative to the number of patients in the placebo arm equals or exceeds the numbers in the following table, then that treatment arm will be discontinued. The Type I error rate for this rule is approximately 0.044 if the incidence in each group is 0.01. The power of this rule is 0.500 if the incidence is 0.01 for placebo and 0.04 for xanomeline TTS.

      \n\n\n\n\n\n\n\n\n

      Placebo

      Xanomeline

      0

      3

      1

      5

      2

      6

      3

      7

      4

      8

      x

      2x

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_40", + "extensionAttributes": [], + "name": "NCI_40", + "text": "

      The medications and efficacy measurements have been used in other studies in elderly subjects and patients.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_41", + "extensionAttributes": [], + "name": "NCI_41", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_42", + "extensionAttributes": [], + "name": "NCI_42", + "text": "

      Participation in the study shall be terminated for any patient who is unable or unwilling to comply with the study protocol or who develops a serious adverse event.

      \n

      In addition, patients may be discontinued for any of the following reasons:

      \n
        \n
      • In the opinion of the investigator, a significant adverse event occurs or the \nsafety of the patient is otherwise compromised.

      • \n
      • The patient requests to be withdrawn from the study.

      • \n
      • The physician in charge of the study or Lilly, for any reason stops the \npatient's participation in the study.

      • \n
      \n

      If a patient's participation terminates early, an early termination visit should be scheduled. Upon decision to discontinue a patient from the study, the patient's dose should be titrated down by instructing the patient to immediately remove the 25-cm2 patch. Patients should be instructed to continue to apply a 50-cm2 patch daily until the early termination visit, at which time the drug will be discontinued. Physical exam, vital signs, temperature, use of concomitant medications, chemistry/hematology/urinalysis labs, xanomeline plasma sample, TTS acceptability survey, efficacy measures, adverse events, and an ECG will be collected at the early termination visit.

      \n

      In the event that a patient's participation or the study itself is terminated, the patient shall return all study drug(s) to the investigator.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_43", + "extensionAttributes": [], + "name": "NCI_43", + "text": "

      If possible, patients who have terminated early will be retrieved on the date which would have represented Visit 12 (Week 24). Vital signs, temperature, use of concomitant medications, adverse events, and efficacy measure assessment will be gathered at this visit. If the patient is not retrievable, this will be documented in the source record.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_44", + "extensionAttributes": [], + "name": "NCI_44", + "text": "

      All patients who are enrolled in the study will be included in the efficacy analysis and the safety analysis. Patients will not be excluded from the efficacy analysis for reasons such as non-compliance or ineligibility, except for the time period immediately preceding the efficacy assessment (see Section 3.9.1.2).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_45", + "extensionAttributes": [], + "name": "NCI_45", + "text": "

      Patients who successfully complete the study will be eligible for participation in an openlabel extension phase, where every patient will be treated with active agent. The patients who elect to participate in the open-label extension phase will be titrated to their maximally titrated dose. This open-label extension phase will continue until the time the product becomes marketed and is available to the public or until the project is discontinued by the sponsor. Patients may terminate at any time at their request.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_46", + "extensionAttributes": [], + "name": "NCI_46", + "text": "

      Because patients enrolled in this study will be outpatients, the knowledge that patients have taken the medication as prescribed will be assured in the following ways:

      \n
        \n
      1. Investigators will attempt to select those patients and caregivers who \nhave been judged to be compliant.

      2. \n
      3. Study medication including unused, partially used, and empty patch \ncontainers will be returned at each clinical visit so that the remaining \nmedication can be counted by authorized investigator staff (nurse, \npharmacist, or physician). The number of patches remaining will be \nrecorded on the CRF.

      4. \n
      5. Following randomization at Visit 3, patients will be instructed to call \nthe site if they have difficulty with application or wearing of patches. If \ndaily doses are reduced, improperly administered, or if a patch becomes \ndetached and requires application of a new patch on three or more days \nin any 30-day period, the CRO research physician will be notified.

      6. \n
      \n

      If the daily dose is reduced or improperly administered in the 24 hours prior to any scheduled clinic visit, the visit should be rescheduled (except for early termination and retrieval visits).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_47", + "extensionAttributes": [], + "name": "NCI_47", + "text": "

      To ensure both the safety of participants in the study, and the collection of accurate, complete, and reliable data, Lilly or its representatives will perform the following activities:

      \n
        \n
      • Provide instructional material to the study sites, as appropriate.

      • \n
      • Sponsor a start-up training session to instruct the investigators and study \ncoordinators. This session will give instruction on the protocol, the \ncompletion of the clinical report forms, and study procedures.

      • \n
      • Make periodic visits to the study site.

      • \n
      • Be available for consultation and stay in contact with the study site \npersonnel by mail, telephone, and/or fax.

      • \n
      • Review and evaluate clinical report form data and use standard computer \nedits to detect errors in data collection.

      • \n
      \n

      To ensure the safety of participants in the study and to ensure accurate, complete, and reliable data, the investigator will do the following:

      \n
        \n
      • Keep records of laboratory tests, clinical notes, and patient medical records in the patient files as original source documents for the study.

      • \n
      \n

      Lilly or its representatives may periodically check a sample of the patient data recorded against source documents at the study site. The study may be audited by Lilly Medical Quality Assurance (MQA) and/or regulatory agencies at any time. Investigators will be given notice before an MQA audit occurs.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_48", + "extensionAttributes": [], + "name": "NCI_48", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_49", + "extensionAttributes": [], + "name": "NCI_49", + "text": "

      In general, all patients will be included in all analyses of efficacy if they have a baseline measurement and at least one postrandomization measurement. Refer to Section 3.9.1.2. for a discussion of which specific efficacy data will be included in the primary analysis.

      \n

      In the event that the doses of xanomeline TTS are changed after the study starts, the analysis will be of three treatment groups (high dose, low dose, and placebo), even though patients within the high dose treatment group, for example, may not all be at exactly the same dose. Also, if the dose is changed midway through the study, the mean dose within each group will be used in the dose response analysis described in Section 4.3.3.

      \n

      All analyses described below will be conducted using the most current production version of SAS\u00ae available at the time of analysis.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_50", + "extensionAttributes": [], + "name": "NCI_50", + "text": "

      All measures (for example, age, gender, origin) obtained at either Visits 1, 2, or 3, prior to randomization, will be summarized by treatment group and across all treatment groups. The groups will be compared by analysis of variance (ANOVA) for continuous variables and by Pearson's chi-square test for categorical variables. Note that because patients are randomized to 1 of the 3 treatment groups, any statistically significant treatment group differences are by definition a Type I error; however, the resulting p-values will be used as another descriptive statistic to help focus possible additional analyses (for example, analysis of covariance, subset analyses) on those factors that are most imbalanced (that is, that have the smallest p-values).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_51", + "extensionAttributes": [], + "name": "NCI_51", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_52", + "extensionAttributes": [], + "name": "NCI_52", + "text": "

      Efficacy measures are described in Section 3.9.1.1. As stated in Section 3.9.1.2, the primary outcome measures are the ADAS-Cog (11) and CIBIC+ instruments. Because both of these variables must reach statistical significance, an adjustment to the nominal p-values is necessary in order to maintain a .05 Type I error rate for this study. This adjustment is described in detail in Section 4.3.5.

      \n

      The DAD will be analyzed with respect to the total score, as well as the subscores of \ninitiation, planning and organization, and effective performance. This variable is \nconsidered a secondary variable in the US, but is a third primary variable in Europe.

      \n

      The NPI-X is a secondary variable. The primary assessment of this instrument will be for the total score, not including the sleep, appetite, and euphoria domains. This total score is computed by taking the product of the frequency and severity scores and summing them up across the domains. Secondary variables derived from the NPI-X include evaluating each domain/behavior separately. Also, caregiver distress from the NPI-X will be analyzed.

      \n

      ADAS-Cog (14) and each of the 14 individual components will also be analyzed. In addition, a subscore of the ADAS-Cog will be computed and analyzed, based on results from a previous large study of oral xanomeline. This subscore, referred to as ADAS-Cog (4), will be the sum of constructional praxis, orientation, spoken language ability, and word finding difficulty in spontaneous speech.

      \n

      Any computed total score will be treated as missing if more than 30% of the items are missing or scored \u201cnot applicable\u201d. For example, when computing ADAS-Cog(11), if 4 or more items are missing, then the total score will not be computed. When one or more items are missing (but not more than 30%), the total score will be adjusted in order to maintain the full range of the scale. For example, ADAS-Cog(11) is a 0-70 scale. If the first item, Word Recall (ranges from 0 to 10), is missing, then the remaining 10 items of the ADAS-Cog(11) will be summed and multiplied by (70 / (70-10) ), or 7/6. This computation will occur for all totals and subtotals of ADAS-Cog and NPI-X. DAD is a 40 item questionnaire where each question is scored as either \u201c0\u201d or \u201c1\u201d. The DAD total score and component scores are reported as percentage of items that are scored \u201c1\u201d. So if items of the DAD are \u201cnot applicable\u201d or missing, the percentage will be computed for only those items that are scored. As an example, if two items are missing (leaving 38 that are scored), and there are 12 items scored as \u201c1\u201d, the rest as \u201c0\u201d, then the DAD score is 12/38=.316.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_53", + "extensionAttributes": [], + "name": "NCI_53", + "text": "

      Baseline data will be collected at Visit 3.

      \n

      The primary analysis of ADAS-Cog (11) and CIBIC+ will be the 24-week endpoint, which is defined for each patient and variable as the last measurement obtained postrandomization (prior to protocol defined reduction in dose).

      \n

      Similar analyses at 24 weeks will be conducted for the secondary efficacy variables. Analysis of patients who complete the 24-week study will also be conducted for all efficacy variables; this is referred to as a \u201ccompleter\u201d analysis.

      \n

      Additionally, each of the efficacy variables will be analyzed at each time point both as \u201cactual cases,\u201d that is, analyzing the data collected at the various time points, and also as a last-observation-carried-forward (LOCF). Note that the LOCF analysis at 24 weeks is the same as the endpoint analysis described previously.

      \n

      Several additional analyses of NPI-X will be conducted. Data from this instrument will be collected every 2 weeks, and represent not the condition of the patient at that moment in time, but rather the worst condition of the patient in the time period since the most recent NPI-X administration. For this reason, the primary analysis of the NPI-X will be of the average of all postrandomization NPI-X subscores except for the one obtained at Week 2. In the event of early discontinuations, those scores that correspond to the interval between Weeks 2 to 24 will be averaged. The reason for excluding Week 2 data from this analysis is that patients could be confused about when a behavior actually stops after randomization; the data obtained at Week 2 could be somewhat \u201ctainted.\u201d Also, by requiring 2 weeks of therapy prior to use of the NPI-X data, the treatment difference should be maximized by giving the drug 2 weeks to work, thereby increasing the statistical power. Secondary analyses of the NPI-X will include the average of all postrandomization weeks, including measures obtained at Weeks 2 and 26.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_54", + "extensionAttributes": [], + "name": "NCI_54", + "text": "

      The primary method to be used for the primary efficacy variables described in Sections 4.3.1 and 4.3.2 will be analysis of covariance (ANCOVA), except for CIBIC+ which is a score that reflects change from baseline, so there is no corresponding baseline CIBIC+ score. Effects in the ANCOVA model will be the corresponding baseline score, investigator, and treatment. CIBIC+ will be analyzed by analysis of variance (ANOVA), with effects in the model being investigator and treatment. Investigator-by-treatment interaction will be tested in a full model prior to conducting the primary ANCOVA or ANOVA (see description below).

      \n

      Because 3 treatment groups are involved, the primary analysis will be the test for linear dose response in the ANCOVA and ANOVA models described in the preceding paragraph. The result is then a single p-value for each of ADAS-Cog and CIBIC+.

      \n

      Analysis of the secondary efficacy variables will also be ANCOVA. Pairwise treatment comparisons of the adjusted means for all efficacy variables will be conducted using a LSMEANS statement within the GLM procedure.

      \n

      Investigator-by-treatment interaction will be tested in a full ANCOVA or ANOVA model, which takes the models described above, and adds the interaction term to the model. Interaction will be tested at \u03b1 = .10 level. When the interaction is significant at this level, the data will be examined for each individual investigator to attempt to identify the source of the significant interaction. When the interaction is not significant, this term will be dropped from the model as described above, to test for investigator and treatment main effects. By doing so, all ANCOVA and ANOVA models will be able to validly test for treatment differences without weighting each investigator equally, which is what occurs when using Type III sums of squares (cell means model) with the interaction term present in the model. This equal weighting of investigators can become a serious problem when sample sizes are dramatically different between investigators.

      \n

      For all ANOVA and ANCOVA models, data collected from investigators who enrolled fewer than 3 patients in any one treatment group will be combined prior to analysis. If this combination still results in a treatment group having fewer than 3 patients in any one treatment group, then this group of patients will be combined with the next fewestenrolling investigator. In the event that there is a tie for fewest-enrolling investigator, one of these will be chosen at random by a random-number generator.

      \n

      The inherent assumption of normally distributed data will be evaluated by generating output for the residuals from the full ANCOVA and ANOVA models, which include the interaction term, and by testing for normality using the Shapiro-Wilk test from PROC UNIVARIATE. In the event that the data are predominantly nonnormally distributed, analyses will also be conducted on the ranked data. This rank transformation will be applied by ranking all the data for a particular variable, across all investigators and treatments, from lowest to highest. Integer ranks will be assigned starting at 1; mean ranks will be assigned when ties occur.

      \n

      In addition, the NPI-X will be analyzed in a manner similar to typical analyses of adverse events. In this analysis, each behavior will be considered individually. This analysis is referred to as \u201ctreatment-emergent signs and symptoms\u201d (TESS) analysis. For each behavior, the patients will be dichotomized into 1 of 2 groups: those who experienced the behavior for the first time postrandomization, or those who had the quotient between frequency and severity increase relative to the baseline period defines one group. All other patients are in the second group. Treatments will be compared for overall differences by Cochran-Mantel-Haentzel (CMH) test referred to in SAS\u00ae as \u201crow mean scores differ,\u201d 2 degrees of freedom. The CMH correlation statistic (1 degree of freedom test), will test for increasing efficacy with increasing dose (trend test).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_55", + "extensionAttributes": [], + "name": "NCI_55", + "text": "

      All comparisons between xanomeline and placebo with respect to efficacy variables should be one-sided. The justification for this follows.

      \n

      The statistical hypothesis that is tested needs to be consistent with the ultimate data-based decision that is reached. When conducting placebo-controlled trials, it is imperative that the drug be demonstrated to be superior in efficacy to placebo, since equivalent or worse efficacy than placebo will preclude approvability. Consequently, a one-sided test for efficacy is required.

      \n

      The null hypothesis is that the drug is equal or worse than placebo. The alternative hypothesis is that the drug has greater efficacy than placebo. A Type I error occurs only when it is concluded that a study drug is effective when in fact it is not. This can occur in only one tail of the distribution of the treatment difference. Further details of the arguments for one-sided tests in placebo-controlled trials are available in statistical publications (Fisher 1991; Koch 1991; Overall 1991; and Peace 1991).

      \n

      The argument for one-sided tests does not necessarily transfer to safety measures, in general, because one can accept a certain level of toxicity in the presence of strong efficacy. That is, safety is evaluated as part of a benefit/risk ratio.

      \n

      Note that this justification is similar to that used by regulatory agencies worldwide that routinely require one-sided tests for toxicological oncogenicity studies. In that case, the interest is not in whether a drug seems to lessen the occurrence of cancer; the interest is in only one tail of the distribution, namely whether the drug causes cancer to a greater extent than the control.

      \n

      Different regulatory agencies require different type I error rates. Treatment differences that are significant at the .025 \u03b1-level will be declared to be \u201cstatistically significant.\u201d When a computed p-value falls between .025 and .05, the differences will be described as \u201cmarginally statistically significant.\u201d This approach satisfies regulatory agencies who have accepted a one-sided test at the .05 level, and other regulatory agencies who have requested a two-sided test at the .05 level, or equivalently, a one-sided test at the .025 level. In order to facilitate the review of the final study report, two-sided p-values will be presented in addition to the one-sided p-values.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_56", + "extensionAttributes": [], + "name": "NCI_56", + "text": "

      When there are multiple outcomes, and the study drug is declared to be effective when at least one of these outcomes achieves statistical significance in comparison with a placebo control, a downward adjustment to the nominal \u03b1-level is necessary. A well-known simple method is the Bonferroni method, that divides the overall Type I error rate, usually .05, by the number of multiple outcomes. So, for example, if there are two multiple outcomes, the study drug is declared to be effective if at least one of the two outcomes is significant at the .05/2 or .025 level.

      \n

      However, when one has the situation that is present in this study, where there are 2 (or 3 for Europe) outcome variables, each of which must be statistically significant, then the adjustment of the nominal levels is in the opposite direction, that is upwards, in order to maintain an overall Type 1 error rate of .05.

      \n

      In the case of two outcomes, ADAS-Cog (11) and CIBIC+, if the two variables were completely independent, then each variable should be tested at the nominal \u03b1-level of .05 1/2 = .2236 level. So if both variables resulted in a nominal p-value less than or equal to .2236, then we would declare the study drug to be effective at the overall Type 1 error rate of .05.

      \n

      We expect these two outcome measures to be correlated. From the first large-scale \nefficacy study of oral xanomeline, Study MC-H2Q-LZZA, the correlation between \nCIBIC+ and the change in ADAS-Cog(11) from baseline was .252. Consequently, we

      \n

      plan to conduct a randomization test to combine these two dependent dose-response p-values into a single test, which will then be at the .05 Type I error level. Because there will be roughly 300!/(3 * 100!) possible permutations of the data, random data permutations will be sampled (10,000 random permutations).

      \n

      Designate the dose response p-values as p1 and p2 (computed as one-sided p-values), for ADAS-Cog(11) and CIBIC+, respectively. The rejection region is defined as

      \n

      [ {p1 \u2264 \u03b1 and p2 \u2264 \u03b1} ].

      \n

      The critical value, \u03b1, will be determined from the 10,000 random permutations by choosing the value of \u03b1 to be such that 2.5% of the 10,000 computed pairs of dose response p-values fall in the rejection region. This will correspond to a one-sided test at the .025 level, or equivalently a two-sided test at the .05 level. In addition, by determining the percentage of permuted samples that are more extreme than the observed data, a single p-value is obtained.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_57", + "extensionAttributes": [], + "name": "NCI_57", + "text": "

      Although safety data is collected at the 24 week visit for retrieved dropouts, these data will not be included in the primary analysis of safety.

      \n

      Pearson's chi-square test will be used to analyze 3 reasons for study discontinuation (protocol completed, lack of efficacy, and adverse event), the incidence of abnormal (high or low) laboratory measures during the postrandomization phase, and the incidence of treatment-emergent adverse events. The analysis of laboratory data is conducted by comparing the measures to the normal reference ranges (based on a large Lilly database), and counting patients in the numerator if they ever had a high (low) value during the postrandomization phase.

      \n

      Additionally, for the continuous laboratory tests, an analysis of change from baseline to endpoint will be conducted using the same ANOVA model described for the efficacy measures in Section 4.3. Because several laboratory analytes are known to be nonnormally distributed (skewed right), these ANOVAs will be conducted on the ranks.

      \n

      Several outcome measures will be extracted and analyzed from the Ambulatory ECG tapes, including number of pauses, QT interval, and AV block (first, second, or third degree). The primary consideration will be the frequency of pauses. The number of pauses greater than or equal to 2, 3, 4, 5 and 6 seconds will be tabulated. Primary analysis will focus on the number of pauses greater than or equal to 3 seconds. Due to possible outliers, these data will be analyzed as the laboratory data, by ANOVA on the ranks.

      \n

      Treatment-emergent adverse events (also referred to as treatment-emergent signs and symptoms, or TESS) are defined as any event reported during the postrandomization period (Weeks 0 - 26) that is worse in severity than during the baseline period, or one that occurs for the first time during the postrandomization period.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_58", + "extensionAttributes": [], + "name": "NCI_58", + "text": "

      The effect of age, gender, origin, baseline disease severity as measured by MMSE, Apo E, and patient education level upon efficacy will be evaluated if sample sizes are sufficient to warrant such analyses. For example, if all patients are Caucasian, then there is no need to evaluate the co-factor origin. The ANCOVA and ANOVA models described above will be supplemented with terms for the main effect and interaction with treatment. Each co-factor will be analyzed in separate models. The test for treatment-bysubgroup interaction will address whether the response to xanomeline, compared with placebo, is different or consistent between levels of the co-factor.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_59", + "extensionAttributes": [], + "name": "NCI_59", + "text": "

      Two interim efficacy analyses are planned. The first interim analysis will occur when approximately 50% of the patients have completed 8 weeks; the second interim analysis is to be conducted when approximately 50% of the patients have completed 24 weeks of the study. The purpose of these interim analyses is to provide a rationale for the initiation of subsequent studies of xanomeline TTS, or if the outcome is negative to stop development of xanomeline TTS. The method developed by Enas and Offen (1993) will be used as a guideline as to whether or not to stop one treatment arm, or the study, to declare ineffectiveness. The outcome of the interim analyses will not affect in any way the conduct, results, or analysis of the current study, unless the results are so negative that they lead to a decision to terminate further development of xanomeline TTS in AD. Hence, adjustments to final computed p-values are not appropriate.

      \n

      Planned interim analyses, and any unplanned interim analyses, will be conducted under the auspices of the data monitoring board assigned to this study. Only the data monitoring board is authorized to review completely unblinded interim efficacy and safety analyses and, if necessary, to disseminate those results. The data monitoring board will disseminate interim results only if absolutely necessary. Any such dissemination will be documented and described in the final study report. Study sites will not receive information about interim results unless they need to know for the safety of their patients.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_60", + "extensionAttributes": [], + "name": "NCI_60", + "text": "

      An analysis of the cardiovascular safety monitoring (see section 3.9.4) will be performed when approximately 25 patients from each treatment arm have completed at least 2 weeks at the treatment arms' respective full dosage (Visit 5). If necessary, this analysis will be repeated every 25 patients per arm. This analysis will be conducted under the auspices of the DSMB. This board membership will be composed of 3 external cardiologists who will be the voting members of the board, a Lilly cardiologist, a Lilly statistician, and the Lilly research physician in charge of the study. Only the DSMB is authorized to review completely unblinded cardiovascular safety analyses and, if necessary, to disseminate those results. The outcome of the cardiovascular safety analyses will determine the need for further Ambulatory ECGs.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_61", + "extensionAttributes": [], + "name": "NCI_61", + "text": "

      Plasma concentrations of xanomeline will be determined from samples obtained at selected visits (Section 3.9.2). The plasma concentration data for xanomeline, dosing information, and patient characteristics such as weight, gender and origin will be pooled and analyzed using a population pharmacokinetic analysis approach (for example, NONMEM). This approach preserves the individual pharmacokinetic differences through structural and statistical models. The population pharmacokinetic parameters through the structural model, and the interindividual and random residual variability through the components of the statistical models will be estimated. An attempt will also be made to correlate plasma concentrations with efficacy and safety data by means of population pharmacokinetic/pharmacodynamic modeling.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_62", + "extensionAttributes": [], + "name": "NCI_62", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_63", + "extensionAttributes": [], + "name": "NCI_63", + "text": "

      In the United States and Canada, the investigator is responsible for preparing the informed consent document. The investigator will use information provided in the current [Clinical Investigator's Brochure or product information] to prepare the informed consent document.

      \n

      The informed consent document will be used to explain in simple terms, before the patient is entered into the study, the risks and benefits to the patient. The informed consent document must contain a statement that the consent is freely given, that the patient is aware of the risks and benefits of entering the study, and that the patient is free to withdraw from the study at any time.

      \n

      As used in this protocol, the term \u201cinformed consent\u201d includes all consent and/or assent given by subjects, patients, or their legal representatives.

      \n

      In addition to the elements required by all applicable laws, the 3 numbered paragraphs below must be included in the informed consent document. The language may be altered to match the style of the informed consent document, providing the meaning is unchanged. In some circumstances, local law may require that the text be altered in a way that changes the meaning. These changes can be made only with specific Lilly approval. In these cases, the ethical review board may request from the investigator documentation evidencing Lilly's approval of the language in the informed consent document, which would be different from the language contained in the protocol. Lilly shall, upon request, provide the investigator with such documentation.

      \n
        \n
      1. \u201cI understand that the doctors in charge of this study, or Lilly, may \nstop the study or stop my participation in the study at any time, for any \nreason, without my consent.\u201d

      2. \n
      3. \u201cI hereby give permission for the doctors in charge of this study to \nrelease the information regarding, or obtained as a result of, my \nparticipation in this study to Lilly, including its agents and contractors; \nthe US Food and Drug Administration (FDA) and other governmental \nagencies; and to allow them to inspect all my medical records. I \nunderstand that medical records that reveal my identity will remain \nconfidential, except that they will be provided as noted above or as \nmay be required by law.\u201d

      4. \n
      5. \u201cIf I follow the directions of the doctors in charge of this study and I \nam physically injured because of any substance or procedure properly \ngiven me under the plan for this study, Lilly will pay the medical \nexpenses for the treatment of that injury which are not covered by my \nown insurance, by a government program, or by any other third party. \nNo other compensation is available from Lilly if any injury occurs.\u201d

      6. \n
      \n

      The investigator is responsible for obtaining informed consent from each patient or legal representative and for obtaining the appropriate signatures on the informed consent document prior to the performance of any protocol procedures and prior to the administration of study drug.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_64", + "extensionAttributes": [], + "name": "NCI_64", + "text": "

      The name and address of the ethical review board are listed on the Investigator/Contacts cover pages provided with this protocol.

      \n

      The investigator will provide Lilly with documentation of ethical review board approval of the protocol and the informed consent document before the study may begin at the site or sites concerned. The ethical review board(s) will review the protocol as required.

      \n

      The investigator must provide the following documentation:

      \n
      • The ethical review board's annual reapproval of the protocol

      • \n
      • The ethical review board's approvals of any revisions to the informed \nconsent document or amendments to the protocol.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_65", + "extensionAttributes": [], + "name": "NCI_65", + "text": "

      This study will be conducted in accordance with the ethical principles stated in the most recent version of the Declaration of Helsinki or the applicable guidelines on good clinical practice, whichever represents the greater protection of the individual.

      \n

      After reading the protocol, each investigator will sign 2 protocol signature pages and return 1 of the signed pages to a Lilly representative (see Attachment LZZT.10).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_66", + "extensionAttributes": [], + "name": "NCI_66", + "text": "
      \n
      \n
      \n

      Bierer LM, Haroutunian V, Gabriel S, Knott PJ, Carlin LS, Purohit DP, et al. 1995.
      Neurochemical correlates of dementia severity in AD: Relative importance of the cholinergic deficits. J of Neurochemistry 64:749-760.

      \n
      \n
      \n
      \n
      \n

      Cummings JL, Mega M, Gray K, Rosenberg-Thompson S, et al. 1994. The Neuropsychiatric Inventory: Comprehensive assessment of psychopathology in dementia. Neurology 44:2308-2314.

      \n
      \n
      \n
      \n
      \n

      Enas GG, Offen WW. 1993. A simple stopping rule for declaring treatment ineffectiveness in clinical trials. J Biop Stat 3(1):13-32.

      \n
      \n
      \n
      \n
      \n

      Fisher A, Barak D. 1994. Promising therapeutic strategies in Alzheimer's disease based \non functionally selective M 1 muscarinic agonists. Progress and perspectives in new \nmuscarinic agonists. DN&P 7(8):453-464.

      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n

      GLUCAGON for Injection ITO [Package Insert]. Osaka, Japan: Kaigen Pharma Co., Ltd; 2016.Available at:\n http://www.pmda.go.jp/PmdaSearch/iyakuDetail/ResultDataSetPDF/130616_7229400D1088_\n 1_11.

      \n
      \n
      \n
      \n
      \n

      Polonsky WH, Fisher L, Hessler D, Johnson N. Emotional distress in the partners of type 1diabetes adults:\n worries about hypoglycemia and other key concerns. Diabetes Technol Ther. 2016;18:292-297.

      \n
      \n
      \n
      \n
      \n

      Fisher LD. 1991. The use of one-sided tests in drug trials: an FDA advisory committee \nmember's perspective. J Biop Stat 1:151-6.

      \n
      \n
      \n
      \n
      \n

      Koch GG. 1991. One-sided and two-sided tests and p-values. J Biop Stat 1:161-70.

      \n
      \n
      \n
      \n
      \n

      Overall JE. 1991. A comment concerning one-sided tests of significance in new drug \napplications. J Biop Stat 1:157-60.

      \n
      \n
      \n
      \n
      \n

      Peace KE. 1991. Oneside or two-sided p-values: which most appropriately address the \nquestion of drug efficacy? J Biop Stat 1:133-8.

      \n
      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_67", + "extensionAttributes": [], + "name": "NCI_67", + "text": "
      \n
      \n

      Note:

      \n

      The following SoA timelines are auto generated using the detailed study design held within the USDM.

      \n
      \n

      Timeline: Main Timeline, Potential subject identified

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X1

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X2

      X

      X

      X

      X

      X3

      X

      X

      X

      X

      X4

      X

      X

      X

      X

      X5

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      1

      Performed if patient is an insulin-dependent diabetic

      2

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      3

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      4

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      5

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      Timeline: Adverse Event Timeline, Subject suffers an adverse event

      X

      Timeline: Early Termination Timeline, Subject terminates the study early

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      Timeline: Vital Sign Blood Pressure Timeline, Automatic execution

      X

      X

      X

      X

      X

      X

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_68", + "extensionAttributes": [], + "name": "NCI_68", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_69", + "extensionAttributes": [], + "name": "NCI_69", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_70", + "extensionAttributes": [], + "name": "NCI_70", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_71", + "extensionAttributes": [], + "name": "NCI_71", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_72", + "extensionAttributes": [], + "name": "NCI_72", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_73", + "extensionAttributes": [], + "name": "NCI_73", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_74", + "extensionAttributes": [], + "name": "NCI_74", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_75", + "extensionAttributes": [], + "name": "NCI_75", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_76", + "extensionAttributes": [], + "name": "NCI_76", + "text": "
      \n
      \n

      Note:

      \n

      The attachment has not been included in this issue of the protocol. It may be included in future versions.

      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_77", + "extensionAttributes": [], + "name": "NCI_77", + "text": "

      Sponsor Confidentiality Statement:

      Full Title:

      Trial Acronym:

      Protocol Identifier:

      Original Protocol:

      Version Number:

      Version Date:

      Amendment Identifier:

      Amendment Scope:

      Compound Codes(s):

      Compound Name(s):

      Trial Phase:

      Short Title:

      Sponsor Name and Address:

      ,

      Regulatory Agency Identifier Number(s):

      Spondor Approval Date:

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_78", + "extensionAttributes": [], + "name": "NCI_78", + "text": "
      Committees\n

      A Data Safety Monitoring Board (DSMB), chaired by an external cardiologist, will meet after 75, 150, 225, and 300 patients have completed 1 month of treatment. The DSMB will review cardiovascular findings to decide if discontinuation of the study or any treatment arm is appropriate, if additional cardiovascular monitoring is required, if further cardiovascular monitoring is unnecessary, or if adjustment of dose within a treatment arm (or arms) is appropriate (see Section 3.9.4).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_79", + "extensionAttributes": [], + "name": "NCI_79", + "text": "
      \"Alt\n

      Figure LZZT.1. Illustration of study design for Protocol H2Q-MC-LZZT(c).

      \n

      Following informed consent, patients will be screened at Visit 1. At screening, patients will undergo complete neuropsychiatric assessment, psychometric testing, and general medical assessment (including medical history, pre-existing conditions, physical examination). In addition, vital signs, temperature, medication history, electrocardiogram (ECG), chest x-ray, and safety laboratories will be obtained. During the screening visit, patients will wear a placebo TTS to determine willingness and ability to comply with transdermal administration procedures. If patients have not had central nervous system (CNS) imaging in the previous 12 months, a computed tomography (CT) or magnetic resonance imaging (MRI) scan will be obtained. If patients are insulin dependent diabetics, a hemoglobin A 1c will be obtained. Screening exams and procedures may be performed after Visit 1; however, their results must be completed and available prior to randomization. The screening process should occur within 2 weeks of randomization (Visit 3 of the study).

      \n

      Patients who meet enrollment criteria from Visit 1 will proceed to Visit 2 at which time they will undergo a 24-hour Ambulatory ECG. At Visit 3 the Ambulatory ECG will be removed and patients will be randomized to 1 of 3 treatment arms. The treatment arms will include a placebo arm, a low-dose xanomeline arm (50 cm 2 TTS Formulation E, 54 mg xanomeline), and a high-dose xanomeline arm (75 cm 2 TTS Formulation E, 81 mg xanomeline). All patients receiving xanomeline will be started at 50 cm 2 TTS Formulation E. For the first 8 weeks of treatment, patients will be assessed at clinic visits every 2 weeks and, thereafter, at clinic visits every 4 weeks. Patients who discontinue prior to Visit 12 (Week 24) will be brought back for full efficacy assessments at or near to 24 weeks, whenever possible.

      \n

      At Visits 3, 8, 10, and 12, efficacy instruments (ADAS-Cog, CIBIC+, and DAD) will be administered. NPI-X will be administered at 2-week intervals either at clinic visits or via a telephone interview. Vital signs, temperature, and an assessment of adverse events will be obtained at all clinic visits. An electrocardiogram (ECG), and chemistry/hematology safety labs will be obtained at Visits 4, 5, 7, 8, 9, 10, 11, 12, and 13. Urinalysis will be done at Visits 4, 9, and 12. Use of concomitant medications will be collected at Visits 3, 4, 5, 7, 8, 9, 10, 11, 12, and 13. Plasma levels of xanomeline and metabolites will be obtained at Visits 3, 4, 5, 7, 9, and 11. At Visits 3, 4, 5, 7, 8, 9, 10, 11, and 12, medications will be dispensed to the patients.

      \n

      Visits 1 through 13 should be scheduled relative to Visit 3 (Week 0 - randomization). Visits 4, 5, 7, 8, and 13 should occur within 3 days of their scheduled date. Visits 9, 10, 11, and 12 should occur within 4 days of their scheduled date. At Visit 13 patients will be given the option to enter the open-label extension phase (see Section 3.10.3. Study Extensions).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_80", + "extensionAttributes": [], + "name": "NCI_80", + "text": "
      \n
      \n

      Note:

      \n

      The following SoA timelines are auto generated using the detailed study design held within the USDM.

      \n
      \n

      Timeline: Main Timeline, Potential subject identified

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X1

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X2

      X

      X

      X

      X

      X3

      X

      X

      X

      X

      X4

      X

      X

      X

      X

      X5

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      1

      Performed if patient is an insulin-dependent diabetic

      2

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      3

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      4

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      5

      Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

      Timeline: Adverse Event Timeline, Subject suffers an adverse event

      X

      Timeline: Early Termination Timeline, Subject terminates the study early

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      X

      Timeline: Vital Sign Blood Pressure Timeline, Automatic execution

      X

      X

      X

      X

      X

      X

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_81", + "extensionAttributes": [], + "name": "NCI_81", + "text": "

      The primary objectives of this study are

      \n
        \n
      • \n
      • \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_82", + "extensionAttributes": [], + "name": "NCI_82", + "text": "

      The secondary objectives of this study are

      \n
        \n
      • \n
      • \n
      • \n
      • \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_83", + "extensionAttributes": [], + "name": "NCI_83", + "text": "

      Approximately 300 patients will be enrolled (see Schedule of Events for Protocol H2Q-MC-LZZT(c), Attachment LZZT.1).

      \n

      Duration

      \n

      SOMETHING HERE

      \n

      Patients with probable mild to moderate AD will be studied in a randomized, double-blind, parallel (3 arm), placebo-controlled trial of 26 weeks duration. The study will be conducted on an outpatient basis.

      \n

      At Visit 1, patients who meet the enrollment criteria of Mini-Mental State Examination (MMSE) score of 10 to 23 (Attachment LZZT.6), Hachinski Ischemia Score \u22644 (Attachment LZZT.8), a physical exam, safety labs, ECG, and urinalysis, will proceed to Visit 2 and Visit 3. At Visit 3, patients whose CNS imaging and other pending labs from Visit 1 satisfy the inclusion criteria (Section 3.4.2.1) will be enrolled in the study. Approximately 300 patients with a diagnosis of probable mild to moderate AD will be enrolled in the study.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_84", + "extensionAttributes": [], + "name": "NCI_84", + "text": "

      Patients may be included in the study only if they meet all the following criteria:

      \n
      01
      02
      03
      04
      05
      06
      07
      08
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_85", + "extensionAttributes": [], + "name": "NCI_85", + "text": "

      Patients will be excluded from the study for any of the following reasons:

      \n
      09
      10
      11
      12
      13
      14
      15
      16b
      17
      18
      19
      20
      21
      22
      23
      24
      25
      26
      27b
      28b
      29b
      30b
      31b
      ", + "instanceType": "NarrativeContentItem" + } + ], + "abbreviations": [], + "roles": [ + { + "id": "StudyRole_1", + "extensionAttributes": [], + "name": "ROLE_1", + "label": "Sponsor", + "description": "Sponsor role", + "code": { + "id": "Code_670", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sponsor", + "instanceType": "Code" + }, + "appliesToIds": [], + "assignedPersons": [], + "organizationIds": ["Organization_1"], + "masking": { + "id": "Masking_1", + "extensionAttributes": [], + "text": "Masked", + "isMasked": true, + "instanceType": "Masking" + }, + "notes": [], + "instanceType": "StudyRole" + } + ], + "organizations": [ + { + "id": "Organization_1", + "extensionAttributes": [], + "name": "LILLY", + "label": "Eli Lilly", + "type": { + "id": "Code_1", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "identifierScheme": "DUNS", + "identifier": "00-642-1325", + "legalAddress": { + "id": "Address_1", + "extensionAttributes": [], + "text": "Lilly Corporate Ctr, Indianapolis, , IN, 4628, United States of America", + "lines": ["Lilly Corporate Ctr"], + "city": "Indianapolis", + "district": "", + "state": "IN", + "postalCode": "4628", + "country": { + "id": "Code_2", + "extensionAttributes": [], + "code": "USA", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_2", + "extensionAttributes": [], + "name": "CT-GOV", + "label": "ClinicalTrials.gov", + "type": { + "id": "Code_3", + "extensionAttributes": [], + "code": "C93453", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Study Registry", + "instanceType": "Code" + }, + "identifierScheme": "USGOV", + "identifier": "CT-GOV", + "legalAddress": { + "id": "Address_2", + "extensionAttributes": [], + "text": "National Library of Medicine, Bethesda, 8600 Rockville Pike, MD, 20894, United States of America", + "lines": ["National Library of Medicine"], + "city": "Bethesda", + "district": "8600 Rockville Pike", + "state": "MD", + "postalCode": "20894", + "country": { + "id": "Code_4", + "extensionAttributes": [], + "code": "USA", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_3", + "extensionAttributes": [], + "name": "SITE_ORG_1", + "label": "Big Hospital", + "type": { + "id": "Code_5", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Clinical Study Sponsor", + "instanceType": "Code" + }, + "identifierScheme": "DUNS", + "identifier": "123456789", + "legalAddress": { + "id": "Address_3", + "extensionAttributes": [], + "text": "line, city, district, state, postal_code, United Kingdom of Great Britain and Northern Ireland", + "lines": ["line"], + "city": "city", + "district": "district", + "state": "state", + "postalCode": "postal_code", + "country": { + "id": "Code_6", + "extensionAttributes": [], + "code": "GBR", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United Kingdom of Great Britain and Northern Ireland", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [ + { + "id": "StudySite_1", + "extensionAttributes": [], + "name": "SITE_1", + "label": "Site One", + "description": "Main Site", + "country": { + "id": "Code_669", + "extensionAttributes": [], + "code": "GBR", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United Kingdom of Great Britain and Northern Ireland", + "instanceType": "Code" + }, + "instanceType": "StudySite" + } + ], + "instanceType": "Organization" + } + ], + "studyInterventions": [ + { + "id": "StudyIntervention_1", + "extensionAttributes": [], + "name": "XINONILINE", + "label": "Xinomiline", + "description": "Xinomiline", + "role": { + "id": "Code_611", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_612", + "extensionAttributes": [], + "code": "C1909", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Pharmacologic Substance", + "instanceType": "Code" + }, + "minimumResponseDuration": { + "id": "Quantity_4", + "extensionAttributes": [], + "value": 1.0, + "unit": { + "id": "AliasCode_246", + "extensionAttributes": [], + "standardCode": { + "id": "Code_613", + "extensionAttributes": [], + "code": "C25301", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Day", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "codes": [ + { + "id": "Code_610", + "extensionAttributes": [], + "code": "XIN", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "XIN", + "instanceType": "Code" + } + ], + "administrations": [ + { + "id": "Administration_1", + "extensionAttributes": [], + "name": "PATCH_50", + "label": "", + "description": "50 cm2 Patch", + "duration": { + "id": "Duration_1", + "extensionAttributes": [], + "text": "", + "quantity": { + "id": "Quantity_2", + "extensionAttributes": [], + "value": 24.0, + "unit": { + "id": "AliasCode_242", + "extensionAttributes": [], + "standardCode": { + "id": "Code_606", + "extensionAttributes": [], + "code": "C29844", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Week", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "durationWillVary": false, + "reasonDurationWillVary": "Need reason", + "instanceType": "Duration" + }, + "dose": { + "id": "Quantity_3", + "extensionAttributes": [], + "value": 54.0, + "unit": { + "id": "AliasCode_243", + "extensionAttributes": [], + "standardCode": { + "id": "Code_607", + "extensionAttributes": [], + "code": "C28253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milligram", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "route": { + "id": "AliasCode_244", + "extensionAttributes": [], + "standardCode": { + "id": "Code_608", + "extensionAttributes": [], + "code": "C38288", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Oral Route of Administration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "frequency": { + "id": "AliasCode_245", + "extensionAttributes": [], + "standardCode": { + "id": "Code_609", + "extensionAttributes": [], + "code": "C25473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Daily", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "administrableProductId": null, + "medicalDeviceId": null, + "notes": [], + "instanceType": "Administration" + }, + { + "id": "Administration_2", + "extensionAttributes": [], + "name": "PATCH_75", + "label": "", + "description": "75 cm2 Patch", + "duration": { + "id": "Duration_2", + "extensionAttributes": [], + "text": "", + "quantity": { + "id": "Quantity_5", + "extensionAttributes": [], + "value": 24.0, + "unit": { + "id": "AliasCode_247", + "extensionAttributes": [], + "standardCode": { + "id": "Code_614", + "extensionAttributes": [], + "code": "C29844", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Week", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "durationWillVary": false, + "reasonDurationWillVary": "Need reason", + "instanceType": "Duration" + }, + "dose": { + "id": "Quantity_6", + "extensionAttributes": [], + "value": 81.0, + "unit": { + "id": "AliasCode_248", + "extensionAttributes": [], + "standardCode": { + "id": "Code_615", + "extensionAttributes": [], + "code": "C28253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milligram", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "route": { + "id": "AliasCode_249", + "extensionAttributes": [], + "standardCode": { + "id": "Code_616", + "extensionAttributes": [], + "code": "C38288", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Oral Route of Administration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "frequency": { + "id": "AliasCode_250", + "extensionAttributes": [], + "standardCode": { + "id": "Code_617", + "extensionAttributes": [], + "code": "C25473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Daily", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "administrableProductId": null, + "medicalDeviceId": null, + "notes": [], + "instanceType": "Administration" + } + ], + "notes": [], + "instanceType": "StudyIntervention" + } + ], + "administrableProducts": [], + "medicalDevices": [], + "productOrganizationRoles": [], + "biomedicalConcepts": [ + { + "id": "BiomedicalConcept_20", + "extensionAttributes": [], + "name": "Sex", + "label": "Sex", + "synonyms": [], + "reference": "/mdr/bc/packages/2025-04-01/biomedicalconcepts/C28421", + "properties": [ + { + "id": "BiomedicalConceptProperty_130", + "extensionAttributes": [], + "name": "Sex", + "label": "Sex", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_174", + "extensionAttributes": [], + "name": "RC_C20197", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_482", + "extensionAttributes": [], + "code": "C20197", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Male", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_175", + "extensionAttributes": [], + "name": "RC_C16576", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_483", + "extensionAttributes": [], + "code": "C16576", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Female", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_173", + "extensionAttributes": [], + "standardCode": { + "id": "Code_484", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sex", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_131", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_174", + "extensionAttributes": [], + "standardCode": { + "id": "Code_485", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_175", + "extensionAttributes": [], + "standardCode": { + "id": "Code_486", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sex", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_21", + "extensionAttributes": [], + "name": "Race", + "label": "Race", + "synonyms": ["Racial Group"], + "reference": "/mdr/bc/packages/2025-04-01/biomedicalconcepts/C17049", + "properties": [ + { + "id": "BiomedicalConceptProperty_132", + "extensionAttributes": [], + "name": "Race", + "label": "Race", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_176", + "extensionAttributes": [], + "standardCode": { + "id": "Code_487", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Race", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_133", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_177", + "extensionAttributes": [], + "standardCode": { + "id": "Code_488", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_178", + "extensionAttributes": [], + "standardCode": { + "id": "Code_489", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Race", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_22", + "extensionAttributes": [], + "name": "Temperature", + "label": "Temperature", + "synonyms": ["Temperature", "Body Temperature"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/TEMP", + "properties": [ + { + "id": "BiomedicalConceptProperty_134", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_179", + "extensionAttributes": [], + "standardCode": { + "id": "Code_490", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_135", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_180", + "extensionAttributes": [], + "standardCode": { + "id": "Code_491", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_136", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_176", + "extensionAttributes": [], + "name": "RC_C42559", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_492", + "extensionAttributes": [], + "code": "C42559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Degree Celsius", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_177", + "extensionAttributes": [], + "name": "RC_C44277", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_493", + "extensionAttributes": [], + "code": "C44277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Degree Fahrenheit", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_178", + "extensionAttributes": [], + "name": "RC_C42537", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_494", + "extensionAttributes": [], + "code": "C42537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Kelvin", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_181", + "extensionAttributes": [], + "standardCode": { + "id": "Code_495", + "extensionAttributes": [], + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Temperature", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_137", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_179", + "extensionAttributes": [], + "name": "RC_C12674", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_496", + "extensionAttributes": [], + "code": "C12674", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Axilla", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_180", + "extensionAttributes": [], + "name": "RC_C12394", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_497", + "extensionAttributes": [], + "code": "C12394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Ear", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_181", + "extensionAttributes": [], + "name": "RC_C89803", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_498", + "extensionAttributes": [], + "code": "C89803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Forehead", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_182", + "extensionAttributes": [], + "name": "RC_C12421", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_499", + "extensionAttributes": [], + "code": "C12421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Oral Cavity", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_183", + "extensionAttributes": [], + "name": "RC_C12390", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_500", + "extensionAttributes": [], + "code": "C12390", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Rectum", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_182", + "extensionAttributes": [], + "standardCode": { + "id": "Code_501", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_138", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_183", + "extensionAttributes": [], + "standardCode": { + "id": "Code_502", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_184", + "extensionAttributes": [], + "standardCode": { + "id": "Code_503", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_23", + "extensionAttributes": [], + "name": "Weight", + "label": "Weight", + "synonyms": ["WEIGHT", "Body Weight"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/WEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_139", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_185", + "extensionAttributes": [], + "standardCode": { + "id": "Code_504", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_140", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_186", + "extensionAttributes": [], + "standardCode": { + "id": "Code_505", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_141", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_184", + "extensionAttributes": [], + "name": "RC_C48531", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_506", + "extensionAttributes": [], + "code": "C48531", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Pound", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_185", + "extensionAttributes": [], + "name": "RC_C48155", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_507", + "extensionAttributes": [], + "code": "C48155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Gram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_186", + "extensionAttributes": [], + "name": "RC_C28252", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_508", + "extensionAttributes": [], + "code": "C28252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Kilogram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_187", + "extensionAttributes": [], + "standardCode": { + "id": "Code_509", + "extensionAttributes": [], + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_142", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_188", + "extensionAttributes": [], + "standardCode": { + "id": "Code_510", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_189", + "extensionAttributes": [], + "standardCode": { + "id": "Code_511", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_24", + "extensionAttributes": [], + "name": "Height", + "label": "Height", + "synonyms": ["HEIGHT", "Body Height"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/HEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_143", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_190", + "extensionAttributes": [], + "standardCode": { + "id": "Code_512", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_144", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_191", + "extensionAttributes": [], + "standardCode": { + "id": "Code_513", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_145", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_187", + "extensionAttributes": [], + "name": "RC_C49668", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_514", + "extensionAttributes": [], + "code": "C49668", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Centimeter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_188", + "extensionAttributes": [], + "name": "RC_C48500", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_515", + "extensionAttributes": [], + "code": "C48500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inch", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_189", + "extensionAttributes": [], + "name": "RC_C41139", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_516", + "extensionAttributes": [], + "code": "C41139", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Meter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_192", + "extensionAttributes": [], + "standardCode": { + "id": "Code_517", + "extensionAttributes": [], + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Height", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_146", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_193", + "extensionAttributes": [], + "standardCode": { + "id": "Code_518", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_194", + "extensionAttributes": [], + "standardCode": { + "id": "Code_519", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_25", + "extensionAttributes": [], + "name": "Alanine Aminotransferase Concentration in Serum/Plasma", + "label": "Alanine Aminotransferase Concentration in Serum/Plasma", + "synonyms": ["ALT", "SGPT", "Alanine Aminotransferase Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_147", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_195", + "extensionAttributes": [], + "standardCode": { + "id": "Code_520", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_148", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_196", + "extensionAttributes": [], + "standardCode": { + "id": "Code_521", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_149", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_190", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_522", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_191", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_523", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_192", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_524", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_193", + "extensionAttributes": [], + "name": "RC_C70510", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_525", + "extensionAttributes": [], + "code": "C70510", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Nanokatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_197", + "extensionAttributes": [], + "standardCode": { + "id": "Code_526", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_150", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_198", + "extensionAttributes": [], + "standardCode": { + "id": "Code_527", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_151", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_194", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_528", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_195", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_529", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_199", + "extensionAttributes": [], + "standardCode": { + "id": "Code_530", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_200", + "extensionAttributes": [], + "standardCode": { + "id": "Code_531", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_26", + "extensionAttributes": [], + "name": "Albumin Presence in Urine", + "label": "Albumin Presence in Urine", + "synonyms": ["Albumin", "Albumin Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALBURINPRES", + "properties": [ + { + "id": "BiomedicalConceptProperty_152", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_201", + "extensionAttributes": [], + "standardCode": { + "id": "Code_532", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_153", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_202", + "extensionAttributes": [], + "standardCode": { + "id": "Code_533", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_154", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_203", + "extensionAttributes": [], + "standardCode": { + "id": "Code_534", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_155", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_196", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_535", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_197", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_536", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_204", + "extensionAttributes": [], + "standardCode": { + "id": "Code_537", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_205", + "extensionAttributes": [], + "standardCode": { + "id": "Code_538", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_27", + "extensionAttributes": [], + "name": "Alkaline Phosphatase Concentration in Serum/Plasma", + "label": "Alkaline Phosphatase Concentration in Serum/Plasma", + "synonyms": [ + "Alkaline Phosphatase", + "Alkaline Phosphatase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALPSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_156", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_206", + "extensionAttributes": [], + "standardCode": { + "id": "Code_539", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_157", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_207", + "extensionAttributes": [], + "standardCode": { + "id": "Code_540", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_158", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_198", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_541", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_199", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_542", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_200", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_543", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_208", + "extensionAttributes": [], + "standardCode": { + "id": "Code_544", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_159", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_209", + "extensionAttributes": [], + "standardCode": { + "id": "Code_545", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_160", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_201", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_546", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_202", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_547", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_210", + "extensionAttributes": [], + "standardCode": { + "id": "Code_548", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_211", + "extensionAttributes": [], + "standardCode": { + "id": "Code_549", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_28", + "extensionAttributes": [], + "name": "Aspartate Aminotransferase in Serum/Plasma", + "label": "Aspartate Aminotransferase in Serum/Plasma", + "synonyms": [ + "AST", + "SGOT", + "Aspartate Aminotransferase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ASTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_161", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_212", + "extensionAttributes": [], + "standardCode": { + "id": "Code_550", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_162", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_213", + "extensionAttributes": [], + "standardCode": { + "id": "Code_551", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_163", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_203", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_552", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_204", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_553", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_205", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_554", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_214", + "extensionAttributes": [], + "standardCode": { + "id": "Code_555", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_164", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_215", + "extensionAttributes": [], + "standardCode": { + "id": "Code_556", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_165", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_206", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_557", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_207", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_558", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_216", + "extensionAttributes": [], + "standardCode": { + "id": "Code_559", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_217", + "extensionAttributes": [], + "standardCode": { + "id": "Code_560", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_29", + "extensionAttributes": [], + "name": "Creatinine Concentration in Urine", + "label": "Creatinine Concentration in Urine", + "synonyms": ["Creatinine", "Creatinine Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/CREATURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_166", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_218", + "extensionAttributes": [], + "standardCode": { + "id": "Code_561", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_167", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_562", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_168", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_208", + "extensionAttributes": [], + "name": "RC_C67015", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_563", + "extensionAttributes": [], + "code": "C67015", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milligram per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_209", + "extensionAttributes": [], + "name": "RC_C64572", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_564", + "extensionAttributes": [], + "code": "C64572", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microgram per Milliliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_210", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_565", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_211", + "extensionAttributes": [], + "name": "RC_C48508", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_566", + "extensionAttributes": [], + "code": "C48508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Micromole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_220", + "extensionAttributes": [], + "standardCode": { + "id": "Code_567", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_169", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_221", + "extensionAttributes": [], + "standardCode": { + "id": "Code_568", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_170", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_212", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_569", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_213", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_570", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_222", + "extensionAttributes": [], + "standardCode": { + "id": "Code_571", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_223", + "extensionAttributes": [], + "standardCode": { + "id": "Code_572", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_30", + "extensionAttributes": [], + "name": "Potassium Concentration in Urine", + "label": "Potassium Concentration in Urine", + "synonyms": ["Potassium", "K", "Potassium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/KURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_171", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_224", + "extensionAttributes": [], + "standardCode": { + "id": "Code_573", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_172", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_225", + "extensionAttributes": [], + "standardCode": { + "id": "Code_574", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_173", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_214", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_575", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_215", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_576", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_216", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_577", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_226", + "extensionAttributes": [], + "standardCode": { + "id": "Code_578", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_174", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_227", + "extensionAttributes": [], + "standardCode": { + "id": "Code_579", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_175", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_217", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_580", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_218", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_581", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_228", + "extensionAttributes": [], + "standardCode": { + "id": "Code_582", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_229", + "extensionAttributes": [], + "standardCode": { + "id": "Code_583", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_31", + "extensionAttributes": [], + "name": "Sodium Concentration in Urine", + "label": "Sodium Concentration in Urine", + "synonyms": ["Sodium", "NA", "Sodium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SODIUMURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_176", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_230", + "extensionAttributes": [], + "standardCode": { + "id": "Code_584", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_177", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_231", + "extensionAttributes": [], + "standardCode": { + "id": "Code_585", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_178", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_219", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_586", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_220", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_587", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_221", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_588", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_232", + "extensionAttributes": [], + "standardCode": { + "id": "Code_589", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_179", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_233", + "extensionAttributes": [], + "standardCode": { + "id": "Code_590", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_180", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_222", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_591", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_223", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_592", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_234", + "extensionAttributes": [], + "standardCode": { + "id": "Code_593", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_235", + "extensionAttributes": [], + "standardCode": { + "id": "Code_594", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_32", + "extensionAttributes": [], + "name": "Hemoglobin A1C Concentration in Blood", + "label": "Hemoglobin A1C Concentration in Blood", + "synonyms": [ + "Hemoglobin A1C", + "HBA1C", + "Glycosylated Hemoglobin A1C", + "Hemoglobin A1C Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/HBA1CBLD", + "properties": [ + { + "id": "BiomedicalConceptProperty_181", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_236", + "extensionAttributes": [], + "standardCode": { + "id": "Code_595", + "extensionAttributes": [], + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HBA1C", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_182", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_237", + "extensionAttributes": [], + "standardCode": { + "id": "Code_596", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_183", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_224", + "extensionAttributes": [], + "name": "RC_C64783", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_597", + "extensionAttributes": [], + "code": "C64783", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Gram per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_238", + "extensionAttributes": [], + "standardCode": { + "id": "Code_598", + "extensionAttributes": [], + "code": "No Concept Code", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "LBORRESU", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_184", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_239", + "extensionAttributes": [], + "standardCode": { + "id": "Code_599", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_185", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_225", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_600", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_226", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_601", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_240", + "extensionAttributes": [], + "standardCode": { + "id": "Code_602", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_241", + "extensionAttributes": [], + "standardCode": { + "id": "Code_603", + "extensionAttributes": [], + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HBA1C", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_1", + "extensionAttributes": [], + "name": "Adverse Event Prespecified", + "label": "Adverse Event Prespecified", + "synonyms": ["Adverse Event", "Solicited Adverse Event"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/AEPRESP", + "properties": [ + { + "id": "BiomedicalConceptProperty_1", + "extensionAttributes": [], + "name": "AETERM", + "label": "AETERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_25", + "extensionAttributes": [], + "standardCode": { + "id": "Code_161", + "extensionAttributes": [], + "code": "C78541", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Verbatim Description", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_2", + "extensionAttributes": [], + "name": "AEDECOD", + "label": "AEDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_26", + "extensionAttributes": [], + "standardCode": { + "id": "Code_162", + "extensionAttributes": [], + "code": "C83344", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Dictionary Derived Term", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_3", + "extensionAttributes": [], + "name": "AEHLGT", + "label": "AEHLGT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_27", + "extensionAttributes": [], + "standardCode": { + "id": "Code_163", + "extensionAttributes": [], + "code": "No Concept Code", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "AEHLGT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_4", + "extensionAttributes": [], + "name": "AEHLGTCD", + "label": "AEHLGTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_28", + "extensionAttributes": [], + "standardCode": { + "id": "Code_164", + "extensionAttributes": [], + "code": "No Concept Code", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "AEHLGTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_5", + "extensionAttributes": [], + "name": "AEPRESP", + "label": "AEPRESP", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_1", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_165", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_29", + "extensionAttributes": [], + "standardCode": { + "id": "Code_166", + "extensionAttributes": [], + "code": "C87840", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Pre-specified", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_6", + "extensionAttributes": [], + "name": "AELOC", + "label": "AELOC", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_30", + "extensionAttributes": [], + "standardCode": { + "id": "Code_167", + "extensionAttributes": [], + "code": "C83205", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Location", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_7", + "extensionAttributes": [], + "name": "AESEV", + "label": "AESEV", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_31", + "extensionAttributes": [], + "standardCode": { + "id": "Code_168", + "extensionAttributes": [], + "code": "C53253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Severity of Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_8", + "extensionAttributes": [], + "name": "AESER", + "label": "AESER", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_2", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_169", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_3", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_170", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_32", + "extensionAttributes": [], + "standardCode": { + "id": "Code_171", + "extensionAttributes": [], + "code": "C53252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Seriousness of Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_9", + "extensionAttributes": [], + "name": "AEACN", + "label": "AEACN", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_33", + "extensionAttributes": [], + "standardCode": { + "id": "Code_172", + "extensionAttributes": [], + "code": "C83013", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Action Taken with Study Treatment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_10", + "extensionAttributes": [], + "name": "AEACNOTH", + "label": "AEACNOTH", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_34", + "extensionAttributes": [], + "standardCode": { + "id": "Code_173", + "extensionAttributes": [], + "code": "C83109", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Other Actions taken in Response to Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_11", + "extensionAttributes": [], + "name": "AEREL", + "label": "AEREL", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_35", + "extensionAttributes": [], + "standardCode": { + "id": "Code_174", + "extensionAttributes": [], + "code": "C41358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Attribution to Product or Procedure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_12", + "extensionAttributes": [], + "name": "AERELNST", + "label": "AERELNST", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_36", + "extensionAttributes": [], + "standardCode": { + "id": "Code_175", + "extensionAttributes": [], + "code": "C83210", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Relationship to Non Study Treatment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_13", + "extensionAttributes": [], + "name": "AEPATT", + "label": "AEPATT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_37", + "extensionAttributes": [], + "standardCode": { + "id": "Code_176", + "extensionAttributes": [], + "code": "C83208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Pattern", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_14", + "extensionAttributes": [], + "name": "AEOUT", + "label": "AEOUT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38", + "extensionAttributes": [], + "standardCode": { + "id": "Code_177", + "extensionAttributes": [], + "code": "C49489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Outcome", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_15", + "extensionAttributes": [], + "name": "AESCAN", + "label": "AESCAN", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_4", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_178", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_5", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_179", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_39", + "extensionAttributes": [], + "standardCode": { + "id": "Code_180", + "extensionAttributes": [], + "code": "C83211", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Involves Cancer", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_16", + "extensionAttributes": [], + "name": "AESCONG", + "label": "AESCONG", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_6", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_181", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_7", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_182", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_40", + "extensionAttributes": [], + "standardCode": { + "id": "Code_183", + "extensionAttributes": [], + "code": "C83117", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Seriousness Due to Congenital Anomaly", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_17", + "extensionAttributes": [], + "name": "AESDISAB", + "label": "AESDISAB", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_8", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_184", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_9", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_185", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_41", + "extensionAttributes": [], + "standardCode": { + "id": "Code_186", + "extensionAttributes": [], + "code": "C113380", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Disabling Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_18", + "extensionAttributes": [], + "name": "AESDTH", + "label": "AESDTH", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_10", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_187", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_11", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_188", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_42", + "extensionAttributes": [], + "standardCode": { + "id": "Code_189", + "extensionAttributes": [], + "code": "C48275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Death Related to Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_19", + "extensionAttributes": [], + "name": "AESHOSP", + "label": "AESHOSP", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_12", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_190", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_13", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_191", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_43", + "extensionAttributes": [], + "standardCode": { + "id": "Code_192", + "extensionAttributes": [], + "code": "C83052", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event associated with Hospitalization", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_20", + "extensionAttributes": [], + "name": "AESLIFE", + "label": "AESLIFE", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_14", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_193", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_15", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_194", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_44", + "extensionAttributes": [], + "standardCode": { + "id": "Code_195", + "extensionAttributes": [], + "code": "C84266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Life Threatening Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_21", + "extensionAttributes": [], + "name": "AESOD", + "label": "AESOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_16", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_196", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_17", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_197", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_45", + "extensionAttributes": [], + "standardCode": { + "id": "Code_198", + "extensionAttributes": [], + "code": "C83214", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Occurred with Overdose", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_22", + "extensionAttributes": [], + "name": "AESMIE", + "label": "AESMIE", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_18", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_199", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_19", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_200", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_46", + "extensionAttributes": [], + "standardCode": { + "id": "Code_201", + "extensionAttributes": [], + "code": "C83053", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Associated with Serious Medical Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_23", + "extensionAttributes": [], + "name": "AECONTRT", + "label": "AECONTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_20", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_202", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_21", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_203", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_47", + "extensionAttributes": [], + "standardCode": { + "id": "Code_204", + "extensionAttributes": [], + "code": "C83199", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Concomitant Treatment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_24", + "extensionAttributes": [], + "name": "AETOXGR", + "label": "AETOXGR", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_48", + "extensionAttributes": [], + "standardCode": { + "id": "Code_205", + "extensionAttributes": [], + "code": "C78605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Toxicity Grade", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_25", + "extensionAttributes": [], + "name": "AESTDTC", + "label": "AESTDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_49", + "extensionAttributes": [], + "standardCode": { + "id": "Code_206", + "extensionAttributes": [], + "code": "C83215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event Start Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_26", + "extensionAttributes": [], + "name": "AEENDTC", + "label": "AEENDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_50", + "extensionAttributes": [], + "standardCode": { + "id": "Code_207", + "extensionAttributes": [], + "code": "C83201", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Adverse Event End Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_51", + "extensionAttributes": [], + "standardCode": { + "id": "Code_208", + "extensionAttributes": [], + "code": "C179175", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Solicited Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_2", + "extensionAttributes": [], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": ["SYSBP", "Systolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SYSBP", + "properties": [ + { + "id": "BiomedicalConceptProperty_27", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_52", + "extensionAttributes": [], + "standardCode": { + "id": "Code_209", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_28", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_53", + "extensionAttributes": [], + "standardCode": { + "id": "Code_210", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_29", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_54", + "extensionAttributes": [], + "standardCode": { + "id": "Code_211", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_30", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_22", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_212", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_23", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_213", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_24", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_214", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_25", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_215", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_26", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_216", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_55", + "extensionAttributes": [], + "standardCode": { + "id": "Code_217", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_31", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_27", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_218", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_28", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_219", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_29", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_220", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_30", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_221", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_31", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_222", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_32", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_223", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_56", + "extensionAttributes": [], + "standardCode": { + "id": "Code_224", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_32", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_33", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_225", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_34", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_226", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_57", + "extensionAttributes": [], + "standardCode": { + "id": "Code_227", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_33", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_58", + "extensionAttributes": [], + "standardCode": { + "id": "Code_228", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_59", + "extensionAttributes": [], + "standardCode": { + "id": "Code_229", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_3", + "extensionAttributes": [], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": ["DIABP", "Diastolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/DIABP", + "properties": [ + { + "id": "BiomedicalConceptProperty_34", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_60", + "extensionAttributes": [], + "standardCode": { + "id": "Code_230", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_35", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_61", + "extensionAttributes": [], + "standardCode": { + "id": "Code_231", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_36", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_62", + "extensionAttributes": [], + "standardCode": { + "id": "Code_232", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_37", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_35", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_233", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_36", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_234", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_37", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_235", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_38", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_236", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_39", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_237", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_63", + "extensionAttributes": [], + "standardCode": { + "id": "Code_238", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_38", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_40", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_239", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_41", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_240", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_42", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_241", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_43", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_242", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_44", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_243", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_45", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_244", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_64", + "extensionAttributes": [], + "standardCode": { + "id": "Code_245", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_39", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_46", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_246", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_47", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_247", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_65", + "extensionAttributes": [], + "standardCode": { + "id": "Code_248", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_40", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_66", + "extensionAttributes": [], + "standardCode": { + "id": "Code_249", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_67", + "extensionAttributes": [], + "standardCode": { + "id": "Code_250", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_4", + "extensionAttributes": [], + "name": "Temperature", + "label": "Temperature", + "synonyms": ["Temperature", "Body Temperature"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/TEMP", + "properties": [ + { + "id": "BiomedicalConceptProperty_41", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_68", + "extensionAttributes": [], + "standardCode": { + "id": "Code_251", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_42", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_69", + "extensionAttributes": [], + "standardCode": { + "id": "Code_252", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_43", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_48", + "extensionAttributes": [], + "name": "RC_C42559", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_253", + "extensionAttributes": [], + "code": "C42559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Degree Celsius", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_49", + "extensionAttributes": [], + "name": "RC_C44277", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_254", + "extensionAttributes": [], + "code": "C44277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Degree Fahrenheit", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_50", + "extensionAttributes": [], + "name": "RC_C42537", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_255", + "extensionAttributes": [], + "code": "C42537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Kelvin", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_70", + "extensionAttributes": [], + "standardCode": { + "id": "Code_256", + "extensionAttributes": [], + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Temperature", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_44", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_51", + "extensionAttributes": [], + "name": "RC_C12674", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_257", + "extensionAttributes": [], + "code": "C12674", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Axilla", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_52", + "extensionAttributes": [], + "name": "RC_C12394", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_258", + "extensionAttributes": [], + "code": "C12394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Ear", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_53", + "extensionAttributes": [], + "name": "RC_C89803", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_259", + "extensionAttributes": [], + "code": "C89803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Forehead", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_54", + "extensionAttributes": [], + "name": "RC_C12421", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_260", + "extensionAttributes": [], + "code": "C12421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Oral Cavity", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_55", + "extensionAttributes": [], + "name": "RC_C12390", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_261", + "extensionAttributes": [], + "code": "C12390", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Rectum", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_71", + "extensionAttributes": [], + "standardCode": { + "id": "Code_262", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_45", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_72", + "extensionAttributes": [], + "standardCode": { + "id": "Code_263", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_73", + "extensionAttributes": [], + "standardCode": { + "id": "Code_264", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_5", + "extensionAttributes": [], + "name": "Weight", + "label": "Weight", + "synonyms": ["WEIGHT", "Body Weight"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/WEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_46", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_74", + "extensionAttributes": [], + "standardCode": { + "id": "Code_265", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_47", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_75", + "extensionAttributes": [], + "standardCode": { + "id": "Code_266", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_48", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_56", + "extensionAttributes": [], + "name": "RC_C48531", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_267", + "extensionAttributes": [], + "code": "C48531", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Pound", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_57", + "extensionAttributes": [], + "name": "RC_C48155", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_268", + "extensionAttributes": [], + "code": "C48155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Gram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_58", + "extensionAttributes": [], + "name": "RC_C28252", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_269", + "extensionAttributes": [], + "code": "C28252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Kilogram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_76", + "extensionAttributes": [], + "standardCode": { + "id": "Code_270", + "extensionAttributes": [], + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_49", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_77", + "extensionAttributes": [], + "standardCode": { + "id": "Code_271", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_78", + "extensionAttributes": [], + "standardCode": { + "id": "Code_272", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_6", + "extensionAttributes": [], + "name": "Height", + "label": "Height", + "synonyms": ["HEIGHT", "Body Height"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/HEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_50", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_79", + "extensionAttributes": [], + "standardCode": { + "id": "Code_273", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_51", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_80", + "extensionAttributes": [], + "standardCode": { + "id": "Code_274", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_52", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_59", + "extensionAttributes": [], + "name": "RC_C49668", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_275", + "extensionAttributes": [], + "code": "C49668", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Centimeter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_60", + "extensionAttributes": [], + "name": "RC_C48500", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_276", + "extensionAttributes": [], + "code": "C48500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Inch", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_61", + "extensionAttributes": [], + "name": "RC_C41139", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_277", + "extensionAttributes": [], + "code": "C41139", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Meter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_81", + "extensionAttributes": [], + "standardCode": { + "id": "Code_278", + "extensionAttributes": [], + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Height", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_53", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_82", + "extensionAttributes": [], + "standardCode": { + "id": "Code_279", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_83", + "extensionAttributes": [], + "standardCode": { + "id": "Code_280", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_7", + "extensionAttributes": [], + "name": "Alanine Aminotransferase Concentration in Serum/Plasma", + "label": "Alanine Aminotransferase Concentration in Serum/Plasma", + "synonyms": ["ALT", "SGPT", "Alanine Aminotransferase Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_54", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_84", + "extensionAttributes": [], + "standardCode": { + "id": "Code_281", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_55", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_85", + "extensionAttributes": [], + "standardCode": { + "id": "Code_282", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_56", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_62", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_283", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_63", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_284", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_64", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_285", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_65", + "extensionAttributes": [], + "name": "RC_C70510", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_286", + "extensionAttributes": [], + "code": "C70510", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Nanokatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_86", + "extensionAttributes": [], + "standardCode": { + "id": "Code_287", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_57", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_87", + "extensionAttributes": [], + "standardCode": { + "id": "Code_288", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_58", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_66", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_289", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_67", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_290", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_88", + "extensionAttributes": [], + "standardCode": { + "id": "Code_291", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_89", + "extensionAttributes": [], + "standardCode": { + "id": "Code_292", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_8", + "extensionAttributes": [], + "name": "Albumin Presence in Urine", + "label": "Albumin Presence in Urine", + "synonyms": ["Albumin", "Albumin Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALBURINPRES", + "properties": [ + { + "id": "BiomedicalConceptProperty_59", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_90", + "extensionAttributes": [], + "standardCode": { + "id": "Code_293", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_60", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_91", + "extensionAttributes": [], + "standardCode": { + "id": "Code_294", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_61", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_92", + "extensionAttributes": [], + "standardCode": { + "id": "Code_295", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_62", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_68", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_296", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_69", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_297", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_93", + "extensionAttributes": [], + "standardCode": { + "id": "Code_298", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_94", + "extensionAttributes": [], + "standardCode": { + "id": "Code_299", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_9", + "extensionAttributes": [], + "name": "Alkaline Phosphatase Concentration in Serum/Plasma", + "label": "Alkaline Phosphatase Concentration in Serum/Plasma", + "synonyms": [ + "Alkaline Phosphatase", + "Alkaline Phosphatase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALPSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_63", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_95", + "extensionAttributes": [], + "standardCode": { + "id": "Code_300", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_64", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_96", + "extensionAttributes": [], + "standardCode": { + "id": "Code_301", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_65", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_70", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_302", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_71", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_303", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_72", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_304", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_97", + "extensionAttributes": [], + "standardCode": { + "id": "Code_305", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_66", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_98", + "extensionAttributes": [], + "standardCode": { + "id": "Code_306", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_67", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_73", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_307", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_74", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_308", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_99", + "extensionAttributes": [], + "standardCode": { + "id": "Code_309", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_100", + "extensionAttributes": [], + "standardCode": { + "id": "Code_310", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_10", + "extensionAttributes": [], + "name": "Aspartate Aminotransferase in Serum/Plasma", + "label": "Aspartate Aminotransferase in Serum/Plasma", + "synonyms": [ + "AST", + "SGOT", + "Aspartate Aminotransferase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ASTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_68", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_101", + "extensionAttributes": [], + "standardCode": { + "id": "Code_311", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_69", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_102", + "extensionAttributes": [], + "standardCode": { + "id": "Code_312", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_70", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_75", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_313", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_76", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_314", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_77", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_315", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_103", + "extensionAttributes": [], + "standardCode": { + "id": "Code_316", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_71", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_104", + "extensionAttributes": [], + "standardCode": { + "id": "Code_317", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_72", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_78", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_318", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_79", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_319", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_105", + "extensionAttributes": [], + "standardCode": { + "id": "Code_320", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_106", + "extensionAttributes": [], + "standardCode": { + "id": "Code_321", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_11", + "extensionAttributes": [], + "name": "Creatinine Concentration in Urine", + "label": "Creatinine Concentration in Urine", + "synonyms": ["Creatinine", "Creatinine Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/CREATURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_73", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_107", + "extensionAttributes": [], + "standardCode": { + "id": "Code_322", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_74", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_108", + "extensionAttributes": [], + "standardCode": { + "id": "Code_323", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_75", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_80", + "extensionAttributes": [], + "name": "RC_C67015", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_324", + "extensionAttributes": [], + "code": "C67015", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milligram per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_81", + "extensionAttributes": [], + "name": "RC_C64572", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_325", + "extensionAttributes": [], + "code": "C64572", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Microgram per Milliliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_82", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_326", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_83", + "extensionAttributes": [], + "name": "RC_C48508", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_327", + "extensionAttributes": [], + "code": "C48508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Micromole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_109", + "extensionAttributes": [], + "standardCode": { + "id": "Code_328", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_76", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_110", + "extensionAttributes": [], + "standardCode": { + "id": "Code_329", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_77", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_84", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_330", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_85", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_331", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_111", + "extensionAttributes": [], + "standardCode": { + "id": "Code_332", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_112", + "extensionAttributes": [], + "standardCode": { + "id": "Code_333", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_12", + "extensionAttributes": [], + "name": "Potassium Concentration in Urine", + "label": "Potassium Concentration in Urine", + "synonyms": ["Potassium", "K", "Potassium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/KURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_78", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_113", + "extensionAttributes": [], + "standardCode": { + "id": "Code_334", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_79", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_114", + "extensionAttributes": [], + "standardCode": { + "id": "Code_335", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_80", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_86", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_336", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_87", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_337", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_88", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_338", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_115", + "extensionAttributes": [], + "standardCode": { + "id": "Code_339", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_81", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_116", + "extensionAttributes": [], + "standardCode": { + "id": "Code_340", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_82", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_89", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_341", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_90", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_342", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_117", + "extensionAttributes": [], + "standardCode": { + "id": "Code_343", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_118", + "extensionAttributes": [], + "standardCode": { + "id": "Code_344", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_13", + "extensionAttributes": [], + "name": "Sodium Concentration in Urine", + "label": "Sodium Concentration in Urine", + "synonyms": ["Sodium", "NA", "Sodium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SODIUMURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_83", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_119", + "extensionAttributes": [], + "standardCode": { + "id": "Code_345", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_84", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_120", + "extensionAttributes": [], + "standardCode": { + "id": "Code_346", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_85", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_91", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_347", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_92", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_348", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_93", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_349", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_121", + "extensionAttributes": [], + "standardCode": { + "id": "Code_350", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_86", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_122", + "extensionAttributes": [], + "standardCode": { + "id": "Code_351", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_87", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_94", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_352", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_95", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_353", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_123", + "extensionAttributes": [], + "standardCode": { + "id": "Code_354", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_124", + "extensionAttributes": [], + "standardCode": { + "id": "Code_355", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_14", + "extensionAttributes": [], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": ["SYSBP", "Systolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SYSBP", + "properties": [ + { + "id": "BiomedicalConceptProperty_88", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_125", + "extensionAttributes": [], + "standardCode": { + "id": "Code_356", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_89", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_126", + "extensionAttributes": [], + "standardCode": { + "id": "Code_357", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_90", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_127", + "extensionAttributes": [], + "standardCode": { + "id": "Code_358", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_91", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_96", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_359", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_97", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_360", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_98", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_361", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_99", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_362", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_100", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_363", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_128", + "extensionAttributes": [], + "standardCode": { + "id": "Code_364", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_92", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_101", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_365", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_102", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_366", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_103", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_367", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_104", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_368", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_105", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_369", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_106", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_370", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_129", + "extensionAttributes": [], + "standardCode": { + "id": "Code_371", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_93", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_107", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_372", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_108", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_373", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_130", + "extensionAttributes": [], + "standardCode": { + "id": "Code_374", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_94", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_131", + "extensionAttributes": [], + "standardCode": { + "id": "Code_375", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_132", + "extensionAttributes": [], + "standardCode": { + "id": "Code_376", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_15", + "extensionAttributes": [], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": ["DIABP", "Diastolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/DIABP", + "properties": [ + { + "id": "BiomedicalConceptProperty_95", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_133", + "extensionAttributes": [], + "standardCode": { + "id": "Code_377", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_96", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_134", + "extensionAttributes": [], + "standardCode": { + "id": "Code_378", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_97", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_135", + "extensionAttributes": [], + "standardCode": { + "id": "Code_379", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_98", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_109", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_380", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_110", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_381", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_111", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_382", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_112", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_383", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_113", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_384", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_136", + "extensionAttributes": [], + "standardCode": { + "id": "Code_385", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_99", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_114", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_386", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_115", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_387", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_116", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_388", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_117", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_389", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_118", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_390", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_119", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_391", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_137", + "extensionAttributes": [], + "standardCode": { + "id": "Code_392", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_100", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_120", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_393", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_121", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_394", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_138", + "extensionAttributes": [], + "standardCode": { + "id": "Code_395", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_101", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_139", + "extensionAttributes": [], + "standardCode": { + "id": "Code_396", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_140", + "extensionAttributes": [], + "standardCode": { + "id": "Code_397", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_16", + "extensionAttributes": [], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": ["HR", "Heart Rate"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/HR", + "properties": [ + { + "id": "BiomedicalConceptProperty_102", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_141", + "extensionAttributes": [], + "standardCode": { + "id": "Code_398", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_103", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_142", + "extensionAttributes": [], + "standardCode": { + "id": "Code_399", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_104", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_143", + "extensionAttributes": [], + "standardCode": { + "id": "Code_400", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_105", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_122", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_401", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_123", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_402", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_124", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_403", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_125", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_404", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_126", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_405", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_144", + "extensionAttributes": [], + "standardCode": { + "id": "Code_406", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_106", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_127", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_407", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_128", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_408", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_129", + "extensionAttributes": [], + "name": "RC_C12691", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_409", + "extensionAttributes": [], + "code": "C12691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Cerebral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_130", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_410", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_131", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_411", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_132", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_412", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_145", + "extensionAttributes": [], + "standardCode": { + "id": "Code_413", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_107", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_133", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_414", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_134", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_415", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_146", + "extensionAttributes": [], + "standardCode": { + "id": "Code_416", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_108", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_147", + "extensionAttributes": [], + "standardCode": { + "id": "Code_417", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_148", + "extensionAttributes": [], + "standardCode": { + "id": "Code_418", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_17", + "extensionAttributes": [], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": ["SYSBP", "Systolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SYSBP", + "properties": [ + { + "id": "BiomedicalConceptProperty_109", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_149", + "extensionAttributes": [], + "standardCode": { + "id": "Code_419", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_110", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_150", + "extensionAttributes": [], + "standardCode": { + "id": "Code_420", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_111", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_151", + "extensionAttributes": [], + "standardCode": { + "id": "Code_421", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_112", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_135", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_422", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_136", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_423", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_137", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_424", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_138", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_425", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_139", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_426", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_152", + "extensionAttributes": [], + "standardCode": { + "id": "Code_427", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_113", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_140", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_428", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_141", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_429", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_142", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_430", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_143", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_431", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_144", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_432", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_145", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_433", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_153", + "extensionAttributes": [], + "standardCode": { + "id": "Code_434", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_114", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_146", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_435", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_147", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_436", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_154", + "extensionAttributes": [], + "standardCode": { + "id": "Code_437", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_115", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_155", + "extensionAttributes": [], + "standardCode": { + "id": "Code_438", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_156", + "extensionAttributes": [], + "standardCode": { + "id": "Code_439", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_18", + "extensionAttributes": [], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": ["DIABP", "Diastolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/DIABP", + "properties": [ + { + "id": "BiomedicalConceptProperty_116", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_157", + "extensionAttributes": [], + "standardCode": { + "id": "Code_440", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_117", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_158", + "extensionAttributes": [], + "standardCode": { + "id": "Code_441", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_118", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_159", + "extensionAttributes": [], + "standardCode": { + "id": "Code_442", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_119", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_148", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_443", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_149", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_444", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_150", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_445", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_151", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_446", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_152", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_447", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_160", + "extensionAttributes": [], + "standardCode": { + "id": "Code_448", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_120", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_153", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_449", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_154", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_450", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_155", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_451", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_156", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_452", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_157", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_453", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_158", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_454", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_161", + "extensionAttributes": [], + "standardCode": { + "id": "Code_455", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_121", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_159", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_456", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_160", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_457", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_162", + "extensionAttributes": [], + "standardCode": { + "id": "Code_458", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_122", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_163", + "extensionAttributes": [], + "standardCode": { + "id": "Code_459", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_164", + "extensionAttributes": [], + "standardCode": { + "id": "Code_460", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_19", + "extensionAttributes": [], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": ["HR", "Heart Rate"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/HR", + "properties": [ + { + "id": "BiomedicalConceptProperty_123", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_165", + "extensionAttributes": [], + "standardCode": { + "id": "Code_461", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_124", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_166", + "extensionAttributes": [], + "standardCode": { + "id": "Code_462", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_125", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_167", + "extensionAttributes": [], + "standardCode": { + "id": "Code_463", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_126", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_161", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_464", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_162", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_465", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_163", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_466", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_164", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_467", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_165", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_468", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_168", + "extensionAttributes": [], + "standardCode": { + "id": "Code_469", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_127", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_166", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_470", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_167", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_471", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_168", + "extensionAttributes": [], + "name": "RC_C12691", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_472", + "extensionAttributes": [], + "code": "C12691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Cerebral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_169", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_473", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_170", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_474", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_171", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_475", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_169", + "extensionAttributes": [], + "standardCode": { + "id": "Code_476", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_128", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_172", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_477", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_173", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_478", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_170", + "extensionAttributes": [], + "standardCode": { + "id": "Code_479", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_129", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_171", + "extensionAttributes": [], + "standardCode": { + "id": "Code_480", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_172", + "extensionAttributes": [], + "standardCode": { + "id": "Code_481", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + } + ], + "bcCategories": [], + "bcSurrogates": [ + { + "id": "BiomedicalConceptSurrogate_1", + "extensionAttributes": [], + "name": "Date of Birth", + "label": "Date of Birth", + "description": "Date of Birth", + "reference": "None set", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + } + ], + "dictionaries": [ + { + "id": "SyntaxTemplateDictionary_1", + "extensionAttributes": [], + "name": "IE_Dict", + "label": "IE Dictionary", + "description": "Dictionary for IE", + "parameterMaps": [ + { + "id": "ParameterMap_1", + "extensionAttributes": [], + "tag": "min_age", + "reference": "", + "instanceType": "ParameterMap" + }, + { + "id": "ParameterMap_2", + "extensionAttributes": [], + "tag": "max_age", + "reference": "", + "instanceType": "ParameterMap" + }, + { + "id": "ParameterMap_3", + "extensionAttributes": [], + "tag": "StudyPopulation", + "reference": "", + "instanceType": "ParameterMap" + } + ], + "instanceType": "SyntaxTemplateDictionary" + }, + { + "id": "SyntaxTemplateDictionary_2", + "extensionAttributes": [], + "name": "AS_Dict", + "label": "Assessment Dictionary", + "description": "Dictionary for Study Assessments", + "parameterMaps": [ + { + "id": "ParameterMap_4", + "extensionAttributes": [], + "tag": "Activity1", + "reference": "", + "instanceType": "ParameterMap" + }, + { + "id": "ParameterMap_5", + "extensionAttributes": [], + "tag": "Activity2", + "reference": "", + "instanceType": "ParameterMap" + } + ], + "instanceType": "SyntaxTemplateDictionary" + } + ], + "conditions": [ + { + "id": "Condition_1", + "extensionAttributes": [], + "name": "COND1", + "label": "HA1C", + "description": "Hemoglobin A1C and insulin-dependent subjects", + "text": "Performed if patient is an insulin-dependent diabetic", + "dictionaryId": null, + "notes": [], + "instanceType": "Condition", + "contextIds": ["ScheduledActivityInstance_9"], + "appliesToIds": ["Activity_24"] + }, + { + "id": "Condition_2", + "extensionAttributes": [], + "name": "COND2", + "label": "Practice", + "description": "Questionnaire practice condition", + "text": "Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.", + "dictionaryId": null, + "notes": [], + "instanceType": "Condition", + "contextIds": ["ScheduledActivityInstance_9"], + "appliesToIds": [ + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ] + } + ], + "notes": [], + "instanceType": "StudyVersion" + } + ], + "documentedBy": [ + { + "id": "StudyDefinitionDocument_1", + "extensionAttributes": [], + "name": "Protocol_Document_CDISC PILOT - LZZT", + "label": null, + "description": null, + "language": { + "id": "Code_671", + "extensionAttributes": [], + "code": "en", + "codeSystem": "ISO", + "codeSystemVersion": "1", + "decode": "English", + "instanceType": "Code" + }, + "type": { + "id": "Code_672", + "extensionAttributes": [], + "code": "C12345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Decode", + "instanceType": "Code" + }, + "templateName": "LILLY", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_1", + "extensionAttributes": [], + "version": "2", + "status": { + "id": "Code_12", + "extensionAttributes": [], + "code": "C25508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Final", + "instanceType": "Code" + }, + "dateValues": [ + { + "id": "GovernanceDate_2", + "extensionAttributes": [], + "name": "P_APPROVE", + "label": "Protocol Approval", + "description": "Protocol document approval date", + "type": { + "id": "Code_15", + "extensionAttributes": [], + "code": "C99903x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Protocol Effective Date", + "instanceType": "Code" + }, + "dateValue": "2006-07-01", + "geographicScopes": [ + { + "id": "GeographicScope_2", + "extensionAttributes": [], + "type": { + "id": "Code_17", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_1", + "extensionAttributes": [], + "standardCode": { + "id": "Code_16", + "extensionAttributes": [], + "code": "150", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "contents": [ + { + "id": "NarrativeContent_1", + "extensionAttributes": [], + "name": "NC_1", + "sectionNumber": "0", + "sectionTitle": "Title Page", + "displaySectionNumber": false, + "displaySectionTitle": false, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_2", + "contentItemId": "NarrativeContentItem_1", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_2", + "extensionAttributes": [], + "name": "NC_2", + "sectionNumber": "1", + "sectionTitle": "Introduction", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_1", + "nextId": "NarrativeContent_3", + "contentItemId": "NarrativeContentItem_2", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_3", + "extensionAttributes": [], + "name": "NC_3", + "sectionNumber": "2", + "sectionTitle": "Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_4", "NarrativeContent_5"], + "previousId": "NarrativeContent_2", + "nextId": "NarrativeContent_4", + "contentItemId": "NarrativeContentItem_3", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_4", + "extensionAttributes": [], + "name": "NC_4", + "sectionNumber": "2.1.", + "sectionTitle": "Primary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_3", + "nextId": "NarrativeContent_5", + "contentItemId": "NarrativeContentItem_4", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_5", + "extensionAttributes": [], + "name": "NC_5", + "sectionNumber": "2.2", + "sectionTitle": "Secondary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_4", + "nextId": "NarrativeContent_6", + "contentItemId": "NarrativeContentItem_5", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_6", + "extensionAttributes": [], + "name": "NC_6", + "sectionNumber": "3", + "sectionTitle": "Investigational Plan", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_7", + "NarrativeContent_8", + "NarrativeContent_9", + "NarrativeContent_11", + "NarrativeContent_19", + "NarrativeContent_20", + "NarrativeContent_23", + "NarrativeContent_24", + "NarrativeContent_25", + "NarrativeContent_41", + "NarrativeContent_47" + ], + "previousId": "NarrativeContent_5", + "nextId": "NarrativeContent_7", + "contentItemId": "NarrativeContentItem_6", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_7", + "extensionAttributes": [], + "name": "NC_7", + "sectionNumber": "3.1.", + "sectionTitle": "Summary of Study Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_6", + "nextId": "NarrativeContent_8", + "contentItemId": "NarrativeContentItem_7", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_8", + "extensionAttributes": [], + "name": "NC_8", + "sectionNumber": "3.2.", + "sectionTitle": "Discussion of Design and Control", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_7", + "nextId": "NarrativeContent_9", + "contentItemId": "NarrativeContentItem_8", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_9", + "extensionAttributes": [], + "name": "NC_9", + "sectionNumber": "3.3.", + "sectionTitle": "Investigator Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_10"], + "previousId": "NarrativeContent_8", + "nextId": "NarrativeContent_10", + "contentItemId": "NarrativeContentItem_9", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_10", + "extensionAttributes": [], + "name": "NC_10", + "sectionNumber": "3.3.1.", + "sectionTitle": "Final Report Signature", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_9", + "nextId": "NarrativeContent_11", + "contentItemId": "NarrativeContentItem_10", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_11", + "extensionAttributes": [], + "name": "NC_11", + "sectionNumber": "3.4.", + "sectionTitle": "Study Population", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_12", + "NarrativeContent_13", + "NarrativeContent_17", + "NarrativeContent_18" + ], + "previousId": "NarrativeContent_10", + "nextId": "NarrativeContent_12", + "contentItemId": "NarrativeContentItem_11", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_12", + "extensionAttributes": [], + "name": "NC_12", + "sectionNumber": "3.4.1.", + "sectionTitle": "Entry Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_11", + "nextId": "NarrativeContent_13", + "contentItemId": "NarrativeContentItem_12", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_13", + "extensionAttributes": [], + "name": "NC_13", + "sectionNumber": "3.4.2.", + "sectionTitle": "Criteria for Enrollment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_14", + "NarrativeContent_15", + "NarrativeContent_16" + ], + "previousId": "NarrativeContent_12", + "nextId": "NarrativeContent_14", + "contentItemId": "NarrativeContentItem_13", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_14", + "extensionAttributes": [], + "name": "NC_14", + "sectionNumber": "3.4.2.1.", + "sectionTitle": "Inclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_13", + "nextId": "NarrativeContent_15", + "contentItemId": "NarrativeContentItem_14", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_15", + "extensionAttributes": [], + "name": "NC_15", + "sectionNumber": "3.4.2.2.", + "sectionTitle": "Exclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_14", + "nextId": "NarrativeContent_16", + "contentItemId": "NarrativeContentItem_15", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_16", + "extensionAttributes": [], + "name": "NC_16", + "sectionNumber": "3.4.2.3", + "sectionTitle": "Violation of Criteria for Enrollment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_15", + "nextId": "NarrativeContent_17", + "contentItemId": "NarrativeContentItem_16", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_17", + "extensionAttributes": [], + "name": "NC_17", + "sectionNumber": "3.4.3.", + "sectionTitle": "Disease Diagnostic Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_16", + "nextId": "NarrativeContent_18", + "contentItemId": "NarrativeContentItem_17", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_18", + "extensionAttributes": [], + "name": "NC_18", + "sectionNumber": "3.4.4.", + "sectionTitle": "Sample Size", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_17", + "nextId": "NarrativeContent_19", + "contentItemId": "NarrativeContentItem_18", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_19", + "extensionAttributes": [], + "name": "NC_19", + "sectionNumber": "3.5.", + "sectionTitle": "Patient Assignment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_18", + "nextId": "NarrativeContent_20", + "contentItemId": "NarrativeContentItem_19", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_20", + "extensionAttributes": [], + "name": "NC_20", + "sectionNumber": "3.6.", + "sectionTitle": "Dosage and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_21", "NarrativeContent_22"], + "previousId": "NarrativeContent_19", + "nextId": "NarrativeContent_21", + "contentItemId": "NarrativeContentItem_20", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_21", + "extensionAttributes": [], + "name": "NC_21", + "sectionNumber": "3.6.1.", + "sectionTitle": "Materials and Supplies", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_20", + "nextId": "NarrativeContent_22", + "contentItemId": "NarrativeContentItem_21", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_22", + "extensionAttributes": [], + "name": "NC_22", + "sectionNumber": "3.6.2.", + "sectionTitle": "TTS Administration Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_21", + "nextId": "NarrativeContent_23", + "contentItemId": "NarrativeContentItem_22", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_23", + "extensionAttributes": [], + "name": "NC_23", + "sectionNumber": "3.7.", + "sectionTitle": "Blinding", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_22", + "nextId": "NarrativeContent_24", + "contentItemId": "NarrativeContentItem_23", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_24", + "extensionAttributes": [], + "name": "NC_24", + "sectionNumber": "3.8.", + "sectionTitle": "Concomitant Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_23", + "nextId": "NarrativeContent_25", + "contentItemId": "NarrativeContentItem_24", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_25", + "extensionAttributes": [], + "name": "NC_25", + "sectionNumber": "3.9.", + "sectionTitle": "Efficacy, Pharmacokinetic, and Safety Evaluations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_26", + "NarrativeContent_29", + "NarrativeContent_30", + "NarrativeContent_39", + "NarrativeContent_40" + ], + "previousId": "NarrativeContent_24", + "nextId": "NarrativeContent_26", + "contentItemId": "NarrativeContentItem_25", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_26", + "extensionAttributes": [], + "name": "NC_26", + "sectionNumber": "3.9.1.", + "sectionTitle": "Efficacy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_27", "NarrativeContent_28"], + "previousId": "NarrativeContent_25", + "nextId": "NarrativeContent_27", + "contentItemId": "NarrativeContentItem_26", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_27", + "extensionAttributes": [], + "name": "NC_27", + "sectionNumber": "3.9.1.1.", + "sectionTitle": "Efficacy Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_26", + "nextId": "NarrativeContent_28", + "contentItemId": "NarrativeContentItem_27", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_28", + "extensionAttributes": [], + "name": "NC_28", + "sectionNumber": "3.9.1.2.", + "sectionTitle": "Efficacy Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_27", + "nextId": "NarrativeContent_29", + "contentItemId": "NarrativeContentItem_28", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_29", + "extensionAttributes": [], + "name": "NC_29", + "sectionNumber": "3.9.2.", + "sectionTitle": "Pharmacokinetics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_28", + "nextId": "NarrativeContent_30", + "contentItemId": "NarrativeContentItem_29", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_30", + "extensionAttributes": [], + "name": "NC_30", + "sectionNumber": "3.9.3.", + "sectionTitle": "Safety", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_31", + "NarrativeContent_32", + "NarrativeContent_35", + "NarrativeContent_36" + ], + "previousId": "NarrativeContent_29", + "nextId": "NarrativeContent_31", + "contentItemId": "NarrativeContentItem_30", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_31", + "extensionAttributes": [], + "name": "NC_31", + "sectionNumber": "3.9.3.1.", + "sectionTitle": "Safety Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_30", + "nextId": "NarrativeContent_32", + "contentItemId": "NarrativeContentItem_31", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_32", + "extensionAttributes": [], + "name": "NC_32", + "sectionNumber": "3.9.3.2.", + "sectionTitle": "Clinical Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_33", "NarrativeContent_34"], + "previousId": "NarrativeContent_31", + "nextId": "NarrativeContent_33", + "contentItemId": "NarrativeContentItem_32", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_33", + "extensionAttributes": [], + "name": "NC_33", + "sectionNumber": "3.9.3.2.1.", + "sectionTitle": "Adverse Event Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_32", + "nextId": "NarrativeContent_34", + "contentItemId": "NarrativeContentItem_33", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_34", + "extensionAttributes": [], + "name": "NC_34", + "sectionNumber": "3.9.3.2.2.", + "sectionTitle": "Serious Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_33", + "nextId": "NarrativeContent_35", + "contentItemId": "NarrativeContentItem_34", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_35", + "extensionAttributes": [], + "name": "NC_35", + "sectionNumber": "3.9.3.3.", + "sectionTitle": "Clinical Laboratory Tests", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_34", + "nextId": "NarrativeContent_36", + "contentItemId": "NarrativeContentItem_35", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_36", + "extensionAttributes": [], + "name": "NC_36", + "sectionNumber": "3.9.3.4", + "sectionTitle": "Other Safety Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_37", "NarrativeContent_38"], + "previousId": "NarrativeContent_35", + "nextId": "NarrativeContent_37", + "contentItemId": "NarrativeContentItem_36", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_37", + "extensionAttributes": [], + "name": "NC_37", + "sectionNumber": "3.9.3.4.1", + "sectionTitle": "Vital Sign Determination", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_36", + "nextId": "NarrativeContent_38", + "contentItemId": "NarrativeContentItem_37", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_38", + "extensionAttributes": [], + "name": "NC_38", + "sectionNumber": "3.9.3.4.2", + "sectionTitle": "Cardiovascular Safety Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_37", + "nextId": "NarrativeContent_39", + "contentItemId": "NarrativeContentItem_38", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_39", + "extensionAttributes": [], + "name": "NC_39", + "sectionNumber": "3.9.4.", + "sectionTitle": "Safety Monitoring", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_38", + "nextId": "NarrativeContent_40", + "contentItemId": "NarrativeContentItem_39", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_40", + "extensionAttributes": [], + "name": "NC_40", + "sectionNumber": "3.9.5.", + "sectionTitle": "Appropriateness and Consistency of Measurements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_39", + "nextId": "NarrativeContent_41", + "contentItemId": "NarrativeContentItem_40", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_41", + "extensionAttributes": [], + "name": "NC_41", + "sectionNumber": "3.10.", + "sectionTitle": "Patient Disposition Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_42", + "NarrativeContent_44", + "NarrativeContent_45" + ], + "previousId": "NarrativeContent_40", + "nextId": "NarrativeContent_42", + "contentItemId": "NarrativeContentItem_41", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_42", + "extensionAttributes": [], + "name": "NC_42", + "sectionNumber": "3.10.1.", + "sectionTitle": "Discontinuations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_43"], + "previousId": "NarrativeContent_41", + "nextId": "NarrativeContent_43", + "contentItemId": "NarrativeContentItem_42", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_43", + "extensionAttributes": [], + "name": "NC_43", + "sectionNumber": "3.10.1.1.", + "sectionTitle": "Retrieval of Discontinuations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_42", + "nextId": "NarrativeContent_44", + "contentItemId": "NarrativeContentItem_43", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_44", + "extensionAttributes": [], + "name": "NC_44", + "sectionNumber": "3.10.2.", + "sectionTitle": "Qualifications for Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_43", + "nextId": "NarrativeContent_45", + "contentItemId": "NarrativeContentItem_44", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_45", + "extensionAttributes": [], + "name": "NC_45", + "sectionNumber": "3.10.3.", + "sectionTitle": "Study Extensions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_46"], + "previousId": "NarrativeContent_44", + "nextId": "NarrativeContent_46", + "contentItemId": "NarrativeContentItem_45", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_46", + "extensionAttributes": [], + "name": "NC_46", + "sectionNumber": "3.10.3.1.", + "sectionTitle": "Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_45", + "nextId": "NarrativeContent_47", + "contentItemId": "NarrativeContentItem_46", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_47", + "extensionAttributes": [], + "name": "NC_47", + "sectionNumber": "3.11.", + "sectionTitle": "Quality Assurance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_46", + "nextId": "NarrativeContent_48", + "contentItemId": "NarrativeContentItem_47", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_48", + "extensionAttributes": [], + "name": "NC_48", + "sectionNumber": "4", + "sectionTitle": "Data Analysis Methods", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_49", + "NarrativeContent_50", + "NarrativeContent_51", + "NarrativeContent_57", + "NarrativeContent_58", + "NarrativeContent_59", + "NarrativeContent_60", + "NarrativeContent_61" + ], + "previousId": "NarrativeContent_47", + "nextId": "NarrativeContent_49", + "contentItemId": "NarrativeContentItem_48", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_49", + "extensionAttributes": [], + "name": "NC_49", + "sectionNumber": "4.1.", + "sectionTitle": "General Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_48", + "nextId": "NarrativeContent_50", + "contentItemId": "NarrativeContentItem_49", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_50", + "extensionAttributes": [], + "name": "NC_50", + "sectionNumber": "4.2.", + "sectionTitle": "Demographics and Patient Characteristics Measured at Baseline", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_49", + "nextId": "NarrativeContent_51", + "contentItemId": "NarrativeContentItem_50", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_51", + "extensionAttributes": [], + "name": "NC_51", + "sectionNumber": "4.3.", + "sectionTitle": "Efficacy Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_52", + "NarrativeContent_53", + "NarrativeContent_54", + "NarrativeContent_55", + "NarrativeContent_56" + ], + "previousId": "NarrativeContent_50", + "nextId": "NarrativeContent_52", + "contentItemId": "NarrativeContentItem_51", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_52", + "extensionAttributes": [], + "name": "NC_52", + "sectionNumber": "4.3.1.", + "sectionTitle": "Efficacy Variables to be Analyzed", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_51", + "nextId": "NarrativeContent_53", + "contentItemId": "NarrativeContentItem_52", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_53", + "extensionAttributes": [], + "name": "NC_53", + "sectionNumber": "4.3.2.", + "sectionTitle": "Times of Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_52", + "nextId": "NarrativeContent_54", + "contentItemId": "NarrativeContentItem_53", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_54", + "extensionAttributes": [], + "name": "NC_54", + "sectionNumber": "4.3.3.", + "sectionTitle": "Statistical Methodology", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_53", + "nextId": "NarrativeContent_55", + "contentItemId": "NarrativeContentItem_54", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_55", + "extensionAttributes": [], + "name": "NC_55", + "sectionNumber": "4.3.4.", + "sectionTitle": "One-sided Justification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_54", + "nextId": "NarrativeContent_56", + "contentItemId": "NarrativeContentItem_55", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_56", + "extensionAttributes": [], + "name": "NC_56", + "sectionNumber": "4.3.5.", + "sectionTitle": "Nominal P-value Adjustments", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_55", + "nextId": "NarrativeContent_57", + "contentItemId": "NarrativeContentItem_56", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_57", + "extensionAttributes": [], + "name": "NC_57", + "sectionNumber": "4.4.", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_56", + "nextId": "NarrativeContent_58", + "contentItemId": "NarrativeContentItem_57", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_58", + "extensionAttributes": [], + "name": "NC_58", + "sectionNumber": "4.5.", + "sectionTitle": "Subgroup Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_57", + "nextId": "NarrativeContent_59", + "contentItemId": "NarrativeContentItem_58", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_59", + "extensionAttributes": [], + "name": "NC_59", + "sectionNumber": "4.6.", + "sectionTitle": "Interim Efficacy Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_58", + "nextId": "NarrativeContent_60", + "contentItemId": "NarrativeContentItem_59", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_60", + "extensionAttributes": [], + "name": "NC_60", + "sectionNumber": "4.7.", + "sectionTitle": "Interim Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_59", + "nextId": "NarrativeContent_61", + "contentItemId": "NarrativeContentItem_60", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_61", + "extensionAttributes": [], + "name": "NC_61", + "sectionNumber": "4.8.", + "sectionTitle": "Pharmacokinetic/Pharmacodynamic Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_60", + "nextId": "NarrativeContent_62", + "contentItemId": "NarrativeContentItem_61", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_62", + "extensionAttributes": [], + "name": "NC_62", + "sectionNumber": "5", + "sectionTitle": "Informed Consent, Ethical Review, and Regulatory Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_63", + "NarrativeContent_64", + "NarrativeContent_65" + ], + "previousId": "NarrativeContent_61", + "nextId": "NarrativeContent_63", + "contentItemId": "NarrativeContentItem_62", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_63", + "extensionAttributes": [], + "name": "NC_63", + "sectionNumber": "5.1.", + "sectionTitle": "Informed Consent", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_62", + "nextId": "NarrativeContent_64", + "contentItemId": "NarrativeContentItem_63", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_64", + "extensionAttributes": [], + "name": "NC_64", + "sectionNumber": "5.2.", + "sectionTitle": "Ethical Review", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_63", + "nextId": "NarrativeContent_65", + "contentItemId": "NarrativeContentItem_64", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_65", + "extensionAttributes": [], + "name": "NC_65", + "sectionNumber": "5.3.", + "sectionTitle": "Regulatory Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_64", + "nextId": "NarrativeContent_66", + "contentItemId": "NarrativeContentItem_65", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_66", + "extensionAttributes": [], + "name": "NC_66", + "sectionNumber": "6", + "sectionTitle": "References", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_65", + "nextId": "NarrativeContent_67", + "contentItemId": "NarrativeContentItem_66", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_67", + "extensionAttributes": [], + "name": "NC_67", + "sectionNumber": "Appendix 1", + "sectionTitle": "Protocol Attachment LZZT.1. Schedule of Events for Protocol H2Q-MC-LZZT(c)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_66", + "nextId": "NarrativeContent_68", + "contentItemId": "NarrativeContentItem_67", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_68", + "extensionAttributes": [], + "name": "NC_68", + "sectionNumber": "Appendix 2", + "sectionTitle": "Protocol Attachment LZZT.2. Alzheimer's Disease Assessment Scale-Cognitive Subscale (ADAS-Cog) with Attention and Concentration Tasks", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_67", + "nextId": "NarrativeContent_69", + "contentItemId": "NarrativeContentItem_68", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_69", + "extensionAttributes": [], + "name": "NC_69", + "sectionNumber": "Appendix 3", + "sectionTitle": "Protocol Attachment LZZT.3. Video-referenced Clinician's Interview-Based Impression of Change (CIBIC+)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_68", + "nextId": "NarrativeContent_70", + "contentItemId": "NarrativeContentItem_69", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_70", + "extensionAttributes": [], + "name": "NC_70", + "sectionNumber": "Appendix 4", + "sectionTitle": "Protocol Attachment LZZT.4. Revised Neuropsychiatric Inventory (NPI-X)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_69", + "nextId": "NarrativeContent_71", + "contentItemId": "NarrativeContentItem_70", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_71", + "extensionAttributes": [], + "name": "NC_71", + "sectionNumber": "Appendix 5", + "sectionTitle": "Protocol Attachment LZZT.5. Disability Assessment for Dementia (DAD)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_70", + "nextId": "NarrativeContent_72", + "contentItemId": "NarrativeContentItem_71", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_72", + "extensionAttributes": [], + "name": "NC_72", + "sectionNumber": "Appendix 6", + "sectionTitle": "Protocol Attachment LZZT.6. Mini-Mental State Examination (MMSE)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_71", + "nextId": "NarrativeContent_73", + "contentItemId": "NarrativeContentItem_72", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_73", + "extensionAttributes": [], + "name": "NC_73", + "sectionNumber": "Appendix 7", + "sectionTitle": "Protocol Attachment LZZT.7. NINCDS/ADRDA Guidelines", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_72", + "nextId": "NarrativeContent_74", + "contentItemId": "NarrativeContentItem_73", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_74", + "extensionAttributes": [], + "name": "NC_74", + "sectionNumber": "Appendix 8", + "sectionTitle": "Protocol Attachment LZZT.8. Hachinski Ischemic Scale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_73", + "nextId": "NarrativeContent_75", + "contentItemId": "NarrativeContentItem_74", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_75", + "extensionAttributes": [], + "name": "NC_75", + "sectionNumber": "Appendix 9", + "sectionTitle": "Protocol Attachment LZZT.9. TTS Acceptability Survey", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_74", + "nextId": "NarrativeContent_76", + "contentItemId": "NarrativeContentItem_75", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_76", + "extensionAttributes": [], + "name": "NC_76", + "sectionNumber": "Appendix 10", + "sectionTitle": "Protocol Attachment LZZT.10. Protocol Signatures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_75", + "nextId": null, + "contentItemId": "NarrativeContentItem_76", + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefinitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + }, + { + "id": "StudyDefinitionDocument_2", + "extensionAttributes": [], + "name": "Protocol_Document_CDISC PILOT - LZZT", + "label": null, + "description": null, + "language": { + "id": "Code_677", + "extensionAttributes": [], + "code": "en", + "codeSystem": "ISO", + "codeSystemVersion": "1", + "decode": "English", + "instanceType": "Code" + }, + "type": { + "id": "Code_678", + "extensionAttributes": [], + "code": "C12345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Decode", + "instanceType": "Code" + }, + "templateName": "M11", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_2", + "extensionAttributes": [], + "version": "2", + "status": { + "id": "Code_676", + "extensionAttributes": [], + "code": "C25508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Final", + "instanceType": "Code" + }, + "dateValues": [ + { + "id": "GovernanceDate_4", + "extensionAttributes": [], + "name": "P_APPROVE", + "label": "Protocol Approval", + "description": "Protocol document approval date", + "type": { + "id": "Code_673", + "extensionAttributes": [], + "code": "C99903x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Protocol Effective Date", + "instanceType": "Code" + }, + "dateValue": "2006-07-01", + "geographicScopes": [ + { + "id": "GeographicScope_6", + "extensionAttributes": [], + "type": { + "id": "Code_674", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2024-09-27", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_253", + "extensionAttributes": [], + "standardCode": { + "id": "Code_675", + "extensionAttributes": [], + "code": "150", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "contents": [ + { + "id": "NarrativeContent_77", + "extensionAttributes": [], + "name": "NC_100", + "sectionNumber": "0", + "sectionTitle": "Title Page", + "displaySectionNumber": false, + "displaySectionTitle": false, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_78", + "contentItemId": "NarrativeContentItem_77", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_78", + "extensionAttributes": [], + "name": "NC_101", + "sectionNumber": "1", + "sectionTitle": "PROTOCOL SUMMARY", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_79", + "NarrativeContent_82", + "NarrativeContent_83" + ], + "previousId": "NarrativeContent_77", + "nextId": "NarrativeContent_79", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_79", + "extensionAttributes": [], + "name": "NC_102", + "sectionNumber": "1.1", + "sectionTitle": "Protocol Synopsis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_80", "NarrativeContent_81"], + "previousId": "NarrativeContent_78", + "nextId": "NarrativeContent_80", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_80", + "extensionAttributes": [], + "name": "NC_103", + "sectionNumber": "1.1.1", + "sectionTitle": "Primary and Secondary Objectives and Estimands", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_79", + "nextId": "NarrativeContent_81", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_81", + "extensionAttributes": [], + "name": "NC_104", + "sectionNumber": "1.1.2", + "sectionTitle": "Overall Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_80", + "nextId": "NarrativeContent_82", + "contentItemId": "NarrativeContentItem_78", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_82", + "extensionAttributes": [], + "name": "NC_105", + "sectionNumber": "1.2", + "sectionTitle": "Trial Schema", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_81", + "nextId": "NarrativeContent_83", + "contentItemId": "NarrativeContentItem_79", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_83", + "extensionAttributes": [], + "name": "NC_106", + "sectionNumber": "1.3", + "sectionTitle": "Schedule of Activities", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_82", + "nextId": "NarrativeContent_84", + "contentItemId": "NarrativeContentItem_80", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_84", + "extensionAttributes": [], + "name": "NC_107", + "sectionNumber": "2", + "sectionTitle": "INTRODUCTION", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_85", "NarrativeContent_86"], + "previousId": "NarrativeContent_83", + "nextId": "NarrativeContent_85", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_85", + "extensionAttributes": [], + "name": "NC_108", + "sectionNumber": "2.1", + "sectionTitle": "Purpose of Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_84", + "nextId": "NarrativeContent_86", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_86", + "extensionAttributes": [], + "name": "NC_109", + "sectionNumber": "2.2", + "sectionTitle": "Summary of Benefits and Risks", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_87", + "NarrativeContent_88", + "NarrativeContent_89" + ], + "previousId": "NarrativeContent_85", + "nextId": "NarrativeContent_87", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_87", + "extensionAttributes": [], + "name": "NC_110", + "sectionNumber": "2.2.1", + "sectionTitle": "Benefit Summary", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_86", + "nextId": "NarrativeContent_88", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_88", + "extensionAttributes": [], + "name": "NC_111", + "sectionNumber": "2.2.2", + "sectionTitle": "Risk Summary and Mitigation Strategy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_87", + "nextId": "NarrativeContent_89", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_89", + "extensionAttributes": [], + "name": "NC_112", + "sectionNumber": "2.2.3", + "sectionTitle": "Overall Benefit:Risk Conclusion", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_88", + "nextId": "NarrativeContent_90", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_90", + "extensionAttributes": [], + "name": "NC_113", + "sectionNumber": "3", + "sectionTitle": "TRIAL OBJECTIVES AND ESTIMANDS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_91", + "NarrativeContent_93", + "NarrativeContent_94" + ], + "previousId": "NarrativeContent_89", + "nextId": "NarrativeContent_91", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_91", + "extensionAttributes": [], + "name": "NC_114", + "sectionNumber": "3.1", + "sectionTitle": "Primary Objective(s) and Associated Estimand(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_92"], + "previousId": "NarrativeContent_90", + "nextId": "NarrativeContent_92", + "contentItemId": "NarrativeContentItem_81", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_92", + "extensionAttributes": [], + "name": "NC_115", + "sectionNumber": "3.1.1", + "sectionTitle": "{Primary Estimand}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_91", + "nextId": "NarrativeContent_93", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_93", + "extensionAttributes": [], + "name": "NC_116", + "sectionNumber": "3.2", + "sectionTitle": "Secondary Objective(s) and Associated Estimand(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_92", + "nextId": "NarrativeContent_94", + "contentItemId": "NarrativeContentItem_82", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_94", + "extensionAttributes": [], + "name": "NC_117", + "sectionNumber": "3.3", + "sectionTitle": "Exploratory Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_93", + "nextId": "NarrativeContent_95", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_95", + "extensionAttributes": [], + "name": "NC_118", + "sectionNumber": "4", + "sectionTitle": "TRIAL DESIGN", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_96", + "NarrativeContent_98", + "NarrativeContent_106", + "NarrativeContent_107", + "NarrativeContent_108" + ], + "previousId": "NarrativeContent_94", + "nextId": "NarrativeContent_96", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_96", + "extensionAttributes": [], + "name": "NC_119", + "sectionNumber": "4.1", + "sectionTitle": "Description of Trial Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_97"], + "previousId": "NarrativeContent_95", + "nextId": "NarrativeContent_97", + "contentItemId": "NarrativeContentItem_83", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_97", + "extensionAttributes": [], + "name": "NC_120", + "sectionNumber": "4.1.1", + "sectionTitle": "Stakeholder Input into Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_96", + "nextId": "NarrativeContent_98", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_98", + "extensionAttributes": [], + "name": "NC_121", + "sectionNumber": "4.2", + "sectionTitle": "Rationale for Trial Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_99", + "NarrativeContent_100", + "NarrativeContent_101", + "NarrativeContent_102", + "NarrativeContent_103", + "NarrativeContent_104", + "NarrativeContent_105" + ], + "previousId": "NarrativeContent_97", + "nextId": "NarrativeContent_99", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_99", + "extensionAttributes": [], + "name": "NC_122", + "sectionNumber": "4.2.1", + "sectionTitle": "Rationale for Intervention Model", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_98", + "nextId": "NarrativeContent_100", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_100", + "extensionAttributes": [], + "name": "NC_123", + "sectionNumber": "4.2.2", + "sectionTitle": "Rationale for Duration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_99", + "nextId": "NarrativeContent_101", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_101", + "extensionAttributes": [], + "name": "NC_124", + "sectionNumber": "4.2.3", + "sectionTitle": "Rationale for Estimands", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_100", + "nextId": "NarrativeContent_102", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_102", + "extensionAttributes": [], + "name": "NC_125", + "sectionNumber": "4.2.4", + "sectionTitle": "Rationale for Interim Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_101", + "nextId": "NarrativeContent_103", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_103", + "extensionAttributes": [], + "name": "NC_126", + "sectionNumber": "4.2.5", + "sectionTitle": "Rationale for Control Type", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_102", + "nextId": "NarrativeContent_104", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_104", + "extensionAttributes": [], + "name": "NC_127", + "sectionNumber": "4.2.6", + "sectionTitle": "Rationale for Adaptive or Novel Trial Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_103", + "nextId": "NarrativeContent_105", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_105", + "extensionAttributes": [], + "name": "NC_128", + "sectionNumber": "4.2.7", + "sectionTitle": "Rationale for Other Trial Design Aspects", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_104", + "nextId": "NarrativeContent_106", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_106", + "extensionAttributes": [], + "name": "NC_129", + "sectionNumber": "4.3", + "sectionTitle": "Trial Stopping Rules", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_105", + "nextId": "NarrativeContent_107", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_107", + "extensionAttributes": [], + "name": "NC_130", + "sectionNumber": "4.4", + "sectionTitle": "Start of Trial and End of Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_106", + "nextId": "NarrativeContent_108", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_108", + "extensionAttributes": [], + "name": "NC_131", + "sectionNumber": "4.5", + "sectionTitle": "Access to Trial Intervention After End of Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_107", + "nextId": "NarrativeContent_109", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_109", + "extensionAttributes": [], + "name": "NC_132", + "sectionNumber": "5", + "sectionTitle": "TRIAL POPULATION", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_110", + "NarrativeContent_111", + "NarrativeContent_112", + "NarrativeContent_113", + "NarrativeContent_116", + "NarrativeContent_121" + ], + "previousId": "NarrativeContent_108", + "nextId": "NarrativeContent_110", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_110", + "extensionAttributes": [], + "name": "NC_133", + "sectionNumber": "5.1", + "sectionTitle": "Description of Trial Population and Rationale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_109", + "nextId": "NarrativeContent_111", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_111", + "extensionAttributes": [], + "name": "NC_134", + "sectionNumber": "5.2", + "sectionTitle": "Inclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_110", + "nextId": "NarrativeContent_112", + "contentItemId": "NarrativeContentItem_84", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_112", + "extensionAttributes": [], + "name": "NC_135", + "sectionNumber": "5.3", + "sectionTitle": "Exclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_111", + "nextId": "NarrativeContent_113", + "contentItemId": "NarrativeContentItem_85", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_113", + "extensionAttributes": [], + "name": "NC_136", + "sectionNumber": "5.4", + "sectionTitle": "Contraception", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_114", "NarrativeContent_115"], + "previousId": "NarrativeContent_112", + "nextId": "NarrativeContent_114", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_114", + "extensionAttributes": [], + "name": "NC_137", + "sectionNumber": "5.4.1", + "sectionTitle": "Definitions Related to Childbearing Potential", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_113", + "nextId": "NarrativeContent_115", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_115", + "extensionAttributes": [], + "name": "NC_138", + "sectionNumber": "5.4.2", + "sectionTitle": "Contraception Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_114", + "nextId": "NarrativeContent_116", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_116", + "extensionAttributes": [], + "name": "NC_139", + "sectionNumber": "5.5", + "sectionTitle": "Lifestyle Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_117", + "NarrativeContent_118", + "NarrativeContent_119", + "NarrativeContent_120" + ], + "previousId": "NarrativeContent_115", + "nextId": "NarrativeContent_117", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_117", + "extensionAttributes": [], + "name": "NC_140", + "sectionNumber": "5.5.1", + "sectionTitle": "Meals and Dietary Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_116", + "nextId": "NarrativeContent_118", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_118", + "extensionAttributes": [], + "name": "NC_141", + "sectionNumber": "5.5.2", + "sectionTitle": "Caffeine, Alcohol, Tobacco,and Other Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_117", + "nextId": "NarrativeContent_119", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_119", + "extensionAttributes": [], + "name": "NC_142", + "sectionNumber": "5.5.3", + "sectionTitle": "Physical Activity Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_118", + "nextId": "NarrativeContent_120", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_120", + "extensionAttributes": [], + "name": "NC_143", + "sectionNumber": "5.5.4", + "sectionTitle": "Other Activity Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_119", + "nextId": "NarrativeContent_121", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_121", + "extensionAttributes": [], + "name": "NC_144", + "sectionNumber": "5.6", + "sectionTitle": "Screen Failure and Rescreening", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_120", + "nextId": "NarrativeContent_122", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_122", + "extensionAttributes": [], + "name": "NC_145", + "sectionNumber": "6", + "sectionTitle": "TRIAL INTERVENTION AND CONCOMITANT THERAPY", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_123", + "NarrativeContent_124", + "NarrativeContent_125", + "NarrativeContent_126", + "NarrativeContent_127", + "NarrativeContent_128", + "NarrativeContent_129", + "NarrativeContent_133", + "NarrativeContent_138", + "NarrativeContent_139", + "NarrativeContent_143" + ], + "previousId": "NarrativeContent_121", + "nextId": "NarrativeContent_123", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_123", + "extensionAttributes": [], + "name": "NC_146", + "sectionNumber": "6.1", + "sectionTitle": "Overview of Trial Interventions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_122", + "nextId": "NarrativeContent_124", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_124", + "extensionAttributes": [], + "name": "NC_147", + "sectionNumber": "6.2", + "sectionTitle": "Description of Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_123", + "nextId": "NarrativeContent_125", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_125", + "extensionAttributes": [], + "name": "NC_148", + "sectionNumber": "6.3", + "sectionTitle": "Rationale for Investigational Trial Intervention Dose and Regimen", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_124", + "nextId": "NarrativeContent_126", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_126", + "extensionAttributes": [], + "name": "NC_149", + "sectionNumber": "6.4", + "sectionTitle": "Investigational Trial Intervention Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_125", + "nextId": "NarrativeContent_127", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_127", + "extensionAttributes": [], + "name": "NC_150", + "sectionNumber": "6.5", + "sectionTitle": "Investigational Trial Intervention Dose Modification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_126", + "nextId": "NarrativeContent_128", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_128", + "extensionAttributes": [], + "name": "NC_151", + "sectionNumber": "6.6", + "sectionTitle": "Management of Investigational Trial Intervention Overdose", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_127", + "nextId": "NarrativeContent_129", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_129", + "extensionAttributes": [], + "name": "NC_152", + "sectionNumber": "6.7", + "sectionTitle": "Preparation,Storage,Handling and Accountability of Investigational Trial Intervention(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_130", + "NarrativeContent_131", + "NarrativeContent_132" + ], + "previousId": "NarrativeContent_128", + "nextId": "NarrativeContent_130", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_130", + "extensionAttributes": [], + "name": "NC_153", + "sectionNumber": "6.7.1", + "sectionTitle": "Preparation of Investigational Trial Intervention(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_129", + "nextId": "NarrativeContent_131", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_131", + "extensionAttributes": [], + "name": "NC_154", + "sectionNumber": "6.7.2", + "sectionTitle": "Storage and Handling of Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_130", + "nextId": "NarrativeContent_132", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_132", + "extensionAttributes": [], + "name": "NC_155", + "sectionNumber": "6.7.3", + "sectionTitle": "Accountability of Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_131", + "nextId": "NarrativeContent_133", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_133", + "extensionAttributes": [], + "name": "NC_156", + "sectionNumber": "6.8", + "sectionTitle": "Investigational Trial Intervention Assignment,Randomisation and Blinding", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_134", + "NarrativeContent_135", + "NarrativeContent_136", + "NarrativeContent_137" + ], + "previousId": "NarrativeContent_132", + "nextId": "NarrativeContent_134", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_134", + "extensionAttributes": [], + "name": "NC_157", + "sectionNumber": "6.8.1", + "sectionTitle": "Participant Assignment to Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_133", + "nextId": "NarrativeContent_135", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_135", + "extensionAttributes": [], + "name": "NC_158", + "sectionNumber": "6.8.2", + "sectionTitle": "Randomisation", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_134", + "nextId": "NarrativeContent_136", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_136", + "extensionAttributes": [], + "name": "NC_159", + "sectionNumber": "6.8.3", + "sectionTitle": "{Blinding}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_135", + "nextId": "NarrativeContent_137", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_137", + "extensionAttributes": [], + "name": "NC_160", + "sectionNumber": "6.8.4", + "sectionTitle": "{Emergency Unblinding at the Site}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_136", + "nextId": "NarrativeContent_138", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_138", + "extensionAttributes": [], + "name": "NC_161", + "sectionNumber": "6.9", + "sectionTitle": "Investigational Trial Intervention Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_137", + "nextId": "NarrativeContent_139", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_139", + "extensionAttributes": [], + "name": "NC_162", + "sectionNumber": "6.10", + "sectionTitle": "Description of Non-Investigational Trial Intervention(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_140", + "NarrativeContent_141", + "NarrativeContent_142" + ], + "previousId": "NarrativeContent_138", + "nextId": "NarrativeContent_140", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_140", + "extensionAttributes": [], + "name": "NC_163", + "sectionNumber": "6.10.1", + "sectionTitle": "{Background Intervention}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_139", + "nextId": "NarrativeContent_141", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_141", + "extensionAttributes": [], + "name": "NC_164", + "sectionNumber": "6.10.2", + "sectionTitle": "{Rescue Therapy}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_140", + "nextId": "NarrativeContent_142", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_142", + "extensionAttributes": [], + "name": "NC_165", + "sectionNumber": "6.10.3", + "sectionTitle": "{Other Non-investigational Intervention}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_141", + "nextId": "NarrativeContent_143", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_143", + "extensionAttributes": [], + "name": "NC_166", + "sectionNumber": "6.11", + "sectionTitle": "Concomitant Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_144", "NarrativeContent_145"], + "previousId": "NarrativeContent_142", + "nextId": "NarrativeContent_144", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_144", + "extensionAttributes": [], + "name": "NC_167", + "sectionNumber": "6.11.1", + "sectionTitle": "{Prohibited Concomitant Therapy}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_143", + "nextId": "NarrativeContent_145", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_145", + "extensionAttributes": [], + "name": "NC_168", + "sectionNumber": "6.11.2", + "sectionTitle": "{Permitted Concomitant Therapy}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_144", + "nextId": "NarrativeContent_146", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_146", + "extensionAttributes": [], + "name": "NC_169", + "sectionNumber": "7", + "sectionTitle": "PARTICIPANT DISCONTINUATION OF TRIAL INTERVENTION AND DISCONTINUATION OR WITHDRAWAL FROM TRIAL", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_147", + "NarrativeContent_151", + "NarrativeContent_152" + ], + "previousId": "NarrativeContent_145", + "nextId": "NarrativeContent_147", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_147", + "extensionAttributes": [], + "name": "NC_170", + "sectionNumber": "7.1", + "sectionTitle": "Discontinuation of Trial Intervention for Individual Participants", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_148", + "NarrativeContent_149", + "NarrativeContent_150" + ], + "previousId": "NarrativeContent_146", + "nextId": "NarrativeContent_148", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_148", + "extensionAttributes": [], + "name": "NC_171", + "sectionNumber": "7.1.1", + "sectionTitle": "Permanent Discontinuation of Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_147", + "nextId": "NarrativeContent_149", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_149", + "extensionAttributes": [], + "name": "NC_172", + "sectionNumber": "7.1.2", + "sectionTitle": "Temporary Discontinuation of Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_148", + "nextId": "NarrativeContent_150", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_150", + "extensionAttributes": [], + "name": "NC_173", + "sectionNumber": "7.1.3", + "sectionTitle": "Rechallenge", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_149", + "nextId": "NarrativeContent_151", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_151", + "extensionAttributes": [], + "name": "NC_174", + "sectionNumber": "7.2", + "sectionTitle": "Discontinuation or Withdrawal from the Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_150", + "nextId": "NarrativeContent_152", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_152", + "extensionAttributes": [], + "name": "NC_175", + "sectionNumber": "7.3", + "sectionTitle": "Lost to Follow-Up", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_151", + "nextId": "NarrativeContent_153", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_153", + "extensionAttributes": [], + "name": "NC_176", + "sectionNumber": "8", + "sectionTitle": "TRIAL ASSESSMENTS AND PROCEDURES", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_154", + "NarrativeContent_155", + "NarrativeContent_156", + "NarrativeContent_157", + "NarrativeContent_164", + "NarrativeContent_165", + "NarrativeContent_169", + "NarrativeContent_170" + ], + "previousId": "NarrativeContent_152", + "nextId": "NarrativeContent_154", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_154", + "extensionAttributes": [], + "name": "NC_177", + "sectionNumber": "8.1", + "sectionTitle": "Trial Assessments and Procedures Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_153", + "nextId": "NarrativeContent_155", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_155", + "extensionAttributes": [], + "name": "NC_178", + "sectionNumber": "8.2", + "sectionTitle": "Screening/Baseline Assessments and Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_154", + "nextId": "NarrativeContent_156", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_156", + "extensionAttributes": [], + "name": "NC_179", + "sectionNumber": "8.3", + "sectionTitle": "Efficacy Assessments and Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_155", + "nextId": "NarrativeContent_157", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_157", + "extensionAttributes": [], + "name": "NC_180", + "sectionNumber": "8.4", + "sectionTitle": "Safety Assessments and Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_158", + "NarrativeContent_159", + "NarrativeContent_160", + "NarrativeContent_161", + "NarrativeContent_162", + "NarrativeContent_163" + ], + "previousId": "NarrativeContent_156", + "nextId": "NarrativeContent_158", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_158", + "extensionAttributes": [], + "name": "NC_181", + "sectionNumber": "8.4.1", + "sectionTitle": "{Physical Examination}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_157", + "nextId": "NarrativeContent_159", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_159", + "extensionAttributes": [], + "name": "NC_182", + "sectionNumber": "8.4.2", + "sectionTitle": "{Vital Signs}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_158", + "nextId": "NarrativeContent_160", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_160", + "extensionAttributes": [], + "name": "NC_183", + "sectionNumber": "8.4.3", + "sectionTitle": "{Electrocardiograms}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_159", + "nextId": "NarrativeContent_161", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_161", + "extensionAttributes": [], + "name": "NC_184", + "sectionNumber": "8.4.4", + "sectionTitle": "{Clinical Laboratory Assessments}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_160", + "nextId": "NarrativeContent_162", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_162", + "extensionAttributes": [], + "name": "NC_185", + "sectionNumber": "8.4.5", + "sectionTitle": "{Pregnancy Testing}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_161", + "nextId": "NarrativeContent_163", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_163", + "extensionAttributes": [], + "name": "NC_186", + "sectionNumber": "8.4.6", + "sectionTitle": "{Suicidal Ideation and Behaviour Risk Monitoring}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_162", + "nextId": "NarrativeContent_164", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_164", + "extensionAttributes": [], + "name": "NC_187", + "sectionNumber": "8.5", + "sectionTitle": "Pharmacokinetics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_163", + "nextId": "NarrativeContent_165", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_165", + "extensionAttributes": [], + "name": "NC_188", + "sectionNumber": "8.6", + "sectionTitle": "Biomarkers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_166", + "NarrativeContent_167", + "NarrativeContent_168" + ], + "previousId": "NarrativeContent_164", + "nextId": "NarrativeContent_166", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_166", + "extensionAttributes": [], + "name": "NC_189", + "sectionNumber": "8.6.1", + "sectionTitle": "Genetics and Pharmacogenomics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_165", + "nextId": "NarrativeContent_167", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_167", + "extensionAttributes": [], + "name": "NC_190", + "sectionNumber": "8.6.2", + "sectionTitle": "Pharmacodynamic Biomarkers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_166", + "nextId": "NarrativeContent_168", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_168", + "extensionAttributes": [], + "name": "NC_191", + "sectionNumber": "8.6.3", + "sectionTitle": "{Other Biomarkers}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_167", + "nextId": "NarrativeContent_169", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_169", + "extensionAttributes": [], + "name": "NC_192", + "sectionNumber": "8.7", + "sectionTitle": "Immunogenicity Assessments", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_168", + "nextId": "NarrativeContent_170", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_170", + "extensionAttributes": [], + "name": "NC_193", + "sectionNumber": "8.8", + "sectionTitle": "Medical Resource Utilisation and Health Economics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_169", + "nextId": "NarrativeContent_171", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_171", + "extensionAttributes": [], + "name": "NC_194", + "sectionNumber": "9", + "sectionTitle": "ADVERSE EVENTS,SERIOUS ADVERSE EVENTS,PRODUCT COMPLAINTS,PREGNANCY AND POSTPARTUM INFORMATION", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_172", + "NarrativeContent_176", + "NarrativeContent_177", + "NarrativeContent_182", + "NarrativeContent_186" + ], + "previousId": "NarrativeContent_170", + "nextId": "NarrativeContent_172", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_172", + "extensionAttributes": [], + "name": "NC_195", + "sectionNumber": "9.1", + "sectionTitle": "Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_173", + "NarrativeContent_174", + "NarrativeContent_175" + ], + "previousId": "NarrativeContent_171", + "nextId": "NarrativeContent_173", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_173", + "extensionAttributes": [], + "name": "NC_196", + "sectionNumber": "9.1.1", + "sectionTitle": "Definitions of Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_172", + "nextId": "NarrativeContent_174", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_174", + "extensionAttributes": [], + "name": "NC_197", + "sectionNumber": "9.1.2", + "sectionTitle": "Definitions of Serious Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_173", + "nextId": "NarrativeContent_175", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_175", + "extensionAttributes": [], + "name": "NC_198", + "sectionNumber": "9.1.3", + "sectionTitle": "{Definition of Medical Device Product Complaints}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_174", + "nextId": "NarrativeContent_176", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_176", + "extensionAttributes": [], + "name": "NC_199", + "sectionNumber": "9.2", + "sectionTitle": "Timing and Mechanism for Collection and Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_175", + "nextId": "NarrativeContent_177", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_177", + "extensionAttributes": [], + "name": "NC_200", + "sectionNumber": "9.3", + "sectionTitle": "Identification,Recording and Follow-Up", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_178", + "NarrativeContent_179", + "NarrativeContent_180", + "NarrativeContent_181" + ], + "previousId": "NarrativeContent_176", + "nextId": "NarrativeContent_178", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_178", + "extensionAttributes": [], + "name": "NC_201", + "sectionNumber": "9.3.1", + "sectionTitle": "Identification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_177", + "nextId": "NarrativeContent_179", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_179", + "extensionAttributes": [], + "name": "NC_202", + "sectionNumber": "9.3.2", + "sectionTitle": "Severity", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_178", + "nextId": "NarrativeContent_180", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_180", + "extensionAttributes": [], + "name": "NC_203", + "sectionNumber": "9.3.3", + "sectionTitle": "Causality", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_179", + "nextId": "NarrativeContent_181", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_181", + "extensionAttributes": [], + "name": "NC_204", + "sectionNumber": "9.3.4", + "sectionTitle": "Follow-up", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_180", + "nextId": "NarrativeContent_182", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_182", + "extensionAttributes": [], + "name": "NC_205", + "sectionNumber": "9.4", + "sectionTitle": "Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_183", + "NarrativeContent_184", + "NarrativeContent_185" + ], + "previousId": "NarrativeContent_181", + "nextId": "NarrativeContent_183", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_183", + "extensionAttributes": [], + "name": "NC_206", + "sectionNumber": "9.4.1", + "sectionTitle": "Regulatory Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_182", + "nextId": "NarrativeContent_184", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_184", + "extensionAttributes": [], + "name": "NC_207", + "sectionNumber": "9.4.2", + "sectionTitle": "Adverse Events of Special Interest", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_183", + "nextId": "NarrativeContent_185", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_185", + "extensionAttributes": [], + "name": "NC_208", + "sectionNumber": "9.4.3", + "sectionTitle": "Disease-related Events or Outcomes Not Qualifying as AEs or SAEs", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_184", + "nextId": "NarrativeContent_186", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_186", + "extensionAttributes": [], + "name": "NC_209", + "sectionNumber": "9.5", + "sectionTitle": "Pregnancy and Postpartum Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_187", "NarrativeContent_188"], + "previousId": "NarrativeContent_185", + "nextId": "NarrativeContent_187", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_187", + "extensionAttributes": [], + "name": "NC_210", + "sectionNumber": "9.5.1", + "sectionTitle": "{Participants Who Become Pregnant During the Trial}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_186", + "nextId": "NarrativeContent_188", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_188", + "extensionAttributes": [], + "name": "NC_211", + "sectionNumber": "9.5.2", + "sectionTitle": "{Participants Whose Partners Become Pregnant}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_187", + "nextId": "NarrativeContent_189", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_189", + "extensionAttributes": [], + "name": "NC_212", + "sectionNumber": "10", + "sectionTitle": "STATISTICAL CONSIDERATIONS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_190", + "NarrativeContent_191", + "NarrativeContent_192", + "NarrativeContent_193", + "NarrativeContent_199", + "NarrativeContent_205", + "NarrativeContent_206", + "NarrativeContent_207", + "NarrativeContent_208", + "NarrativeContent_209", + "NarrativeContent_210" + ], + "previousId": "NarrativeContent_188", + "nextId": "NarrativeContent_190", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_190", + "extensionAttributes": [], + "name": "NC_213", + "sectionNumber": "10.1", + "sectionTitle": "General Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_189", + "nextId": "NarrativeContent_191", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_191", + "extensionAttributes": [], + "name": "NC_214", + "sectionNumber": "10.2", + "sectionTitle": "Analysis Sets", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_190", + "nextId": "NarrativeContent_192", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_192", + "extensionAttributes": [], + "name": "NC_215", + "sectionNumber": "10.3", + "sectionTitle": "Analyses of Demographics and Other Baseline Variables", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_191", + "nextId": "NarrativeContent_193", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_193", + "extensionAttributes": [], + "name": "NC_216", + "sectionNumber": "10.4", + "sectionTitle": "Analyses Associated with the Primary Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_194", + "NarrativeContent_195", + "NarrativeContent_196", + "NarrativeContent_197", + "NarrativeContent_198" + ], + "previousId": "NarrativeContent_192", + "nextId": "NarrativeContent_194", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_194", + "extensionAttributes": [], + "name": "NC_217", + "sectionNumber": "10.4.1", + "sectionTitle": "Statistical Method of Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_193", + "nextId": "NarrativeContent_195", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_195", + "extensionAttributes": [], + "name": "NC_218", + "sectionNumber": "10.4.2", + "sectionTitle": "Handling of Data in Relation to Primary Estimand(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_194", + "nextId": "NarrativeContent_196", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_196", + "extensionAttributes": [], + "name": "NC_219", + "sectionNumber": "10.4.3", + "sectionTitle": "Handling of Missing Data", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_195", + "nextId": "NarrativeContent_197", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_197", + "extensionAttributes": [], + "name": "NC_220", + "sectionNumber": "10.4.4", + "sectionTitle": "{Sensitivity Analysis}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_196", + "nextId": "NarrativeContent_198", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_198", + "extensionAttributes": [], + "name": "NC_221", + "sectionNumber": "10.4.5", + "sectionTitle": "{Supplementary Analysis}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_197", + "nextId": "NarrativeContent_199", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_199", + "extensionAttributes": [], + "name": "NC_222", + "sectionNumber": "10.5", + "sectionTitle": "Analysis Associated with the Secondary Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_200", + "NarrativeContent_201", + "NarrativeContent_202", + "NarrativeContent_203", + "NarrativeContent_204" + ], + "previousId": "NarrativeContent_198", + "nextId": "NarrativeContent_200", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_200", + "extensionAttributes": [], + "name": "NC_223", + "sectionNumber": "10.5.1", + "sectionTitle": "{Statistical Method of Analysis}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_199", + "nextId": "NarrativeContent_201", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_201", + "extensionAttributes": [], + "name": "NC_224", + "sectionNumber": "10.5.2", + "sectionTitle": "{Handling of Data in Relation to Secondary Estimand(s)}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_200", + "nextId": "NarrativeContent_202", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_202", + "extensionAttributes": [], + "name": "NC_225", + "sectionNumber": "10.5.3", + "sectionTitle": "{Handling of Missing Data}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_201", + "nextId": "NarrativeContent_203", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_203", + "extensionAttributes": [], + "name": "NC_226", + "sectionNumber": "10.5.4", + "sectionTitle": "{Sensitivity Analyses}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_202", + "nextId": "NarrativeContent_204", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_204", + "extensionAttributes": [], + "name": "NC_227", + "sectionNumber": "10.5.5", + "sectionTitle": "{Supplementary Analyses}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_203", + "nextId": "NarrativeContent_205", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_205", + "extensionAttributes": [], + "name": "NC_228", + "sectionNumber": "10.6", + "sectionTitle": "Analysis Associated with the Exploratory Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_204", + "nextId": "NarrativeContent_206", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_206", + "extensionAttributes": [], + "name": "NC_229", + "sectionNumber": "10.7", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_205", + "nextId": "NarrativeContent_207", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_207", + "extensionAttributes": [], + "name": "NC_230", + "sectionNumber": "10.8", + "sectionTitle": "Other Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_206", + "nextId": "NarrativeContent_208", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_208", + "extensionAttributes": [], + "name": "NC_231", + "sectionNumber": "10.9", + "sectionTitle": "Interim Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_207", + "nextId": "NarrativeContent_209", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_209", + "extensionAttributes": [], + "name": "NC_232", + "sectionNumber": "10.10", + "sectionTitle": "Multiplicity Adjustments", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_208", + "nextId": "NarrativeContent_210", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_210", + "extensionAttributes": [], + "name": "NC_233", + "sectionNumber": "10.11", + "sectionTitle": "Sample Size Determination", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_209", + "nextId": "NarrativeContent_211", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_211", + "extensionAttributes": [], + "name": "NC_234", + "sectionNumber": "11", + "sectionTitle": "TRIAL OVERSIGHT AND OTHER GENERAL CONSIDERATIONS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_212", + "NarrativeContent_213", + "NarrativeContent_216", + "NarrativeContent_219", + "NarrativeContent_220", + "NarrativeContent_221", + "NarrativeContent_222", + "NarrativeContent_223", + "NarrativeContent_224", + "NarrativeContent_225" + ], + "previousId": "NarrativeContent_210", + "nextId": "NarrativeContent_212", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_212", + "extensionAttributes": [], + "name": "NC_235", + "sectionNumber": "11.1", + "sectionTitle": "Regulatory and Ethical Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_211", + "nextId": "NarrativeContent_213", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_213", + "extensionAttributes": [], + "name": "NC_236", + "sectionNumber": "11.2", + "sectionTitle": "Trial Oversight", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_214", "NarrativeContent_215"], + "previousId": "NarrativeContent_212", + "nextId": "NarrativeContent_214", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_214", + "extensionAttributes": [], + "name": "NC_237", + "sectionNumber": "11.2.1", + "sectionTitle": "Investigator Responsibilities", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_213", + "nextId": "NarrativeContent_215", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_215", + "extensionAttributes": [], + "name": "NC_238", + "sectionNumber": "11.2.2", + "sectionTitle": "Sponsor Responsibilities", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_214", + "nextId": "NarrativeContent_216", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_216", + "extensionAttributes": [], + "name": "NC_239", + "sectionNumber": "11.3", + "sectionTitle": "Informed Consent Process", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_217", "NarrativeContent_218"], + "previousId": "NarrativeContent_215", + "nextId": "NarrativeContent_217", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_217", + "extensionAttributes": [], + "name": "NC_240", + "sectionNumber": "11.3.1", + "sectionTitle": "Informed Consent for Rescreening", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_216", + "nextId": "NarrativeContent_218", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_218", + "extensionAttributes": [], + "name": "NC_241", + "sectionNumber": "11.3.2", + "sectionTitle": "Informed Consent for Use of Remaining Samples in Exploratory Research", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_217", + "nextId": "NarrativeContent_219", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_219", + "extensionAttributes": [], + "name": "NC_242", + "sectionNumber": "11.4", + "sectionTitle": "Committees", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_218", + "nextId": "NarrativeContent_220", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_220", + "extensionAttributes": [], + "name": "NC_243", + "sectionNumber": "11.5", + "sectionTitle": "Insurance and Indemnity", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_219", + "nextId": "NarrativeContent_221", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_221", + "extensionAttributes": [], + "name": "NC_244", + "sectionNumber": "11.6", + "sectionTitle": "Risk Management", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_220", + "nextId": "NarrativeContent_222", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_222", + "extensionAttributes": [], + "name": "NC_245", + "sectionNumber": "11.7", + "sectionTitle": "Data Governance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_221", + "nextId": "NarrativeContent_223", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_223", + "extensionAttributes": [], + "name": "NC_246", + "sectionNumber": "11.8", + "sectionTitle": "Source Data", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_222", + "nextId": "NarrativeContent_224", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_224", + "extensionAttributes": [], + "name": "NC_247", + "sectionNumber": "11.9", + "sectionTitle": "Protocol Deviations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_223", + "nextId": "NarrativeContent_225", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_225", + "extensionAttributes": [], + "name": "NC_248", + "sectionNumber": "11.10", + "sectionTitle": "Early Site Closure", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_224", + "nextId": "NarrativeContent_226", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_226", + "extensionAttributes": [], + "name": "NC_249", + "sectionNumber": "12", + "sectionTitle": "APPENDIX: SUPPORTING DETAILS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_227", + "NarrativeContent_228", + "NarrativeContent_229" + ], + "previousId": "NarrativeContent_225", + "nextId": "NarrativeContent_227", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_227", + "extensionAttributes": [], + "name": "NC_250", + "sectionNumber": "12.1", + "sectionTitle": "Clinical Laboratory Tests", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_226", + "nextId": "NarrativeContent_228", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_228", + "extensionAttributes": [], + "name": "NC_251", + "sectionNumber": "12.2", + "sectionTitle": "Country/Region-Specific Differences", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_227", + "nextId": "NarrativeContent_229", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_229", + "extensionAttributes": [], + "name": "NC_252", + "sectionNumber": "12.3", + "sectionTitle": "Prior Protocol Amendment(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_228", + "nextId": "NarrativeContent_230", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_230", + "extensionAttributes": [], + "name": "NC_253", + "sectionNumber": "13", + "sectionTitle": "APPENDIX: GLOSSARY OF TERMS AND ABBREVIATIONS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_229", + "nextId": "NarrativeContent_231", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_231", + "extensionAttributes": [], + "name": "NC_254", + "sectionNumber": "14", + "sectionTitle": "APPENDIX: REFERENCES", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_230", + "nextId": null, + "contentItemId": null, + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefinitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + } + ], + "instanceType": "Study" + }, + "usdmVersion": "4.0.0", + "systemName": "CDISC USDM E2J", + "systemVersion": "0.62.0" +} diff --git a/tests/resources/CoreIssue1442/CDISC_Pilot_Study_Invalid.jso1n b/tests/resources/CoreIssue1442/CDISC_Pilot_Study_Invalid.jso1n new file mode 100644 index 000000000..906cb2781 --- /dev/null +++ b/tests/resources/CoreIssue1442/CDISC_Pilot_Study_Invalid.jso1n @@ -0,0 +1,20688 @@ +{ + "study": { + "id": null, + "name": "CDISC PILOT - LZZT", + "description": null, + "label": null, + "versions": [ + { + "id": "StudyVersion_1", + "extensionAttributes": [], + "versionIdentifier": "2", + "rationale": "The discontinuation rate associated with this oral dosing regimen was 58.6% in previous studies, and alternative clinical strategies have been sought to improve tolerance for the compound. To that end, development of a Transdermal Therapeutic System (TTS) has been initiated.", + "documentVersionIds": [ + "StudyDefinitionDocumentVersion_1", + "StudyDefinitionDocumentVersion_2" + ], + "dateValues": [ + { + "id": "GovernanceDate_1", + "extensionAttributes": [], + "name": "D_APPROVE", + "label": "Design Approval", + "description": "Design approval date", + "type": { + "id": "Code_13", + "extensionAttributes": [], + "code": 71476, + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Approval Date", + "instanceType": "Code" + }, + "dateValue": "2006-06-01", + "geographicScopes": [ + { + "id": "GeographicScope_1", + "extensionAttributes": [], + "type": { + "id": "Code_14", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Global", + "instanceType": "Code" + }, + "code": true, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "amendments": [ + { + "id": "StudyAmendment_1", + "extensionAttributes": [], + "name": "AMEND_1", + "label": "Amendment 1", + "description": "The first amendment", + "number": "1", + "summary": "Updated inclusion criteria", + "primaryReason": { + "id": "StudyAmendmentReason_1", + "extensionAttributes": [], + "code": { + "id": "Code_88", + "extensionAttributes": [], + "code": "C99904x3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IRB/IEC Feedback", + "instanceType": "Code" + }, + "otherReason": null, + "instanceType": "StudyAmendmentReason" + }, + "secondaryReasons": [ + { + "id": "StudyAmendmentReason_2", + "extensionAttributes": [], + "code": { + "id": "Code_89", + "extensionAttributes": [], + "code": "C17649", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Other", + "instanceType": "Code" + }, + "otherReason": "Fix typographical errors", + "instanceType": "StudyAmendmentReason" + } + ], + "changes": [ + { + "id": "StudyChange_1", + "extensionAttributes": [], + "name": "AMEND_CHG_1", + "label": "", + "description": "", + "summary": "Fixed F", + "rationale": "Disaster!", + "changedSections": [ + { + "id": "DocumentContentReference_1", + "extensionAttributes": [], + "sectionNumber": "1.5", + "sectionTitle": "Header 1.5", + "appliesToId": "StudyDefinitionDocument_1", + "instanceType": "DocumentContentReference" + }, + { + "id": "DocumentContentReference_2", + "extensionAttributes": [], + "sectionNumber": "1.6", + "sectionTitle": "Header 1.6", + "appliesToId": "StudyDefinitionDocument_1", + "instanceType": "DocumentContentReference" + } + ], + "instanceType": "StudyChange" + } + ], + "impacts": [ + { + "id": "StudyAmendmentImpact_1", + "extensionAttributes": [], + "type": { + "id": "Code_93", + "extensionAttributes": [], + "code": "C99912x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Study Subject Safety", + "instanceType": "Code" + }, + "text": "Amendment 1", + "isSubstantial": false, + "notes": [], + "instanceType": "StudyAmendmentImpact" + } + ], + "geographicScopes": [ + { + "id": "GeographicScope_5", + "extensionAttributes": [], + "type": { + "id": "Code_92", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "enrollments": [ + { + "id": "SubjectEnrollment_1", + "extensionAttributes": [], + "name": "XXX", + "label": null, + "description": null, + "quantity": { + "id": "Quantity_1", + "extensionAttributes": [], + "value": 15.0, + "unit": null, + "instanceType": "Quantity" + }, + "forGeographicScope": { + "id": "GeographicScope_4", + "extensionAttributes": [], + "type": { + "id": "Code_91", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_22", + "extensionAttributes": [], + "standardCode": { + "id": "Code_90", + "extensionAttributes": [], + "code": "150", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + }, + "forStudyCohortId": null, + "forStudySiteId": null, + "instanceType": "SubjectEnrollment" + } + ], + "dateValues": [ + { + "id": "GovernanceDate_3", + "extensionAttributes": [], + "name": "AMEND_DATE_1", + "label": "Protocol Approval", + "description": "Amendment approval date", + "type": { + "id": "Code_18", + "extensionAttributes": [], + "code": "C71476", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Approval Date", + "instanceType": "Code" + }, + "dateValue": "2006-06-01", + "geographicScopes": [ + { + "id": "GeographicScope_3", + "extensionAttributes": [], + "type": { + "id": "Code_19", + "extensionAttributes": [], + "code": "C68846", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Global", + "instanceType": "Code" + }, + "code": null, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "previousId": null, + "notes": [], + "instanceType": "StudyAmendment" + } + ], + "businessTherapeuticAreas": [ + { + "id": "Code_8", + "extensionAttributes": [], + "code": "PHARMA", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Eli Lilly", + "instanceType": "Code" + } + ], + "studyIdentifiers": [ + { + "id": "StudyIdentifier_1", + "extensionAttributes": [], + "text": "H2Q-MC-LZZT", + "scopeId": "Organization_1", + "instanceType": "StudyIdentifier" + }, + { + "id": "StudyIdentifier_2", + "extensionAttributes": [], + "text": "NCT12345678", + "scopeId": "Organization_2", + "instanceType": "StudyIdentifier" + } + ], + "referenceIdentifiers": [ + { + "id": "ReferenceIdentifier_1", + "extensionAttributes": [], + "text": "LZZT CD Plan 1", + "scopeId": "Organization_1", + "instanceType": "ReferenceIdentifier", + "type": { + "id": "Code_94", + "extensionAttributes": [], + "code": "C142424", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Clinical Development Plan", + "instanceType": "Code" + } + } + ], + "studyDesigns": [ + { + "id": "InterventionalStudyDesign_1", + "extensionAttributes": [], + "name": "Study Design 1", + "label": "USDM Example Study Design", + "description": "The main design for the study", + "studyType": { + "id": "Code_159", + "extensionAttributes": [], + "code": "C98388", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Interventional Study", + "instanceType": "Code" + }, + "studyPhase": { + "id": "AliasCode_24", + "extensionAttributes": [], + "standardCode": { + "id": "Code_160", + "extensionAttributes": [], + "code": "C15601", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Phase II Trial", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "therapeuticAreas": [ + { + "id": "Code_149", + "extensionAttributes": [], + "code": "MILD_MOD_ALZ", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Mild to Moderate Alzheimer's Disease", + "instanceType": "Code" + }, + { + "id": "Code_150", + "extensionAttributes": [], + "code": "26929004", + "codeSystem": "SNOMED", + "codeSystemVersion": "'2025-02-01'", + "decode": "Alzheimer's disease", + "instanceType": "Code" + } + ], + "characteristics": [ + { + "id": "Code_157", + "extensionAttributes": [], + "code": "C99907x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXTENSION", + "instanceType": "Code" + }, + { + "id": "Code_158", + "extensionAttributes": [], + "code": "C98704", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ADAPTIVE", + "instanceType": "Code" + } + ], + "encounters": [ + { + "id": "Encounter_1", + "extensionAttributes": [], + "name": "E1", + "label": "Screening 1", + "description": "Screening encounter", + "type": { + "id": "Code_98", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "Encounter_2", + "scheduledAtId": null, + "environmentalSettings": [ + { + "id": "Code_99", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": { + "id": "Code_100", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + }, + "transitionStartRule": { + "id": "TransitionRule_1", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_1", + "label": null, + "description": null, + "text": "Subject identifier", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_2", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_1", + "label": null, + "description": null, + "text": "completion of screening activities", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_2", + "extensionAttributes": [], + "name": "E2", + "label": "Screening 2", + "description": "Screening encounter - Ambulatory ECG Placement", + "type": { + "id": "Code_101", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_1", + "nextId": "Encounter_3", + "scheduledAtId": "Timing_2", + "environmentalSettings": [ + { + "id": "Code_102", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_103", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_3", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_2", + "label": null, + "description": null, + "text": "subject leaves clinic after connection of ambulatory ECG machine", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_3", + "extensionAttributes": [], + "name": "E3", + "label": "Baseline", + "description": "Baseline encounter - Ambulatory ECG Removal", + "type": { + "id": "Code_104", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_2", + "nextId": "Encounter_4", + "scheduledAtId": null, + "environmentalSettings": [ + { + "id": "Code_105", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_106", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": { + "id": "TransitionRule_4", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_3", + "label": null, + "description": null, + "text": "subject has connection of ambulatory ECG machine removed", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_5", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_3", + "label": null, + "description": null, + "text": "Radomized", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_4", + "extensionAttributes": [], + "name": "E4", + "label": "Week 2", + "description": "Day 14", + "type": { + "id": "Code_107", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_3", + "nextId": "Encounter_5", + "scheduledAtId": "Timing_4", + "environmentalSettings": [ + { + "id": "Code_108", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_109", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_5", + "extensionAttributes": [], + "name": "E5", + "label": "Week 4", + "description": "Day 28", + "type": { + "id": "Code_110", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_4", + "nextId": "Encounter_6", + "scheduledAtId": "Timing_5", + "environmentalSettings": [ + { + "id": "Code_111", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_112", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_6", + "extensionAttributes": [], + "name": "E7", + "label": "Week 6", + "description": "Day 42", + "type": { + "id": "Code_113", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_5", + "nextId": "Encounter_7", + "scheduledAtId": "Timing_6", + "environmentalSettings": [ + { + "id": "Code_114", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_115", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_7", + "extensionAttributes": [], + "name": "E8", + "label": "Week 8", + "description": "Day 56", + "type": { + "id": "Code_116", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_6", + "nextId": "Encounter_8", + "scheduledAtId": "Timing_7", + "environmentalSettings": [ + { + "id": "Code_117", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_118", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + }, + { + "id": "Code_119", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TELEPHONE CALL", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_8", + "extensionAttributes": [], + "name": "E9", + "label": "Week 12", + "description": "Day 84", + "type": { + "id": "Code_120", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_7", + "nextId": "Encounter_9", + "scheduledAtId": "Timing_9", + "environmentalSettings": [ + { + "id": "Code_121", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_122", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + }, + { + "id": "Code_123", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TELEPHONE CALL", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_9", + "extensionAttributes": [], + "name": "E10", + "label": "Week 16", + "description": "Day 112", + "type": { + "id": "Code_124", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_8", + "nextId": "Encounter_10", + "scheduledAtId": "Timing_11", + "environmentalSettings": [ + { + "id": "Code_125", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_126", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + }, + { + "id": "Code_127", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TELEPHONE CALL", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_10", + "extensionAttributes": [], + "name": "E11", + "label": "Week 20", + "description": "Day 140", + "type": { + "id": "Code_128", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_9", + "nextId": "Encounter_11", + "scheduledAtId": "Timing_13", + "environmentalSettings": [ + { + "id": "Code_129", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_130", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + }, + { + "id": "Code_131", + "extensionAttributes": [], + "code": "C171537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TELEPHONE CALL", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_11", + "extensionAttributes": [], + "name": "E12", + "label": "Week 24", + "description": "Day 168", + "type": { + "id": "Code_132", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_10", + "nextId": "Encounter_12", + "scheduledAtId": "Timing_15", + "environmentalSettings": [ + { + "id": "Code_133", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_134", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": null, + "notes": [], + "instanceType": "Encounter" + }, + { + "id": "Encounter_12", + "extensionAttributes": [], + "name": "E13", + "label": "Week 26", + "description": "Day 182", + "type": { + "id": "Code_135", + "extensionAttributes": [], + "code": "C25716", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Visit", + "instanceType": "Code" + }, + "previousId": "Encounter_11", + "nextId": null, + "scheduledAtId": "Timing_16", + "environmentalSettings": [ + { + "id": "Code_136", + "extensionAttributes": [], + "code": "C51282", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CLINIC", + "instanceType": "Code" + } + ], + "contactModes": [ + { + "id": "Code_137", + "extensionAttributes": [], + "code": "C175574", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IN PERSON", + "instanceType": "Code" + } + ], + "transitionStartRule": null, + "transitionEndRule": { + "id": "TransitionRule_6", + "extensionAttributes": [], + "name": "ENCOUNTER_START_RULE_12", + "label": null, + "description": null, + "text": "End of treatment", + "instanceType": "TransitionRule" + }, + "notes": [], + "instanceType": "Encounter" + } + ], + "activities": [ + { + "id": "Activity_0", + "extensionAttributes": [], + "name": "ACT_Row1", + "label": "", + "description": "", + "previousId": null, + "nextId": "Activity_1", + "childIds": ["Activity_1", "Activity_2", "Activity_3"], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_1", + "extensionAttributes": [], + "name": "ACT_Row2", + "label": "Informed consent", + "description": "", + "previousId": "Activity_0", + "nextId": "Activity_2", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_33"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_2", + "extensionAttributes": [], + "name": "ACT_Row3", + "label": "Inclusion and exclusion criteria", + "description": "", + "previousId": "Activity_1", + "nextId": "Activity_3", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_3", + "extensionAttributes": [], + "name": "PR3", + "label": "Eligibility Check", + "description": "", + "procedureType": "Eligibility", + "code": { + "id": "CodeX_3", + "extensionAttributes": [], + "code": "61871000000107", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Eligibility for treatment", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_3", + "extensionAttributes": [], + "name": "ACT_Row4", + "label": "Patient number assigned", + "description": "", + "previousId": "Activity_2", + "nextId": "Activity_4", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_4", + "extensionAttributes": [], + "name": "PR3", + "label": "Assign patient number", + "description": "", + "procedureType": "Administrative", + "code": { + "id": "CodeX_04", + "extensionAttributes": [], + "code": "4561000175109", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Assigned", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_4", + "extensionAttributes": [], + "name": "ACT_Row5", + "label": "Demographics", + "description": "", + "previousId": "Activity_3", + "nextId": "Activity_4b", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21" + ], + "bcCategoryIds": [], + "bcSurrogateIds": ["BiomedicalConceptSurrogate_1"], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_4b", + "extensionAttributes": [], + "name": "ACT_Row6", + "label": "Scores", + "description": "", + "previousId": "Activity_4", + "nextId": "Activity_5", + "childIds": ["Activity_5", "Activity_6"], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_5", + "extensionAttributes": [], + "name": "ACT_Row7", + "label": "Hachinski Ischemic Scale", + "description": "", + "previousId": "Activity_4b", + "nextId": "Activity_6", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": ["BiomedicalConceptSurrogate_2"], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_6", + "extensionAttributes": [], + "name": "ACT_Row8", + "label": "MMSE", + "description": "", + "previousId": "Activity_5", + "nextId": "Activity_7", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": ["BiomedicalConceptSurrogate_3"], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_7", + "extensionAttributes": [], + "name": "ACT_Row9", + "label": "Physical examination", + "description": "", + "previousId": "Activity_6", + "nextId": "Activity_8", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_5", + "extensionAttributes": [], + "name": "PR5", + "label": "phyiscal examination", + "description": "", + "procedureType": "Examination", + "code": { + "id": "CodeX_5", + "extensionAttributes": [], + "code": "5880005", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Physical examination", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": ["BiomedicalConcept_34"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_8", + "extensionAttributes": [], + "name": "ACT_Row10", + "label": "Medical history", + "description": "", + "previousId": "Activity_7", + "nextId": "Activity_9", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_35"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_9", + "extensionAttributes": [], + "name": "ACT_Row11", + "label": "Habits", + "description": "", + "previousId": "Activity_8", + "nextId": "Activity_10", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_36", + "BiomedicalConcept_37" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_10", + "extensionAttributes": [], + "name": "ACT_Row12", + "label": "Chest X-ray", + "description": "", + "previousId": "Activity_9", + "nextId": "Activity_11", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_6", + "extensionAttributes": [], + "name": "PR6", + "label": "Chest X-Ray", + "description": "", + "procedureType": "Examination", + "code": { + "id": "CodeX_6", + "extensionAttributes": [], + "code": "LA16043-4", + "codeSystem": "LOINC", + "codeSystemVersion": "2.80", + "decode": "Chest x-ray", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_11", + "extensionAttributes": [], + "name": "ACT_Row13", + "label": "Apo E genotyping", + "description": "", + "previousId": "Activity_10", + "nextId": "Activity_12", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": ["BiomedicalConceptSurrogate_4"], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_12", + "extensionAttributes": [], + "name": "ACT_Row14", + "label": "Patient randomised", + "description": "", + "previousId": "Activity_11", + "nextId": "Activity_13", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_7", + "extensionAttributes": [], + "name": "PR6", + "label": "Randomisation", + "description": "", + "procedureType": "Administrative", + "code": { + "id": "CodeX_9", + "extensionAttributes": [], + "code": "OMOP4976950", + "codeSystem": "OMOP", + "codeSystemVersion": "Type Concept 20221030", + "decode": "Randomization record", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_13", + "extensionAttributes": [], + "name": "ACT_Row15", + "label": "Vital Signs and Temperature", + "description": "", + "previousId": "Activity_12", + "nextId": "Activity_14", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": ["BCCat_1"], + "bcSurrogateIds": [], + "timelineId": "ScheduleTimeline_3", + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_14", + "extensionAttributes": [], + "name": "ACT_Row16", + "label": "Ambulatory ECG placed", + "description": "", + "previousId": "Activity_13", + "nextId": "Activity_15", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_8", + "extensionAttributes": [], + "name": "PR8", + "label": "Ambulatory ECG", + "description": "", + "procedureType": "Device", + "code": { + "id": "CodeX_10", + "extensionAttributes": [], + "code": "164850009", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Ambulatory ECG", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_15", + "extensionAttributes": [], + "name": "ACT_Row17", + "label": "Ambulatory ECG removed", + "description": "", + "previousId": "Activity_14", + "nextId": "Activity_16", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_9", + "extensionAttributes": [], + "name": "PR9", + "label": "Ambulatory ECG", + "description": "", + "procedureType": "Device", + "code": { + "id": "CodeX_11", + "extensionAttributes": [], + "code": "164850009", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Ambulatory ECG", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_16", + "extensionAttributes": [], + "name": "ACT_Row18", + "label": "ECG", + "description": "", + "previousId": "Activity_15", + "nextId": "Activity_17", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_38"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_17", + "extensionAttributes": [], + "name": "ACT_Row19", + "label": "Placebo TTS test", + "description": "", + "previousId": "Activity_16", + "nextId": "Activity_18", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": ["BiomedicalConceptSurrogate_5"], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_18", + "extensionAttributes": [], + "name": "ACT_Row20", + "label": "CT scan", + "description": "", + "previousId": "Activity_17", + "nextId": "Activity_19", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_1", + "extensionAttributes": [], + "name": "PR1", + "label": "CT Scan", + "description": "CT Scan", + "procedureType": "CT Scan", + "code": { + "id": "Code_95", + "extensionAttributes": [], + "code": "383371000119108", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "CT of head without contrast", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_19", + "extensionAttributes": [], + "name": "ACT_Row21", + "label": "Concomitant medications", + "description": "", + "previousId": "Activity_18", + "nextId": "Activity_20", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_39"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_20", + "extensionAttributes": [], + "name": "ACT_Row22", + "label": "Hematology", + "description": "", + "previousId": "Activity_19", + "nextId": "Activity_21", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_32"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_21", + "extensionAttributes": [], + "name": "ACT_Row23", + "label": "Chemistry", + "description": "", + "previousId": "Activity_20", + "nextId": "Activity_22", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": ["BCCat_3"], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_22", + "extensionAttributes": [], + "name": "ACT_Row24", + "label": "Uninalysis", + "description": "", + "previousId": "Activity_21", + "nextId": "Activity_23", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": ["BCCat_4"], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_23", + "extensionAttributes": [], + "name": "ACT_Row25", + "label": "Plasma Specimen (Xanomeline)", + "description": "", + "previousId": "Activity_22", + "nextId": "Activity_24", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_10", + "extensionAttributes": [], + "name": "PR10", + "label": "Plasma specimen", + "description": "", + "procedureType": "Sample", + "code": { + "id": "CodeX_14", + "extensionAttributes": [], + "code": "119361006", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Plasma specimen", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_24", + "extensionAttributes": [], + "name": "ACT_Row26", + "label": "Hemoglobin A1C", + "description": "", + "previousId": "Activity_23", + "nextId": "Activity_25", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_32"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_25", + "extensionAttributes": [], + "name": "ACT_Row27", + "label": "Study drug record , Medications dispensed, Medications returned", + "description": "", + "previousId": "Activity_24", + "nextId": "Activity_26", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_11", + "extensionAttributes": [], + "name": "PR11", + "label": "Medication dispensed", + "description": "", + "procedureType": "Medication", + "code": { + "id": "CodeX_15", + "extensionAttributes": [], + "code": "373784005", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Dispensing medication", + "instanceType": "Code" + }, + "studyInterventionId": "StudyIntervention_1", + "notes": [], + "instanceType": "Procedure" + }, + { + "id": "Procedure_12", + "extensionAttributes": [], + "name": "PR12", + "label": "Medication monitoring", + "description": "", + "procedureType": "Medication", + "code": { + "id": "CodeX_15", + "extensionAttributes": [], + "code": "395170001", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Medication monitoring", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_26", + "extensionAttributes": [], + "name": "ACT_Row28", + "label": "TTS Acceptability Survey", + "description": "", + "previousId": "Activity_25", + "nextId": "Activity_27", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_13", + "extensionAttributes": [], + "name": "PR13", + "label": "Survey", + "description": "", + "procedureType": "Sample", + "code": { + "id": "CodeX_16", + "extensionAttributes": [], + "code": "725111000000103", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Survey", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_27", + "extensionAttributes": [], + "name": "ACT_Row29", + "label": "ADAS-Cog", + "description": "", + "previousId": "Activity_26", + "nextId": "Activity_28", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_40"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_28", + "extensionAttributes": [], + "name": "ACT_Row30", + "label": "CIBIC+", + "description": "", + "previousId": "Activity_27", + "nextId": "Activity_29", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_29", + "extensionAttributes": [], + "name": "ACT_Row31", + "label": "DAD", + "description": "", + "previousId": "Activity_28", + "nextId": "Activity_30", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_30", + "extensionAttributes": [], + "name": "ACT_Row32", + "label": "NPI-X", + "description": "", + "previousId": "Activity_29", + "nextId": "Activity_31", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_20", + "BiomedicalConcept_21" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_31", + "extensionAttributes": [], + "name": "ACT_Row33", + "label": "Adverse events", + "description": "", + "previousId": "Activity_30", + "nextId": "Activity_32", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": ["BiomedicalConcept_1"], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_32", + "extensionAttributes": [], + "name": "ACT_Row34", + "label": "Check adverse events", + "description": "", + "previousId": "Activity_31", + "nextId": "Activity_32b", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_14", + "extensionAttributes": [], + "name": "PR14", + "label": "AE check", + "description": "", + "procedureType": "Administrative", + "code": { + "id": "CodeX_18", + "extensionAttributes": [], + "code": "453961000124104", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Evaluation of adverse drug event history", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": "ScheduleTimeline_1", + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_32b", + "extensionAttributes": [], + "name": "ACT_Row35", + "label": "Vital Signs Supine/Standing", + "description": "", + "previousId": "Activity_32", + "nextId": "Activity_33", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": "ScheduleTimeline_3", + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_33", + "extensionAttributes": [], + "name": "ACT_Row36", + "label": "Subject supine", + "description": "", + "previousId": "Activity_32b", + "nextId": "Activity_34", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_15", + "extensionAttributes": [], + "name": "PR_SUPINE", + "label": "", + "description": "Subject Supine", + "procedureType": "", + "code": { + "id": "Code_96", + "extensionAttributes": [], + "code": "123", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Subject Supine", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_34", + "extensionAttributes": [], + "name": "ACT_Row37", + "label": "Vital signs while supine", + "description": "", + "previousId": "Activity_33", + "nextId": "Activity_35", + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_14", + "BiomedicalConcept_15", + "BiomedicalConcept_16" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_35", + "extensionAttributes": [], + "name": "ACT_Row38", + "label": "Subject Standing", + "description": "", + "previousId": "Activity_34", + "nextId": "Activity_36", + "childIds": [], + "definedProcedures": [ + { + "id": "Procedure_16", + "extensionAttributes": [], + "name": "PR_STAND", + "label": "", + "description": "Subject Standing", + "procedureType": "", + "code": { + "id": "Code_97", + "extensionAttributes": [], + "code": "124", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "Subject Standing", + "instanceType": "Code" + }, + "studyInterventionId": null, + "notes": [], + "instanceType": "Procedure" + } + ], + "biomedicalConceptIds": [], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + }, + { + "id": "Activity_36", + "extensionAttributes": [], + "name": "ACT_Row39", + "label": "Vital signs while standing", + "description": "", + "previousId": "Activity_35", + "nextId": null, + "childIds": [], + "definedProcedures": [], + "biomedicalConceptIds": [ + "BiomedicalConcept_17", + "BiomedicalConcept_18", + "BiomedicalConcept_19" + ], + "bcCategoryIds": [], + "bcSurrogateIds": [], + "timelineId": null, + "notes": [], + "instanceType": "Activity" + } + ], + "arms": [ + { + "id": "StudyArm_1", + "extensionAttributes": [], + "name": "Placebo", + "label": "Placebo", + "description": "Placebo", + "type": { + "id": "Code_138", + "extensionAttributes": [], + "code": "C174268", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Placebo Control Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_139", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + }, + { + "id": "StudyArm_2", + "extensionAttributes": [], + "name": "Xanomeline Low Dose", + "label": "Xanomeline Low Dose", + "description": "Active Substance", + "type": { + "id": "Code_140", + "extensionAttributes": [], + "code": "C174267", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Active Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_141", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + }, + { + "id": "StudyArm_3", + "extensionAttributes": [], + "name": "Xanomeline High Dose", + "label": "Xanomeline High Dose", + "description": "Active Substance", + "type": { + "id": "Code_142", + "extensionAttributes": [], + "code": "C174267", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Active Comparator Arm", + "instanceType": "Code" + }, + "dataOriginDescription": "Data collected from subjects", + "dataOriginType": { + "id": "Code_143", + "extensionAttributes": [], + "code": "C188866", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Data Generated Within Study", + "instanceType": "Code" + }, + "populationIds": [], + "notes": [], + "instanceType": "StudyArm" + } + ], + "studyCells": [ + { + "id": "StudyCell_1", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_1", + "elementIds": ["StudyElement_1"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_2", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_2", + "elementIds": ["StudyElement_2"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_3", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_3", + "elementIds": ["StudyElement_2"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_4", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_4", + "elementIds": ["StudyElement_2"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_5", + "extensionAttributes": [], + "armId": "StudyArm_1", + "epochId": "StudyEpoch_5", + "elementIds": ["StudyElement_7"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_6", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_1", + "elementIds": ["StudyElement_1"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_7", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_2", + "elementIds": ["StudyElement_3"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_8", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_3", + "elementIds": ["StudyElement_3"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_9", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_4", + "elementIds": ["StudyElement_3"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_10", + "extensionAttributes": [], + "armId": "StudyArm_2", + "epochId": "StudyEpoch_5", + "elementIds": ["StudyElement_7"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_11", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_1", + "elementIds": ["StudyElement_1"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_12", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_2", + "elementIds": ["StudyElement_4"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_13", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_3", + "elementIds": ["StudyElement_5"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_14", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_4", + "elementIds": ["StudyElement_6"], + "instanceType": "StudyCell" + }, + { + "id": "StudyCell_15", + "extensionAttributes": [], + "armId": "StudyArm_3", + "epochId": "StudyEpoch_5", + "elementIds": [], + "instanceType": "StudyCell" + } + ], + "rationale": "The discontinuation rate associated with this oral dosing regimen was 58.6% in previous studies, and alternative clinical strategies have been sought to improve tolerance for the compound. To that end, development of a Transdermal Therapeutic System (TTS) has been initiated.", + "epochs": [ + { + "id": "StudyEpoch_1", + "extensionAttributes": [], + "name": "Screening", + "label": "Screening", + "description": "Screening Epoch", + "type": { + "id": "Code_144", + "extensionAttributes": [], + "code": "C202487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Screening Epoch", + "instanceType": "Code" + }, + "previousId": null, + "nextId": "StudyEpoch_2", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_2", + "extensionAttributes": [], + "name": "Treatment 1", + "label": "Treatment One", + "description": "Treatment Epoch", + "type": { + "id": "Code_145", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Treatment Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_1", + "nextId": "StudyEpoch_3", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_3", + "extensionAttributes": [], + "name": "Treatment 2", + "label": "Treatment Two", + "description": "Treatment Epoch", + "type": { + "id": "Code_146", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Treatment Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_2", + "nextId": "StudyEpoch_4", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_4", + "extensionAttributes": [], + "name": "Treatment 3", + "label": "Treatment Three", + "description": "Treatment Epoch", + "type": { + "id": "Code_147", + "extensionAttributes": [], + "code": "C101526", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Treatment Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_3", + "nextId": "StudyEpoch_5", + "notes": [], + "instanceType": "StudyEpoch" + }, + { + "id": "StudyEpoch_5", + "extensionAttributes": [], + "name": "Follow-Up", + "label": "Follow Up", + "description": "Follow-up Epoch", + "type": { + "id": "Code_148", + "extensionAttributes": [], + "code": "C202578", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Follow-Up Epoch", + "instanceType": "Code" + }, + "previousId": "StudyEpoch_4", + "nextId": null, + "notes": [], + "instanceType": "StudyEpoch" + } + ], + "elements": [ + { + "id": "StudyElement_1", + "extensionAttributes": [], + "name": "EL1", + "label": "Screening", + "description": "Screening Element", + "transitionStartRule": { + "id": "TransitionRule_7", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_1", + "label": null, + "description": null, + "text": "Informed consent", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_8", + "extensionAttributes": [], + "name": "ELEMENT_END_RULE_1", + "label": null, + "description": null, + "text": "Completion of all screening activities and no more than 2 weeks from informed consent", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_2", + "extensionAttributes": [], + "name": "EL2", + "label": "Placebo", + "description": "Placebo TTS (adhesive patches)", + "transitionStartRule": { + "id": "TransitionRule_9", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_2", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_7", + "extensionAttributes": [], + "name": "EL7", + "label": "Follow up", + "description": "Follow Up Element", + "transitionStartRule": { + "id": "TransitionRule_14", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_7", + "label": null, + "description": null, + "text": "End\u00a0of\u00a0last\u00a0scheduled\u00a0visit\u00a0on\u00a0study\u00a0(including\u00a0early\u00a0termination)", + "instanceType": "TransitionRule" + }, + "transitionEndRule": { + "id": "TransitionRule_15", + "extensionAttributes": [], + "name": "ELEMENT_END_RULE_7", + "label": null, + "description": null, + "text": "Completion\u00a0of\u00a0all\u00a0specified\u00a0followup\u00a0activities\u00a0(which\u00a0vary\u00a0on\u00a0a\u00a0patient-by-patient\u00a0basis)", + "instanceType": "TransitionRule" + }, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_3", + "extensionAttributes": [], + "name": "EL3", + "label": "Low", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_10", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_3", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_4", + "extensionAttributes": [], + "name": "EL4", + "label": "High - Start", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_11", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_4", + "label": null, + "description": null, + "text": "Randomized", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_5", + "extensionAttributes": [], + "name": "EL5", + "label": "High - Middle", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg + 25 cm2, 27 mg", + "transitionStartRule": { + "id": "TransitionRule_12", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_5", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose\u00a0(from\u00a0patches\u00a0supplied\u00a0at\u00a0Visit\u00a04)", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + }, + { + "id": "StudyElement_6", + "extensionAttributes": [], + "name": "EL6", + "label": "High - End", + "description": "Xanomeline TTS (adhesive patches) 50 cm2, 54 mg", + "transitionStartRule": { + "id": "TransitionRule_13", + "extensionAttributes": [], + "name": "ELEMENT_START_RULE_6", + "label": null, + "description": null, + "text": "Administration\u00a0of\u00a0first\u00a0dose\u00a0(from\u00a0patches\u00a0supplied\u00a0at\u00a0Visit\u00a012)", + "instanceType": "TransitionRule" + }, + "transitionEndRule": null, + "studyInterventionIds": [], + "notes": [], + "instanceType": "StudyElement" + } + ], + "estimands": [ + { + "id": "Estimand_1", + "extensionAttributes": [], + "name": "EST1", + "label": "EST1", + "description": "", + "populationSummary": "Group mean changes from baseline in the primary efficacy parameters", + "analysisPopulationId": "AnalysisPopulation_1", + "interventionIds": ["StudyIntervention_1"], + "variableOfInterestId": "Endpoint_1", + "intercurrentEvents": [ + { + "id": "IntercurrentEvent_1", + "extensionAttributes": [], + "name": "DISTRUPTION", + "label": "", + "description": "The disruption of treatment to the subject", + "text": "Temporary Treatment Interruption", + "dictionaryId": null, + "notes": [], + "instanceType": "IntercurrentEvent", + "strategy": "Treatment Policy \u2013 Continue to measure effect of treatment assignment regardless of interruption." + } + ], + "notes": [], + "instanceType": "Estimand" + } + ], + "indications": [ + { + "id": "Indication_1", + "extensionAttributes": [], + "name": "IND1", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "codes": [ + { + "id": "Code_604", + "extensionAttributes": [], + "code": "G30.9", + "codeSystem": "ICD-10-CM", + "codeSystemVersion": "1", + "decode": "Alzheimer's disease; unspecified", + "instanceType": "Code" + } + ], + "isRareDisease": false, + "notes": [], + "instanceType": "Indication" + }, + { + "id": "Indication_2", + "extensionAttributes": [], + "name": "IND2", + "label": "Alzheimer's disease", + "description": "Alzheimer's disease", + "codes": [ + { + "id": "Code_605", + "extensionAttributes": [], + "code": "26929004", + "codeSystem": "SNOMED", + "codeSystemVersion": "2025-02-01", + "decode": "Alzheimer's disease", + "instanceType": "Code" + } + ], + "isRareDisease": false, + "notes": [], + "instanceType": "Indication" + } + ], + "studyInterventionIds": ["StudyIntervention_1"], + "objectives": [ + { + "id": "Objective_1", + "extensionAttributes": [], + "name": "OBJ1", + "label": "", + "description": "Main objective", + "text": "

      To determine if there is a statistically significant relationship (overall Type 1 erroralpha=0.05) between the change in both the ADAS-Cog (11) and CIBIC+ scores, and drug dose (0, 50 cm2 [54 mg], and 75 cm2 [81 mg]).

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_622", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_1", + "extensionAttributes": [], + "name": "END1", + "label": "", + "description": "", + "text": "

      Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Week 24

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_621", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_2", + "extensionAttributes": [], + "name": "END2", + "label": "", + "description": "", + "text": "

      Video-referenced Clinician\u2019s Interview-based Impression of Change (CIBIC+) at Week 24

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_623", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_2", + "extensionAttributes": [], + "name": "OBJ2", + "label": "", + "description": "Safety", + "text": "

      To document the safety profile of the xanomeline TTS.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_625", + "extensionAttributes": [], + "code": "C85826", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_3", + "extensionAttributes": [], + "name": "END3", + "label": "", + "description": "", + "text": "

      Adverse events

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_624", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_4", + "extensionAttributes": [], + "name": "END4", + "label": "", + "description": "", + "text": "

      Vital signs (weight, standing and supine blood pressure, heart rate)

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_626", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_5", + "extensionAttributes": [], + "name": "END5", + "label": "", + "description": "The change from baseline laboratory value will be calculated as the difference between the baseline lab value and the endpoint value (i.e., the value at the specified visit) or the end of treatment observation", + "text": "

      Laboratory evaluations (Change from Baseline)

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_627", + "extensionAttributes": [], + "code": "C94496", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Primary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_3", + "extensionAttributes": [], + "name": "OBJ3", + "label": "", + "description": "Behaviour", + "text": "

      To assess the dose-dependent improvement in behavior. Improved scores on the Revised Neuropsychiatric Inventory (NPI-X) will indicate improvement in these areas.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_629", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_6", + "extensionAttributes": [], + "name": "END6", + "label": "", + "description": "", + "text": "

      Alzheimer's Disease Assessment Scale - Cognitive Subscale, total of 11 items [ADAS-Cog (11)] at Weeks 8 and 16

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_628", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_7", + "extensionAttributes": [], + "name": "END7", + "label": "", + "description": "", + "text": "

      Video-referenced Clinician\u2019s Interview-based Impression of Change (CIBIC+) at Weeks 8 and 16

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_630", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + }, + { + "id": "Endpoint_8", + "extensionAttributes": [], + "name": "END8", + "label": "", + "description": "", + "text": "

      Mean Revised Neuropsychiatric Inventory (NPI-X) from Week 4 to Week 24

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_631", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_4", + "extensionAttributes": [], + "name": "OBJ4", + "label": "", + "description": "", + "text": "

      To assess the dose-dependent improvements in activities of daily living. Improved scores on the Disability Assessment for Dementia (DAD) will indicate improvement in these areas (see Attachment LZZT.5).

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_633", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_9", + "extensionAttributes": [], + "name": "END9", + "label": "", + "description": "", + "text": "

      *** To be determined from protocol ***

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_632", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_5", + "extensionAttributes": [], + "name": "OBJ5", + "label": "", + "description": "", + "text": "

      To assess the dose-dependent improvements in an extended assessment of cognition that integrates attention/concentration tasks. The Alzheimer's Disease Assessment Scale-14 item Cognitive Subscale, hereafter referred to as ADAS-Cog (14), will be used for this assessment (see Attachment LZZT.2).

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_635", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_10", + "extensionAttributes": [], + "name": "END10", + "label": "", + "description": "", + "text": "

      *** To be determined from protocol ***

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_634", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + }, + { + "id": "Objective_6", + "extensionAttributes": [], + "name": "OBJ6", + "label": "", + "description": "", + "text": "

      To assess the treatment response as a function of Apo E genotype.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Objective", + "level": { + "id": "Code_637", + "extensionAttributes": [], + "code": "C85827", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Objective", + "instanceType": "Code" + }, + "endpoints": [ + { + "id": "Endpoint_11", + "extensionAttributes": [], + "name": "END11", + "label": "", + "description": "", + "text": "

      *** To be determined from protocol ***

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "Endpoint", + "purpose": "", + "level": { + "id": "Code_636", + "extensionAttributes": [], + "code": "C139173", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Secondary Endpoint", + "instanceType": "Code" + } + } + ] + } + ], + "population": { + "id": "StudyDesignPopulation_1", + "extensionAttributes": [], + "name": "POP1", + "label": "", + "description": "Patients with Probable Mild to Moderate Alzheimer's Disease", + "includesHealthySubjects": false, + "plannedEnrollmentNumber": { + "id": "Quantity_8", + "extensionAttributes": [], + "value": 300.0, + "unit": null, + "instanceType": "Quantity" + }, + "plannedCompletionNumber": { + "id": "Quantity_7", + "extensionAttributes": [], + "value": 300.0, + "unit": null, + "instanceType": "Quantity" + }, + "plannedSex": [ + { + "id": "Code_620", + "extensionAttributes": [], + "code": "C49636", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "BOTH", + "instanceType": "Code" + }, + { + "id": "Code_620M", + "extensionAttributes": [], + "code": "C20197", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "M", + "instanceType": "Code" + }, + { + "id": "Code_620F", + "extensionAttributes": [], + "code": "C16576", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "F", + "instanceType": "Code" + } + ], + "criterionIds": [ + "EligibilityCriterion_1", + "EligibilityCriterion_2", + "EligibilityCriterion_3", + "EligibilityCriterion_4", + "EligibilityCriterion_5", + "EligibilityCriterion_6", + "EligibilityCriterion_7", + "EligibilityCriterion_8", + "EligibilityCriterion_9", + "EligibilityCriterion_10", + "EligibilityCriterion_11", + "EligibilityCriterion_12", + "EligibilityCriterion_13", + "EligibilityCriterion_14", + "EligibilityCriterion_15", + "EligibilityCriterion_16", + "EligibilityCriterion_17", + "EligibilityCriterion_18", + "EligibilityCriterion_19", + "EligibilityCriterion_20", + "EligibilityCriterion_21", + "EligibilityCriterion_22", + "EligibilityCriterion_23", + "EligibilityCriterion_24", + "EligibilityCriterion_25", + "EligibilityCriterion_26", + "EligibilityCriterion_27", + "EligibilityCriterion_28", + "EligibilityCriterion_29", + "EligibilityCriterion_30", + "EligibilityCriterion_31" + ], + "plannedAge": { + "id": "Range_1", + "extensionAttributes": [], + "minValue": { + "id": "Quantity_9", + "extensionAttributes": [], + "value": 50.0, + "unit": { + "id": "Code_618", + "extensionAttributes": [], + "code": "C29848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Year", + "instanceType": "Code" + }, + "instanceType": "Quantity" + }, + "maxValue": { + "id": "Quantity_10", + "extensionAttributes": [], + "value": 100.0, + "unit": { + "id": "AliasCode_252", + "extensionAttributes": [], + "standardCode": { + "id": "Code_619", + "extensionAttributes": [], + "code": "C29848", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Year", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "isApproximate": "false", + "instanceType": "Range" + }, + "notes": [], + "instanceType": "StudyDesignPopulation", + "cohorts": [] + }, + "scheduleTimelines": [ + { + "id": "ScheduleTimeline_4", + "extensionAttributes": [], + "name": "Main Timeline", + "label": "Main Timeline", + "description": "This is the main timeline for the study design.", + "mainTimeline": true, + "entryCondition": "Potential subject identified", + "entryId": "ScheduledActivityInstance_9", + "exits": [ + { + "id": "ScheduleTimelineExit_4", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_1", + "extensionAttributes": [], + "name": "TIM1", + "label": "Screening", + "description": "Screening timing", + "type": { + "id": "Code_20", + "extensionAttributes": [], + "code": "C201357", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Before", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 weeks", + "relativeToFrom": { + "id": "Code_21", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_9", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_2", + "extensionAttributes": [], + "name": "TIM2", + "label": "Pre dose", + "description": "Pre dose timing", + "type": { + "id": "Code_22", + "extensionAttributes": [], + "code": "C201357", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Before", + "instanceType": "Code" + }, + "value": "P2D", + "valueLabel": "2 days", + "relativeToFrom": { + "id": "Code_23", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_10", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "PT4H", + "windowUpper": "PT0H", + "windowLabel": "-4..0 hours", + "instanceType": "Timing" + }, + { + "id": "Timing_3", + "extensionAttributes": [], + "name": "TIM3", + "label": "Dosing", + "description": "Dosing anchor", + "type": { + "id": "Code_26", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_27", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_11", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_4", + "extensionAttributes": [], + "name": "TIM4", + "label": "Week 2", + "description": "Week 2 timing", + "type": { + "id": "Code_28", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_29", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_12", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_5", + "extensionAttributes": [], + "name": "TIM5", + "label": "Week 4", + "description": "Week 4 timing", + "type": { + "id": "Code_32", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P4W", + "valueLabel": "4 Weeks", + "relativeToFrom": { + "id": "Code_33", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_13", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_6", + "extensionAttributes": [], + "name": "TIM6", + "label": "Week 6", + "description": "Week 6 timing", + "type": { + "id": "Code_36", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P6W", + "valueLabel": "6 Weeks", + "relativeToFrom": { + "id": "Code_37", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_14", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_7", + "extensionAttributes": [], + "name": "TIM7", + "label": "Week 8", + "description": "Week 8 timing", + "type": { + "id": "Code_40", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P8W", + "valueLabel": "8 Weeks", + "relativeToFrom": { + "id": "Code_41", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_15", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_9", + "extensionAttributes": [], + "name": "TIM9", + "label": "Week 12", + "description": "Week 12 timing", + "type": { + "id": "Code_46", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P12W", + "valueLabel": "12 Weeks", + "relativeToFrom": { + "id": "Code_47", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_17", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLowerValue": 4, + "windowLowerUnit": "Days", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_11", + "extensionAttributes": [], + "name": "TIM11", + "label": "Week 16", + "description": "Week 16 timing", + "type": { + "id": "Code_52", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P16W", + "valueLabel": "16 Weeks", + "relativeToFrom": { + "id": "Code_53", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_19", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "AfterTiming" + }, + { + "id": "Timing_13", + "extensionAttributes": [], + "name": "TIM13", + "label": "Week 20", + "description": "Week 20 timing", + "type": { + "id": "Code_58", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P20W", + "valueLabel": "20 Weeks", + "relativeToFrom": { + "id": "Code_59", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_21", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_15", + "extensionAttributes": [], + "name": "TIM15", + "label": "Week 24", + "description": "Week 24 timing", + "type": { + "id": "Code_64", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P24W", + "valueLabel": "24 Weeks", + "relativeToFrom": { + "id": "Code_65", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_23", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P4D", + "windowUpper": "P4D", + "windowLabel": "-4..4 days", + "instanceType": "Timing" + }, + { + "id": "Timing_16", + "extensionAttributes": [], + "name": "TIM16", + "label": "Week 26", + "description": "Week 26 timing", + "type": { + "id": "Code_68", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P26W", + "valueLabel": "26 Weeks", + "relativeToFrom": { + "id": "Code_69", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_24", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_11", + "windowLower": "P3D", + "windowUpper": "P3D", + "windowLabel": "-3..3 days", + "instanceType": "Timing" + }, + { + "id": "Timing_8", + "extensionAttributes": [], + "name": "TIM8", + "label": "Week 8 Home", + "description": "Week 8 at home timing", + "type": { + "id": "Code_44", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_45", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_16", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_15", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_10", + "extensionAttributes": [], + "name": "TIM10", + "label": "Week 12 Home", + "description": "Week 12 at home timing", + "type": { + "id": "Code_50", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_51", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_18", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_17", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_12", + "extensionAttributes": [], + "name": "TIM12", + "label": "Week 16 Home", + "description": "Week 16 at home timing", + "type": { + "id": "Code_56", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_57", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_20", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_19", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_12b", + "extensionAttributes": [], + "name": "TIM12b", + "label": "Week 16 Home decision", + "description": "Decide if Week 16 at home timing", + "type": { + "id": "Code_56", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P0D", + "valueLabel": "0 Days", + "relativeToFrom": { + "id": "Code_57", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledDecisionInstance_1", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_19", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_14", + "extensionAttributes": [], + "name": "TIM14", + "label": "Week 20 Home", + "description": "Week 20 at home timing", + "type": { + "id": "Code_62", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "P2W", + "valueLabel": "2 Weeks", + "relativeToFrom": { + "id": "Code_63", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_22", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_21", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_9", + "extensionAttributes": [], + "name": "SCREEN1", + "label": "Screen One", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_10", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_1", + "Activity_2", + "Activity_3", + "Activity_4", + "Activity_5", + "Activity_6", + "Activity_7", + "Activity_8", + "Activity_9", + "Activity_10", + "Activity_13", + "Activity_16", + "Activity_17", + "Activity_18", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_24", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_1" + }, + { + "id": "ScheduledActivityInstance_10", + "extensionAttributes": [], + "name": "SCREEN2", + "label": "Screen Two", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_11", + "epochId": "StudyEpoch_1", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_13", "Activity_14"], + "encounterId": "Encounter_2" + }, + { + "id": "ScheduledActivityInstance_11", + "extensionAttributes": [], + "name": "DOSE", + "label": "Dose", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_12", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_12", + "Activity_13", + "Activity_15", + "Activity_19", + "Activity_23", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_3" + }, + { + "id": "ScheduledActivityInstance_12", + "extensionAttributes": [], + "name": "WK2", + "label": "Week 2", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_13", + "epochId": "StudyEpoch_2", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_11", + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_4" + }, + { + "id": "ScheduledActivityInstance_13", + "extensionAttributes": [], + "name": "WK4", + "label": "Week 4", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_14", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_5" + }, + { + "id": "ScheduledActivityInstance_14", + "extensionAttributes": [], + "name": "WK6", + "label": "Week 6", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_15", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_6" + }, + { + "id": "ScheduledActivityInstance_15", + "extensionAttributes": [], + "name": "WK8", + "label": "Week 8", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_16", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_16", + "extensionAttributes": [], + "name": "WK8N", + "label": "Week NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_17", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_7" + }, + { + "id": "ScheduledActivityInstance_17", + "extensionAttributes": [], + "name": "WK12", + "label": "Week 12", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_18", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_8" + }, + { + "id": "ScheduledActivityInstance_18", + "extensionAttributes": [], + "name": "WK12N", + "label": "Week 12 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_19", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_8" + }, + { + "id": "ScheduledActivityInstance_19", + "extensionAttributes": [], + "name": "WK16", + "label": "Week 16", + "description": "-", + "defaultConditionId": "ScheduledDecisionInstance_1", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledDecisionInstance_1", + "extensionAttributes": [], + "name": "WK16_Dec", + "label": "Decision Week 16 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_20", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledDecisionInstance", + "conditionAssignments": [ + { + "id": "ConditionAssignment_1", + "extensionAttributes": [], + "condition": "not willing to do online questionnaire", + "conditionTargetId": "ScheduledActivityInstance_21", + "instanceType": "ConditionAssignment" + } + ] + }, + { + "id": "ScheduledActivityInstance_20", + "extensionAttributes": [], + "name": "WK16N", + "label": "Week 16 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_21", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_9" + }, + { + "id": "ScheduledActivityInstance_21", + "extensionAttributes": [], + "name": "WK20", + "label": "Week 20", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_22", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_23", + "Activity_25", + "Activity_30" + ], + "encounterId": "Encounter_10" + }, + { + "id": "ScheduledActivityInstance_22", + "extensionAttributes": [], + "name": "WK20N", + "label": "Week 20 NPI", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_23", + "epochId": "StudyEpoch_3", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_30"], + "encounterId": "Encounter_10" + }, + { + "id": "ScheduledActivityInstance_23", + "extensionAttributes": [], + "name": "WK24", + "label": "Week 24", + "description": "-", + "defaultConditionId": "ScheduledActivityInstance_24", + "epochId": "StudyEpoch_4", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": [ + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_25", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ], + "encounterId": "Encounter_11" + }, + { + "id": "ScheduledActivityInstance_24", + "extensionAttributes": [], + "name": "WK26", + "label": "Week 26", + "description": "-", + "defaultConditionId": null, + "epochId": "StudyEpoch_5", + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_4", + "activityIds": [ + "Activity_7", + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_25", + "Activity_26", + "Activity_30" + ], + "encounterId": "Encounter_12" + } + ], + "plannedDuration": { + "id": "Duration_11", + "extensionAttributes": [], + "text": "It will be approximately 36 weeks.", + "quantity": null, + "durationWillVary": true, + "reasonDurationWillVary": "A good reason", + "instanceType": "Duration" + }, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_1", + "extensionAttributes": [], + "name": "Adverse Event Timeline", + "label": "Adverse Event Timeline", + "description": "This is the adverse event timeline", + "mainTimeline": false, + "entryCondition": "Subject suffers an adverse event", + "entryId": "ScheduledActivityInstance_1", + "exits": [ + { + "id": "ScheduleTimelineExit_1", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_17", + "extensionAttributes": [], + "name": "TIM17", + "label": "Adverse Event", + "description": "Adverse Event", + "type": { + "id": "Code_72", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_73", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_1", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_1", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_1", + "extensionAttributes": [], + "name": "AE", + "label": "Adevers Event", + "description": "-", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_1", + "activityIds": ["Activity_31"], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_2", + "extensionAttributes": [], + "name": "Early Termination Timeline", + "label": "Early Termination Timeline", + "description": "This is the early termination processing", + "mainTimeline": false, + "entryCondition": "Subject terminates the study early", + "entryId": "ScheduledActivityInstance_2", + "exits": [ + { + "id": "ScheduleTimelineExit_2", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_18", + "extensionAttributes": [], + "name": "TIM18", + "label": "Early Termination", + "description": "Early Termination", + "type": { + "id": "Code_74", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "P1D", + "valueLabel": "1 Day", + "relativeToFrom": { + "id": "Code_75", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_2", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_2", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_2", + "extensionAttributes": [], + "name": "ET", + "label": "Early Termination", + "description": "-", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_2", + "activityIds": [ + "Activity_7", + "Activity_13", + "Activity_16", + "Activity_19", + "Activity_20", + "Activity_21", + "Activity_22", + "Activity_23", + "Activity_25", + "Activity_26", + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30", + "Activity_32" + ], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + }, + { + "id": "ScheduleTimeline_3", + "extensionAttributes": [], + "name": "Vital Sign Blood Pressure Timeline", + "label": "Vital Sign Blood Pressure Timeline", + "description": "BP Profile", + "mainTimeline": false, + "entryCondition": "Automatic execution", + "entryId": "ScheduledActivityInstance_3", + "exits": [ + { + "id": "ScheduleTimelineExit_3", + "extensionAttributes": [], + "instanceType": "ScheduleTimelineExit" + } + ], + "timings": [ + { + "id": "Timing_19", + "extensionAttributes": [], + "name": "TIM19", + "label": "Supine", + "description": "Supine", + "type": { + "id": "Code_76", + "extensionAttributes": [], + "code": "C201358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fixed Reference", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 mins", + "relativeToFrom": { + "id": "Code_77", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_3", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_20", + "extensionAttributes": [], + "name": "TIM20", + "label": "VS while supine", + "description": "VS while supine", + "type": { + "id": "Code_78", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT5M", + "valueLabel": "5 mins", + "relativeToFrom": { + "id": "Code_79", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_4", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_3", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_21", + "extensionAttributes": [], + "name": "TIM21", + "label": "Standing", + "description": "Standing", + "type": { + "id": "Code_80", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 min", + "relativeToFrom": { + "id": "Code_81", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_5", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_4", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_22", + "extensionAttributes": [], + "name": "TIM22", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_82", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT1M", + "valueLabel": "1 min", + "relativeToFrom": { + "id": "Code_83", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_6", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_5", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_23", + "extensionAttributes": [], + "name": "TIM23", + "label": "Standing", + "description": "Standing", + "type": { + "id": "Code_84", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT0M", + "valueLabel": "0 min", + "relativeToFrom": { + "id": "Code_85", + "extensionAttributes": [], + "code": "C201353", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "End to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_7", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_6", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + }, + { + "id": "Timing_24", + "extensionAttributes": [], + "name": "TIM24", + "label": "VS while standing", + "description": "VS while standing", + "type": { + "id": "Code_86", + "extensionAttributes": [], + "code": "C201356", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "After", + "instanceType": "Code" + }, + "value": "PT2M", + "valueLabel": "2 min", + "relativeToFrom": { + "id": "Code_87", + "extensionAttributes": [], + "code": "C201355", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Start to Start", + "instanceType": "Code" + }, + "relativeFromScheduledInstanceId": "ScheduledActivityInstance_8", + "relativeToScheduledInstanceId": "ScheduledActivityInstance_7", + "windowLower": null, + "windowUpper": null, + "windowLabel": "", + "instanceType": "Timing" + } + ], + "instances": [ + { + "id": "ScheduledActivityInstance_3", + "extensionAttributes": [], + "name": "VS_5MIN", + "label": "5 minute supine", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_4", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_33"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_4", + "extensionAttributes": [], + "name": "VS_SUPINE", + "label": "Vital signs supine", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_5", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_34"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_5", + "extensionAttributes": [], + "name": "VS_1MIN", + "label": "1 minute standing", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_6", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_35"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_6", + "extensionAttributes": [], + "name": "VS_STAND1", + "label": "Vital signs after 1 min standing", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_7", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_36"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_7", + "extensionAttributes": [], + "name": "VS_2MIN", + "label": "2 minute standing", + "description": "", + "defaultConditionId": "ScheduledActivityInstance_8", + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": null, + "activityIds": ["Activity_35"], + "encounterId": null + }, + { + "id": "ScheduledActivityInstance_8", + "extensionAttributes": [], + "name": "VS_STAND3", + "label": "Vital signs after 3 min standing", + "description": "", + "defaultConditionId": null, + "epochId": null, + "instanceType": "ScheduledActivityInstance", + "timelineId": null, + "timelineExitId": "ScheduleTimelineExit_3", + "activityIds": ["Activity_36"], + "encounterId": null + } + ], + "plannedDuration": null, + "instanceType": "ScheduleTimeline" + } + ], + "biospecimenRetentions": [], + "documentVersionIds": [], + "eligibilityCriteria": [ + { + "id": "EligibilityCriterion_1", + "extensionAttributes": [], + "name": "IN01", + "label": "Age greater than 50", + "description": "", + "category": { + "id": "Code_638", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "01", + "criterionItemId": "EligibilityCriterionItem_1", + "nextId": "EligibilityCriterion_2", + "previousId": null, + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_2", + "extensionAttributes": [], + "name": "IN02", + "label": "Diagnosis of Alzheimer's", + "description": "", + "category": { + "id": "Code_639", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "02", + "criterionItemId": "EligibilityCriterionItem_2", + "nextId": "EligibilityCriterion_3", + "previousId": "EligibilityCriterion_1", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_3", + "extensionAttributes": [], + "name": "IN03", + "label": "MMSE Score", + "description": "", + "category": { + "id": "Code_640", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "03", + "criterionItemId": "EligibilityCriterionItem_3", + "nextId": "EligibilityCriterion_4", + "previousId": "EligibilityCriterion_2", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_4", + "extensionAttributes": [], + "name": "IN04", + "label": "Hachinski Ischemic Score", + "description": "", + "category": { + "id": "Code_641", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "04", + "criterionItemId": "EligibilityCriterionItem_4", + "nextId": "EligibilityCriterion_5", + "previousId": "EligibilityCriterion_3", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_5", + "extensionAttributes": [], + "name": "IN05", + "label": "CNS imaging comptaible with Alzheimer's", + "description": "", + "category": { + "id": "Code_642", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "05", + "criterionItemId": "EligibilityCriterionItem_5", + "nextId": "EligibilityCriterion_6", + "previousId": "EligibilityCriterion_4", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_6", + "extensionAttributes": [], + "name": "IN06", + "label": "Informed consent criteria", + "description": "", + "category": { + "id": "Code_643", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "06", + "criterionItemId": "EligibilityCriterionItem_6", + "nextId": "EligibilityCriterion_7", + "previousId": "EligibilityCriterion_5", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_7", + "extensionAttributes": [], + "name": "IN07", + "label": "Geographic proximity criteria", + "description": "", + "category": { + "id": "Code_644", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "07", + "criterionItemId": "EligibilityCriterionItem_7", + "nextId": "EligibilityCriterion_8", + "previousId": "EligibilityCriterion_6", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_8", + "extensionAttributes": [], + "name": "IN08", + "label": "Reliable caregiver criteria", + "description": "", + "category": { + "id": "Code_645", + "extensionAttributes": [], + "code": "C25532", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "INCLUSION", + "instanceType": "Code" + }, + "identifier": "08", + "criterionItemId": "EligibilityCriterionItem_8", + "nextId": "EligibilityCriterion_9", + "previousId": "EligibilityCriterion_7", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_9", + "extensionAttributes": [], + "name": "EX01", + "label": "Previous study criteria", + "description": "", + "category": { + "id": "Code_646", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "09", + "criterionItemId": "EligibilityCriterionItem_9", + "nextId": "EligibilityCriterion_10", + "previousId": "EligibilityCriterion_8", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_10", + "extensionAttributes": [], + "name": "EX02", + "label": "Other Alzheimer's therapy criteria", + "description": "", + "category": { + "id": "Code_647", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "10", + "criterionItemId": "EligibilityCriterionItem_10", + "nextId": "EligibilityCriterion_11", + "previousId": "EligibilityCriterion_9", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_11", + "extensionAttributes": [], + "name": "EX03", + "label": "Serious illness criteria", + "description": "", + "category": { + "id": "Code_648", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "11", + "criterionItemId": "EligibilityCriterionItem_11", + "nextId": "EligibilityCriterion_12", + "previousId": "EligibilityCriterion_10", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_12", + "extensionAttributes": [], + "name": "EX04", + "label": "Serious neurolocal conditions criteria", + "description": "", + "category": { + "id": "Code_649", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "12", + "criterionItemId": "EligibilityCriterionItem_12", + "nextId": "EligibilityCriterion_13", + "previousId": "EligibilityCriterion_11", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_13", + "extensionAttributes": [], + "name": "EX05", + "label": "Depression criteria", + "description": "", + "category": { + "id": "Code_650", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "13", + "criterionItemId": "EligibilityCriterionItem_13", + "nextId": "EligibilityCriterion_14", + "previousId": "EligibilityCriterion_12", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_14", + "extensionAttributes": [], + "name": "EX06", + "label": "Schizophrenia, Bipolar, Ethanol or psychoactive abuse criteria", + "description": "", + "category": { + "id": "Code_651", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "14", + "criterionItemId": "EligibilityCriterionItem_14", + "nextId": "EligibilityCriterion_15", + "previousId": "EligibilityCriterion_13", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_15", + "extensionAttributes": [], + "name": "EX07", + "label": "Syncope criteria", + "description": "", + "category": { + "id": "Code_652", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "15", + "criterionItemId": "EligibilityCriterionItem_15", + "nextId": "EligibilityCriterion_16", + "previousId": "EligibilityCriterion_14", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_16", + "extensionAttributes": [], + "name": "EX08", + "label": "ECG Criteria", + "description": "", + "category": { + "id": "Code_653", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "16b", + "criterionItemId": "EligibilityCriterionItem_16", + "nextId": "EligibilityCriterion_17", + "previousId": "EligibilityCriterion_15", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_17", + "extensionAttributes": [], + "name": "EX09", + "label": "Cardiovascular criteria", + "description": "", + "category": { + "id": "Code_654", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "17", + "criterionItemId": "EligibilityCriterionItem_17", + "nextId": "EligibilityCriterion_18", + "previousId": "EligibilityCriterion_16", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_18", + "extensionAttributes": [], + "name": "EX10", + "label": "Gastrointensinal criteria", + "description": "", + "category": { + "id": "Code_655", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "18", + "criterionItemId": "EligibilityCriterionItem_18", + "nextId": "EligibilityCriterion_19", + "previousId": "EligibilityCriterion_17", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_19", + "extensionAttributes": [], + "name": "EX11", + "label": "Endocrine criteria", + "description": "", + "category": { + "id": "Code_656", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "19", + "criterionItemId": "EligibilityCriterionItem_19", + "nextId": "EligibilityCriterion_20", + "previousId": "EligibilityCriterion_18", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_20", + "extensionAttributes": [], + "name": "EX12", + "label": "Resporatory criteria", + "description": "", + "category": { + "id": "Code_657", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "20", + "criterionItemId": "EligibilityCriterionItem_20", + "nextId": "EligibilityCriterion_21", + "previousId": "EligibilityCriterion_19", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_21", + "extensionAttributes": [], + "name": "EX13", + "label": "Genitourinary criteria", + "description": "", + "category": { + "id": "Code_658", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "21", + "criterionItemId": "EligibilityCriterionItem_21", + "nextId": "EligibilityCriterion_22", + "previousId": "EligibilityCriterion_20", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_22", + "extensionAttributes": [], + "name": "EX14", + "label": "Rheumatologic criteria", + "description": "", + "category": { + "id": "Code_659", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "22", + "criterionItemId": "EligibilityCriterionItem_22", + "nextId": "EligibilityCriterion_23", + "previousId": "EligibilityCriterion_21", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_23", + "extensionAttributes": [], + "name": "EX15", + "label": "HIV criteria", + "description": "", + "category": { + "id": "Code_660", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "23", + "criterionItemId": "EligibilityCriterionItem_23", + "nextId": "EligibilityCriterion_24", + "previousId": "EligibilityCriterion_22", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_24", + "extensionAttributes": [], + "name": "EX16", + "label": "Neurosyphilis, Meningitis,Encephalitis criteria", + "description": "", + "category": { + "id": "Code_661", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "24", + "criterionItemId": "EligibilityCriterionItem_24", + "nextId": "EligibilityCriterion_25", + "previousId": "EligibilityCriterion_23", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_25", + "extensionAttributes": [], + "name": "EX17", + "label": "Malignant disease criteria", + "description": "", + "category": { + "id": "Code_662", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "25", + "criterionItemId": "EligibilityCriterionItem_25", + "nextId": "EligibilityCriterion_26", + "previousId": "EligibilityCriterion_24", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_26", + "extensionAttributes": [], + "name": "EX18", + "label": "Ability to participate in study criteria", + "description": "", + "category": { + "id": "Code_663", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "26", + "criterionItemId": "EligibilityCriterionItem_26", + "nextId": "EligibilityCriterion_27", + "previousId": "EligibilityCriterion_25", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_27", + "extensionAttributes": [], + "name": "EX19", + "label": "Laboratory values criteria", + "description": "", + "category": { + "id": "Code_664", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "27b", + "criterionItemId": "EligibilityCriterionItem_27", + "nextId": "EligibilityCriterion_28", + "previousId": "EligibilityCriterion_26", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_28", + "extensionAttributes": [], + "name": "EX20", + "label": "Central laboratory values criteria", + "description": "", + "category": { + "id": "Code_665", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "28b", + "criterionItemId": "EligibilityCriterionItem_28", + "nextId": "EligibilityCriterion_29", + "previousId": "EligibilityCriterion_27", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_29", + "extensionAttributes": [], + "name": "EX21", + "label": "Syphilia criteria", + "description": "", + "category": { + "id": "Code_666", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "29b", + "criterionItemId": "EligibilityCriterionItem_29", + "nextId": "EligibilityCriterion_30", + "previousId": "EligibilityCriterion_28", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_30", + "extensionAttributes": [], + "name": "EX22", + "label": "Hemoglobin criteria", + "description": "", + "category": { + "id": "Code_667", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "30b", + "criterionItemId": "EligibilityCriterionItem_30", + "nextId": "EligibilityCriterion_31", + "previousId": "EligibilityCriterion_29", + "notes": [], + "instanceType": "EligibilityCriterion" + }, + { + "id": "EligibilityCriterion_31", + "extensionAttributes": [], + "name": "EX23", + "label": "Medications Criteria", + "description": "", + "category": { + "id": "Code_668", + "extensionAttributes": [], + "code": "C25370", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "EXCLUSION", + "instanceType": "Code" + }, + "identifier": "31b", + "criterionItemId": "EligibilityCriterionItem_31", + "nextId": null, + "previousId": "EligibilityCriterion_30", + "notes": [], + "instanceType": "EligibilityCriterion" + } + ], + "analysisPopulations": [ + { + "id": "AnalysisPopulation_1", + "extensionAttributes": [], + "name": "AP_1", + "label": null, + "description": null, + "text": "Patients with Mild to Moderate Alzheimer\u2019s Disease.", + "subsetOfIds": ["StudyDesignPopulation_1"], + "notes": [], + "instanceType": "AnalysisPopulation" + } + ], + "notes": [], + "instanceType": "InterventionalStudyDesign", + "subTypes": [ + { + "id": "Code_153", + "extensionAttributes": [], + "code": "C49666", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Efficacy Study", + "instanceType": "Code" + }, + { + "id": "Code_154", + "extensionAttributes": [], + "code": "C49667", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Safety Study", + "instanceType": "Code" + }, + { + "id": "Code_155", + "extensionAttributes": [], + "code": "C49663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Pharmacokinetic Study", + "instanceType": "Code" + } + ], + "model": { + "id": "Code_156", + "extensionAttributes": [], + "code": "C82639", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Parallel Study", + "instanceType": "Code" + }, + "intentTypes": [ + { + "id": "Code_152", + "extensionAttributes": [], + "code": "C49656", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Treatment Study", + "instanceType": "Code" + } + ], + "blindingSchema": { + "id": "AliasCode_23", + "extensionAttributes": [], + "standardCode": { + "id": "Code_151", + "extensionAttributes": [], + "code": "C15228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Double Blind Study", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + } + } + ], + "titles": [ + { + "id": "StudyTitle_1", + "extensionAttributes": [], + "text": "LZZT", + "type": { + "id": "Code_7", + "extensionAttributes": [], + "code": "C94108", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Study Acronym", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_2", + "extensionAttributes": [], + "text": "Xanomeline (LY246708)", + "type": { + "id": "Code_9", + "extensionAttributes": [], + "code": "C99905x1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brief Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_3", + "extensionAttributes": [], + "text": "Safety and Efficacy of the Xanomeline Transdermal Therapeutic System (TTS) in Patients with Mild to Moderate Alzheimer's Disease", + "type": { + "id": "Code_10", + "extensionAttributes": [], + "code": "C99905x2", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Official Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + }, + { + "id": "StudyTitle_4", + "extensionAttributes": [], + "text": "Safety and Efficacy of the Xanomeline Transdermal Therapeutic System (TTS) in Patients with Mild to Moderate Alzheimer's Disease", + "type": { + "id": "Code_11", + "extensionAttributes": [], + "code": "C99905x3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Public Study Title", + "instanceType": "Code" + }, + "instanceType": "StudyTitle" + } + ], + "eligibilityCriterionItems": [ + { + "id": "EligibilityCriterionItem_1", + "extensionAttributes": [], + "name": "IN01", + "label": null, + "description": null, + "text": "

      Males and postmenopausal females at least years of age.

      ", + "dictionaryId": "SyntaxTemplateDictionary_1", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_2", + "extensionAttributes": [], + "name": "IN02", + "label": null, + "description": null, + "text": "

      as defined by National Institute of Neurological and Communicative Disorders and Stroke (NINCDS) and the Alzheimer's Disease and Related Disorders Association (ADRDA) guidelines (Attachment LZZT.7).

      ", + "dictionaryId": "SyntaxTemplateDictionary_1", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_3", + "extensionAttributes": [], + "name": "IN03", + "label": null, + "description": null, + "text": "

      score of 10 to 23.

      ", + "dictionaryId": "SyntaxTemplateDictionary_2", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_4", + "extensionAttributes": [], + "name": "IN04", + "label": null, + "description": null, + "text": "

      score of \u22644 (Attachment LZZT.8).

      ", + "dictionaryId": "SyntaxTemplateDictionary_2", + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_5", + "extensionAttributes": [], + "name": "IN05", + "label": null, + "description": null, + "text": "

      CNS imaging (CT scan or MRI of brain) compatible with AD within past 1 year.

      \n

      The following findings are incompatible with AD:

      \n
        \n
      1. \n

        Large vessel strokes

        \n
          \n
        1. \n

          Any definite area of encephalomalacia consistent with ischemic necrosis in any cerebral artery territory.

          \n
        2. \n
        3. \n

          Large, confluent areas of encephalomalacia in parieto-occipital or frontal regions consistent with watershed\n infarcts.

          \n

          The above are exclusionary. Exceptions are made for small areas of cortical asymmetry which may represent a\n small cortical stroke or a focal area of atrophy provided there is no abnormal signal intensity in the\n immediately underlying parenchyma. Only one such questionable area allowed per scan, and size is restricted to\n \u22641cm in frontal/parietal/temporal cortices and \u22642 cm in occipital cortex.

          \n
        4. \n
        \n
      2. \n
      3. \n

        Small vessel ischemia

        \n
          \n
        1. \n

          Lacunar infarct is defined as an area of abnormal intensity seen on CT scan or on both T1 and T2 weighted MRI\n images in the basal ganglia, thalamus or deep white matter which is \u22641 cm in maximal diameter. A maximum of\n one\n lacune is allowed per scan.

          \n
        2. \n
        3. \n

          Leukoariosis or leukoencephalopathy is regarded as an abnormality seen on T2 but not T1 weighted MRIs, or on\n CT. This is accepted if mild or moderate in extent, meaning involvement of less than 25% of cortical white\n matter.\n

        4. \n
        \n
      4. \n
      5. \n

        Miscellaneous

        \n
          \n
        1. \n

          Benign small extra-axial tumors (ie, meningiomas) are accepted if they do not contact or indent the brain\n parenchyma.

          \n
        2. \n
        3. \n

          Small extra-axial arachnoid cysts are accepted if they do not indent or deform the brain parenchyma.

          \n
        4. \n
        \n
      6. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_6", + "extensionAttributes": [], + "name": "IN06", + "label": null, + "description": null, + "text": "

      Investigator has obtained informed consent signed by the patient (and/or legal representative) and by the caregiver.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_7", + "extensionAttributes": [], + "name": "IN07", + "label": null, + "description": null, + "text": "

      Geographic proximity to investigator's site that allows adequate follow-up.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_8", + "extensionAttributes": [], + "name": "IN08", + "label": null, + "description": null, + "text": "

      A reliable caregiver who is in frequent or daily contact with the patient and who will accompany the patient to the office and/or be available by telephone at designated times, will monitor administration of prescribed medications, and will be responsible for the overall care of the patient at home. The caregiver and the patient must be able to communicate in English and willing to comply with 26 weeks of transdermal therapy.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_9", + "extensionAttributes": [], + "name": "EX01", + "label": null, + "description": null, + "text": "

      Persons who have previously completed or withdrawn from this study or any other study investigating xanomeline TTS or the oral formulation of xanomeline.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_10", + "extensionAttributes": [], + "name": "EX02", + "label": null, + "description": null, + "text": "

      Use of any investigational agent or approved Alzheimer's therapeutic medication within 30 days prior to enrollment into the study.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_11", + "extensionAttributes": [], + "name": "EX03", + "label": null, + "description": null, + "text": "

      Serious illness which required hospitalization within 3 months of screening.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_12", + "extensionAttributes": [], + "name": "EX04", + "label": null, + "description": null, + "text": "

      Diagnosis of serious neurological conditions, including

      \n
        \n
      1. Stroke or vascular dementia documented by clinical history and/or radiographic findings interpretable by the investigator as indicative of these disorders

      2. \n
      3. Seizure disorder other than simple childhood febrile seizures

      4. \n
      5. Severe head trauma resulting in protracted loss of consciousness within the last 5 years, or multiple episodes of head trauma

      6. \n
      7. Parkinson's disease

      8. \n
      9. Multiple sclerosis

      10. \n
      11. Amyotrophic lateral sclerosis

      12. \n
      13. Myasthenia gravis.

      14. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_13", + "extensionAttributes": [], + "name": "EX05", + "label": null, + "description": null, + "text": "

      Episode of depression meeting DSM-IV criteria within 3 months of screening.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_14", + "extensionAttributes": [], + "name": "EX06", + "label": null, + "description": null, + "text": "

      A history within the last 5 years of the following:

      \n
        \n
      1. Schizophrenia

      2. \n
      3. Bipolar Disease

      4. \n
      5. Ethanol or psychoactive drug abuse or dependence.

      6. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_15", + "extensionAttributes": [], + "name": "EX07", + "label": null, + "description": null, + "text": "

      A history of syncope within the last 5 years.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_16", + "extensionAttributes": [], + "name": "EX08", + "label": null, + "description": null, + "text": "

      Evidence from ECG recording at screening of any of the following conditions :

      \n
        \n
      1. Left bundle branch block

      2. \n
      3. Bradycardia \u226450 beats per minute

      4. \n
      5. Sinus pauses >2 seconds

      6. \n
      7. Second or third degree heart block unless treated with a pacemaker

      8. \n
      9. Wolff-Parkinson-White syndrome

      10. \n
      11. Sustained supraventricular tachyarrhythmia including SVT\u226510 sec, atrial fibrillation, atrial flutter.

      12. \n
      13. Ventricular tachycardia at a rate of \u2265120 beats per minute lasting\u226510 seconds.

      14. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_17", + "extensionAttributes": [], + "name": "EX09", + "label": null, + "description": null, + "text": "

      A history within the last 5 years of a serious cardiovascular disorder, including

      \n
        \n
      1. Clinically significant arrhythmia

      2. \n
      3. Symptomatic sick sinus syndrome not treated with a pacemaker

      4. \n
      5. Congestive heart failure refractory to treatment

      6. \n
      7. Angina except angina controlled with PRN nitroglycerin

      8. \n
      9. Resting heart rate <50 or >100 beats per minute, on physical exam

      10. \n
      11. Uncontrolled hypertension.

      12. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_18", + "extensionAttributes": [], + "name": "EX10", + "label": null, + "description": null, + "text": "

      A history within the last 5 years of a serious gastrointestinal disorder, including

      \n
        \n
      1. Chronic peptic/duodenal/gastric/esophageal ulcer that are untreated or refractory to treatment

      2. \n
      3. Symptomatic diverticular disease

      4. \n
      5. Inflammatory bowel disease

      6. \n
      7. Pancreatitis

      8. \n
      9. Hepatitis

      10. \n
      11. Cirrhosis of the liver.

      12. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_19", + "extensionAttributes": [], + "name": "EX11", + "label": null, + "description": null, + "text": "

      A history within the last 5 years of a serious endocrine disorder, including

      \n
        \n
      1. Uncontrolled Insulin Dependent Diabetes Mellitus (IDDM)

      2. \n
      3. Diabetic ketoacidosis

      4. \n
      5. Untreated hyperthyroidism

      6. \n
      7. Untreated hypothyroidism

      8. \n
      9. Other untreated endocrinological disorder

      10. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_20", + "extensionAttributes": [], + "name": "EX12", + "label": null, + "description": null, + "text": "

      A history within the last 5 years of a serious respiratory disorder, including

      \n
        \n
      1. Asthma with bronchospasm refractory to treatment

      2. \n
      3. Decompensated chronic obstructive pulmonary disease.

      4. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_21", + "extensionAttributes": [], + "name": "EX13", + "label": null, + "description": null, + "text": "

      A history within the last 5 years of a serious genitourinary disorder, including

      \n
        \n
      1. Renal failure

      2. \n
      3. Uncontrolled urinary retention.

      4. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_22", + "extensionAttributes": [], + "name": "EX14", + "label": null, + "description": null, + "text": "

      A history within the last 5 years of a serious rheumatologic disorder, including

      \n
        \n
      1. Lupus

      2. \n
      3. Temporal arteritis

      4. \n
      5. Severe rheumatoid arthritis.

      6. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_23", + "extensionAttributes": [], + "name": "EX15", + "label": null, + "description": null, + "text": "

      A known history of human immunodeficiency virus (HIV) within the last 5 years.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_24", + "extensionAttributes": [], + "name": "EX16", + "label": null, + "description": null, + "text": "

      A history within the last 5 years of a serious infectious disease including

      \n
        \n
      1. a) Neurosyphilis

      2. \n
      3. b) Meningitis

      4. \n
      5. c) Encephalitis.

      6. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_25", + "extensionAttributes": [], + "name": "EX17", + "label": null, + "description": null, + "text": "

      A history within the last 5 years of a primary or recurrent malignant disease with the exception of resected cutaneous squamous cell carcinoma in situ, basal cell carcinoma, cervical carcinoma in situ, or in situ prostate cancer with a normal PSA postresection.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_26", + "extensionAttributes": [], + "name": "EX18", + "label": null, + "description": null, + "text": "

      Visual, hearing, or communication disabilities impairing the ability to participate in the study; (for example, inability to speak or understand English, illiteracy).

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_27", + "extensionAttributes": [], + "name": "EX19", + "label": null, + "description": null, + "text": "

      Laboratory test values exceeding the Lilly Reference Range III for the patient's age in any of the following analytes: \u2191 creatinine, \u2191 total bilirubin, \u2191 SGOT, \u2191 SGPT, \u2191 alkaline phosphatase, \u2191 GGT, \u2191\u2193 hemoglobin, \u2191\u2193 white blood cell count, \u2191\u2193 platelet count, \u2191\u2193 serum sodium, potassium, or calcium.

      \n

      If values exceed these laboratory reference ranges, clinical significance will be judged by the monitoring physicians. If the monitoring physician determines that the deviation from the reference range is not clinically significant, the patient may be included in the study. This decision will be documented.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_28", + "extensionAttributes": [], + "name": "EX20", + "label": null, + "description": null, + "text": "

      Central laboratory test values below reference range for folate, and Vitamin B 12 , and outside reference range for thyroid function tests.

      \n
        \n
      1. \n

        Folate reference range 2.0 to 25.0 ng/mL. Patients will be allowed to enroll if their folate levels are above the upper end of the range if patients are taking vitamin supplements.

        \n
      2. \n
      3. \n

        Vitamin B 12 reference range 130 to 900 pg/mL. Patients will be allowed to enroll if their B 12 levels are above the upper reference range if patients are taking oral vitamin supplements.

        \n
      4. \n
      5. \n

        Thyroid functions

        \n
          \n
        1. \n

          Thyroid Uptake reference range 25 to 38%. Patients will be allowed to enroll with results of 23 to 51% provided the remainder of the thyroid profile is normal and there are no clinical signs or symptoms of thyroid abnormality.

          \n
        2. \n
        3. \n

          TSH reference range 0.32 to 5.0. Patients will be allowed to enroll with results of 0.03 to 6.2 if patients are taking stable doses of exogenous thyroid supplements, with normal free thyroid index, and show no clinical signs or symptoms of thyroid abnormality.

          \n
        4. \n
        5. \n

          Total T4 reference range 4.5 to 12.5. Patients will be allowed to enroll with results of 4.1 to 13.4 if patients are taking stable doses of exogenous thyroid hormone, with normal free thyroid index, and show no clinical signs or symptoms of thyroid abnormality.

          \n
        6. \n
        7. \n

          Free Thyroid Index reference range 1.1 to 4.6.

          \n
        8. \n
        \n
      6. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_29", + "extensionAttributes": [], + "name": "EX21", + "label": null, + "description": null, + "text": "

      Positive syphilis screening.

      \n

      Positive syphilis screening. As determined by positive RPR followed up by confirmatory FTA-Abs. Confirmed patients are excluded unless there is a documented medical history of an alternative disease (for example, yaws) which caused the lab abnormality.

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_30", + "extensionAttributes": [], + "name": "EX22", + "label": null, + "description": null, + "text": "

      Glycosylated hemoglobin (A1C). Required only on patients with known diabetes mellitus or random blood sugar >200 on screening labs. Patients will be excluded if levels are >9.5%

      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + }, + { + "id": "EligibilityCriterionItem_31", + "extensionAttributes": [], + "name": "EX23", + "label": null, + "description": null, + "text": "

      Treatment with the following medications within the specified washout periods prior to enrollment and during the\n study:

      \n
        \n
      1. \n

        Anticonvulsants including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Depakote® (valproic acid) 2 weeks
        Dilantin® (phenytoin)2 weeks
        Felbatol®\n (felbamate)1 month
        Klonopin® (clonazepam)2\n weeks
        Lamictal® (lamotrigine)2 weeks
        Mysoline® (primidone)1 month
        Neurontin®\n (gabapentin)2 weeks
        Phenobarbitol1 month
        Tegretol® (carbamazepine)2 weeks
        \n
      2. \n
      3. \n

        Alpha receptor blockers including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Aldomet® (methyldopa) 2 weeks
        Cardura®\n (doxazosin) 2 weeks
        Catapres® (clonidine)\n 2 weeks
        Hytrin® (terazosin) 2 weeks
        Minipress® (prazosin)2 weeks
        Tenex® (guanfacine)2 weeks
        Wytensin®\n (guanabenz) 2 weeks
        \n

        The use of low doses\n (2 mg daily) of either Hytrin® or Cardura® for relief of\n urinary retention for patients with prostatic hypertrophy will be considered\n on a case-by-case basis provided blood pressure is stable and the medication\n has not had demonstrable effect on dementia symptoms in the opinion of the treating\n physician. Contact CRO medical monitor.

        \n
      4. \n
      5. \n

        Calcium channel blockers\n that are CNS active including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Calan® , Isoptin® , Verelan® (verapamil) 2 weeks
        Cardizem® (diltiazem) 2 weeks
        Nimotop®\n (nimodipine) 2 weeks
        Adalat® , Procardia XL®\n (nifedipine) 2 weeks
        \n

        Cardene® (nicardipine),\n Norvasc® , (amlodipine), and DynaCirc® (isradipine) will\n be allowed during the study. If a patient is taking an excluded calcium channel\n blocker and is changed to an equivalent dose of an allowed calcium channel blocker,\n enrollment may proceed in as little as 24 hours though 1 week is preferred when\n possible.

        \n
      6. \n
      7. \n

        Beta blockers including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Betapace® (sotalol) 2 weeks
        Inderal® (propranolol) 2 weeks
        Lopressor®\n , Toprol XL® (metoprolol) 2 weeks
        Corgard® (nadolol) 2 weeks
        Sectral® (acebutolol)2 weeks
        Tenormin® (atenolol) 2 weeks
        Visken® (pindolol)2 weeks
        \n

        Beta\n blocker eye drops for glaucoma will be considered on a case-by-case basis. Call\n medical monitor.

        \n
      8. \n
      9. \n

        Beta sympathomimetics (unless inhaled) including\n but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Alupent® tablets\n (metaproterenol) 2 weeks
        Brethine® tablets\n (terbutaline) 2 weeks
        Dopamine 2 weeks
        Proventil Repetabs® , Ventolin® tablets (albuterol tablets)\n 2 weeks
        \n
      10. \n
      11. Parasympathomimetics (cholinergics) (unless opthalmic) including but not limited to\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Antilirium® (physostigmine) 1 month
        Aricept® (donepezil) 1 month
        Cognex® (tacrine) 1\n month
        Mestinon® (pyridostigmine) 1 week
        Reglan® (metoclopramide)2 weeks
        Urecholine®\n , Duvoid (bethanechol) 2 weeks
        \n

        Cholinergic eye drops for treatment of glaucoma will be allowed during the study on a case-by-case basis.\n Please contact the CRO medical monitor.

        \n
      12. \n
      13. \n

        Muscle relaxants-centrally active including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Equanil® (meprobamate) 2 weeks
        Flexeril® (cyclobenzaprine)2 weeks
        Lioresal® (baclofen) 2 weeks
        Norflex® (orphenadrine) 2 weeks
        Parafon Forte® (chlorzoxazone)2 weeks
        Robaxin® (methocarbamol) 2 weeks
        Skelaxin® (metaxalone)\n 2 weeks
        Soma® (carisoprodol) 2 weeks
        \n
      14. \n
      15. \n

        Monamine oxidase inhibitors (MAOI) including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Eldepryl® (selegiline)1 month
        Nardil® (phenelzine) 1 month
        Parnate® (tranylcypromine) 1 month
        \n
      16. \n
      17. \n

        Parasympatholytics including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Antivert® , Bonine® , Dramamine II® (meclizine)3 days
        Artane® (trihexyphenidyl)2 weeks
        Bellergal-S® (alkaloids of belladonna and ergotamine) 2 weeks
        Bentyl® (dicyclomine) 3 days
        Cogentin® (benztropine) 2 weeks
        Cystospaz®, Levsin® , Levsinex® (hyoscyamine)2 weeks
        Ditropan®\n (oxybutynin) 2 weeks
        Donnatal® , Hyosophen®\n (atropine, scopolamine, hyoscyamine and phenobarbitol) 1 month
        Dramamine® (dimenhydrinate)3 days
        Lomotil®, Lonox® (atropine, diphenoxylate) 2 weeks
        Pro-Banthine®(propantheline) 2 weeks
        Robinul® (glycopyrrolate)3 days
        Tigan® (trimethobenzamide) 3 days
        Transderm-Scop® (scopolamine) 2 weeks
        Urispas® (flavoxate)2 weeks
        \n
      18. \n
      19. \n

        Antidepressants including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Anafranil® (clomipramine) 1 month
        Asendin®\n (amoxapine) 1 month
        Desyrel® (trazodone)\n 1 month
        Effexor® (venlafaxine) 1 month
        Elavil® (amitriptyline) 1 month
        Ludiomil®\n (maprotiline) 1 month
        Norpramin® (desipramine)\n 1 month
        Pamelor® , Aventyl® (nortriptyline) 1\n month
        Paxil® (paroxetine) 1 month
        Prozac®\n (fluoxetine 1 month
        Remeron® (mirtazapine)\n 1 month
        Serzone® (nefazodone) 1 month
        Sinequan®\n (doxepin) 1 month
        Tofranil® (imipramine)\n 1 month
        Vivactil® (protriptyline) 1 month
        Wellbutrin® (bupropion) 1 month
        Zoloft®\n (sertraline) 1 month
        \n
      20. \n
      21. \n

        Systemic corticosteroids including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Cortisone2 weeks
        Decadron® (dexamethasone)2 weeks
        Depo-Medrol® (methylprednisolone)1 month\n
        Prednisone2 weeks
        \n
      22. \n
      23. \n

        Xanthine derivatives\n including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Aminophylline2 weeks\n
        Fioricet® , Esgic® , Phrenilin Forte® (caffeine, butalbital)3 days\n
        Theo-Dur® (theophylline)2 weeks\n
        Wigraine® , Cafergot® (caffeine, ergotamine)3 days\n
        \n
      24. \n
      25. \n

        Histamine (H2 ) antagonists including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Axid® (nizatidine)1 week
        Pepcid® (famotidine)1 week
        Tagamet® (cimetidine)1 week
        Zantac® (ranitidine)1 week
        \n

        If an H 2 antagonist is needed by the patient, Axid® will be allowed on a case-by-case\n basis. Please consult CRO medical monitor.

        \n
      26. \n
      27. \n

        Narcotic Analgesics including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Darvocet-N\n 100® , (propoxyphene)1 week
        Demerol® (meperidine)1\n week
        Dilaudid® (hydromorphone)1 week
        Duragesic® (fentanyl)1 week
        MS\n Contin® , Roxanol® , Oramorph® (morphine) 1 week
        Percocet® , Roxicet® (oxycodone with acetaminophen)3\n days
        Percodan® , Roxiprin1 week
        Stadol® (butorphanol)1 week
        Talacen®\n (pentazocine)1 week
        Tylenol #2® , #3®\n , #4® (codeine and acetaminophen) 3 days
        Tylox®\n , Roxilox® (oxycodone)3 days
        Vicodin®, Lorcet® (hydrocodone)1 week
        \n

        Percocet\n (oxycodone with acetaminophen) and Tylenol® with codeine #2, #3, #4\n (acetaminophen + codeine) ARE allowed in the month prior to enrollment, but\n are not permitted in the 3 days prior to enrollment.

        \n
      28. \n
      29. \n

        Neuroleptics\n (antipsychotics) including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Clozaril®\n (clozapine)2 weeks
        Haldol® (haloperidol)2\n weeks
        Loxitane® (loxapine)2 weeks
        Mellaril® (thioridazine)2 weeks
        Moban®\n (molindone)2 weeks
        Navane® (thiothixene)2\n weeks
        Orap® (pimozide)2 weeks
        Prolixin® (fluphenazine)1 month
        Risperdal®\n (risperidone)2 weeks
        Stelazine® (trifluoperazine)2\n weeks
        Thorazine® (chlorpromazine)2 weeks
        Trilafon® (perphenazine)2 weeks
        Serentil®\n (mesoridazine)2 weeks
        \n

        The use of neuroleptics\n on a daily basis must be discontinued 2 to 4 weeks prior to enrollment. The\n use of neuroleptics on an as-needed basis is allowable during the screening\n period, but the last dose must be at least 7 days prior to enrollment.

        \n
      30. \n
      31. \n

        Antianxiety agents including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Atarax® (hydroxyzine)2 weeks
        BuSpar®\n (buspirone)2 weeks
        Librium® (chlordiazepoxide)2 weeks
        Serax® (oxazepam)2 weeks
        Tranxene® (clorazepate)2 weeks
        Valium® (diazepam)2 weeks
        Vistaril® (hydroxyzine pamoate)2 weeks
        Xanax® (alprazolam)2 weeks
        \n

        Ativan® (lorazepam) should be discontinued on a daily\n basis 2 weeks

        \n

        prior to enrollment. It may be used on an as-needed\n basis during the screening period, but is not permitted in the 24 hours prior\n to enrollment.

        \n
      32. \n
      33. \n

        Hypnotics/Sedatives including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Ambien® (zolpidem) 3 days\n
        Dalmane® (flurazepam)3 days
        Doral® (quazepam)3 days
        Halcion® (triazolam)3 days
        Nembutal® 2 weeks
        ProSom® (estazolam)3 days
        Restoril®\n (temazepam)3 days
        Seconal®2 weeks
        \n

        Chloral Hydrate is allowed on an as-needed basis during screening, but is not permitted in the 24 hours prior to enrollment.

        \n
      34. \n
      35. \n

        Histamine (H1 ) antagonists including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Actifed® , Actifed Plus® (triprolidine) Benadryl®\n , Unisom® , Tylenol P.M.® 3 days
        (diphenhydramine)3 days
        Compazine® (prochlorperazine)3 days
        Contac® , Coricidin D® , Sinutab® , Novahistine® , Alka\n Seltzer Plus® , Naldecon® , Sudafed Plus® , Tylenol Cold® , Tylenol\n Cold and Flu® (chlorpheniramine)3 days
        Dimetapp®\n (brompheniramine)3 days
        Drixoral® (dexbrompheniramine)3 days
        Hismanal® (astemizole)1 week
        Phenergan®\n (promethazine)3 days
        Seldane® (terfenadine)1\n week
        Tavist® (clemastine fumarate)3 days
        Zyrtec® (cetrizine) 1 week
        \n

        Allegra®\n (fexofenadine hydrochloride) or Claritin® (loratadine) may be taken\n on as-needed basis during screening but must be discontinued within 24 hours\n of enrollment.\n

        \n
      36. \n
      37. \n

        Stimulants including but not limited to

        \n \n \n \n \n \n \n \n \n \n
        Cylert® (pemoline) 1 month
        Ritalin® (methylphenidate)1 month
        \n
      38. \n
      39. \n

        Antiarrhythmics including but not limited to the following

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Adenocard® (adenosine)
        Cordarone®\n (amiodarone)
        Ethmozine® (moricizine)
        Mexitil® (mexiletine)
        Norpace® (disopyramide)\n
        Procan® (procainamide)
        Quinaglute®\n (quinidine)
        Rythmol® (propafenone)
        Tambocor®\n (flecainide)
        Tonocard® (tocainide)
        \n

        Requirement of these drugs for control of cardiac arrhythmia indicates that\n the patient should be excluded from the study. If discontinuation of an antiarrhythmic\n is considered, please discuss case with CRO medical monitor.

        \n
      40. \n
      41. \n

        Miscellaneous drugs including but not limited to

        \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
        Coenzyme\n Q2 weeks
        Eskalith® , Lithobid® (lithium)2\n weeks
        Ginkgo biloba1 week
        Lecithin\n 1 week
        Lecithin 1 week
        Lupron2 weeks
        Tamoxifen1 month
        \n
      42. \n
      43. \n

        Estrogen supplements are permitted during the study, but dosage must be stable for at least 3 months prior to\n enrollment.

        \n
      44. \n
      ", + "dictionaryId": null, + "notes": [], + "instanceType": "EligibilityCriterionItem" + } + ], + "narrativeContentItems": [ + { + "id": "NarrativeContentItem_1", + "extensionAttributes": [], + "name": "NCI_1", + "text": "
      \n
      \n
      \n

      The information contained in this clinical study protocol is

      Copyright \u00a9 2006 Eli Lilly and Company.

      \n
      \n
      \n
      \n
      \n

      \n
      \n
      \n
      \n
      \n

      \n
      \n
      \n
      \n
      \n

      \n
      \n
      \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_2", + "extensionAttributes": [], + "name": "NCI_2", + "text": "

      The M1 muscarinic-cholinergic receptor is 1 of 5 characterized muscarinic-cholinergic receptor subtypes (Fisher and Barak 1994). M1 receptors in the cerebral cortex and hippocampus are, for the most part, preserved in Alzheimer's disease (AD), while the presynaptic neurons projecting to these receptors from the nucleus basalis of Meynert degenerate (Bierer et al. 1995). The presynaptic loss of cholinergic neurons has been correlated to the antimortum cognitive impairment in AD patients, prompting speculation that replacement therapy with cholinomimetics will alleviate the cognitive dysfunction of the disorder (Fisher and Barak 1994).

      \n

      Xanomeline is a novel M1 agonist which has shown high affinity for the M1 receptor subtype (in transfected cells), and substantially less or no affinity for other muscarinic subtypes. Positron emission tomography (PET) studies of 11C-labeled xanomeline in cynomolgus monkeys have suggested that the compound crosses the blood-brain barrier and preferentially binds the striatum and neocortex.

      \n

      Clinical development of an oral formulation of xanomeline for the indication of mild and moderate AD was initiated approximately 4 years ago. A large-scale study of safety and efficacy provided evidence that an oral dosing regimen of 75 mg three times daily (TID) may be associated with enhanced cognition and improved clinical global impression, relative to placebo. As well, a dramatic reduction in psychosis, agitation, and other problematic behaviors, which often complicate the course of the disease, was documented. However, the discontinuation rate associated with this oral dosing regimen was 58.6%, and alternative clinical strategies have been sought to improve tolerance for the compound.

      \n

      To that end, development of a Transdermal Therapeutic System (TTS) has been initiated. Relative to the oral formulation, the transdermal formulation eliminates high concentrations of xanomeline in the gastrointestinal (GI) tract and presystemic (firstpass) metabolism. Three transdermal delivery systems, hereafter referred to as the xanomeline TTS Formulation A, xanomeline TTS Formulation B, and xanomeline TTS formulation E have been manufactured by Lohman Therapy Systems GmbH of Andernach Germany. TTS Formulation A is 27 mg xanomeline freebase in a 25-cm2 matrix. TTS Formulation B is 57.6 mg xanomeline freebase in a 40-cm2 matrix. Formulation E has been produced in 2 patch sizes: 1) 54 mg xanomeline freebase with 0.06 mg Vitamin E USP in a 50-cm2 matrix and 2) 27 mg xanomeline freebase with 0.03 mg Vitamin E USP in a 25-cm2 matrix. For a detailed description of the composition of these formulations please refer to Part II, Section 14 of the Xanomeline (LY246708) Clinical Investigator's Brochure. For characterization of the safety, tolerance, and pharmacokinetics of xanomeline TTS Formulations A, B, and E, please refer to Part II, Sections 7, 8, and 10 of the Xanomeline (LY246708) Clinical Investigator's Brochure. Formulation E will be studied in this protocol, H2Q-MC-LZZT(c).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_3", + "extensionAttributes": [], + "name": "NCI_3", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_4", + "extensionAttributes": [], + "name": "NCI_4", + "text": "

      The primary objectives of this study are

      \n
        \n
      • \n
      • \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_5", + "extensionAttributes": [], + "name": "NCI_5", + "text": "

      The secondary objectives of this study are

      \n
        \n
      • \n
      • \n
      • \n
      • \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_6", + "extensionAttributes": [], + "name": "NCI_6", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_7", + "extensionAttributes": [], + "name": "NCI_7", + "text": "

      Patients with probable mild to moderate AD will be studied in a randomized, double-blind, parallel (3 arm), placebo-controlled trial of 26 weeks duration. The study will be conducted on an outpatient basis. Approximately 300 patients will be enrolled (see Schedule of Events for Protocol H2Q-MC-LZZT(c), Attachment LZZT.1).

      \n

      Following informed consent, patients will be screened at Visit 1. At screening, patients will undergo complete neuropsychiatric assessment, psychometric testing, and general medical assessment (including medical history, pre-existing conditions, physical examination). In addition, vital signs, temperature, medication history, electrocardiogram (ECG), chest x-ray, and safety laboratories will be obtained. During the screening visit, patients will wear a placebo TTS to determine willingness and ability to comply with transdermal administration procedures. If patients have not had central nervous system (CNS) imaging in the previous 12 months, a computed tomography (CT) or magnetic resonance imaging (MRI) scan will be obtained. If patients are insulin dependent diabetics, a hemoglobin A 1c will be obtained. Screening exams and procedures may be performed after Visit 1; however, their results must be completed and available prior to randomization. The screening process should occur within 2 weeks of randomization (Visit 3 of the study).

      \n

      Patients who meet enrollment criteria from Visit 1 will proceed to Visit 2 at which time they will undergo a 24-hour Ambulatory ECG. At Visit 3 the Ambulatory ECG will be removed and patients will be randomized to 1 of 3 treatment arms. The treatment arms will include a placebo arm, a low-dose xanomeline arm (50 cm 2 TTS Formulation E, 54 mg xanomeline), and a high-dose xanomeline arm (75 cm 2 TTS Formulation E, 81 mg xanomeline). All patients receiving xanomeline will be started at 50 cm 2 TTS Formulation E. For the first 8 weeks of treatment, patients will be assessed at clinic visits every 2 weeks and, thereafter, at clinic visits every 4 weeks. Patients who discontinue prior to Visit 12 (Week 24) will be brought back for full efficacy assessments at or near to 24 weeks, whenever possible.

      \n

      A Data Safety Monitoring Board (DSMB), chaired by an external cardiologist, will meet after 75, 150, 225, and 300 patients have completed 1 month of treatment. The DSMB will review cardiovascular findings to decide if discontinuation of the study or any treatment arm is appropriate, if additional cardiovascular monitoring is required, if further cardiovascular monitoring is unnecessary, or if adjustment of dose within a treatment arm (or arms) is appropriate (see Section 3.9.4).

      \n

      At Visits 3, 8, 10, and 12, efficacy instruments (ADAS-Cog, CIBIC+, and DAD) will be administered. NPI-X will be administered at 2-week intervals either at clinic visits or via a telephone interview. Vital signs, temperature, and an assessment of adverse events will

      \n

      be obtained at all clinic visits. An electrocardiogram (ECG), and chemistry/hematology safety labs will be obtained at Visits 4, 5, 7, 8, 9, 10, 11, 12, and 13. Urinalysis will be done at Visits 4, 9, and 12. Use of concomitant medications will be collected at Visits 3, 4, 5, 7, 8, 9, 10, 11, 12, and 13. Plasma levels of xanomeline and metabolites will be obtained at Visits 3, 4, 5, 7, 9, and 11. At Visits 3, 4, 5, 7, 8, 9, 10, 11, and 12, medications will be dispensed to the patients.

      \n

      Visits 1 through 13 should be scheduled relative to Visit 3 (Week 0 - randomization). Visits 4, 5, 7, 8, and 13 should occur within 3 days of their scheduled date. Visits 9, 10, 11, and 12 should occur within 4 days of their scheduled date. At Visit 13 patients will be given the option to enter the open-label extension phase (see Section 3.10.3. Study Extensions).

      \n\"Alt\n

      Figure LZZT.1. Illustration of study design for Protocol H2Q-MC-LZZT(c).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_8", + "extensionAttributes": [], + "name": "NCI_8", + "text": "

      Previous studies of the oral formulation have shown that xanomeline tartrate may improve behavior and cognition. Effects on behavior are manifest within 2 to 4 weeks of initiation of treatment. The same studies have shown that 8 to 12 weeks are required to demonstrate effects on cognition and clinical global assessment. This study is intended to determine the acute and chronic effects of the TTS formulation in AD; for that reason, the study is of 26 weeks duration. Dosage specification has been made on the basis of tolerance to the xanomeline TTS in a clinical pharmacology study (H2Q-EW-LKAA), and target plasma levels as determined in studies of the oral formulation of xanomeline (H2Q-MC-LZZA).

      \n

      The parallel dosing regimen maximizes the ability to make direct comparisons between the treatment groups. The use of placebo allows for a blinded, thus minimally biased, study. The placebo treatment group is a comparator group for efficacy and safety assessment.

      \n

      Two interim analyses are planned for this study. The first interim analysis will occur when 50% of the patients have completed Visit 8 (8 weeks). If required, the second interim analysis will occur when 50% of the patients have completed Visit 12 (24 weeks). (See Section 4.6, Interim Analyses.)

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_9", + "extensionAttributes": [], + "name": "NCI_9", + "text": "

      The name, title, and institution of the investigator(s) is/are listed on the Investigator/Contacts cover pages provided with this protocol. If the investigator is changed after the study has been approved by an ethical review board, or a regulatory agency, or by Lilly, this addition will not be considered a change to the protocol. However, the Investigator/Contacts cover pages will be updated to provide this information.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_10", + "extensionAttributes": [], + "name": "NCI_10", + "text": "

      The final report coordinating investigator will sign the final clinical study report for this study, indicating agreement with the analyses, results, and conclusions of the report.

      \n

      The investigator who will serve as the final report coordinating investigator will be an individual that is involved with the design and analysis of the study. This final report coordinating investigator will be named by the sponsor of the study.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_11", + "extensionAttributes": [], + "name": "NCI_11", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_12", + "extensionAttributes": [], + "name": "NCI_12", + "text": "

      An Ethical Review Board (ERB) approved informed consent will be signed by the patient (and/or legal representative) and caregiver after the nature of the study is explained.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_13", + "extensionAttributes": [], + "name": "NCI_13", + "text": "

      For Lilly studies, the following definitions are used:

      \n
      \n
      Screen
      \n
      \n

      Screening is the act of determining if an individual meets minimum requirements to become part of a pool of potential candidates for participation in a clinical study.

      \n

      In this study, screening will include asking the candidate preliminary questions (such as age and general health status) and conducting invasive or diagnostic procedures and/or tests (for example, diagnostic psychological tests, x-rays, blood draws). Patients will sign the consent at their screening visit, thereby consenting to undergo the screening procedures and to participate in the study if they qualify.

      \n
      \n
      \n
      \n
      To enter
      \n
      \n

      Patients entered into the study are those from whom informed consent for the study has been obtained. Adverse events will be reported for each patient who has entered the study, even if the patient is never assigned to a treatment group (enrolled).

      \n
      \n
      \n
      \n
      To enroll
      \n
      \n

      Patients who are enrolled in the study are those who have been assigned to a treatment group. Patients who are entered into the study but fail to meet criteria specified in the protocol for treatment assignment will not be enrolled in the study.

      \n
      \n
      \n

      At Visit 1, patients who meet the enrollment criteria of Mini-Mental State Examination (MMSE) score of 10 to 23 (Attachment LZZT.6), Hachinski Ischemia Score \u22644 (Attachment LZZT.8), a physical exam, safety labs, ECG, and urinalysis, will proceed to Visit 2 and Visit 3. At Visit 3, patients whose CNS imaging and other pending labs from Visit 1 satisfy the inclusion criteria (Section 3.4.2.1) will be enrolled in the study. Approximately 300 patients with a diagnosis of probable mild to moderate AD will be enrolled in the study.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_14", + "extensionAttributes": [], + "name": "NCI_14", + "text": "

      Patients may be included in the study only if they meet all the following criteria:

      \n
      01
      02
      03
      04
      05
      06
      07
      08
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_15", + "extensionAttributes": [], + "name": "NCI_15", + "text": "

      Patients will be excluded from the study for any of the following reasons:

      \n
      09
      10
      11
      12
      13
      14
      15
      16b
      17
      18
      19
      20
      21
      22
      23
      24
      25
      26
      27b
      28b
      29b
      30b
      31b
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_16", + "extensionAttributes": [], + "name": "NCI_16", + "text": "

      The criteria for enrollment must be followed explicitly. If there is inadvertent enrollment of individuals who do not meet enrollment criteria, these individuals should be discontinued from the study. Such individuals can remain in the study only if there are ethical reasons to have them continue. In these cases, the investigator must obtain approval from the Lilly research physician for the study participant to continue in the study (even if the study is being conducted through a contract research organization).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_17", + "extensionAttributes": [], + "name": "NCI_17", + "text": "

      Probable AD will be defined clinically by NINCDS/ADRDA guidelines as follows:

      \n
        \n
      • Diagnosis of probable AD as defined by National Institute of Neurological and Communicative Disorders and Stroke (NINCDS) and the Alzheimer's Disease and Related Disorders Association (ADRDA) guidelines.

      • \n
      • Mild to moderate severity of AD will be defined by the Mini-Mental State Exam as follows:

      • \n
      • Mini-Mental State Examination (MMSE) score of 10 to 23.

      • \n
      • The absence of other causes of dementia will be performed by clinical opinion and by the following:

      • \n
      • Hachinski Ischemic Scale score of \u22644.

      • \n
      • CNS imaging (CT scan or MRI of brain) compatible with AD within past 1 year (see Section 3.4.2.1).

      • \n
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_18", + "extensionAttributes": [], + "name": "NCI_18", + "text": "

      Approximately 100 patients will be randomized to each of the 3 treatment groups. Previous experience with the oral formulation of xanomeline suggests that this sample size has 90% power to detect a 3.0 mean treatment difference in ADAS-Cog (p<.05, two-sided), based on a standard deviation of 6.5. Furthermore, this sample size has 80% power to detect a 0.36 mean treatment difference in CIBIC+ (p<.05, two-sided), based on a standard deviation of 0.9.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_19", + "extensionAttributes": [], + "name": "NCI_19", + "text": "

      Commencing at Visit 1, all patients will be assigned an identification number. This identification number and the patient's three initials must appear on all patient-related documents submitted to Lilly.

      \n

      When qualified for enrollment at Visit 3 the patient will be randomized to 1 of 3 treatment arms.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_20", + "extensionAttributes": [], + "name": "NCI_20", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_21", + "extensionAttributes": [], + "name": "NCI_21", + "text": "
      \n\n\n\n\n\n\n

      Primary Study Material:

      Xanomeline

      TTS (adhesive patches)

      50 cm 2 , 54 mg* 25 cm 2 , 27 mg*

      Comparator Material:

      Placebo

      TTS

      Identical in appearance to primary study material

      \n

      *All doses are measured in terms of the xanomeline base.

      \n

      Patches should be stored at controlled room temperature, and all used patches must be handled and disposed of as biohazardous waste.

      \n

      For a detailed description of the composition of these formulations please refer to Part II, Section 14 of the Xanomeline (LY246708) Clinical Investigator's Brochure.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_22", + "extensionAttributes": [], + "name": "NCI_22", + "text": "

      To test acute tolerance of transdermal formulation, patients will have a TTS (placebo) administered at the start of Visit 1, and removed at the conclusion of Visit 1. The patient's and caregiver's willingness to comply with 26 weeks of transdermal therapy should be elicited, and those patients/caregivers unwilling to comply should be excluded.

      \n

      Upon enrollment at Visit 3, and on the morning of each subsequent day of therapy , xanomeline or placebo will be administered with the application of 2 adhesive patches, one 50 cm2 in area, the other 25 cm2 in area. Each morning, prior to the application of the patches, hydrocortisone cream (1%) should be applied to the skin at the intended site of administration, rubbed in, and allowed to penetrate for approximately 30 minutes. Thereafter, excess cream should be wiped away and the patches applied.

      \n

      The patches are to be worn continuously throughout the day, for a period of approximately 12 to 14 hours, and removed in the evening. After removal of the patches, hydrocortisone cream (1%) should be applied locally to the site of administration.

      \n

      Patches should be applied to a dry, intact, non-hairy area. Applying the patch to a shaved area is not recommended. The application site of the patches should be rotated according to the following schedule:

      \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n

      Day

      Patch Location

      Sunday

      right or left upper arm

      Monday

      right or left upper back

      Tuesday

      right or left lower back (above belt line)

      Wednesday

      right or left buttocks

      Thursday

      right or left mid-axillary region

      Friday

      right or left upper thigh

      Saturday

      right or left upper chest

      \n

      Patients and caregivers are free to select either the left or right site within the constraints of the rotation schedule noted above. Patches should be applied at approximately the same time each day. For patients who habitually bathe in the morning, the patient should bathe prior to application of new patches. Every effort should be taken to allow for morning administration of the patches. Exceptions allowing administration of TTS patches at night instead of in the morning will be made on a case-by-case basis by the CRO medical monitor. In the event that some adhesive remains on the patient's skin and cannot be removed with normal bathing, a special solution will be provided to remove the adhesive.

      \n

      Following randomization at Visit 3, patients will be instructed to call the site if they have difficulty with application or wearing of patches. In the event that a patch becomes detached, a new patch of the same size should be applied (at earliest convenience) to an area of the dermis adjacent to the detachment site, and the rotation schedule should be resumed the following morning. If needed, the edges of the patch may be secured with a special adhesive tape that will be provided. If daily doses are reduced, improperly administered, or if a patch becomes detached and requires application of a new patch on three or more days in any 30-day period, the CRO research physician will be notified.

      \n

      If the daily dose is reduced or improperly administered in the 24 hours prior to any scheduled clinic visit, the visit should be rescheduled (except for early termination and retrieval visits).

      \n

      Patients must be instructed to return all used and unused study drug to the investigator at each visit for proper disposal and CT reconciliation by the investigator.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_23", + "extensionAttributes": [], + "name": "NCI_23", + "text": "

      The study will be double-blind. To further preserve the blinding of the study, only a minimum number of Lilly and CRO personnel will see the randomization table and codes before the study is complete.

      \n

      Emergency codes generated by a computer drug-labeling system will be available to the investigator. These codes, which reveal the patients treatment group, may be opened during the study only if the choice of follow-up treatment depends on the patient's therapy assignment.

      \n

      The investigator should make every effort to contact the clinical research physician prior to unblinding a patient's therapy assignment. If a patient's therapy assignment is unblinded, Lilly must be notified immediately by telephone. After the study, the investigator must return all sealed and any opened codes.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_24", + "extensionAttributes": [], + "name": "NCI_24", + "text": "

      Intermittent use of chloral hydrate, zolpidem, or lorazepam is permitted during this clinical trial as indicated for agitation or sleep. If medication is required for agitation for a period exceeding 1 week, a review of the patient's status should be made in consultation with the CRO research physician. Caregivers and patients should be reminded that these medications should not be taken within 24 hours of a clinic visit (including the enrollment visit), and administration of efficacy measures should be deferred if the patient has been treated with these medications within the previous 24 hours.

      \n

      If an antihistamine is required during the study, Claritin\u00ae (loratadine) or Allegra\u00ae (fexofenadine hydrochloride) are the preferred agents, but should not be taken within 24 hours of a clinic visit. Intermittent use (per package insert) of antitussives (containing antihistamines or codeine) and select narcotic analgesics (acetaminophen with oxycodone, acetaminophen with codeine) are permitted during the trial. Caregivers and patients should be reminded that antihistamines and narcotics should not be taken within 3 days of a clinic efficacy visit (including enrollment visit). If an H 2 blocker is required during the study, Axid\u00ae (nizatidine) will be permitted on a case-by-case basis by the CRO medical monitor. For prostatic hypertrophy, small doses (2 mg per day) of Hytrin\u00ae (terazosin) or Cardura\u00ae (doxazosin) will be permitted on a case-by-case basis. Please consult the medical monitor. The calcium channel blockers Cardene\u00ae (nicardipine),

      \n

      Norvasc\u00ae (amlodipine), and DynaCirc\u00ae (isradipine) are allowed during the study. If a patient has been treated with any medication within disallowed time periods prior to the clinic visit, efficacy measures should be deferred.

      \n

      Other classes of medications not stated in Exclusion Criteria, Section 3.4.2.2, will be permitted. Patients who require treatment with an excluded medication (Section 3.4.2.2) will be discontinued from the study following consultation with the CRO research physician.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_25", + "extensionAttributes": [], + "name": "NCI_25", + "text": "
      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_26", + "extensionAttributes": [], + "name": "NCI_26", + "text": "

      See Schedule of Events, Attachment LZZT.1 for the times of the study at which efficacy data will be collected.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_27", + "extensionAttributes": [], + "name": "NCI_27", + "text": "

      The following measures will be performed in the course of the study. At Visits 3, 8, 10, and 12, ADAS-Cog, CIBIC+, and DAD will be administered. NPI-X will be administered at 2-week intervals either at clinic visits or via a telephone interview. Efficacy measures will also be collected at early termination visits, and at the retrieval visit. The neuropsychological assessment should be performed first; other protocol requirements, such as labs and the physical, should follow.

      \n
        \n
      1. Alzheimer's Disease Assessment Scale - Cognitive Subscale (ADAS-Cog): ADAS-Cog is an established measure of cognitive function in Alzheimer's Disease. This scale has been incorporated into this study by permission of Dr. Richard C. Mohs and the American Journal of Psychiatry and was adapted from an article entitled, \u201cThe Alzheimer's Disease Assessment Scale (ADAS),\u201d which was published in the American Journal of Psychiatry, Volume No.141, pages 1356-1364, November, 1984, Copyright 1984.

        \n

        The ADAS-Cog (11) and the ADAS-Cog (14): The ADAS-Cog (11) is a standard 11-item instrument used to assess word recall, naming objects, commands, constructional praxis, ideational praxis, orientation, word recognition tasks, spoken language ability, comprehension, word finding difficulty, and recall of test instructions. For the purposes of this study, three items (delayed word recall, attention/visual search task, and maze solution) have been added to the ADAS-Cog (11) to assess the patient's attention and concentration. The 14 item instrument will be referred to as the ADAS-Cog (14). At each efficacy visit, all 14 items will be assessed, and in subsequent data analyses, performance on the ADAS-Cog (14) and performance on the subset ADAS-Cog (11) will be considered.

      2. \n
      3. Video-referenced Clinician's Interview-Based Impression of Change (CIBIC+): The CIBIC+ is an assessment of the global clinical status relative to baseline. The CIBIC+ used in this study is derived from the Clinical Global Impression of Change, an instrument in the public domain, developed by the National Institute on Aging Alzheimer's Disease Study Units Program (1 U01 AG10483; Leon Thal, Principal Investigator). The instrument employs semi-structured interviews with the patient and caregiver, to assess mental/cognitive state, behavior, and function. These domains are not individually scored, but rather are aggregated in the assignment of a global numeric score on a 1 to 7 scale (1 = marked improvement; 4 = no change; and 7 = marked worsening).

        \n

        The clinician assessing CIBIC+ will have at least one year of experience with the instrument and will remain blinded to all other efficacy and safety measures.

      4. \n
      5. Revised Neuropsychiatric Inventory (NPI-X): The NPI-X is an assessment of change in psychopathology in patients with dementia. The NPI-X is administered to the designated caregiver. This instrument has been revised from its original version (Cummings et al. 1994) and incorporated into this study with the permission of Dr. Jeffrey L. Cummings.

      6. \n
      7. Disability Assessment for Dementia (DAD): The DAD is used to assess functional abilities of activities of daily living (ADL) in individuals with cognitive impairment. This scale has been revised and incorporated into this study by permission of Louise Gauthier, M.Sc., and Dr. Isabelle Gelinas. The DAD is administered to the designated caregiver.

      8. \n
      \n

      For each instrument, each assessment is to be performed by the same trained health care professional. If circumstances preclude meeting this requirement, the situation is to be documented on the Clinical Report Form (CRF), and the CRO research physician is to be notified.

      \n

      In addition to the efficacy measures noted above, a survey form will be used to collect information from the caregiver on TTS acceptability (Attachment LZZT.9).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_28", + "extensionAttributes": [], + "name": "NCI_28", + "text": "

      Group mean changes from baseline in the primary efficacy parameters will serve as efficacy criteria. The ADAS-Cog (11) and the video-referenced CIBIC+ will serve as the primary efficacy instruments. Secondary efficacy instruments will include the DAD, the NPI-X, and the ADAS-Cog (14). The procedures and types of analyses to be done are outlined in Section 4.

      \n

      The primary analysis of efficacy will include only the data obtained up to and including the visit of discontinuation of study drug. Furthermore, the primary analysis will not include efficacy data obtained at any visit where the study drug was not administered in the preceding three days. Analyses that include the retrieved dropouts are considered secondary.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_29", + "extensionAttributes": [], + "name": "NCI_29", + "text": "

      Blood samples (7 mL) for the determination of xanomeline concentrations in plasma will be collected from each patient at Visits 3, 4, 5, 7, 9, and 11. The blood sample drawn at Visit 3 is a baseline sample. The remaining 5 clinic visits should be scheduled so that 1 blood sample is collected at any time during each of the following intervals: early AM visit (hold application of new patch until after blood sample is collected); 9AM to 11AM; 11AM to 1PM; 1PM to 3PM; and 3PM to 5PM. Collection of blood samples during each of these intervals should not occur in any particular order, nor should they occur in the same order for each patient. Every effort should be made to comply with the suggested sampling times. This blood-sampling schedule is based on a sparse sampling strategy where only a few samples will be collected from each patient. The most crucial aspect of the sampling design is to record the date and exact time the sample was drawn and to record the date and time of patch application on the day of the clinic visit and the previous 2 days.

      \n

      If a patient is discontinued from the study prior to protocol completion, a pharmacokinetic blood sample should be drawn at the early discontinuation visit. The date and exact time the sample was drawn and the date of the last patch application should be recorded.

      \n

      Immediately after collection, each sample will be centrifuged at approximately 177 \u00d7 G for 15 minutes. The plasma will be transferred into a polypropylene tube bearing the identical label as the blood collection tube. Samples will be capped and frozen at approximately \u221220\u00b0C. Care must be taken to insure that the samples remain frozen during transit.

      \n

      The samples will be shipped on dry ice to Central Laboratory.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_30", + "extensionAttributes": [], + "name": "NCI_30", + "text": "

      Investigators are responsible for monitoring the safety of patients who have entered this study and for alerting CRO to any event that seems unusual, even if this event may be considered an unanticipated benefit to the patient. See Section 3.9.3.2.1.

      \n

      Investigators must ensure that appropriate medical care is maintained throughout the study and after the trial (for example, to follow adverse events).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_31", + "extensionAttributes": [], + "name": "NCI_31", + "text": "

      Safety measures will be performed at designated times by recording adverse events, laboratory test results, vital signs (including supine/standing pulse and blood pressure readings) ECG monitoring, and Ambulatory ECGs (see Schedule of Events, Attachment LZZT.1).

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_32", + "extensionAttributes": [], + "name": "NCI_32", + "text": "

      Lilly has standards for reporting adverse events that are to be followed, regardless of applicable regulatory requirements that are less stringent. For purposes of collecting and evaluating all information about Lilly drugs used in clinical trials, an adverse event is defined as any undesirable experience or an unanticipated benefit (see Section 3.9.3.2.1) that occurs after informed consent for the study has been obtained, without regard to treatment group assignment, even if no study medication has been taken. Lack of drug effect is not an adverse event in clinical trials, because the purpose of the clinical trial is to establish drug effect.

      \n

      At the first visit, study site personnel will question the patient and will note the occurrence and nature of presenting condition(s) and of any preexisting condition(s). At subsequent visits, site personnel will again question the patient and will note any change in the presenting condition(s), any change in the preexisting condition(s), and/or the occurrence and nature of any adverse events.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_33", + "extensionAttributes": [], + "name": "NCI_33", + "text": "

      All adverse events must be reported to CRO via case report form.

      \n

      Study site personnel must report to CRO immediately, by telephone, any serious adverse event (see Section 3.9.3.2.2 below), or if the investigator unblinds a patient's treatment group assignment because of an adverse event or for any other reason.

      \n

      If a patient's dosage is reduced or if a patient is discontinued from the study because of any significant laboratory abnormality, inadequate response to treatment, or any other reason, the circumstances and data leading to any such dosage reduction or discontinuation must be reported and clearly documented by study site personnel on the clinical report form.

      \n

      An event that may be considered an unanticipated benefit to the patient (for example, sleeping longer) should be reported to CRO as an adverse event on the clinical report form. \u201cUnanticipated benefit\u201d is a COSTART classification term. In cases where the investigator notices an unanticipated benefit to the patient, study site personnel should enter the actual term such as \u201csleeping longer,\u201d and code \u201cunanticipated benefit\u201d in the clinical report form adverse event section.

      \n

      Solicited adverse events from the skin rash questionnaire (see Section 3.9.3.4) should be reported on the questionnaire only and not also on the adverse event clinical report form

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_34", + "extensionAttributes": [], + "name": "NCI_34", + "text": "

      Study site personnel must report to CRO immediately, by telephone, any adverse event from this study that is alarming or that:

      \n
        \n
      • Results in death

      • \n
      • Results in initial or prolonged inpatient hospitalization

      • \n
      • Is life-threatening

      • \n
      • Results in severe or permanent disability

      • \n
      • Results in cancer [(other than cancers diagnosed prior to enrollment in studies involving patients with cancer)]

      • \n
      • Results in a congenital anomaly

      • \n
      • Is a drug overdose

      • \n
      • Is significant for any other reason.

      • \n
      \n

      Definition of overdose: For a drug under clinical investigation, an overdose is any intentional or unintentional consumption of the drug (by any route) that exceeds the dose recommended in the Clinical Investigator's Brochure or in an investigational protocol, whichever dose is larger. For a marketed drug, a drug overdose is any intentional or unintentional consumption of the drug (by any route) that exceeds the dose listed in product labeling, even if the larger dose is prescribed by a physician.

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_35", + "extensionAttributes": [], + "name": "NCI_35", + "text": "

      Table LZZT.1 lists the clinical laboratory tests that will be performed at Visit 1.

      \n

      Table LZZT.1. Laboratory Tests Performed at Admission (Visit 1)

      \n\n

      Safety Laboratory Tests

      \n\n\n\n\n\n
      \n

      Hematology:

      \n

        \n
      • Hemoglobin
      • \n
      • Hematocrit
      • \n
      • Erythrocyte count (RBC)
      • \n
      • Mean cell volume (MCV)
      • \n
      • Mean cell hemoglobin (MCH)
      • \n
      • Mean cell hemoglobin concentration (MCHC)
      • \n
      • Leukocytes (WBC)
      • \n
      • Neutrophils, segmented
      • \n
      • Neutrophils, juvenile (bands)
      • \n
      • Lymphocytes
      • \n
      • Monocytes
      • \n
      • Eosinophils
      • \n
      • Basophils
      • \n
      • Platelet
      • \n
      • Cell morphology
      • \n

      \n

      Urinalysis:

      \n

        \n
      • Color
      • \n
      • Specific gravity
      • \n
      • pH
      • \n
      • Protein
      • \n
      • Glucose
      • \n
      • Ketones
      • \n
      • Bilirubin
      • \n
      • Urobilinogen
      • \n
      • Blood
      • \n
      • Nitrite
      • \n
      • Microscopic examination of sediment
      • \n

      \n
      \n

      Clinical Chemistry - Serum Concentration of:

      \n

        \n
      • Sodium
      • \n
      • Potassium
      • \n
      • Bicarbonate
      • \n
      • Total bilirubin
      • \n
      • Alkaline phosphatase (ALP)
      • \n
      • Gamma-glutamyl transferase (GGT)
      • \n
      • Alanine transaminase (ALT/SGPT)
      • \n
      • Aspartate transaminase (AST/SGOT)
      • \n
      • Blood urea nitrogen (BUN)
      • \n
      • Serum creatinine
      • \n
      • Uric acid
      • \n
      • Phosphorus
      • \n
      • Calcium
      • \n
      • Glucose, nonfasting
      • \n
      • Total protein
      • \n
      • Albumin
      • \n
      • Cholesterol
      • \n
      • Creatine kinase (CK)
      • \n

      \n

      Thyroid Function Test (Visit 1 only):

      \n
        \n
      • Free thyroid index
      • \n
      • T3 Uptake
      • \n
      • T4
      • \n
      • Thyroid-stimulating hormone (TSH)
      • \n
      \n

      Other Tests (Visit 1 only):

      \n
        \n
      • Folate
      • \n
      • Vitamin B 12
      • \n
      • Syphilis screening
      • \n
      • Hemoglobin A1C (IDDM patients only)
      \n
      \n

      Laboratory values that fall outside a clinically accepted reference range or values that differ significantly from previous values must be evaluated and commented on by the investigator by marking CS (for clinically significant) or NCS (for not clinically significant) next to the values. Any clinically significant laboratory values that are outside a clinically acceptable range or differ importantly from a previous value should be further commented on in the clinical report form comments page.

      \n

      Hematology, and clinical chemistry will also be performed at Visits 4, 5, 7, 8, 9, 10, 11, 12, and 13. Patients that experience a rash and/or eosinophilia may have additional hematology samples obtained as described in 3.9.3.4 (Other Safety Measures).

      \n

      Urinalysis will also be performed at Visits 4, 9, and 12. The following criteria have been developed to monitor hepatic function.

      \n
        \n
      • Patients with ALT/SGPT levels >120 IU will be retested weekly.

        \n
      • Patients with ALT/SGPT values >400 IU, or alternatively, an elevated ALT/SGPT accompanied by GGT and/or ALP values >500 IU will be retested within 2 days. The sponsor's clinical research administrator or clinical research physician is to be notified. If the retest value does not decrease by at least 10%, the study drug will be discontinued; additional laboratory tests will be performed until levels return to normal. If the retest value does decrease by 10% or more, the study drug may be continued with monitoring at 3 day intervals until ALT/SGPT values decrease to <400 IU or GGT and/or ALP values decrease to <500 IU. \n

      ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_36", + "extensionAttributes": [], + "name": "NCI_36", + "text": "
      Patients experiencing Rash and/or Eosinophilia\n

      The administration of placebo and xanomeline TTS is associated with a rash and/or eosinophilia in some patients. The rash is characterized in the following ways:

      \n
        \n
      • The rash is confined to sites of application.

      • \n
      • The rash may be associated with pruritus.

      • \n
      • In 5% of cases of rash observed in the Interim Analysis, blistering has been observed.

      • \n
      • The onset of rash may occur at any time during the course of the study.

      • \n
      • A moderate eosinophilia (0.6-1.5 x 103 /microliter) is associated with rash and has been noted in approximately 10% of patients.

      • \n
      \n

      It does not appear that the rash constitutes a significant safety risk; however, it could affect the well-being of the patients. The following monitoring is specified:

      \n

      Skin Rash Follow-up

      \n

      For patients who exit the study or its extension with rash at the site(s) of application:

      \n
        \n
      1. Approximately 2 weeks after the last visit, the study site personnel should contact the patient/caregiver by phone and complete the skin rash questionnaire. (Note: those patients with rash who have previously exited the study or its extension should be contacted at earliest convenience.)

      2. \n
      3. If caregiver states unequivocally that skin problems have completely resolved, no further follow-up is needed.

      4. \n
      5. If caregiver reports scarring and/or other problems, patient should return to clinic for a follow-up visit. The skin rash questionnaire should again be completed. If in the opinion of the investigator, further follow-up is required, contact the CRO medical monitor. Completed skin rash questionnaires should be faxed to CRO.

      6. \n
      \n

      Completion of the questionnaires will create a separate data set for solicited adverse events. In completing these forms please note the following:

      \n
        \n
      1. Solicited events (events discovered as result of completion of follow-up questionnaires) should be reported on questionnaire page only.

      2. \n
      3. Spontaneously reported adverse events (events presented by the patient without direct questioning of the event) should be reported as described in 3.9.3.2 .1 (Adverse Event Reporting Requirements).

      4. \n
      \n

      Serious adverse events should be handled and reported as described in 3.9.3.2.1 without regard to whether the event is solicited or spontaneously reported.

      \n

      Eosinophilia Follow-up

      \n
        \n
      1. For patients that are currently in the study with eosinophil counts greater than 0. 6x10 3 /microliter:

        \n
        • Repeat hematology at each visit until resolved in the opinion of the investigator.

        \n
      2. For patients that are currently in the study with eosinophil counts greater than 1.5x10 3 /microliter:

        \n
        • Obtain hematology profile every 2 weeks until resolved or explained by other causes in the opinion of the investigator.

        • \n
        • Notify CRO medical monitor.

        • \n
        \n
      3. For patients with eosinophil counts greater than 0.6x10 3 /microliter at exit \nfrom the study or its extension:

        \n
          \n
        • Obtain hematology profile approximately every 2 weeks until resolved or, in the opinion of the investigator, explained by other causes. (Note: patients with eosinophil counts greater than 0.6x10 3 /microliter who have previously exited the study or its extension should return for hematology profile at earliest convenience.)

        • \n
        \n
        ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_37", + "extensionAttributes": [], + "name": "NCI_37", + "text": "

        Patient should lie supine quietly for at least 5 minutes prior to vital signs measurement. Blood pressure should be measured in the dominant arm with a standardized mercury manometer according to the American Heart Association standard recommendations. Diastolic blood pressure will be measured as the point of disappearance of the Korotkoff sounds (phase V). Heart rate will be measured by auscultation. Patient should then stand up. Blood pressure should again be measured in the dominant arm and heart rate should be measured after approximately 1 and 3 minutes.

        \n

        An automated blood pressure cuff may be used in place of a mercury manometer if it is regularly (at least monthly) standardized against a mercury manometer.

        ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_38", + "extensionAttributes": [], + "name": "NCI_38", + "text": "

        Cardiovascular status will be assessed during the trial with the following measures:

        \n
          \n
        • All patients will be screened by obtaining a 12-lead ECG, and will have repeat ECGs performed at Visits 4, 5, 7, 8, 9, 10, 11, 12, 13, and early termination (ET) (see Schedule of Events, Attachment LZZT.1).

        • \n
        • All patients will undergo a 24-hour Ambulatory ECG at Visit 2 (prior to the initiation of study medication). Although every effort will be made to obtain the entire 24-hour ambulatory ECG recording, this may not always be feasible because of patient behavior or technical difficulties. The minimal recording period for an ambulatory ECG to be considered interpretable will be 8 hours, of which at least 3 hours must be sleep.

        • \n
        • The incidence of syncope, defined as an observed loss of consciousness and muscle tone not attributable to transient ischemic attack or to seizure, will be closely monitored. Caregivers will be instructed to report any instance of syncopal episodes to the investigator within 24 hours. The investigator should immediately report such events to the CRO research physician. The CRO research physician will make a clinical assessment of each episode, and with the investigator determine if continuation of \ntherapy is appropriate. These findings will be reported to the Lilly research physician immediately.

        • \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_39", + "extensionAttributes": [], + "name": "NCI_39", + "text": "

          The CRO research physician will monitor safety data throughout the course of the study.

          \n

          Cardiovascular measures, including ECGs and 24-hour Ambulatory ECGs (see Section 3.9.3.4.2) will be monitored on an ongoing basis as follows:

          \n
            \n
          • As noted in Section 3.9.3.4.2, all patients will be screened by obtaining a 12-lead ECG, and will have repeat ECGs performed at Visits 4, 5, 7, 8, 9, 10, 11, 12, 13, and early termination (ET) (see Schedule of Events for Protocol H2Q-MC-LZZT(c), Attachment LZZT.1). ECG data will be interpreted at the site and express mailed overnight to a central facility which will produce a report within 48 hours. The report will be forwarded to the investigator. At screening, the report of the central facility will be used to exclude patients according to criteria specified in Section 3.4.2.2. If, during the treatment phase of the study, review of ECG data (either at the site or at the central facility) reveals left bundle branch block, bradycardia \u226450 beats per minute, sinus pauses >2 seconds, second degree heart block, third degree heart block, Wolff-Parkinson-White syndrome, sustained supraventricular tachyarrhythmia, or ventricular tachycardia at a rate of \u2265120 beats per minute lasting \u226510 seconds, the investigator, the Lilly research physician, the CRO research physician, and the cardiologist chairing the DSMB will be notified immediately, and discontinuation of the patient will be considered.

          • \n
          • As noted in Section 3.9.3.4.2, all patients will undergo a 24-hour Ambulatory ECG at Visit 2 (prior to the initiation of study medication). Ambulatory ECG data from Visit 2 will be express mailed overnight to a central facility which will produce a report within 24 hours. The report will be forwarded to the investigator. If a report documents sustained ventricular tachycardia with rate >120 beats per minute, third degree heart block, or sinus pauses of >6.0 seconds, the investigator, the Lilly research \nphysician, the CRO research physician, and the cardiologist chairing the DSMB will be notified immediately, and the patient will be discontinued. If any report documents sinus pauses of >3.0 seconds or second degree heart block, the CRO research physician, and Lilly research physician, and cardiologist chairing the DSMB will be immediately notified and the record will be reviewed within 24 hours of notification by the cardiologist chairing the DSMB.

          • \n
          \n

          In addition to ongoing monitoring of cardiac measures, a comprehensive, periodic review of cardiovascular safety data will be conducted by the DSMB, which will be chaired by an external cardiologist with expertise in arrhythmias, their pharmacological bases, and their clinical implications. The membership of the board will also include two other external cardiologists, a cardiologist from Lilly, a statistician from Lilly, and the Lilly research physician. Only the three external cardiologists will be voting members.

          \n

          After approximately 75 patients have completed 1 month of treatment, the DSMB will meet to decide:

          \n
            \n
          • If discontinuation of the study or any treatment arm is appropriate

          • \n
          • If additional cardiovascular monitoring is required

          • \n
          • If further cardiovascular monitoring is unnecessary

          • \n
          • If adjustment of dose within a treatment arm (or arms) is appropriate.

          • \n
          \n

          If necessary, this analysis will be repeated after 150 patients have completed 1 month of treatment, after 225 patients have completed 1 month of treatment, and after 300 patients have completed 1 month of treatment. Primary consideration will be given to the frequency of pauses documented in Ambulatory ECG reports. The number of pauses greater than or equal to 2, 3, 4, 5, and 6 seconds will be tabulated. Primary analysis will focus on the number of pauses greater than or equal to 3 seconds.

          \n

          In the event of a high incidence of patient discontinuation due to syncope, the following guideline may be employed by the DSMB in determining if discontinuation of any treatment arm is appropriate. If the frequency of syncope in a xanomeline treatment arm relative to the frequency of syncope in the placebo arm equals or exceeds the following numbers, then consideration will be given to discontinuing that treatment arm. The Type I error rate for this rule is approximately 0.032 if the incidence in each group is 0.04. The power of this rule is 0.708 if the incidence is 0.04 for placebo and 0.16 for xanomeline TTS.

          \n\n\n\n\n\n\n\n\n

          Placebo

          Xanomeline

          PlaceboXanomeline

          0

          6

          615

          1

          7

          716

          2

          9

          817

          3

          11

          918

          4

          12

          1020

          5

          13

          X2X (2-fold)
          \n

          This rule has been used in other studies for monitoring spontaneous events with an incidence of less than 10%. This rule is constructed assuming a 2-group comparison with each group having a final sample size of 100. Unblinding which occurs during these analyses will be at the group level and will be documented.

          \n

          The stopping rule based on Ambulatory ECG findings is as follows:

          \n\n

          If the number of patients experiencing a pause of \u22656 seconds in a xanomeline treatment arm relative to the number of patients in the placebo arm equals or exceeds the numbers in the following table, then that treatment arm will be discontinued. The Type I error rate for this rule is approximately 0.044 if the incidence in each group is 0.01. The power of this rule is 0.500 if the incidence is 0.01 for placebo and 0.04 for xanomeline TTS.

          \n\n\n\n\n\n\n\n\n

          Placebo

          Xanomeline

          0

          3

          1

          5

          2

          6

          3

          7

          4

          8

          x

          2x

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_40", + "extensionAttributes": [], + "name": "NCI_40", + "text": "

          The medications and efficacy measurements have been used in other studies in elderly subjects and patients.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_41", + "extensionAttributes": [], + "name": "NCI_41", + "text": "
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_42", + "extensionAttributes": [], + "name": "NCI_42", + "text": "

          Participation in the study shall be terminated for any patient who is unable or unwilling to comply with the study protocol or who develops a serious adverse event.

          \n

          In addition, patients may be discontinued for any of the following reasons:

          \n
            \n
          • In the opinion of the investigator, a significant adverse event occurs or the \nsafety of the patient is otherwise compromised.

          • \n
          • The patient requests to be withdrawn from the study.

          • \n
          • The physician in charge of the study or Lilly, for any reason stops the \npatient's participation in the study.

          • \n
          \n

          If a patient's participation terminates early, an early termination visit should be scheduled. Upon decision to discontinue a patient from the study, the patient's dose should be titrated down by instructing the patient to immediately remove the 25-cm2 patch. Patients should be instructed to continue to apply a 50-cm2 patch daily until the early termination visit, at which time the drug will be discontinued. Physical exam, vital signs, temperature, use of concomitant medications, chemistry/hematology/urinalysis labs, xanomeline plasma sample, TTS acceptability survey, efficacy measures, adverse events, and an ECG will be collected at the early termination visit.

          \n

          In the event that a patient's participation or the study itself is terminated, the patient shall return all study drug(s) to the investigator.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_43", + "extensionAttributes": [], + "name": "NCI_43", + "text": "

          If possible, patients who have terminated early will be retrieved on the date which would have represented Visit 12 (Week 24). Vital signs, temperature, use of concomitant medications, adverse events, and efficacy measure assessment will be gathered at this visit. If the patient is not retrievable, this will be documented in the source record.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_44", + "extensionAttributes": [], + "name": "NCI_44", + "text": "

          All patients who are enrolled in the study will be included in the efficacy analysis and the safety analysis. Patients will not be excluded from the efficacy analysis for reasons such as non-compliance or ineligibility, except for the time period immediately preceding the efficacy assessment (see Section 3.9.1.2).

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_45", + "extensionAttributes": [], + "name": "NCI_45", + "text": "

          Patients who successfully complete the study will be eligible for participation in an openlabel extension phase, where every patient will be treated with active agent. The patients who elect to participate in the open-label extension phase will be titrated to their maximally titrated dose. This open-label extension phase will continue until the time the product becomes marketed and is available to the public or until the project is discontinued by the sponsor. Patients may terminate at any time at their request.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_46", + "extensionAttributes": [], + "name": "NCI_46", + "text": "

          Because patients enrolled in this study will be outpatients, the knowledge that patients have taken the medication as prescribed will be assured in the following ways:

          \n
            \n
          1. Investigators will attempt to select those patients and caregivers who \nhave been judged to be compliant.

          2. \n
          3. Study medication including unused, partially used, and empty patch \ncontainers will be returned at each clinical visit so that the remaining \nmedication can be counted by authorized investigator staff (nurse, \npharmacist, or physician). The number of patches remaining will be \nrecorded on the CRF.

          4. \n
          5. Following randomization at Visit 3, patients will be instructed to call \nthe site if they have difficulty with application or wearing of patches. If \ndaily doses are reduced, improperly administered, or if a patch becomes \ndetached and requires application of a new patch on three or more days \nin any 30-day period, the CRO research physician will be notified.

          6. \n
          \n

          If the daily dose is reduced or improperly administered in the 24 hours prior to any scheduled clinic visit, the visit should be rescheduled (except for early termination and retrieval visits).

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_47", + "extensionAttributes": [], + "name": "NCI_47", + "text": "

          To ensure both the safety of participants in the study, and the collection of accurate, complete, and reliable data, Lilly or its representatives will perform the following activities:

          \n
            \n
          • Provide instructional material to the study sites, as appropriate.

          • \n
          • Sponsor a start-up training session to instruct the investigators and study \ncoordinators. This session will give instruction on the protocol, the \ncompletion of the clinical report forms, and study procedures.

          • \n
          • Make periodic visits to the study site.

          • \n
          • Be available for consultation and stay in contact with the study site \npersonnel by mail, telephone, and/or fax.

          • \n
          • Review and evaluate clinical report form data and use standard computer \nedits to detect errors in data collection.

          • \n
          \n

          To ensure the safety of participants in the study and to ensure accurate, complete, and reliable data, the investigator will do the following:

          \n
            \n
          • Keep records of laboratory tests, clinical notes, and patient medical records in the patient files as original source documents for the study.

          • \n
          \n

          Lilly or its representatives may periodically check a sample of the patient data recorded against source documents at the study site. The study may be audited by Lilly Medical Quality Assurance (MQA) and/or regulatory agencies at any time. Investigators will be given notice before an MQA audit occurs.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_48", + "extensionAttributes": [], + "name": "NCI_48", + "text": "
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_49", + "extensionAttributes": [], + "name": "NCI_49", + "text": "

          In general, all patients will be included in all analyses of efficacy if they have a baseline measurement and at least one postrandomization measurement. Refer to Section 3.9.1.2. for a discussion of which specific efficacy data will be included in the primary analysis.

          \n

          In the event that the doses of xanomeline TTS are changed after the study starts, the analysis will be of three treatment groups (high dose, low dose, and placebo), even though patients within the high dose treatment group, for example, may not all be at exactly the same dose. Also, if the dose is changed midway through the study, the mean dose within each group will be used in the dose response analysis described in Section 4.3.3.

          \n

          All analyses described below will be conducted using the most current production version of SAS\u00ae available at the time of analysis.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_50", + "extensionAttributes": [], + "name": "NCI_50", + "text": "

          All measures (for example, age, gender, origin) obtained at either Visits 1, 2, or 3, prior to randomization, will be summarized by treatment group and across all treatment groups. The groups will be compared by analysis of variance (ANOVA) for continuous variables and by Pearson's chi-square test for categorical variables. Note that because patients are randomized to 1 of the 3 treatment groups, any statistically significant treatment group differences are by definition a Type I error; however, the resulting p-values will be used as another descriptive statistic to help focus possible additional analyses (for example, analysis of covariance, subset analyses) on those factors that are most imbalanced (that is, that have the smallest p-values).

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_51", + "extensionAttributes": [], + "name": "NCI_51", + "text": "
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_52", + "extensionAttributes": [], + "name": "NCI_52", + "text": "

          Efficacy measures are described in Section 3.9.1.1. As stated in Section 3.9.1.2, the primary outcome measures are the ADAS-Cog (11) and CIBIC+ instruments. Because both of these variables must reach statistical significance, an adjustment to the nominal p-values is necessary in order to maintain a .05 Type I error rate for this study. This adjustment is described in detail in Section 4.3.5.

          \n

          The DAD will be analyzed with respect to the total score, as well as the subscores of \ninitiation, planning and organization, and effective performance. This variable is \nconsidered a secondary variable in the US, but is a third primary variable in Europe.

          \n

          The NPI-X is a secondary variable. The primary assessment of this instrument will be for the total score, not including the sleep, appetite, and euphoria domains. This total score is computed by taking the product of the frequency and severity scores and summing them up across the domains. Secondary variables derived from the NPI-X include evaluating each domain/behavior separately. Also, caregiver distress from the NPI-X will be analyzed.

          \n

          ADAS-Cog (14) and each of the 14 individual components will also be analyzed. In addition, a subscore of the ADAS-Cog will be computed and analyzed, based on results from a previous large study of oral xanomeline. This subscore, referred to as ADAS-Cog (4), will be the sum of constructional praxis, orientation, spoken language ability, and word finding difficulty in spontaneous speech.

          \n

          Any computed total score will be treated as missing if more than 30% of the items are missing or scored \u201cnot applicable\u201d. For example, when computing ADAS-Cog(11), if 4 or more items are missing, then the total score will not be computed. When one or more items are missing (but not more than 30%), the total score will be adjusted in order to maintain the full range of the scale. For example, ADAS-Cog(11) is a 0-70 scale. If the first item, Word Recall (ranges from 0 to 10), is missing, then the remaining 10 items of the ADAS-Cog(11) will be summed and multiplied by (70 / (70-10) ), or 7/6. This computation will occur for all totals and subtotals of ADAS-Cog and NPI-X. DAD is a 40 item questionnaire where each question is scored as either \u201c0\u201d or \u201c1\u201d. The DAD total score and component scores are reported as percentage of items that are scored \u201c1\u201d. So if items of the DAD are \u201cnot applicable\u201d or missing, the percentage will be computed for only those items that are scored. As an example, if two items are missing (leaving 38 that are scored), and there are 12 items scored as \u201c1\u201d, the rest as \u201c0\u201d, then the DAD score is 12/38=.316.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_53", + "extensionAttributes": [], + "name": "NCI_53", + "text": "

          Baseline data will be collected at Visit 3.

          \n

          The primary analysis of ADAS-Cog (11) and CIBIC+ will be the 24-week endpoint, which is defined for each patient and variable as the last measurement obtained postrandomization (prior to protocol defined reduction in dose).

          \n

          Similar analyses at 24 weeks will be conducted for the secondary efficacy variables. Analysis of patients who complete the 24-week study will also be conducted for all efficacy variables; this is referred to as a \u201ccompleter\u201d analysis.

          \n

          Additionally, each of the efficacy variables will be analyzed at each time point both as \u201cactual cases,\u201d that is, analyzing the data collected at the various time points, and also as a last-observation-carried-forward (LOCF). Note that the LOCF analysis at 24 weeks is the same as the endpoint analysis described previously.

          \n

          Several additional analyses of NPI-X will be conducted. Data from this instrument will be collected every 2 weeks, and represent not the condition of the patient at that moment in time, but rather the worst condition of the patient in the time period since the most recent NPI-X administration. For this reason, the primary analysis of the NPI-X will be of the average of all postrandomization NPI-X subscores except for the one obtained at Week 2. In the event of early discontinuations, those scores that correspond to the interval between Weeks 2 to 24 will be averaged. The reason for excluding Week 2 data from this analysis is that patients could be confused about when a behavior actually stops after randomization; the data obtained at Week 2 could be somewhat \u201ctainted.\u201d Also, by requiring 2 weeks of therapy prior to use of the NPI-X data, the treatment difference should be maximized by giving the drug 2 weeks to work, thereby increasing the statistical power. Secondary analyses of the NPI-X will include the average of all postrandomization weeks, including measures obtained at Weeks 2 and 26.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_54", + "extensionAttributes": [], + "name": "NCI_54", + "text": "

          The primary method to be used for the primary efficacy variables described in Sections 4.3.1 and 4.3.2 will be analysis of covariance (ANCOVA), except for CIBIC+ which is a score that reflects change from baseline, so there is no corresponding baseline CIBIC+ score. Effects in the ANCOVA model will be the corresponding baseline score, investigator, and treatment. CIBIC+ will be analyzed by analysis of variance (ANOVA), with effects in the model being investigator and treatment. Investigator-by-treatment interaction will be tested in a full model prior to conducting the primary ANCOVA or ANOVA (see description below).

          \n

          Because 3 treatment groups are involved, the primary analysis will be the test for linear dose response in the ANCOVA and ANOVA models described in the preceding paragraph. The result is then a single p-value for each of ADAS-Cog and CIBIC+.

          \n

          Analysis of the secondary efficacy variables will also be ANCOVA. Pairwise treatment comparisons of the adjusted means for all efficacy variables will be conducted using a LSMEANS statement within the GLM procedure.

          \n

          Investigator-by-treatment interaction will be tested in a full ANCOVA or ANOVA model, which takes the models described above, and adds the interaction term to the model. Interaction will be tested at \u03b1 = .10 level. When the interaction is significant at this level, the data will be examined for each individual investigator to attempt to identify the source of the significant interaction. When the interaction is not significant, this term will be dropped from the model as described above, to test for investigator and treatment main effects. By doing so, all ANCOVA and ANOVA models will be able to validly test for treatment differences without weighting each investigator equally, which is what occurs when using Type III sums of squares (cell means model) with the interaction term present in the model. This equal weighting of investigators can become a serious problem when sample sizes are dramatically different between investigators.

          \n

          For all ANOVA and ANCOVA models, data collected from investigators who enrolled fewer than 3 patients in any one treatment group will be combined prior to analysis. If this combination still results in a treatment group having fewer than 3 patients in any one treatment group, then this group of patients will be combined with the next fewestenrolling investigator. In the event that there is a tie for fewest-enrolling investigator, one of these will be chosen at random by a random-number generator.

          \n

          The inherent assumption of normally distributed data will be evaluated by generating output for the residuals from the full ANCOVA and ANOVA models, which include the interaction term, and by testing for normality using the Shapiro-Wilk test from PROC UNIVARIATE. In the event that the data are predominantly nonnormally distributed, analyses will also be conducted on the ranked data. This rank transformation will be applied by ranking all the data for a particular variable, across all investigators and treatments, from lowest to highest. Integer ranks will be assigned starting at 1; mean ranks will be assigned when ties occur.

          \n

          In addition, the NPI-X will be analyzed in a manner similar to typical analyses of adverse events. In this analysis, each behavior will be considered individually. This analysis is referred to as \u201ctreatment-emergent signs and symptoms\u201d (TESS) analysis. For each behavior, the patients will be dichotomized into 1 of 2 groups: those who experienced the behavior for the first time postrandomization, or those who had the quotient between frequency and severity increase relative to the baseline period defines one group. All other patients are in the second group. Treatments will be compared for overall differences by Cochran-Mantel-Haentzel (CMH) test referred to in SAS\u00ae as \u201crow mean scores differ,\u201d 2 degrees of freedom. The CMH correlation statistic (1 degree of freedom test), will test for increasing efficacy with increasing dose (trend test).

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_55", + "extensionAttributes": [], + "name": "NCI_55", + "text": "

          All comparisons between xanomeline and placebo with respect to efficacy variables should be one-sided. The justification for this follows.

          \n

          The statistical hypothesis that is tested needs to be consistent with the ultimate data-based decision that is reached. When conducting placebo-controlled trials, it is imperative that the drug be demonstrated to be superior in efficacy to placebo, since equivalent or worse efficacy than placebo will preclude approvability. Consequently, a one-sided test for efficacy is required.

          \n

          The null hypothesis is that the drug is equal or worse than placebo. The alternative hypothesis is that the drug has greater efficacy than placebo. A Type I error occurs only when it is concluded that a study drug is effective when in fact it is not. This can occur in only one tail of the distribution of the treatment difference. Further details of the arguments for one-sided tests in placebo-controlled trials are available in statistical publications (Fisher 1991; Koch 1991; Overall 1991; and Peace 1991).

          \n

          The argument for one-sided tests does not necessarily transfer to safety measures, in general, because one can accept a certain level of toxicity in the presence of strong efficacy. That is, safety is evaluated as part of a benefit/risk ratio.

          \n

          Note that this justification is similar to that used by regulatory agencies worldwide that routinely require one-sided tests for toxicological oncogenicity studies. In that case, the interest is not in whether a drug seems to lessen the occurrence of cancer; the interest is in only one tail of the distribution, namely whether the drug causes cancer to a greater extent than the control.

          \n

          Different regulatory agencies require different type I error rates. Treatment differences that are significant at the .025 \u03b1-level will be declared to be \u201cstatistically significant.\u201d When a computed p-value falls between .025 and .05, the differences will be described as \u201cmarginally statistically significant.\u201d This approach satisfies regulatory agencies who have accepted a one-sided test at the .05 level, and other regulatory agencies who have requested a two-sided test at the .05 level, or equivalently, a one-sided test at the .025 level. In order to facilitate the review of the final study report, two-sided p-values will be presented in addition to the one-sided p-values.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_56", + "extensionAttributes": [], + "name": "NCI_56", + "text": "

          When there are multiple outcomes, and the study drug is declared to be effective when at least one of these outcomes achieves statistical significance in comparison with a placebo control, a downward adjustment to the nominal \u03b1-level is necessary. A well-known simple method is the Bonferroni method, that divides the overall Type I error rate, usually .05, by the number of multiple outcomes. So, for example, if there are two multiple outcomes, the study drug is declared to be effective if at least one of the two outcomes is significant at the .05/2 or .025 level.

          \n

          However, when one has the situation that is present in this study, where there are 2 (or 3 for Europe) outcome variables, each of which must be statistically significant, then the adjustment of the nominal levels is in the opposite direction, that is upwards, in order to maintain an overall Type 1 error rate of .05.

          \n

          In the case of two outcomes, ADAS-Cog (11) and CIBIC+, if the two variables were completely independent, then each variable should be tested at the nominal \u03b1-level of .05 1/2 = .2236 level. So if both variables resulted in a nominal p-value less than or equal to .2236, then we would declare the study drug to be effective at the overall Type 1 error rate of .05.

          \n

          We expect these two outcome measures to be correlated. From the first large-scale \nefficacy study of oral xanomeline, Study MC-H2Q-LZZA, the correlation between \nCIBIC+ and the change in ADAS-Cog(11) from baseline was .252. Consequently, we

          \n

          plan to conduct a randomization test to combine these two dependent dose-response p-values into a single test, which will then be at the .05 Type I error level. Because there will be roughly 300!/(3 * 100!) possible permutations of the data, random data permutations will be sampled (10,000 random permutations).

          \n

          Designate the dose response p-values as p1 and p2 (computed as one-sided p-values), for ADAS-Cog(11) and CIBIC+, respectively. The rejection region is defined as

          \n

          [ {p1 \u2264 \u03b1 and p2 \u2264 \u03b1} ].

          \n

          The critical value, \u03b1, will be determined from the 10,000 random permutations by choosing the value of \u03b1 to be such that 2.5% of the 10,000 computed pairs of dose response p-values fall in the rejection region. This will correspond to a one-sided test at the .025 level, or equivalently a two-sided test at the .05 level. In addition, by determining the percentage of permuted samples that are more extreme than the observed data, a single p-value is obtained.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_57", + "extensionAttributes": [], + "name": "NCI_57", + "text": "

          Although safety data is collected at the 24 week visit for retrieved dropouts, these data will not be included in the primary analysis of safety.

          \n

          Pearson's chi-square test will be used to analyze 3 reasons for study discontinuation (protocol completed, lack of efficacy, and adverse event), the incidence of abnormal (high or low) laboratory measures during the postrandomization phase, and the incidence of treatment-emergent adverse events. The analysis of laboratory data is conducted by comparing the measures to the normal reference ranges (based on a large Lilly database), and counting patients in the numerator if they ever had a high (low) value during the postrandomization phase.

          \n

          Additionally, for the continuous laboratory tests, an analysis of change from baseline to endpoint will be conducted using the same ANOVA model described for the efficacy measures in Section 4.3. Because several laboratory analytes are known to be nonnormally distributed (skewed right), these ANOVAs will be conducted on the ranks.

          \n

          Several outcome measures will be extracted and analyzed from the Ambulatory ECG tapes, including number of pauses, QT interval, and AV block (first, second, or third degree). The primary consideration will be the frequency of pauses. The number of pauses greater than or equal to 2, 3, 4, 5 and 6 seconds will be tabulated. Primary analysis will focus on the number of pauses greater than or equal to 3 seconds. Due to possible outliers, these data will be analyzed as the laboratory data, by ANOVA on the ranks.

          \n

          Treatment-emergent adverse events (also referred to as treatment-emergent signs and symptoms, or TESS) are defined as any event reported during the postrandomization period (Weeks 0 - 26) that is worse in severity than during the baseline period, or one that occurs for the first time during the postrandomization period.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_58", + "extensionAttributes": [], + "name": "NCI_58", + "text": "

          The effect of age, gender, origin, baseline disease severity as measured by MMSE, Apo E, and patient education level upon efficacy will be evaluated if sample sizes are sufficient to warrant such analyses. For example, if all patients are Caucasian, then there is no need to evaluate the co-factor origin. The ANCOVA and ANOVA models described above will be supplemented with terms for the main effect and interaction with treatment. Each co-factor will be analyzed in separate models. The test for treatment-bysubgroup interaction will address whether the response to xanomeline, compared with placebo, is different or consistent between levels of the co-factor.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_59", + "extensionAttributes": [], + "name": "NCI_59", + "text": "

          Two interim efficacy analyses are planned. The first interim analysis will occur when approximately 50% of the patients have completed 8 weeks; the second interim analysis is to be conducted when approximately 50% of the patients have completed 24 weeks of the study. The purpose of these interim analyses is to provide a rationale for the initiation of subsequent studies of xanomeline TTS, or if the outcome is negative to stop development of xanomeline TTS. The method developed by Enas and Offen (1993) will be used as a guideline as to whether or not to stop one treatment arm, or the study, to declare ineffectiveness. The outcome of the interim analyses will not affect in any way the conduct, results, or analysis of the current study, unless the results are so negative that they lead to a decision to terminate further development of xanomeline TTS in AD. Hence, adjustments to final computed p-values are not appropriate.

          \n

          Planned interim analyses, and any unplanned interim analyses, will be conducted under the auspices of the data monitoring board assigned to this study. Only the data monitoring board is authorized to review completely unblinded interim efficacy and safety analyses and, if necessary, to disseminate those results. The data monitoring board will disseminate interim results only if absolutely necessary. Any such dissemination will be documented and described in the final study report. Study sites will not receive information about interim results unless they need to know for the safety of their patients.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_60", + "extensionAttributes": [], + "name": "NCI_60", + "text": "

          An analysis of the cardiovascular safety monitoring (see section 3.9.4) will be performed when approximately 25 patients from each treatment arm have completed at least 2 weeks at the treatment arms' respective full dosage (Visit 5). If necessary, this analysis will be repeated every 25 patients per arm. This analysis will be conducted under the auspices of the DSMB. This board membership will be composed of 3 external cardiologists who will be the voting members of the board, a Lilly cardiologist, a Lilly statistician, and the Lilly research physician in charge of the study. Only the DSMB is authorized to review completely unblinded cardiovascular safety analyses and, if necessary, to disseminate those results. The outcome of the cardiovascular safety analyses will determine the need for further Ambulatory ECGs.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_61", + "extensionAttributes": [], + "name": "NCI_61", + "text": "

          Plasma concentrations of xanomeline will be determined from samples obtained at selected visits (Section 3.9.2). The plasma concentration data for xanomeline, dosing information, and patient characteristics such as weight, gender and origin will be pooled and analyzed using a population pharmacokinetic analysis approach (for example, NONMEM). This approach preserves the individual pharmacokinetic differences through structural and statistical models. The population pharmacokinetic parameters through the structural model, and the interindividual and random residual variability through the components of the statistical models will be estimated. An attempt will also be made to correlate plasma concentrations with efficacy and safety data by means of population pharmacokinetic/pharmacodynamic modeling.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_62", + "extensionAttributes": [], + "name": "NCI_62", + "text": "
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_63", + "extensionAttributes": [], + "name": "NCI_63", + "text": "

          In the United States and Canada, the investigator is responsible for preparing the informed consent document. The investigator will use information provided in the current [Clinical Investigator's Brochure or product information] to prepare the informed consent document.

          \n

          The informed consent document will be used to explain in simple terms, before the patient is entered into the study, the risks and benefits to the patient. The informed consent document must contain a statement that the consent is freely given, that the patient is aware of the risks and benefits of entering the study, and that the patient is free to withdraw from the study at any time.

          \n

          As used in this protocol, the term \u201cinformed consent\u201d includes all consent and/or assent given by subjects, patients, or their legal representatives.

          \n

          In addition to the elements required by all applicable laws, the 3 numbered paragraphs below must be included in the informed consent document. The language may be altered to match the style of the informed consent document, providing the meaning is unchanged. In some circumstances, local law may require that the text be altered in a way that changes the meaning. These changes can be made only with specific Lilly approval. In these cases, the ethical review board may request from the investigator documentation evidencing Lilly's approval of the language in the informed consent document, which would be different from the language contained in the protocol. Lilly shall, upon request, provide the investigator with such documentation.

          \n
            \n
          1. \u201cI understand that the doctors in charge of this study, or Lilly, may \nstop the study or stop my participation in the study at any time, for any \nreason, without my consent.\u201d

          2. \n
          3. \u201cI hereby give permission for the doctors in charge of this study to \nrelease the information regarding, or obtained as a result of, my \nparticipation in this study to Lilly, including its agents and contractors; \nthe US Food and Drug Administration (FDA) and other governmental \nagencies; and to allow them to inspect all my medical records. I \nunderstand that medical records that reveal my identity will remain \nconfidential, except that they will be provided as noted above or as \nmay be required by law.\u201d

          4. \n
          5. \u201cIf I follow the directions of the doctors in charge of this study and I \nam physically injured because of any substance or procedure properly \ngiven me under the plan for this study, Lilly will pay the medical \nexpenses for the treatment of that injury which are not covered by my \nown insurance, by a government program, or by any other third party. \nNo other compensation is available from Lilly if any injury occurs.\u201d

          6. \n
          \n

          The investigator is responsible for obtaining informed consent from each patient or legal representative and for obtaining the appropriate signatures on the informed consent document prior to the performance of any protocol procedures and prior to the administration of study drug.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_64", + "extensionAttributes": [], + "name": "NCI_64", + "text": "

          The name and address of the ethical review board are listed on the Investigator/Contacts cover pages provided with this protocol.

          \n

          The investigator will provide Lilly with documentation of ethical review board approval of the protocol and the informed consent document before the study may begin at the site or sites concerned. The ethical review board(s) will review the protocol as required.

          \n

          The investigator must provide the following documentation:

          \n
          • The ethical review board's annual reapproval of the protocol

          • \n
          • The ethical review board's approvals of any revisions to the informed \nconsent document or amendments to the protocol.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_65", + "extensionAttributes": [], + "name": "NCI_65", + "text": "

          This study will be conducted in accordance with the ethical principles stated in the most recent version of the Declaration of Helsinki or the applicable guidelines on good clinical practice, whichever represents the greater protection of the individual.

          \n

          After reading the protocol, each investigator will sign 2 protocol signature pages and return 1 of the signed pages to a Lilly representative (see Attachment LZZT.10).

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_66", + "extensionAttributes": [], + "name": "NCI_66", + "text": "
          \n
          \n
          \n

          Bierer LM, Haroutunian V, Gabriel S, Knott PJ, Carlin LS, Purohit DP, et al. 1995.
          Neurochemical correlates of dementia severity in AD: Relative importance of the cholinergic deficits. J of Neurochemistry 64:749-760.

          \n
          \n
          \n
          \n
          \n

          Cummings JL, Mega M, Gray K, Rosenberg-Thompson S, et al. 1994. The Neuropsychiatric Inventory: Comprehensive assessment of psychopathology in dementia. Neurology 44:2308-2314.

          \n
          \n
          \n
          \n
          \n

          Enas GG, Offen WW. 1993. A simple stopping rule for declaring treatment ineffectiveness in clinical trials. J Biop Stat 3(1):13-32.

          \n
          \n
          \n
          \n
          \n

          Fisher A, Barak D. 1994. Promising therapeutic strategies in Alzheimer's disease based \non functionally selective M 1 muscarinic agonists. Progress and perspectives in new \nmuscarinic agonists. DN&P 7(8):453-464.

          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n
          \n

          GLUCAGON for Injection ITO [Package Insert]. Osaka, Japan: Kaigen Pharma Co., Ltd; 2016.Available at:\n http://www.pmda.go.jp/PmdaSearch/iyakuDetail/ResultDataSetPDF/130616_7229400D1088_\n 1_11.

          \n
          \n
          \n
          \n
          \n

          Polonsky WH, Fisher L, Hessler D, Johnson N. Emotional distress in the partners of type 1diabetes adults:\n worries about hypoglycemia and other key concerns. Diabetes Technol Ther. 2016;18:292-297.

          \n
          \n
          \n
          \n
          \n

          Fisher LD. 1991. The use of one-sided tests in drug trials: an FDA advisory committee \nmember's perspective. J Biop Stat 1:151-6.

          \n
          \n
          \n
          \n
          \n

          Koch GG. 1991. One-sided and two-sided tests and p-values. J Biop Stat 1:161-70.

          \n
          \n
          \n
          \n
          \n

          Overall JE. 1991. A comment concerning one-sided tests of significance in new drug \napplications. J Biop Stat 1:157-60.

          \n
          \n
          \n
          \n
          \n

          Peace KE. 1991. Oneside or two-sided p-values: which most appropriately address the \nquestion of drug efficacy? J Biop Stat 1:133-8.

          \n
          \n
          \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_67", + "extensionAttributes": [], + "name": "NCI_67", + "text": "
          \n
          \n

          Note:

          \n

          The following SoA timelines are auto generated using the detailed study design held within the USDM.

          \n
          \n

          Timeline: Main Timeline, Potential subject identified

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X1

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X2

          X

          X

          X

          X

          X3

          X

          X

          X

          X

          X4

          X

          X

          X

          X

          X5

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          1

          Performed if patient is an insulin-dependent diabetic

          2

          Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

          3

          Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

          4

          Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

          5

          Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

          Timeline: Adverse Event Timeline, Subject suffers an adverse event

          X

          Timeline: Early Termination Timeline, Subject terminates the study early

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          Timeline: Vital Sign Blood Pressure Timeline, Automatic execution

          X

          X

          X

          X

          X

          X

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_68", + "extensionAttributes": [], + "name": "NCI_68", + "text": "
          \n
          \n

          Note:

          \n

          The attachment has not been included in this issue of the protocol. It may be included in future versions.

          \n
          \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_69", + "extensionAttributes": [], + "name": "NCI_69", + "text": "
          \n
          \n

          Note:

          \n

          The attachment has not been included in this issue of the protocol. It may be included in future versions.

          \n
          \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_70", + "extensionAttributes": [], + "name": "NCI_70", + "text": "
          \n
          \n

          Note:

          \n

          The attachment has not been included in this issue of the protocol. It may be included in future versions.

          \n
          \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_71", + "extensionAttributes": [], + "name": "NCI_71", + "text": "
          \n
          \n

          Note:

          \n

          The attachment has not been included in this issue of the protocol. It may be included in future versions.

          \n
          \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_72", + "extensionAttributes": [], + "name": "NCI_72", + "text": "
          \n
          \n

          Note:

          \n

          The attachment has not been included in this issue of the protocol. It may be included in future versions.

          \n
          \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_73", + "extensionAttributes": [], + "name": "NCI_73", + "text": "
          \n
          \n

          Note:

          \n

          The attachment has not been included in this issue of the protocol. It may be included in future versions.

          \n
          \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_74", + "extensionAttributes": [], + "name": "NCI_74", + "text": "
          \n
          \n

          Note:

          \n

          The attachment has not been included in this issue of the protocol. It may be included in future versions.

          \n
          \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_75", + "extensionAttributes": [], + "name": "NCI_75", + "text": "
          \n
          \n

          Note:

          \n

          The attachment has not been included in this issue of the protocol. It may be included in future versions.

          \n
          \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_76", + "extensionAttributes": [], + "name": "NCI_76", + "text": "
          \n
          \n

          Note:

          \n

          The attachment has not been included in this issue of the protocol. It may be included in future versions.

          \n
          \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_77", + "extensionAttributes": [], + "name": "NCI_77", + "text": "

          Sponsor Confidentiality Statement:

          Full Title:

          Trial Acronym:

          Protocol Identifier:

          Original Protocol:

          Version Number:

          Version Date:

          Amendment Identifier:

          Amendment Scope:

          Compound Codes(s):

          Compound Name(s):

          Trial Phase:

          Short Title:

          Sponsor Name and Address:

          ,

          Regulatory Agency Identifier Number(s):

          Spondor Approval Date:

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_78", + "extensionAttributes": [], + "name": "NCI_78", + "text": "
          Committees\n

          A Data Safety Monitoring Board (DSMB), chaired by an external cardiologist, will meet after 75, 150, 225, and 300 patients have completed 1 month of treatment. The DSMB will review cardiovascular findings to decide if discontinuation of the study or any treatment arm is appropriate, if additional cardiovascular monitoring is required, if further cardiovascular monitoring is unnecessary, or if adjustment of dose within a treatment arm (or arms) is appropriate (see Section 3.9.4).

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_79", + "extensionAttributes": [], + "name": "NCI_79", + "text": "
          \"Alt\n

          Figure LZZT.1. Illustration of study design for Protocol H2Q-MC-LZZT(c).

          \n

          Following informed consent, patients will be screened at Visit 1. At screening, patients will undergo complete neuropsychiatric assessment, psychometric testing, and general medical assessment (including medical history, pre-existing conditions, physical examination). In addition, vital signs, temperature, medication history, electrocardiogram (ECG), chest x-ray, and safety laboratories will be obtained. During the screening visit, patients will wear a placebo TTS to determine willingness and ability to comply with transdermal administration procedures. If patients have not had central nervous system (CNS) imaging in the previous 12 months, a computed tomography (CT) or magnetic resonance imaging (MRI) scan will be obtained. If patients are insulin dependent diabetics, a hemoglobin A 1c will be obtained. Screening exams and procedures may be performed after Visit 1; however, their results must be completed and available prior to randomization. The screening process should occur within 2 weeks of randomization (Visit 3 of the study).

          \n

          Patients who meet enrollment criteria from Visit 1 will proceed to Visit 2 at which time they will undergo a 24-hour Ambulatory ECG. At Visit 3 the Ambulatory ECG will be removed and patients will be randomized to 1 of 3 treatment arms. The treatment arms will include a placebo arm, a low-dose xanomeline arm (50 cm 2 TTS Formulation E, 54 mg xanomeline), and a high-dose xanomeline arm (75 cm 2 TTS Formulation E, 81 mg xanomeline). All patients receiving xanomeline will be started at 50 cm 2 TTS Formulation E. For the first 8 weeks of treatment, patients will be assessed at clinic visits every 2 weeks and, thereafter, at clinic visits every 4 weeks. Patients who discontinue prior to Visit 12 (Week 24) will be brought back for full efficacy assessments at or near to 24 weeks, whenever possible.

          \n

          At Visits 3, 8, 10, and 12, efficacy instruments (ADAS-Cog, CIBIC+, and DAD) will be administered. NPI-X will be administered at 2-week intervals either at clinic visits or via a telephone interview. Vital signs, temperature, and an assessment of adverse events will be obtained at all clinic visits. An electrocardiogram (ECG), and chemistry/hematology safety labs will be obtained at Visits 4, 5, 7, 8, 9, 10, 11, 12, and 13. Urinalysis will be done at Visits 4, 9, and 12. Use of concomitant medications will be collected at Visits 3, 4, 5, 7, 8, 9, 10, 11, 12, and 13. Plasma levels of xanomeline and metabolites will be obtained at Visits 3, 4, 5, 7, 9, and 11. At Visits 3, 4, 5, 7, 8, 9, 10, 11, and 12, medications will be dispensed to the patients.

          \n

          Visits 1 through 13 should be scheduled relative to Visit 3 (Week 0 - randomization). Visits 4, 5, 7, 8, and 13 should occur within 3 days of their scheduled date. Visits 9, 10, 11, and 12 should occur within 4 days of their scheduled date. At Visit 13 patients will be given the option to enter the open-label extension phase (see Section 3.10.3. Study Extensions).

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_80", + "extensionAttributes": [], + "name": "NCI_80", + "text": "
          \n
          \n

          Note:

          \n

          The following SoA timelines are auto generated using the detailed study design held within the USDM.

          \n
          \n

          Timeline: Main Timeline, Potential subject identified

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X1

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X2

          X

          X

          X

          X

          X3

          X

          X

          X

          X

          X4

          X

          X

          X

          X

          X5

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          1

          Performed if patient is an insulin-dependent diabetic

          2

          Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

          3

          Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

          4

          Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

          5

          Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

          Timeline: Adverse Event Timeline, Subject suffers an adverse event

          X

          Timeline: Early Termination Timeline, Subject terminates the study early

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          X

          Timeline: Vital Sign Blood Pressure Timeline, Automatic execution

          X

          X

          X

          X

          X

          X

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_81", + "extensionAttributes": [], + "name": "NCI_81", + "text": "

          The primary objectives of this study are

          \n
            \n
          • \n
          • \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_82", + "extensionAttributes": [], + "name": "NCI_82", + "text": "

          The secondary objectives of this study are

          \n
            \n
          • \n
          • \n
          • \n
          • \n
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_83", + "extensionAttributes": [], + "name": "NCI_83", + "text": "

          Approximately 300 patients will be enrolled (see Schedule of Events for Protocol H2Q-MC-LZZT(c), Attachment LZZT.1).

          \n

          Duration

          \n

          SOMETHING HERE

          \n

          Patients with probable mild to moderate AD will be studied in a randomized, double-blind, parallel (3 arm), placebo-controlled trial of 26 weeks duration. The study will be conducted on an outpatient basis.

          \n

          At Visit 1, patients who meet the enrollment criteria of Mini-Mental State Examination (MMSE) score of 10 to 23 (Attachment LZZT.6), Hachinski Ischemia Score \u22644 (Attachment LZZT.8), a physical exam, safety labs, ECG, and urinalysis, will proceed to Visit 2 and Visit 3. At Visit 3, patients whose CNS imaging and other pending labs from Visit 1 satisfy the inclusion criteria (Section 3.4.2.1) will be enrolled in the study. Approximately 300 patients with a diagnosis of probable mild to moderate AD will be enrolled in the study.

          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_84", + "extensionAttributes": [], + "name": "NCI_84", + "text": "

          Patients may be included in the study only if they meet all the following criteria:

          \n
          01
          02
          03
          04
          05
          06
          07
          08
          ", + "instanceType": "NarrativeContentItem" + }, + { + "id": "NarrativeContentItem_85", + "extensionAttributes": [], + "name": "NCI_85", + "text": "

          Patients will be excluded from the study for any of the following reasons:

          \n
          09
          10
          11
          12
          13
          14
          15
          16b
          17
          18
          19
          20
          21
          22
          23
          24
          25
          26
          27b
          28b
          29b
          30b
          31b
          ", + "instanceType": "NarrativeContentItem" + } + ], + "abbreviations": [ + { + "id": "Abbreviation_1", + "extensionAttributes": [], + "abbreviatedText": "AE", + "expandedText": "adverse event", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_2", + "extensionAttributes": [], + "abbreviatedText": "BMI", + "expandedText": "body mass index", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_3", + "extensionAttributes": [], + "abbreviatedText": "C-I", + "expandedText": "check-in", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_5", + "extensionAttributes": [], + "abbreviatedText": "D", + "expandedText": "day", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_6", + "extensionAttributes": [], + "abbreviatedText": "ECG", + "expandedText": "electrocardiogram", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_7", + "extensionAttributes": [], + "abbreviatedText": "EOS/ET", + "expandedText": "End of Study or Early Termination", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_8", + "extensionAttributes": [], + "abbreviatedText": "HIV", + "expandedText": "human immunodeficiency virus", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_9", + "extensionAttributes": [], + "abbreviatedText": "HR", + "expandedText": "heart rate", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_12", + "extensionAttributes": [], + "abbreviatedText": "OP", + "expandedText": "outpatient", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_13", + "extensionAttributes": [], + "abbreviatedText": "PD", + "expandedText": "pharmacodynamic", + "notes": [], + "instanceType": "Abbreviation" + }, + { + "id": "Abbreviation_14", + "extensionAttributes": [], + "abbreviatedText": "PK", + "expandedText": "pharmacokinetics", + "notes": [], + "instanceType": "Abbreviation" + } + ], + "roles": [ + { + "id": "StudyRole_1", + "extensionAttributes": [], + "name": "ROLE_1", + "label": "Sponsor", + "description": "Sponsor role", + "code": { + "id": "Code_670", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SPONSOR", + "instanceType": "Code" + }, + "appliesToIds": [], + "assignedPersons": [], + "organizationIds": ["Organization_1"], + "masking": { + "id": "Masking_1", + "extensionAttributes": [], + "text": "Masked", + "isMasked": true, + "instanceType": "Masking" + }, + "notes": [], + "instanceType": "StudyRole" + } + ], + "organizations": [ + { + "id": "Organization_1", + "extensionAttributes": [], + "name": "LILLY", + "label": "Eli Lilly", + "type": { + "id": "Code_1", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SPONSOR", + "instanceType": "Code" + }, + "identifierScheme": "DUNS", + "identifier": "00-642-1325", + "legalAddress": { + "id": "Address_1", + "extensionAttributes": [], + "text": "Lilly Corporate Ctr, Indianapolis, , IN, 4628, United States of America", + "lines": ["Lilly Corporate Ctr"], + "city": "Indianapolis", + "district": "", + "state": "IN", + "postalCode": "4628", + "country": { + "id": "Code_2", + "extensionAttributes": [], + "code": "USA", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_2", + "extensionAttributes": [], + "name": "CT-GOV", + "label": "ClinicalTrials.gov", + "type": { + "id": "Code_3", + "extensionAttributes": [], + "code": "C93453", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Study Registry", + "instanceType": "Code" + }, + "identifierScheme": "USGOV", + "identifier": "CT-GOV", + "legalAddress": { + "id": "Address_2", + "extensionAttributes": [], + "text": "National Library of Medicine, Bethesda, 8600 Rockville Pike, MD, 20894, United States of America", + "lines": ["National Library of Medicine"], + "city": "Bethesda", + "district": "8600 Rockville Pike", + "state": "MD", + "postalCode": "20894", + "country": { + "id": "Code_4", + "extensionAttributes": [], + "code": "USA", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United States of America", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [], + "instanceType": "Organization" + }, + { + "id": "Organization_3", + "extensionAttributes": [], + "name": "SITE_ORG_1", + "label": "Big Hospital", + "type": { + "id": "Code_5", + "extensionAttributes": [], + "code": "C70793", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SPONSOR", + "instanceType": "Code" + }, + "identifierScheme": "DUNS", + "identifier": "123456789", + "legalAddress": { + "id": "Address_3", + "extensionAttributes": [], + "text": "line, city, district, state, postal_code, United Kingdom of Great Britain and Northern Ireland", + "lines": ["line"], + "city": "city", + "district": "district", + "state": "state", + "postalCode": "postal_code", + "country": { + "id": "Code_6", + "extensionAttributes": [], + "code": "GBR", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United Kingdom of Great Britain and Northern Ireland", + "instanceType": "Code" + }, + "instanceType": "Address" + }, + "managedSites": [ + { + "id": "StudySite_1", + "extensionAttributes": [], + "name": "SITE_1", + "label": "Site One", + "description": "Main Site", + "country": { + "id": "Code_669", + "extensionAttributes": [], + "code": "GBR", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "United Kingdom of Great Britain and Northern Ireland", + "instanceType": "Code" + }, + "instanceType": "StudySite" + } + ], + "instanceType": "Organization" + } + ], + "studyInterventions": [ + { + "id": "StudyIntervention_1", + "extensionAttributes": [], + "name": "XINONILINE", + "label": "Xinomiline", + "description": "Xinomiline", + "role": { + "id": "Code_611", + "extensionAttributes": [], + "code": "C41161", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Experimental Intervention", + "instanceType": "Code" + }, + "type": { + "id": "Code_612", + "extensionAttributes": [], + "code": "C1909", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DRUG", + "instanceType": "Code" + }, + "minimumResponseDuration": { + "id": "Quantity_4", + "extensionAttributes": [], + "value": "1.0", + "unit": { + "id": "AliasCode_246", + "extensionAttributes": [], + "standardCode": { + "id": "Code_613", + "extensionAttributes": [], + "code": "C25301", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Day", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "codes": [ + { + "id": "Code_610", + "extensionAttributes": [], + "code": "XIN", + "codeSystem": "SPONSOR", + "codeSystemVersion": "12", + "decode": "XIN", + "instanceType": "Code" + } + ], + "administrations": [ + { + "id": "Administration_1", + "extensionAttributes": [], + "name": "PATCH_50", + "label": "", + "description": "50 cm2 Patch", + "duration": { + "id": "Duration_1", + "extensionAttributes": [], + "text": "", + "quantity": { + "id": "Quantity_2", + "extensionAttributes": [], + "value": 24.0, + "unit": { + "id": "AliasCode_242", + "extensionAttributes": [], + "standardCode": { + "id": "Code_606", + "extensionAttributes": [], + "code": "C29844", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Week", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "durationWillVary": false, + "reasonDurationWillVary": "", + "instanceType": "Duration" + }, + "dose": { + "id": "Quantity_3", + "extensionAttributes": [], + "value": 54.0, + "unit": { + "id": "AliasCode_243", + "extensionAttributes": [], + "standardCode": { + "id": "Code_607", + "extensionAttributes": [], + "code": "C28253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milligram", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "route": { + "id": "AliasCode_244", + "extensionAttributes": [], + "standardCode": { + "id": "Code_608", + "extensionAttributes": [], + "code": "C38288", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ORAL", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "frequency": { + "id": "AliasCode_245", + "extensionAttributes": [], + "standardCode": { + "id": "Code_609", + "extensionAttributes": [], + "code": "C25473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "QD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "administrableProductId": "AdmProd_1", + "medicalDeviceId": null, + "notes": [], + "instanceType": "Administration" + }, + { + "id": "Administration_2", + "extensionAttributes": [], + "name": "PATCH_75", + "label": "", + "description": "75 cm2 Patch", + "duration": { + "id": "Duration_2", + "extensionAttributes": [], + "text": "", + "quantity": { + "id": "Quantity_5", + "extensionAttributes": [], + "value": 24.0, + "unit": { + "id": "AliasCode_247", + "extensionAttributes": [], + "standardCode": { + "id": "Code_614", + "extensionAttributes": [], + "code": "C29844", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Week", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "durationWillVary": false, + "reasonDurationWillVary": "", + "instanceType": "Duration" + }, + "dose": { + "id": "Quantity_6", + "extensionAttributes": [], + "value": 81.0, + "unit": { + "id": "AliasCode_248", + "extensionAttributes": [], + "standardCode": { + "id": "Code_615", + "extensionAttributes": [], + "code": "C28253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milligram", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "Quantity" + }, + "route": { + "id": "AliasCode_249", + "extensionAttributes": [], + "standardCode": { + "id": "Code_616", + "extensionAttributes": [], + "code": "C38288", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ORAL", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "frequency": { + "id": "AliasCode_250", + "extensionAttributes": [], + "standardCode": { + "id": "Code_617", + "extensionAttributes": [], + "code": "C25473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "QD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "administrableProductId": "AdmProd_1", + "medicalDeviceId": null, + "notes": [], + "instanceType": "Administration" + } + ], + "notes": [], + "instanceType": "StudyIntervention" + } + ], + "administrableProducts": [ + { + "id": "AdmProd_1", + "extensionAttributes": [], + "name": "AdmProd1", + "label": "Xanomeline", + "description": null, + "administrableDoseForm": { + "id": "AliasCode_p01", + "extensionAttributes": [], + "standardCode": { + "id": "Code_p01", + "extensionAttributes": [], + "code": "C66726", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "PATCH", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "sourcing": { + "id": "Code_p02", + "extensionAttributes": [], + "code": "C215659", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Centrally Sourced", + "instanceType": "Code" + }, + "productDesignation": { + "id": "Code_p03", + "extensionAttributes": [], + "code": "C202579", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "IMP", + "instanceType": "Code" + }, + "pharmacologClass": null, + "properties": [ + { + "id": "AdmProdProp_1", + "extensionAttributes": [], + "name": "AdmProdProp1", + "type": { + "id": "Code_p04", + "extensionAttributes": [], + "code": "C215479", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "pH", + "instanceType": "Code" + }, + "text": "7.0", + "quantity": null, + "instanceType": "AdministrableProductProperty" + } + ], + "notes": [], + "instanceType": "AdministrableProduct" + } + ], + "medicalDevices": [], + "productOrganizationRoles": [], + "biomedicalConcepts": [ + { + "id": "BiomedicalConcept_20", + "extensionAttributes": [], + "name": "Sex", + "label": "Sex", + "synonyms": [], + "reference": "/mdr/bc/packages/2025-04-01/biomedicalconcepts/C28421", + "properties": [ + { + "id": "BiomedicalConceptProperty_130", + "extensionAttributes": [], + "name": "Sex", + "label": "Sex", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [ + { + "id": "ResponseCode_174", + "extensionAttributes": [], + "name": "RC_C20197", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_482", + "extensionAttributes": [], + "code": "C20197", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Male", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_175", + "extensionAttributes": [], + "name": "RC_C16576", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_483", + "extensionAttributes": [], + "code": "C16576", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Female", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_173", + "extensionAttributes": [], + "standardCode": { + "id": "Code_484", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sex", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_131", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_174", + "extensionAttributes": [], + "standardCode": { + "id": "Code_485", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_175", + "extensionAttributes": [], + "standardCode": { + "id": "Code_486", + "extensionAttributes": [], + "code": "C28421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sex", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_21", + "extensionAttributes": [], + "name": "Race", + "label": "Race", + "synonyms": ["Racial Group"], + "reference": "/mdr/bc/packages/2025-04-01/biomedicalconcepts/C17049", + "properties": [ + { + "id": "BiomedicalConceptProperty_132", + "extensionAttributes": [], + "name": "Race", + "label": "Race", + "isRequired": true, + "isEnabled": true, + "datatype": "string", + "responseCodes": [], + "code": { + "id": "AliasCode_176", + "extensionAttributes": [], + "standardCode": { + "id": "Code_487", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Race", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_133", + "extensionAttributes": [], + "name": "Collection Date Time", + "label": "Collection Date Time", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_177", + "extensionAttributes": [], + "standardCode": { + "id": "Code_488", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_178", + "extensionAttributes": [], + "standardCode": { + "id": "Code_489", + "extensionAttributes": [], + "code": "C17049", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Race", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_22", + "extensionAttributes": [], + "name": "Temperature", + "label": "Temperature", + "synonyms": ["Temperature", "Body Temperature"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/TEMP", + "properties": [ + { + "id": "BiomedicalConceptProperty_134", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_179", + "extensionAttributes": [], + "standardCode": { + "id": "Code_490", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_135", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_180", + "extensionAttributes": [], + "standardCode": { + "id": "Code_491", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_136", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_176", + "extensionAttributes": [], + "name": "RC_C42559", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_492", + "extensionAttributes": [], + "code": "C42559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Degree Celsius", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_177", + "extensionAttributes": [], + "name": "RC_C44277", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_493", + "extensionAttributes": [], + "code": "C44277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Degree Fahrenheit", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_178", + "extensionAttributes": [], + "name": "RC_C42537", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_494", + "extensionAttributes": [], + "code": "C42537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Kelvin", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_181", + "extensionAttributes": [], + "standardCode": { + "id": "Code_495", + "extensionAttributes": [], + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Temperature", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_137", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_179", + "extensionAttributes": [], + "name": "RC_C12674", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_496", + "extensionAttributes": [], + "code": "C12674", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Axilla", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_180", + "extensionAttributes": [], + "name": "RC_C12394", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_497", + "extensionAttributes": [], + "code": "C12394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Ear", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_181", + "extensionAttributes": [], + "name": "RC_C89803", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_498", + "extensionAttributes": [], + "code": "C89803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Forehead", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_182", + "extensionAttributes": [], + "name": "RC_C12421", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_499", + "extensionAttributes": [], + "code": "C12421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Oral Cavity", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_183", + "extensionAttributes": [], + "name": "RC_C12390", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_500", + "extensionAttributes": [], + "code": "C12390", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Rectum", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_182", + "extensionAttributes": [], + "standardCode": { + "id": "Code_501", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_138", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_183", + "extensionAttributes": [], + "standardCode": { + "id": "Code_502", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_184", + "extensionAttributes": [], + "standardCode": { + "id": "Code_503", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_23", + "extensionAttributes": [], + "name": "Weight", + "label": "Weight", + "synonyms": ["WEIGHT", "Body Weight"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/WEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_139", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_185", + "extensionAttributes": [], + "standardCode": { + "id": "Code_504", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_140", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_186", + "extensionAttributes": [], + "standardCode": { + "id": "Code_505", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_141", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_184", + "extensionAttributes": [], + "name": "RC_C48531", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_506", + "extensionAttributes": [], + "code": "C48531", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Pound", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_185", + "extensionAttributes": [], + "name": "RC_C48155", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_507", + "extensionAttributes": [], + "code": "C48155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Gram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_186", + "extensionAttributes": [], + "name": "RC_C28252", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_508", + "extensionAttributes": [], + "code": "C28252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Kilogram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_187", + "extensionAttributes": [], + "standardCode": { + "id": "Code_509", + "extensionAttributes": [], + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_142", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_188", + "extensionAttributes": [], + "standardCode": { + "id": "Code_510", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_189", + "extensionAttributes": [], + "standardCode": { + "id": "Code_511", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_24", + "extensionAttributes": [], + "name": "Height", + "label": "Height", + "synonyms": ["HEIGHT", "Body Height"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/HEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_143", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_190", + "extensionAttributes": [], + "standardCode": { + "id": "Code_512", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_144", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_191", + "extensionAttributes": [], + "standardCode": { + "id": "Code_513", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_145", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_187", + "extensionAttributes": [], + "name": "RC_C49668", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_514", + "extensionAttributes": [], + "code": "C49668", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Centimeter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_188", + "extensionAttributes": [], + "name": "RC_C48500", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_515", + "extensionAttributes": [], + "code": "C48500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Inch", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_189", + "extensionAttributes": [], + "name": "RC_C41139", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_516", + "extensionAttributes": [], + "code": "C41139", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Meter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_192", + "extensionAttributes": [], + "standardCode": { + "id": "Code_517", + "extensionAttributes": [], + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Height", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_146", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_193", + "extensionAttributes": [], + "standardCode": { + "id": "Code_518", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_194", + "extensionAttributes": [], + "standardCode": { + "id": "Code_519", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_25", + "extensionAttributes": [], + "name": "Alanine Aminotransferase Concentration in Serum/Plasma", + "label": "Alanine Aminotransferase Concentration in Serum/Plasma", + "synonyms": ["ALT", "SGPT", "Alanine Aminotransferase Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_147", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_195", + "extensionAttributes": [], + "standardCode": { + "id": "Code_520", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_148", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_196", + "extensionAttributes": [], + "standardCode": { + "id": "Code_521", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_149", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_190", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_522", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_191", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_523", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_192", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_524", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_193", + "extensionAttributes": [], + "name": "RC_C70510", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_525", + "extensionAttributes": [], + "code": "C70510", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Nanokatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_197", + "extensionAttributes": [], + "standardCode": { + "id": "Code_526", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_150", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_198", + "extensionAttributes": [], + "standardCode": { + "id": "Code_527", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_151", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_194", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_528", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_195", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_529", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_199", + "extensionAttributes": [], + "standardCode": { + "id": "Code_530", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_200", + "extensionAttributes": [], + "standardCode": { + "id": "Code_531", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_26", + "extensionAttributes": [], + "name": "Albumin Presence in Urine", + "label": "Albumin Presence in Urine", + "synonyms": ["Albumin", "Albumin Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALBURINPRES", + "properties": [ + { + "id": "BiomedicalConceptProperty_152", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_201", + "extensionAttributes": [], + "standardCode": { + "id": "Code_532", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_153", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_202", + "extensionAttributes": [], + "standardCode": { + "id": "Code_533", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_154", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_203", + "extensionAttributes": [], + "standardCode": { + "id": "Code_534", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_155", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_196", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_535", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_197", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_536", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_204", + "extensionAttributes": [], + "standardCode": { + "id": "Code_537", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_205", + "extensionAttributes": [], + "standardCode": { + "id": "Code_538", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_27", + "extensionAttributes": [], + "name": "Alkaline Phosphatase Concentration in Serum/Plasma", + "label": "Alkaline Phosphatase Concentration in Serum/Plasma", + "synonyms": [ + "Alkaline Phosphatase", + "Alkaline Phosphatase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALPSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_156", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_206", + "extensionAttributes": [], + "standardCode": { + "id": "Code_539", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_157", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_207", + "extensionAttributes": [], + "standardCode": { + "id": "Code_540", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_158", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_198", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_541", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_199", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_542", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_200", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_543", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_208", + "extensionAttributes": [], + "standardCode": { + "id": "Code_544", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_159", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_209", + "extensionAttributes": [], + "standardCode": { + "id": "Code_545", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_160", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_201", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_546", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_202", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_547", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_210", + "extensionAttributes": [], + "standardCode": { + "id": "Code_548", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_211", + "extensionAttributes": [], + "standardCode": { + "id": "Code_549", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_28", + "extensionAttributes": [], + "name": "Aspartate Aminotransferase in Serum/Plasma", + "label": "Aspartate Aminotransferase in Serum/Plasma", + "synonyms": [ + "AST", + "SGOT", + "Aspartate Aminotransferase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ASTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_161", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_212", + "extensionAttributes": [], + "standardCode": { + "id": "Code_550", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_162", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_213", + "extensionAttributes": [], + "standardCode": { + "id": "Code_551", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_163", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_203", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_552", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_204", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_553", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_205", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_554", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_214", + "extensionAttributes": [], + "standardCode": { + "id": "Code_555", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_164", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_215", + "extensionAttributes": [], + "standardCode": { + "id": "Code_556", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_165", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_206", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_557", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_207", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_558", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_216", + "extensionAttributes": [], + "standardCode": { + "id": "Code_559", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_217", + "extensionAttributes": [], + "standardCode": { + "id": "Code_560", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_29", + "extensionAttributes": [], + "name": "Creatinine Concentration in Urine", + "label": "Creatinine Concentration in Urine", + "synonyms": ["Creatinine", "Creatinine Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/CREATURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_166", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_218", + "extensionAttributes": [], + "standardCode": { + "id": "Code_561", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_167", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_219", + "extensionAttributes": [], + "standardCode": { + "id": "Code_562", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_168", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_208", + "extensionAttributes": [], + "name": "RC_C67015", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_563", + "extensionAttributes": [], + "code": "C67015", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milligram per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_209", + "extensionAttributes": [], + "name": "RC_C64572", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_564", + "extensionAttributes": [], + "code": "C64572", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microgram per Milliliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_210", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_565", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_211", + "extensionAttributes": [], + "name": "RC_C48508", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_566", + "extensionAttributes": [], + "code": "C48508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Micromole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_220", + "extensionAttributes": [], + "standardCode": { + "id": "Code_567", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_169", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_221", + "extensionAttributes": [], + "standardCode": { + "id": "Code_568", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_170", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_212", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_569", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_213", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_570", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_222", + "extensionAttributes": [], + "standardCode": { + "id": "Code_571", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_223", + "extensionAttributes": [], + "standardCode": { + "id": "Code_572", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_30", + "extensionAttributes": [], + "name": "Potassium Concentration in Urine", + "label": "Potassium Concentration in Urine", + "synonyms": ["Potassium", "K", "Potassium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/KURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_171", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_224", + "extensionAttributes": [], + "standardCode": { + "id": "Code_573", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_172", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_225", + "extensionAttributes": [], + "standardCode": { + "id": "Code_574", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_173", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_214", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_575", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_215", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_576", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_216", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_577", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_226", + "extensionAttributes": [], + "standardCode": { + "id": "Code_578", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_174", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_227", + "extensionAttributes": [], + "standardCode": { + "id": "Code_579", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_175", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_217", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_580", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_218", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_581", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_228", + "extensionAttributes": [], + "standardCode": { + "id": "Code_582", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_229", + "extensionAttributes": [], + "standardCode": { + "id": "Code_583", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_31", + "extensionAttributes": [], + "name": "Sodium Concentration in Urine", + "label": "Sodium Concentration in Urine", + "synonyms": ["Sodium", "NA", "Sodium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SODIUMURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_176", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_230", + "extensionAttributes": [], + "standardCode": { + "id": "Code_584", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_177", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_231", + "extensionAttributes": [], + "standardCode": { + "id": "Code_585", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_178", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_219", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_586", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_220", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_587", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_221", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_588", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_232", + "extensionAttributes": [], + "standardCode": { + "id": "Code_589", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_179", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_233", + "extensionAttributes": [], + "standardCode": { + "id": "Code_590", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_180", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_222", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_591", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_223", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_592", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_234", + "extensionAttributes": [], + "standardCode": { + "id": "Code_593", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_235", + "extensionAttributes": [], + "standardCode": { + "id": "Code_594", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_32", + "extensionAttributes": [], + "name": "Hemoglobin A1C Concentration in Blood", + "label": "Hemoglobin A1C Concentration in Blood", + "synonyms": [ + "Hemoglobin A1C", + "HBA1C", + "Glycosylated Hemoglobin A1C", + "Hemoglobin A1C Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/HBA1CBLD", + "properties": [ + { + "id": "BiomedicalConceptProperty_181", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_236", + "extensionAttributes": [], + "standardCode": { + "id": "Code_595", + "extensionAttributes": [], + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HBA1C", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_182", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_237", + "extensionAttributes": [], + "standardCode": { + "id": "Code_596", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_183", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_224", + "extensionAttributes": [], + "name": "RC_C64783", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_597", + "extensionAttributes": [], + "code": "C64783", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Gram per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_238", + "extensionAttributes": [], + "standardCode": { + "id": "Code_598", + "extensionAttributes": [], + "code": "No Concept Code 1", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "LBORRESU", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_184", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_239", + "extensionAttributes": [], + "standardCode": { + "id": "Code_599", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_185", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_225", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_600", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_226", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_601", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_240", + "extensionAttributes": [], + "standardCode": { + "id": "Code_602", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_241", + "extensionAttributes": [], + "standardCode": { + "id": "Code_603", + "extensionAttributes": [], + "code": "C64849", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HBA1C", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_1", + "extensionAttributes": [], + "name": "Adverse Event Prespecified", + "label": "Adverse Event Prespecified", + "synonyms": ["Adverse Event", "Solicited Adverse Event"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/AEPRESP", + "properties": [ + { + "id": "BiomedicalConceptProperty_1", + "extensionAttributes": [], + "name": "AETERM", + "label": "AETERM", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_25", + "extensionAttributes": [], + "standardCode": { + "id": "Code_161", + "extensionAttributes": [], + "code": "C78541", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Verbatim Description", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_2", + "extensionAttributes": [], + "name": "AEDECOD", + "label": "AEDECOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_26", + "extensionAttributes": [], + "standardCode": { + "id": "Code_162", + "extensionAttributes": [], + "code": "C83344", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Dictionary Derived Term", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_3", + "extensionAttributes": [], + "name": "AEHLGT", + "label": "AEHLGT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_27", + "extensionAttributes": [], + "standardCode": { + "id": "Code_163", + "extensionAttributes": [], + "code": "No Concept Code 2", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "AEHLGT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_4", + "extensionAttributes": [], + "name": "AEHLGTCD", + "label": "AEHLGTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_28", + "extensionAttributes": [], + "standardCode": { + "id": "Code_164", + "extensionAttributes": [], + "code": "No Concept Code 3", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "AEHLGTCD", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_5", + "extensionAttributes": [], + "name": "AEPRESP", + "label": "AEPRESP", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_1", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_165", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_29", + "extensionAttributes": [], + "standardCode": { + "id": "Code_166", + "extensionAttributes": [], + "code": "C87840", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Pre-specified", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_6", + "extensionAttributes": [], + "name": "AELOC", + "label": "AELOC", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_30", + "extensionAttributes": [], + "standardCode": { + "id": "Code_167", + "extensionAttributes": [], + "code": "C83205", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Location", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_7", + "extensionAttributes": [], + "name": "AESEV", + "label": "AESEV", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_31", + "extensionAttributes": [], + "standardCode": { + "id": "Code_168", + "extensionAttributes": [], + "code": "C53253", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Severity of Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_8", + "extensionAttributes": [], + "name": "AESER", + "label": "AESER", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_2", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_169", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_3", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_170", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_32", + "extensionAttributes": [], + "standardCode": { + "id": "Code_171", + "extensionAttributes": [], + "code": "C53252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Seriousness of Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_9", + "extensionAttributes": [], + "name": "AEACN", + "label": "AEACN", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_33", + "extensionAttributes": [], + "standardCode": { + "id": "Code_172", + "extensionAttributes": [], + "code": "C83013", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Action Taken with Study Treatment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_10", + "extensionAttributes": [], + "name": "AEACNOTH", + "label": "AEACNOTH", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_34", + "extensionAttributes": [], + "standardCode": { + "id": "Code_173", + "extensionAttributes": [], + "code": "C83109", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Other Actions taken in Response to Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_11", + "extensionAttributes": [], + "name": "AEREL", + "label": "AEREL", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_35", + "extensionAttributes": [], + "standardCode": { + "id": "Code_174", + "extensionAttributes": [], + "code": "C41358", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Attribution to Product or Procedure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_12", + "extensionAttributes": [], + "name": "AERELNST", + "label": "AERELNST", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_36", + "extensionAttributes": [], + "standardCode": { + "id": "Code_175", + "extensionAttributes": [], + "code": "C83210", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Relationship to Non Study Treatment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_13", + "extensionAttributes": [], + "name": "AEPATT", + "label": "AEPATT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_37", + "extensionAttributes": [], + "standardCode": { + "id": "Code_176", + "extensionAttributes": [], + "code": "C83208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Pattern", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_14", + "extensionAttributes": [], + "name": "AEOUT", + "label": "AEOUT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_38", + "extensionAttributes": [], + "standardCode": { + "id": "Code_177", + "extensionAttributes": [], + "code": "C49489", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Outcome", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_15", + "extensionAttributes": [], + "name": "AESCAN", + "label": "AESCAN", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_4", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_178", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_5", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_179", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_39", + "extensionAttributes": [], + "standardCode": { + "id": "Code_180", + "extensionAttributes": [], + "code": "C83211", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Involves Cancer", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_16", + "extensionAttributes": [], + "name": "AESCONG", + "label": "AESCONG", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_6", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_181", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_7", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_182", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_40", + "extensionAttributes": [], + "standardCode": { + "id": "Code_183", + "extensionAttributes": [], + "code": "C83117", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Seriousness Due to Congenital Anomaly", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_17", + "extensionAttributes": [], + "name": "AESDISAB", + "label": "AESDISAB", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_8", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_184", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_9", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_185", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_41", + "extensionAttributes": [], + "standardCode": { + "id": "Code_186", + "extensionAttributes": [], + "code": "C113380", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Disabling Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_18", + "extensionAttributes": [], + "name": "AESDTH", + "label": "AESDTH", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_10", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_187", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_11", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_188", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_42", + "extensionAttributes": [], + "standardCode": { + "id": "Code_189", + "extensionAttributes": [], + "code": "C48275", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Death Related to Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_19", + "extensionAttributes": [], + "name": "AESHOSP", + "label": "AESHOSP", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_12", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_190", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_13", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_191", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_43", + "extensionAttributes": [], + "standardCode": { + "id": "Code_192", + "extensionAttributes": [], + "code": "C83052", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event associated with Hospitalization", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_20", + "extensionAttributes": [], + "name": "AESLIFE", + "label": "AESLIFE", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_14", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_193", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_15", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_194", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_44", + "extensionAttributes": [], + "standardCode": { + "id": "Code_195", + "extensionAttributes": [], + "code": "C84266", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Life Threatening Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_21", + "extensionAttributes": [], + "name": "AESOD", + "label": "AESOD", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_16", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_196", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_17", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_197", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_45", + "extensionAttributes": [], + "standardCode": { + "id": "Code_198", + "extensionAttributes": [], + "code": "C83214", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Occurred with Overdose", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_22", + "extensionAttributes": [], + "name": "AESMIE", + "label": "AESMIE", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_18", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_199", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_19", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_200", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_46", + "extensionAttributes": [], + "standardCode": { + "id": "Code_201", + "extensionAttributes": [], + "code": "C83053", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Associated with Serious Medical Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_23", + "extensionAttributes": [], + "name": "AECONTRT", + "label": "AECONTRT", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [ + { + "id": "ResponseCode_20", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_202", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_21", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_203", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_47", + "extensionAttributes": [], + "standardCode": { + "id": "Code_204", + "extensionAttributes": [], + "code": "C83199", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Concomitant Treatment", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_24", + "extensionAttributes": [], + "name": "AETOXGR", + "label": "AETOXGR", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_48", + "extensionAttributes": [], + "standardCode": { + "id": "Code_205", + "extensionAttributes": [], + "code": "C78605", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Toxicity Grade", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_25", + "extensionAttributes": [], + "name": "AESTDTC", + "label": "AESTDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_49", + "extensionAttributes": [], + "standardCode": { + "id": "Code_206", + "extensionAttributes": [], + "code": "C83215", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event Start Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_26", + "extensionAttributes": [], + "name": "AEENDTC", + "label": "AEENDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "datetime", + "responseCodes": [], + "code": { + "id": "AliasCode_50", + "extensionAttributes": [], + "standardCode": { + "id": "Code_207", + "extensionAttributes": [], + "code": "C83201", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Adverse Event End Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_51", + "extensionAttributes": [], + "standardCode": { + "id": "Code_208", + "extensionAttributes": [], + "code": "C179175", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Solicited Adverse Event", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_2", + "extensionAttributes": [], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": ["SYSBP", "Systolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SYSBP", + "properties": [ + { + "id": "BiomedicalConceptProperty_27", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_52", + "extensionAttributes": [], + "standardCode": { + "id": "Code_209", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_28", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_53", + "extensionAttributes": [], + "standardCode": { + "id": "Code_210", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_29", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_54", + "extensionAttributes": [], + "standardCode": { + "id": "Code_211", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_30", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_22", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_212", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_23", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_213", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_24", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_214", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_25", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_215", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_26", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_216", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_55", + "extensionAttributes": [], + "standardCode": { + "id": "Code_217", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_31", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_27", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_218", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_28", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_219", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_29", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_220", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_30", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_221", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_31", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_222", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_32", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_223", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_56", + "extensionAttributes": [], + "standardCode": { + "id": "Code_224", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_32", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_33", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_225", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_34", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_226", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_57", + "extensionAttributes": [], + "standardCode": { + "id": "Code_227", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_33", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_58", + "extensionAttributes": [], + "standardCode": { + "id": "Code_228", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_59", + "extensionAttributes": [], + "standardCode": { + "id": "Code_229", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_3", + "extensionAttributes": [], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": ["DIABP", "Diastolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/DIABP", + "properties": [ + { + "id": "BiomedicalConceptProperty_34", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_60", + "extensionAttributes": [], + "standardCode": { + "id": "Code_230", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_35", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_61", + "extensionAttributes": [], + "standardCode": { + "id": "Code_231", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_36", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_62", + "extensionAttributes": [], + "standardCode": { + "id": "Code_232", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_37", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_35", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_233", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_36", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_234", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_37", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_235", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_38", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_236", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_39", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_237", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_63", + "extensionAttributes": [], + "standardCode": { + "id": "Code_238", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_38", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_40", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_239", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_41", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_240", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_42", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_241", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_43", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_242", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_44", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_243", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_45", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_244", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_64", + "extensionAttributes": [], + "standardCode": { + "id": "Code_245", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_39", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_46", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_246", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_47", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_247", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_65", + "extensionAttributes": [], + "standardCode": { + "id": "Code_248", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_40", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_66", + "extensionAttributes": [], + "standardCode": { + "id": "Code_249", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_67", + "extensionAttributes": [], + "standardCode": { + "id": "Code_250", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_4", + "extensionAttributes": [], + "name": "Temperature", + "label": "Temperature", + "synonyms": ["Temperature", "Body Temperature"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/TEMP", + "properties": [ + { + "id": "BiomedicalConceptProperty_41", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_68", + "extensionAttributes": [], + "standardCode": { + "id": "Code_251", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_42", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_69", + "extensionAttributes": [], + "standardCode": { + "id": "Code_252", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_43", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_48", + "extensionAttributes": [], + "name": "RC_C42559", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_253", + "extensionAttributes": [], + "code": "C42559", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Degree Celsius", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_49", + "extensionAttributes": [], + "name": "RC_C44277", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_254", + "extensionAttributes": [], + "code": "C44277", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Degree Fahrenheit", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_50", + "extensionAttributes": [], + "name": "RC_C42537", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_255", + "extensionAttributes": [], + "code": "C42537", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Kelvin", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_70", + "extensionAttributes": [], + "standardCode": { + "id": "Code_256", + "extensionAttributes": [], + "code": "C44276", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Temperature", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_44", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_51", + "extensionAttributes": [], + "name": "RC_C12674", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_257", + "extensionAttributes": [], + "code": "C12674", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Axilla", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_52", + "extensionAttributes": [], + "name": "RC_C12394", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_258", + "extensionAttributes": [], + "code": "C12394", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Ear", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_53", + "extensionAttributes": [], + "name": "RC_C89803", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_259", + "extensionAttributes": [], + "code": "C89803", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Forehead", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_54", + "extensionAttributes": [], + "name": "RC_C12421", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_260", + "extensionAttributes": [], + "code": "C12421", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Oral Cavity", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_55", + "extensionAttributes": [], + "name": "RC_C12390", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_261", + "extensionAttributes": [], + "code": "C12390", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Rectum", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_71", + "extensionAttributes": [], + "standardCode": { + "id": "Code_262", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_45", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_72", + "extensionAttributes": [], + "standardCode": { + "id": "Code_263", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_73", + "extensionAttributes": [], + "standardCode": { + "id": "Code_264", + "extensionAttributes": [], + "code": "C174446", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "TEMP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_5", + "extensionAttributes": [], + "name": "Weight", + "label": "Weight", + "synonyms": ["WEIGHT", "Body Weight"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/WEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_46", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_74", + "extensionAttributes": [], + "standardCode": { + "id": "Code_265", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_47", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_75", + "extensionAttributes": [], + "standardCode": { + "id": "Code_266", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_48", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_56", + "extensionAttributes": [], + "name": "RC_C48531", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_267", + "extensionAttributes": [], + "code": "C48531", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Pound", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_57", + "extensionAttributes": [], + "name": "RC_C48155", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_268", + "extensionAttributes": [], + "code": "C48155", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Gram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_58", + "extensionAttributes": [], + "name": "RC_C28252", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_269", + "extensionAttributes": [], + "code": "C28252", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Kilogram", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_76", + "extensionAttributes": [], + "standardCode": { + "id": "Code_270", + "extensionAttributes": [], + "code": "C48208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Weight", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_49", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_77", + "extensionAttributes": [], + "standardCode": { + "id": "Code_271", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_78", + "extensionAttributes": [], + "standardCode": { + "id": "Code_272", + "extensionAttributes": [], + "code": "C25208", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "WEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_6", + "extensionAttributes": [], + "name": "Height", + "label": "Height", + "synonyms": ["HEIGHT", "Body Height"], + "reference": "/mdr/specializations/sdtm/packages/2024-12-16/datasetspecializations/HEIGHT", + "properties": [ + { + "id": "BiomedicalConceptProperty_50", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_79", + "extensionAttributes": [], + "standardCode": { + "id": "Code_273", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_51", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_80", + "extensionAttributes": [], + "standardCode": { + "id": "Code_274", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_52", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_59", + "extensionAttributes": [], + "name": "RC_C49668", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_275", + "extensionAttributes": [], + "code": "C49668", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Centimeter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_60", + "extensionAttributes": [], + "name": "RC_C48500", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_276", + "extensionAttributes": [], + "code": "C48500", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Inch", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_61", + "extensionAttributes": [], + "name": "RC_C41139", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_277", + "extensionAttributes": [], + "code": "C41139", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Meter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_81", + "extensionAttributes": [], + "standardCode": { + "id": "Code_278", + "extensionAttributes": [], + "code": "C168688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Height", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_53", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_82", + "extensionAttributes": [], + "standardCode": { + "id": "Code_279", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_83", + "extensionAttributes": [], + "standardCode": { + "id": "Code_280", + "extensionAttributes": [], + "code": "C25347", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HEIGHT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_7", + "extensionAttributes": [], + "name": "Alanine Aminotransferase Concentration in Serum/Plasma", + "label": "Alanine Aminotransferase Concentration in Serum/Plasma", + "synonyms": ["ALT", "SGPT", "Alanine Aminotransferase Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_54", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_84", + "extensionAttributes": [], + "standardCode": { + "id": "Code_281", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_55", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_85", + "extensionAttributes": [], + "standardCode": { + "id": "Code_282", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_56", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_62", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_283", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_63", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_284", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_64", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_285", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_65", + "extensionAttributes": [], + "name": "RC_C70510", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_286", + "extensionAttributes": [], + "code": "C70510", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Nanokatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_86", + "extensionAttributes": [], + "standardCode": { + "id": "Code_287", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_57", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_87", + "extensionAttributes": [], + "standardCode": { + "id": "Code_288", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_58", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_66", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_289", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_67", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_290", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_88", + "extensionAttributes": [], + "standardCode": { + "id": "Code_291", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_89", + "extensionAttributes": [], + "standardCode": { + "id": "Code_292", + "extensionAttributes": [], + "code": "C64433", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_8", + "extensionAttributes": [], + "name": "Albumin Presence in Urine", + "label": "Albumin Presence in Urine", + "synonyms": ["Albumin", "Albumin Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALBURINPRES", + "properties": [ + { + "id": "BiomedicalConceptProperty_59", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_90", + "extensionAttributes": [], + "standardCode": { + "id": "Code_293", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_60", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "text", + "responseCodes": [], + "code": { + "id": "AliasCode_91", + "extensionAttributes": [], + "standardCode": { + "id": "Code_294", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_61", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_92", + "extensionAttributes": [], + "standardCode": { + "id": "Code_295", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_62", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_68", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_296", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_69", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_297", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_93", + "extensionAttributes": [], + "standardCode": { + "id": "Code_298", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_94", + "extensionAttributes": [], + "standardCode": { + "id": "Code_299", + "extensionAttributes": [], + "code": "C64431", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALB", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_9", + "extensionAttributes": [], + "name": "Alkaline Phosphatase Concentration in Serum/Plasma", + "label": "Alkaline Phosphatase Concentration in Serum/Plasma", + "synonyms": [ + "Alkaline Phosphatase", + "Alkaline Phosphatase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ALPSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_63", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_95", + "extensionAttributes": [], + "standardCode": { + "id": "Code_300", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_64", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_96", + "extensionAttributes": [], + "standardCode": { + "id": "Code_301", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_65", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_70", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_302", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_71", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_303", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_72", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_304", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_97", + "extensionAttributes": [], + "standardCode": { + "id": "Code_305", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_66", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_98", + "extensionAttributes": [], + "standardCode": { + "id": "Code_306", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_67", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_73", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_307", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_74", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_308", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_99", + "extensionAttributes": [], + "standardCode": { + "id": "Code_309", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_100", + "extensionAttributes": [], + "standardCode": { + "id": "Code_310", + "extensionAttributes": [], + "code": "C64432", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ALP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_10", + "extensionAttributes": [], + "name": "Aspartate Aminotransferase in Serum/Plasma", + "label": "Aspartate Aminotransferase in Serum/Plasma", + "synonyms": [ + "AST", + "SGOT", + "Aspartate Aminotransferase Measurement" + ], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/ASTSERPL", + "properties": [ + { + "id": "BiomedicalConceptProperty_68", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_101", + "extensionAttributes": [], + "standardCode": { + "id": "Code_311", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_69", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_102", + "extensionAttributes": [], + "standardCode": { + "id": "Code_312", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_70", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_75", + "extensionAttributes": [], + "name": "RC_C67456", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_313", + "extensionAttributes": [], + "code": "C67456", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_76", + "extensionAttributes": [], + "name": "RC_C67397", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_314", + "extensionAttributes": [], + "code": "C67397", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microkatal per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_77", + "extensionAttributes": [], + "name": "RC_C67376", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_315", + "extensionAttributes": [], + "code": "C67376", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "International Unit per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_103", + "extensionAttributes": [], + "standardCode": { + "id": "Code_316", + "extensionAttributes": [], + "code": "C67365", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Catalytic Activity Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_71", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_104", + "extensionAttributes": [], + "standardCode": { + "id": "Code_317", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_72", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_78", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_318", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_79", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_319", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_105", + "extensionAttributes": [], + "standardCode": { + "id": "Code_320", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_106", + "extensionAttributes": [], + "standardCode": { + "id": "Code_321", + "extensionAttributes": [], + "code": "C64467", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "AST", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_11", + "extensionAttributes": [], + "name": "Creatinine Concentration in Urine", + "label": "Creatinine Concentration in Urine", + "synonyms": ["Creatinine", "Creatinine Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/CREATURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_73", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_107", + "extensionAttributes": [], + "standardCode": { + "id": "Code_322", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_74", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_108", + "extensionAttributes": [], + "standardCode": { + "id": "Code_323", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_75", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_80", + "extensionAttributes": [], + "name": "RC_C67015", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_324", + "extensionAttributes": [], + "code": "C67015", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milligram per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_81", + "extensionAttributes": [], + "name": "RC_C64572", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_325", + "extensionAttributes": [], + "code": "C64572", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Microgram per Milliliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_82", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_326", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_83", + "extensionAttributes": [], + "name": "RC_C48508", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_327", + "extensionAttributes": [], + "code": "C48508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Micromole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_109", + "extensionAttributes": [], + "standardCode": { + "id": "Code_328", + "extensionAttributes": [], + "code": "C48207", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Concentration", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_76", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_110", + "extensionAttributes": [], + "standardCode": { + "id": "Code_329", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_77", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_84", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_330", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_85", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_331", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_111", + "extensionAttributes": [], + "standardCode": { + "id": "Code_332", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_112", + "extensionAttributes": [], + "standardCode": { + "id": "Code_333", + "extensionAttributes": [], + "code": "C64547", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CREAT", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_12", + "extensionAttributes": [], + "name": "Potassium Concentration in Urine", + "label": "Potassium Concentration in Urine", + "synonyms": ["Potassium", "K", "Potassium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/KURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_78", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_113", + "extensionAttributes": [], + "standardCode": { + "id": "Code_334", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_79", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_114", + "extensionAttributes": [], + "standardCode": { + "id": "Code_335", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_80", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_86", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_336", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_87", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_337", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_88", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_338", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_115", + "extensionAttributes": [], + "standardCode": { + "id": "Code_339", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_81", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_116", + "extensionAttributes": [], + "standardCode": { + "id": "Code_340", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_82", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_89", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_341", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_90", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_342", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_117", + "extensionAttributes": [], + "standardCode": { + "id": "Code_343", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_118", + "extensionAttributes": [], + "standardCode": { + "id": "Code_344", + "extensionAttributes": [], + "code": "C64853", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "K", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_13", + "extensionAttributes": [], + "name": "Sodium Concentration in Urine", + "label": "Sodium Concentration in Urine", + "synonyms": ["Sodium", "NA", "Sodium Measurement"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SODIUMURIN", + "properties": [ + { + "id": "BiomedicalConceptProperty_83", + "extensionAttributes": [], + "name": "LBTESTCD", + "label": "LBTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_119", + "extensionAttributes": [], + "standardCode": { + "id": "Code_345", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_84", + "extensionAttributes": [], + "name": "LBORRES", + "label": "LBORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "float", + "responseCodes": [], + "code": { + "id": "AliasCode_120", + "extensionAttributes": [], + "standardCode": { + "id": "Code_346", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_85", + "extensionAttributes": [], + "name": "LBORRESU", + "label": "LBORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_91", + "extensionAttributes": [], + "name": "RC_C67474", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_347", + "extensionAttributes": [], + "code": "C67474", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_92", + "extensionAttributes": [], + "name": "RC_C67473", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_348", + "extensionAttributes": [], + "code": "C67473", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Milliequivalent per Deciliter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_93", + "extensionAttributes": [], + "name": "RC_C64387", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_349", + "extensionAttributes": [], + "code": "C64387", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Millimole per Liter", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_121", + "extensionAttributes": [], + "standardCode": { + "id": "Code_350", + "extensionAttributes": [], + "code": "C64567", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Molarity Unit", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_86", + "extensionAttributes": [], + "name": "LBSPEC", + "label": "LBSPEC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_122", + "extensionAttributes": [], + "standardCode": { + "id": "Code_351", + "extensionAttributes": [], + "code": "C70713", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Biospecimen Type", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_87", + "extensionAttributes": [], + "name": "LBFAST", + "label": "LBFAST", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_94", + "extensionAttributes": [], + "name": "RC_C49487", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_352", + "extensionAttributes": [], + "code": "C49487", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "No", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_95", + "extensionAttributes": [], + "name": "RC_C49488", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_353", + "extensionAttributes": [], + "code": "C49488", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Yes", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_123", + "extensionAttributes": [], + "standardCode": { + "id": "Code_354", + "extensionAttributes": [], + "code": "C93566", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Fasting Status Indicator", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_124", + "extensionAttributes": [], + "standardCode": { + "id": "Code_355", + "extensionAttributes": [], + "code": "C64809", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SODIUM", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_14", + "extensionAttributes": [], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": ["SYSBP", "Systolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SYSBP", + "properties": [ + { + "id": "BiomedicalConceptProperty_88", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_125", + "extensionAttributes": [], + "standardCode": { + "id": "Code_356", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_89", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_126", + "extensionAttributes": [], + "standardCode": { + "id": "Code_357", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_90", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_127", + "extensionAttributes": [], + "standardCode": { + "id": "Code_358", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_91", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_96", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_359", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_97", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_360", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_98", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_361", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_99", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_362", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_100", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_363", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_128", + "extensionAttributes": [], + "standardCode": { + "id": "Code_364", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_92", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_101", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_365", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_102", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_366", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_103", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_367", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_104", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_368", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_105", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_369", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_106", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_370", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_129", + "extensionAttributes": [], + "standardCode": { + "id": "Code_371", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_93", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_107", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_372", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_108", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_373", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_130", + "extensionAttributes": [], + "standardCode": { + "id": "Code_374", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_94", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_131", + "extensionAttributes": [], + "standardCode": { + "id": "Code_375", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_132", + "extensionAttributes": [], + "standardCode": { + "id": "Code_376", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_15", + "extensionAttributes": [], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": ["DIABP", "Diastolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/DIABP", + "properties": [ + { + "id": "BiomedicalConceptProperty_95", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_133", + "extensionAttributes": [], + "standardCode": { + "id": "Code_377", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_96", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_134", + "extensionAttributes": [], + "standardCode": { + "id": "Code_378", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_97", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_135", + "extensionAttributes": [], + "standardCode": { + "id": "Code_379", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_98", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_109", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_380", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_110", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_381", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_111", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_382", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_112", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_383", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_113", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_384", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_136", + "extensionAttributes": [], + "standardCode": { + "id": "Code_385", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_99", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_114", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_386", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_115", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_387", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_116", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_388", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_117", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_389", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_118", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_390", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_119", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_391", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_137", + "extensionAttributes": [], + "standardCode": { + "id": "Code_392", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_100", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_120", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_393", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_121", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_394", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_138", + "extensionAttributes": [], + "standardCode": { + "id": "Code_395", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_101", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_139", + "extensionAttributes": [], + "standardCode": { + "id": "Code_396", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_140", + "extensionAttributes": [], + "standardCode": { + "id": "Code_397", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_16", + "extensionAttributes": [], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": ["HR", "Heart Rate"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/HR", + "properties": [ + { + "id": "BiomedicalConceptProperty_102", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_141", + "extensionAttributes": [], + "standardCode": { + "id": "Code_398", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_103", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_142", + "extensionAttributes": [], + "standardCode": { + "id": "Code_399", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_104", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_143", + "extensionAttributes": [], + "standardCode": { + "id": "Code_400", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_105", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_122", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_401", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_123", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_402", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_124", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_403", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_125", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_404", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_126", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_405", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_144", + "extensionAttributes": [], + "standardCode": { + "id": "Code_406", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_106", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_127", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_407", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_128", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_408", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_129", + "extensionAttributes": [], + "name": "RC_C12691", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_409", + "extensionAttributes": [], + "code": "C12691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Cerebral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_130", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_410", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_131", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_411", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_132", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_412", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_145", + "extensionAttributes": [], + "standardCode": { + "id": "Code_413", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_107", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_133", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_414", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_134", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_415", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_146", + "extensionAttributes": [], + "standardCode": { + "id": "Code_416", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_108", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_147", + "extensionAttributes": [], + "standardCode": { + "id": "Code_417", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_148", + "extensionAttributes": [], + "standardCode": { + "id": "Code_418", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_17", + "extensionAttributes": [], + "name": "Systolic Blood Pressure", + "label": "Systolic Blood Pressure", + "synonyms": ["SYSBP", "Systolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/SYSBP", + "properties": [ + { + "id": "BiomedicalConceptProperty_109", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_149", + "extensionAttributes": [], + "standardCode": { + "id": "Code_419", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_110", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_150", + "extensionAttributes": [], + "standardCode": { + "id": "Code_420", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_111", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_151", + "extensionAttributes": [], + "standardCode": { + "id": "Code_421", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_112", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_135", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_422", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_136", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_423", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_137", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_424", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_138", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_425", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_139", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_426", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_152", + "extensionAttributes": [], + "standardCode": { + "id": "Code_427", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_113", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_140", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_428", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_141", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_429", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_142", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_430", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_143", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_431", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_144", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_432", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_145", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_433", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_153", + "extensionAttributes": [], + "standardCode": { + "id": "Code_434", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_114", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_146", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_435", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_147", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_436", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_154", + "extensionAttributes": [], + "standardCode": { + "id": "Code_437", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_115", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_155", + "extensionAttributes": [], + "standardCode": { + "id": "Code_438", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_156", + "extensionAttributes": [], + "standardCode": { + "id": "Code_439", + "extensionAttributes": [], + "code": "C25298", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "SYSBP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_18", + "extensionAttributes": [], + "name": "Diastolic Blood Pressure", + "label": "Diastolic Blood Pressure", + "synonyms": ["DIABP", "Diastolic Blood Pressure"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/DIABP", + "properties": [ + { + "id": "BiomedicalConceptProperty_116", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_157", + "extensionAttributes": [], + "standardCode": { + "id": "Code_440", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_117", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_158", + "extensionAttributes": [], + "standardCode": { + "id": "Code_441", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_118", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_159", + "extensionAttributes": [], + "standardCode": { + "id": "Code_442", + "extensionAttributes": [], + "code": "C49669", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Unit of Pressure", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_119", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_148", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_443", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_149", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_444", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_150", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_445", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_151", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_446", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_152", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_447", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_160", + "extensionAttributes": [], + "standardCode": { + "id": "Code_448", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_120", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_153", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_449", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_154", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_450", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_155", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_451", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_156", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_452", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_157", + "extensionAttributes": [], + "name": "RC_C32608", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_453", + "extensionAttributes": [], + "code": "C32608", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Finger", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_158", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_454", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_161", + "extensionAttributes": [], + "standardCode": { + "id": "Code_455", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_121", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_159", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_456", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_160", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_457", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_162", + "extensionAttributes": [], + "standardCode": { + "id": "Code_458", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_122", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_163", + "extensionAttributes": [], + "standardCode": { + "id": "Code_459", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_164", + "extensionAttributes": [], + "standardCode": { + "id": "Code_460", + "extensionAttributes": [], + "code": "C25299", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "DIABP", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_34", + "extensionAttributes": [], + "name": "PE_FIND", + "label": "Physical Examination Finding", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_003", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_005", + "extensionAttributes": [], + "code": "C83119", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Physical Examination Finding", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_35", + "extensionAttributes": [], + "name": "MH", + "label": "Medical History", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_004", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_006", + "extensionAttributes": [], + "code": "C83119", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Physical Examination Finding", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_36", + "extensionAttributes": [], + "name": "Alcohol", + "label": "Alcohol Use", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_005", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_007", + "extensionAttributes": [], + "code": "C81229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Alcohol Use History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_37", + "extensionAttributes": [], + "name": "Caffeine", + "label": "Caffeine Use", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_006", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_008", + "extensionAttributes": [], + "code": "C201990", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Caffeine Use History", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + + { + "id": "BiomedicalConcept_38", + "extensionAttributes": [], + "name": "ECG", + "label": "ECG Measurement", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_008", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_012", + "extensionAttributes": [], + "code": "C62085", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "ECG Measurement", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + + { + "id": "BiomedicalConcept_39", + "extensionAttributes": [], + "name": "CM", + "label": "Concomitant Medications", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_009", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_013", + "extensionAttributes": [], + "code": "C83056", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Concomitant Therapy", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + + { + "id": "BiomedicalConcept_40", + "extensionAttributes": [], + "name": "ADASCOG", + "label": "ADAS-Cog", + "synonyms": [], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [], + "code": { + "id": "AliasCodeX_010", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_017", + "extensionAttributes": [], + "code": "C100247", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "CDISC ADAS-Cog - Word Recognition Summary Score", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_33", + "extensionAttributes": [], + "name": "Consent", + "label": "Informed Consent", + "synonyms": ["Informed Consent Obtained"], + "reference": "https://cdisc-org.github.io/COSMoS/export/cdisc_biomedical_concepts_latest.xlsx", + "properties": [ + { + "id": "BCProperty_001", + "extensionAttributes": [], + "name": "TERM", + "label": "Reported Event Term", + "isRequired": true, + "isEnabled": true, + "datatype": "Nominal", + "responseCodes": [], + "code": { + "id": "AliasCodeX_001", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_001", + "extensionAttributes": [], + "code": "C82571", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Reported Event Term", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCodeX_002", + "extensionAttributes": [], + "standardCode": { + "id": "CodeX_002", + "extensionAttributes": [], + "code": "C16735", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Informed Consent", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + }, + { + "id": "BiomedicalConcept_19", + "extensionAttributes": [], + "name": "Heart Rate", + "label": "Heart Rate", + "synonyms": ["HR", "Heart Rate"], + "reference": "/mdr/specializations/sdtm/packages/2025-04-01/datasetspecializations/HR", + "properties": [ + { + "id": "BiomedicalConceptProperty_123", + "extensionAttributes": [], + "name": "VSTESTCD", + "label": "VSTESTCD", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_165", + "extensionAttributes": [], + "standardCode": { + "id": "Code_461", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_124", + "extensionAttributes": [], + "name": "VSORRES", + "label": "VSORRES", + "isRequired": true, + "isEnabled": true, + "datatype": "integer", + "responseCodes": [], + "code": { + "id": "AliasCode_166", + "extensionAttributes": [], + "standardCode": { + "id": "Code_462", + "extensionAttributes": [], + "code": "C70856", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Observation Result", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_125", + "extensionAttributes": [], + "name": "VSORRESU", + "label": "VSORRESU", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_167", + "extensionAttributes": [], + "standardCode": { + "id": "Code_463", + "extensionAttributes": [], + "code": "C73688", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Count per Minute", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_126", + "extensionAttributes": [], + "name": "VSPOS", + "label": "VSPOS", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_161", + "extensionAttributes": [], + "name": "RC_C62165", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_464", + "extensionAttributes": [], + "code": "C62165", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Prone Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_162", + "extensionAttributes": [], + "name": "RC_C111310", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_465", + "extensionAttributes": [], + "code": "C111310", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Semi-Recumbent", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_163", + "extensionAttributes": [], + "name": "RC_C62122", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_466", + "extensionAttributes": [], + "code": "C62122", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Sitting", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_164", + "extensionAttributes": [], + "name": "RC_C62166", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_467", + "extensionAttributes": [], + "code": "C62166", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Standing", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_165", + "extensionAttributes": [], + "name": "RC_C62167", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_468", + "extensionAttributes": [], + "code": "C62167", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Supine Position", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_168", + "extensionAttributes": [], + "standardCode": { + "id": "Code_469", + "extensionAttributes": [], + "code": "C62164", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Body Position", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_127", + "extensionAttributes": [], + "name": "VSLOC", + "label": "VSLOC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_166", + "extensionAttributes": [], + "name": "RC_C12681", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_470", + "extensionAttributes": [], + "code": "C12681", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Brachial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_167", + "extensionAttributes": [], + "name": "RC_C12687", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_471", + "extensionAttributes": [], + "code": "C12687", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Common Carotid Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_168", + "extensionAttributes": [], + "name": "RC_C12691", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_472", + "extensionAttributes": [], + "code": "C12691", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Cerebral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_169", + "extensionAttributes": [], + "name": "RC_C32478", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_473", + "extensionAttributes": [], + "code": "C32478", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Dorsalis Pedis Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_170", + "extensionAttributes": [], + "name": "RC_C12715", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_474", + "extensionAttributes": [], + "code": "C12715", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Femoral Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_171", + "extensionAttributes": [], + "name": "RC_C12838", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_475", + "extensionAttributes": [], + "code": "C12838", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Radial Artery", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_169", + "extensionAttributes": [], + "standardCode": { + "id": "Code_476", + "extensionAttributes": [], + "code": "C13717", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Anatomic Site", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_128", + "extensionAttributes": [], + "name": "VSLAT", + "label": "VSLAT", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [ + { + "id": "ResponseCode_172", + "extensionAttributes": [], + "name": "RC_C25229", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_477", + "extensionAttributes": [], + "code": "C25229", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Left", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + }, + { + "id": "ResponseCode_173", + "extensionAttributes": [], + "name": "RC_C25228", + "label": "", + "isEnabled": true, + "code": { + "id": "Code_478", + "extensionAttributes": [], + "code": "C25228", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Right", + "instanceType": "Code" + }, + "instanceType": "ResponseCode" + } + ], + "code": { + "id": "AliasCode_170", + "extensionAttributes": [], + "standardCode": { + "id": "Code_479", + "extensionAttributes": [], + "code": "C25185", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Laterality", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + }, + { + "id": "BiomedicalConceptProperty_129", + "extensionAttributes": [], + "name": "VSDTC", + "label": "VSDTC", + "isRequired": true, + "isEnabled": true, + "datatype": "", + "responseCodes": [], + "code": { + "id": "AliasCode_171", + "extensionAttributes": [], + "standardCode": { + "id": "Code_480", + "extensionAttributes": [], + "code": "C82515", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Collection Date Time", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConceptProperty" + } + ], + "code": { + "id": "AliasCode_172", + "extensionAttributes": [], + "standardCode": { + "id": "Code_481", + "extensionAttributes": [], + "code": "C49677", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "HR", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "notes": [], + "instanceType": "BiomedicalConcept" + } + ], + "bcCategories": [ + { + "id": "BCCat_1", + "name": "VS_Cat1", + "extensionAttributes": [], + "description": "Vital signs including SBP/DBP, Temp, Weight", + "label": "Vital Signs Category", + "code": null, + "childIds": [], + "memberIds": [ + "BiomedicalConcept_2", + "BiomedicalConcept_3", + "BiomedicalConcept_4", + "BiomedicalConcept_5" + ], + "instanceType": "BiomedicalConceptCategory", + "notes": [] + }, + { + "id": "BCCat_2", + "name": "VS_Cat2", + "extensionAttributes": [], + "description": "Vital signs including SBP/DBP, HR", + "label": "Vital Signs Category", + "code": null, + "childIds": [], + "memberIds": [ + "BiomedicalConcept_2", + "BiomedicalConcept_3", + "BiomedicalConcept_16" + ], + "instanceType": "BiomedicalConceptCategory", + "notes": [] + }, + { + "id": "BCCat_3", + "name": "Chem_Cat1", + "extensionAttributes": [], + "description": "Biochemistry including ALAT, Alk.Phos, ASAT", + "label": "Biochemistry Category", + "code": null, + "childIds": [], + "memberIds": [ + "BiomedicalConcept_7", + "BiomedicalConcept_9", + "BiomedicalConcept_10" + ], + "instanceType": "BiomedicalConceptCategory", + "notes": [] + }, + { + "id": "BCCat_4", + "name": "Urin_Cat1", + "extensionAttributes": [], + "description": "Urinalysis including Albumin, Creatinin, Potassium and Sodium", + "label": "Biochemistry Category", + "code": null, + "childIds": [], + "memberIds": [ + "BiomedicalConcept_8", + "BiomedicalConcept_11", + "BiomedicalConcept_12", + "BiomedicalConcept_13" + ], + "instanceType": "BiomedicalConceptCategory", + "notes": [] + } + ], + "bcSurrogates": [ + { + "id": "BiomedicalConceptSurrogate_1", + "extensionAttributes": [], + "name": "Date of Birth", + "label": "Date of Birth", + "description": "Date of Birth", + "reference": "None set", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_2", + "extensionAttributes": [], + "name": "Haschinki", + "label": "Haschinski Ischemic Scale", + "description": "", + "reference": "None set", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_3", + "extensionAttributes": [], + "name": "MMSE", + "label": "MMSE", + "description": "", + "reference": "None set", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_4", + "extensionAttributes": [], + "name": "ApoE", + "label": "Apo E Genotype", + "description": "", + "reference": "None set", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + }, + { + "id": "BiomedicalConceptSurrogate_5", + "extensionAttributes": [], + "name": "TTS", + "label": "Placebo TTS test", + "description": "", + "reference": "None set", + "notes": [], + "instanceType": "BiomedicalConceptSurrogate" + } + ], + "dictionaries": [ + { + "id": "SyntaxTemplateDictionary_1", + "extensionAttributes": [], + "name": "IE_Dict", + "label": "IE Dictionary", + "description": "Dictionary for IE", + "parameterMaps": [ + { + "id": "ParameterMap_1", + "extensionAttributes": [], + "tag": "min_age", + "reference": "", + "instanceType": "ParameterMap" + }, + { + "id": "ParameterMap_2", + "extensionAttributes": [], + "tag": "max_age", + "reference": "", + "instanceType": "ParameterMap" + }, + { + "id": "ParameterMap_3", + "extensionAttributes": [], + "tag": "StudyPopulation", + "reference": "", + "instanceType": "ParameterMap" + } + ], + "instanceType": "SyntaxTemplateDictionary" + }, + { + "id": "SyntaxTemplateDictionary_2", + "extensionAttributes": [], + "name": "AS_Dict", + "label": "Assessment Dictionary", + "description": "Dictionary for Study Assessments", + "parameterMaps": [ + { + "id": "ParameterMap_4", + "extensionAttributes": [], + "tag": "Activity1", + "reference": "", + "instanceType": "ParameterMap" + }, + { + "id": "ParameterMap_5", + "extensionAttributes": [], + "tag": "Activity2", + "reference": "", + "instanceType": "ParameterMap" + } + ], + "instanceType": "SyntaxTemplateDictionary" + } + ], + "conditions": [ + { + "id": "Condition_1", + "extensionAttributes": [], + "name": "COND1", + "label": "HA1C", + "description": "

          Hemoglobin A1C and insulin-dependent subjects

          ", + "text": "Performed if patient is an insulin-dependent diabetic", + "dictionaryId": null, + "notes": [], + "instanceType": "Condition", + "contextIds": ["ScheduledActivityInstance_9"], + "appliesToIds": ["Activity_24xxx"] + }, + { + "id": "Condition_2", + "extensionAttributes": [], + "name": "COND2", + "label": "Practice", + "description": "Questionnaire practice condition", + "text": "

          Practice only - It is recommended that a sampling of the CIBIC+, ADAS-Cog, DAD, and NPI-X be administered at Visit 1. Data from this sampling would not be considered as study data and would not be collected.

          ", + "dictionaryId": null, + "notes": [], + "instanceType": "Condition", + "contextIds": ["ScheduledActivityInstance_9xxx"], + "appliesToIds": [ + "Activity_27", + "Activity_28", + "Activity_29", + "Activity_30" + ] + } + ], + "notes": [], + "instanceType": "StudyVersion" + } + ], + "documentedBy": [ + { + "id": "StudyDefinitionDocument_1", + "extensionAttributes": [], + "name": "Protocol_Document_CDISC PILOT - LZZT", + "label": null, + "description": null, + "language": { + "id": "Code_671", + "extensionAttributes": [], + "code": "en", + "codeSystem": "ISO", + "codeSystemVersion": "1", + "decode": "English", + "instanceType": "Code" + }, + "type": { + "id": "Code_672", + "extensionAttributes": [], + "code": "C12345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Decode", + "instanceType": "Code" + }, + "templateName": "LILLY", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_1", + "extensionAttributes": [], + "version": "2", + "status": { + "id": "Code_12", + "extensionAttributes": [], + "code": "C25508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Final", + "instanceType": "Code" + }, + "dateValues": [ + { + "id": "GovernanceDate_2", + "extensionAttributes": [], + "name": "P_APPROVE", + "label": "Protocol Approval", + "description": "Protocol document approval date", + "type": { + "id": "Code_15", + "extensionAttributes": [], + "code": "C215663", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Effective Date", + "instanceType": "Code" + }, + "dateValue": "2006-07-01", + "geographicScopes": [ + { + "id": "GeographicScope_2", + "extensionAttributes": [], + "type": { + "id": "Code_17", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_1", + "extensionAttributes": [], + "standardCode": { + "id": "Code_16", + "extensionAttributes": [], + "code": "150", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "contents": [ + { + "id": "NarrativeContent_1", + "extensionAttributes": [], + "name": "NC_1", + "sectionNumber": "0", + "sectionTitle": "Title Page", + "displaySectionNumber": false, + "displaySectionTitle": false, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_2", + "contentItemId": "NarrativeContentItem_1", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_2", + "extensionAttributes": [], + "name": "NC_2", + "sectionNumber": "1", + "sectionTitle": "Introduction", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_1", + "nextId": "NarrativeContent_3", + "contentItemId": "NarrativeContentItem_2", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_3", + "extensionAttributes": [], + "name": "NC_3", + "sectionNumber": "2", + "sectionTitle": "Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_4", "NarrativeContent_5"], + "previousId": "NarrativeContent_2", + "nextId": "NarrativeContent_4", + "contentItemId": "NarrativeContentItem_3", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_4", + "extensionAttributes": [], + "name": "NC_4", + "sectionNumber": "2.1.", + "sectionTitle": "Primary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_3", + "nextId": "NarrativeContent_5", + "contentItemId": "NarrativeContentItem_4", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_5", + "extensionAttributes": [], + "name": "NC_5", + "sectionNumber": "2.2", + "sectionTitle": "Secondary Objectives", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_4", + "nextId": "NarrativeContent_6", + "contentItemId": "NarrativeContentItem_5", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_6", + "extensionAttributes": [], + "name": "NC_6", + "sectionNumber": "3", + "sectionTitle": "Investigational Plan", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_7", + "NarrativeContent_8", + "NarrativeContent_9", + "NarrativeContent_11", + "NarrativeContent_19", + "NarrativeContent_20", + "NarrativeContent_23", + "NarrativeContent_24", + "NarrativeContent_25", + "NarrativeContent_41", + "NarrativeContent_47" + ], + "previousId": "NarrativeContent_5", + "nextId": "NarrativeContent_7", + "contentItemId": "NarrativeContentItem_6", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_7", + "extensionAttributes": [], + "name": "NC_7", + "sectionNumber": "3.1.", + "sectionTitle": "Summary of Study Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_6", + "nextId": "NarrativeContent_8", + "contentItemId": "NarrativeContentItem_7", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_8", + "extensionAttributes": [], + "name": "NC_8", + "sectionNumber": "3.2.", + "sectionTitle": "Discussion of Design and Control", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_7", + "nextId": "NarrativeContent_9", + "contentItemId": "NarrativeContentItem_8", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_9", + "extensionAttributes": [], + "name": "NC_9", + "sectionNumber": "3.3.", + "sectionTitle": "Investigator Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_10"], + "previousId": "NarrativeContent_8", + "nextId": "NarrativeContent_10", + "contentItemId": "NarrativeContentItem_9", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_10", + "extensionAttributes": [], + "name": "NC_10", + "sectionNumber": "3.3.1.", + "sectionTitle": "Final Report Signature", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_9", + "nextId": "NarrativeContent_11", + "contentItemId": "NarrativeContentItem_10", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_11", + "extensionAttributes": [], + "name": "NC_11", + "sectionNumber": "3.4.", + "sectionTitle": "Study Population", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_12", + "NarrativeContent_13", + "NarrativeContent_17", + "NarrativeContent_18" + ], + "previousId": "NarrativeContent_10", + "nextId": "NarrativeContent_12", + "contentItemId": "NarrativeContentItem_11", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_12", + "extensionAttributes": [], + "name": "NC_12", + "sectionNumber": "3.4.1.", + "sectionTitle": "Entry Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_11", + "nextId": "NarrativeContent_13", + "contentItemId": "NarrativeContentItem_12", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_13", + "extensionAttributes": [], + "name": "NC_13", + "sectionNumber": "3.4.2.", + "sectionTitle": "Criteria for Enrollment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_14", + "NarrativeContent_15", + "NarrativeContent_16" + ], + "previousId": "NarrativeContent_12", + "nextId": "NarrativeContent_14", + "contentItemId": "NarrativeContentItem_13", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_14", + "extensionAttributes": [], + "name": "NC_14", + "sectionNumber": "3.4.2.1.", + "sectionTitle": "Inclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_13", + "nextId": "NarrativeContent_15", + "contentItemId": "NarrativeContentItem_14", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_15", + "extensionAttributes": [], + "name": "NC_15", + "sectionNumber": "3.4.2.2.", + "sectionTitle": "Exclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_14", + "nextId": "NarrativeContent_16", + "contentItemId": "NarrativeContentItem_15", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_16", + "extensionAttributes": [], + "name": "NC_16", + "sectionNumber": "3.4.2.3", + "sectionTitle": "Violation of Criteria for Enrollment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_15", + "nextId": "NarrativeContent_17", + "contentItemId": "NarrativeContentItem_16", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_17", + "extensionAttributes": [], + "name": "NC_17", + "sectionNumber": "3.4.3.", + "sectionTitle": "Disease Diagnostic Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_16", + "nextId": "NarrativeContent_18", + "contentItemId": "NarrativeContentItem_17", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_18", + "extensionAttributes": [], + "name": "NC_18", + "sectionNumber": "3.4.4.", + "sectionTitle": "Sample Size", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_17", + "nextId": "NarrativeContent_19", + "contentItemId": "NarrativeContentItem_18", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_19", + "extensionAttributes": [], + "name": "NC_19", + "sectionNumber": "3.5.", + "sectionTitle": "Patient Assignment", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_18", + "nextId": "NarrativeContent_20", + "contentItemId": "NarrativeContentItem_19", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_20", + "extensionAttributes": [], + "name": "NC_20", + "sectionNumber": "3.6.", + "sectionTitle": "Dosage and Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_21", "NarrativeContent_22"], + "previousId": "NarrativeContent_19", + "nextId": "NarrativeContent_21", + "contentItemId": "NarrativeContentItem_20", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_21", + "extensionAttributes": [], + "name": "NC_21", + "sectionNumber": "3.6.1.", + "sectionTitle": "Materials and Supplies", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_20", + "nextId": "NarrativeContent_22", + "contentItemId": "NarrativeContentItem_21", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_22", + "extensionAttributes": [], + "name": "NC_22", + "sectionNumber": "3.6.2.", + "sectionTitle": "TTS Administration Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_21", + "nextId": "NarrativeContent_23", + "contentItemId": "NarrativeContentItem_22", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_23", + "extensionAttributes": [], + "name": "NC_23", + "sectionNumber": "3.7.", + "sectionTitle": "Blinding", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_22", + "nextId": "NarrativeContent_24", + "contentItemId": "NarrativeContentItem_23", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_24", + "extensionAttributes": [], + "name": "NC_24", + "sectionNumber": "3.8.", + "sectionTitle": "Concomitant Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_23", + "nextId": "NarrativeContent_25", + "contentItemId": "NarrativeContentItem_24", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_25", + "extensionAttributes": [], + "name": "NC_25", + "sectionNumber": "3.9.", + "sectionTitle": "Efficacy, Pharmacokinetic, and Safety Evaluations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_26", + "NarrativeContent_29", + "NarrativeContent_30", + "NarrativeContent_39", + "NarrativeContent_40" + ], + "previousId": "NarrativeContent_24", + "nextId": "NarrativeContent_26", + "contentItemId": "NarrativeContentItem_25", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_26", + "extensionAttributes": [], + "name": "NC_26", + "sectionNumber": "3.9.1.", + "sectionTitle": "Efficacy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_27", "NarrativeContent_28"], + "previousId": "NarrativeContent_25", + "nextId": "NarrativeContent_27", + "contentItemId": "NarrativeContentItem_26", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_27", + "extensionAttributes": [], + "name": "NC_27", + "sectionNumber": "3.9.1.1.", + "sectionTitle": "Efficacy Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_26", + "nextId": "NarrativeContent_28", + "contentItemId": "NarrativeContentItem_27", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_28", + "extensionAttributes": [], + "name": "NC_28", + "sectionNumber": "3.9.1.2.", + "sectionTitle": "Efficacy Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_27", + "nextId": "NarrativeContent_29", + "contentItemId": "NarrativeContentItem_28", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_29", + "extensionAttributes": [], + "name": "NC_29", + "sectionNumber": "3.9.2.", + "sectionTitle": "Pharmacokinetics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_28", + "nextId": "NarrativeContent_30", + "contentItemId": "NarrativeContentItem_29", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_30", + "extensionAttributes": [], + "name": "NC_30", + "sectionNumber": "3.9.3.", + "sectionTitle": "Safety", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_31", + "NarrativeContent_32", + "NarrativeContent_35", + "NarrativeContent_36" + ], + "previousId": "NarrativeContent_29", + "nextId": "NarrativeContent_31", + "contentItemId": "NarrativeContentItem_30", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_31", + "extensionAttributes": [], + "name": "NC_31", + "sectionNumber": "3.9.3.1.", + "sectionTitle": "Safety Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_30", + "nextId": "NarrativeContent_32", + "contentItemId": "NarrativeContentItem_31", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_32", + "extensionAttributes": [], + "name": "NC_32", + "sectionNumber": "3.9.3.2.", + "sectionTitle": "Clinical Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_33", "NarrativeContent_34"], + "previousId": "NarrativeContent_31", + "nextId": "NarrativeContent_33", + "contentItemId": "NarrativeContentItem_32", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_33", + "extensionAttributes": [], + "name": "NC_33", + "sectionNumber": "3.9.3.2.1.", + "sectionTitle": "Adverse Event Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_32", + "nextId": "NarrativeContent_34", + "contentItemId": "NarrativeContentItem_33", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_34", + "extensionAttributes": [], + "name": "NC_34", + "sectionNumber": "3.9.3.2.2.", + "sectionTitle": "Serious Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_33", + "nextId": "NarrativeContent_35", + "contentItemId": "NarrativeContentItem_34", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_35", + "extensionAttributes": [], + "name": "NC_35", + "sectionNumber": "3.9.3.3.", + "sectionTitle": "Clinical Laboratory Tests", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_34", + "nextId": "NarrativeContent_36", + "contentItemId": "NarrativeContentItem_35", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_36", + "extensionAttributes": [], + "name": "NC_36", + "sectionNumber": "3.9.3.4", + "sectionTitle": "Other Safety Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_37", "NarrativeContent_38"], + "previousId": "NarrativeContent_35", + "nextId": "NarrativeContent_37", + "contentItemId": "NarrativeContentItem_36", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_37", + "extensionAttributes": [], + "name": "NC_37", + "sectionNumber": "3.9.3.4.1", + "sectionTitle": "Vital Sign Determination", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_36", + "nextId": "NarrativeContent_38", + "contentItemId": "NarrativeContentItem_37", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_38", + "extensionAttributes": [], + "name": "NC_38", + "sectionNumber": "3.9.3.4.2", + "sectionTitle": "Cardiovascular Safety Measures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_37", + "nextId": "NarrativeContent_39", + "contentItemId": "NarrativeContentItem_38", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_39", + "extensionAttributes": [], + "name": "NC_39", + "sectionNumber": "3.9.4.", + "sectionTitle": "Safety Monitoring", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_38", + "nextId": "NarrativeContent_40", + "contentItemId": "NarrativeContentItem_39", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_40", + "extensionAttributes": [], + "name": "NC_40", + "sectionNumber": "3.9.5.", + "sectionTitle": "Appropriateness and Consistency of Measurements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_39", + "nextId": "NarrativeContent_41", + "contentItemId": "NarrativeContentItem_40", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_41", + "extensionAttributes": [], + "name": "NC_41", + "sectionNumber": "3.10.", + "sectionTitle": "Patient Disposition Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_42", + "NarrativeContent_44", + "NarrativeContent_45" + ], + "previousId": "NarrativeContent_40", + "nextId": "NarrativeContent_42", + "contentItemId": "NarrativeContentItem_41", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_42", + "extensionAttributes": [], + "name": "NC_42", + "sectionNumber": "3.10.1.", + "sectionTitle": "Discontinuations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_43"], + "previousId": "NarrativeContent_41", + "nextId": "NarrativeContent_43", + "contentItemId": "NarrativeContentItem_42", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_43", + "extensionAttributes": [], + "name": "NC_43", + "sectionNumber": "3.10.1.1.", + "sectionTitle": "Retrieval of Discontinuations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_42", + "nextId": "NarrativeContent_44", + "contentItemId": "NarrativeContentItem_43", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_44", + "extensionAttributes": [], + "name": "NC_44", + "sectionNumber": "3.10.2.", + "sectionTitle": "Qualifications for Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_43", + "nextId": "NarrativeContent_45", + "contentItemId": "NarrativeContentItem_44", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_45", + "extensionAttributes": [], + "name": "NC_45", + "sectionNumber": "3.10.3.", + "sectionTitle": "Study Extensions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_46"], + "previousId": "NarrativeContent_44", + "nextId": "NarrativeContent_46", + "contentItemId": "NarrativeContentItem_45", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_46", + "extensionAttributes": [], + "name": "NC_46", + "sectionNumber": "3.10.3.1.", + "sectionTitle": "Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_45", + "nextId": "NarrativeContent_47", + "contentItemId": "NarrativeContentItem_46", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_47", + "extensionAttributes": [], + "name": "NC_47", + "sectionNumber": "3.11.", + "sectionTitle": "Quality Assurance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_46", + "nextId": "NarrativeContent_48", + "contentItemId": "NarrativeContentItem_47", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_48", + "extensionAttributes": [], + "name": "NC_48", + "sectionNumber": "4", + "sectionTitle": "Data Analysis Methods", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_49", + "NarrativeContent_50", + "NarrativeContent_51", + "NarrativeContent_57", + "NarrativeContent_58", + "NarrativeContent_59", + "NarrativeContent_60", + "NarrativeContent_61" + ], + "previousId": "NarrativeContent_47", + "nextId": "NarrativeContent_49", + "contentItemId": "NarrativeContentItem_48", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_49", + "extensionAttributes": [], + "name": "NC_49", + "sectionNumber": "4.1.", + "sectionTitle": "General Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_48", + "nextId": "NarrativeContent_50", + "contentItemId": "NarrativeContentItem_49", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_50", + "extensionAttributes": [], + "name": "NC_50", + "sectionNumber": "4.2.", + "sectionTitle": "Demographics and Patient Characteristics Measured at Baseline", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_49", + "nextId": "NarrativeContent_51", + "contentItemId": "NarrativeContentItem_50", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_51", + "extensionAttributes": [], + "name": "NC_51", + "sectionNumber": "4.3.", + "sectionTitle": "Efficacy Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_52", + "NarrativeContent_53", + "NarrativeContent_54", + "NarrativeContent_55", + "NarrativeContent_56" + ], + "previousId": "NarrativeContent_50", + "nextId": "NarrativeContent_52", + "contentItemId": "NarrativeContentItem_51", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_52", + "extensionAttributes": [], + "name": "NC_52", + "sectionNumber": "4.3.1.", + "sectionTitle": "Efficacy Variables to be Analyzed", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_51", + "nextId": "NarrativeContent_53", + "contentItemId": "NarrativeContentItem_52", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_53", + "extensionAttributes": [], + "name": "NC_53", + "sectionNumber": "4.3.2.", + "sectionTitle": "Times of Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_52", + "nextId": "NarrativeContent_54", + "contentItemId": "NarrativeContentItem_53", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_54", + "extensionAttributes": [], + "name": "NC_54", + "sectionNumber": "4.3.3.", + "sectionTitle": "Statistical Methodology", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_53", + "nextId": "NarrativeContent_55", + "contentItemId": "NarrativeContentItem_54", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_55", + "extensionAttributes": [], + "name": "NC_55", + "sectionNumber": "4.3.4.", + "sectionTitle": "One-sided Justification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_54", + "nextId": "NarrativeContent_56", + "contentItemId": "NarrativeContentItem_55", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_56", + "extensionAttributes": [], + "name": "NC_56", + "sectionNumber": "4.3.5.", + "sectionTitle": "Nominal P-value Adjustments", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_55", + "nextId": "NarrativeContent_57", + "contentItemId": "NarrativeContentItem_56", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_57", + "extensionAttributes": [], + "name": "NC_57", + "sectionNumber": "4.4.", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_56", + "nextId": "NarrativeContent_58", + "contentItemId": "NarrativeContentItem_57", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_58", + "extensionAttributes": [], + "name": "NC_58", + "sectionNumber": "4.5.", + "sectionTitle": "Subgroup Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_57", + "nextId": "NarrativeContent_59", + "contentItemId": "NarrativeContentItem_58", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_59", + "extensionAttributes": [], + "name": "NC_59", + "sectionNumber": "4.6.", + "sectionTitle": "Interim Efficacy Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_58", + "nextId": "NarrativeContent_60", + "contentItemId": "NarrativeContentItem_59", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_60", + "extensionAttributes": [], + "name": "NC_60", + "sectionNumber": "4.7.", + "sectionTitle": "Interim Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_59", + "nextId": "NarrativeContent_61", + "contentItemId": "NarrativeContentItem_60", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_61", + "extensionAttributes": [], + "name": "NC_61", + "sectionNumber": "4.8.", + "sectionTitle": "Pharmacokinetic/Pharmacodynamic Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_60", + "nextId": "NarrativeContent_62", + "contentItemId": "NarrativeContentItem_61", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_62", + "extensionAttributes": [], + "name": "NC_62", + "sectionNumber": "5", + "sectionTitle": "Informed Consent, Ethical Review, and Regulatory Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_63", + "NarrativeContent_64", + "NarrativeContent_65" + ], + "previousId": "NarrativeContent_61", + "nextId": "NarrativeContent_63", + "contentItemId": "NarrativeContentItem_62", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_63", + "extensionAttributes": [], + "name": "NC_63", + "sectionNumber": "5.1.", + "sectionTitle": "Informed Consent", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_62", + "nextId": "NarrativeContent_64", + "contentItemId": "NarrativeContentItem_63", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_64", + "extensionAttributes": [], + "name": "NC_64", + "sectionNumber": "5.2.", + "sectionTitle": "Ethical Review", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_63", + "nextId": "NarrativeContent_65", + "contentItemId": "NarrativeContentItem_64", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_65", + "extensionAttributes": [], + "name": "NC_65", + "sectionNumber": "5.3.", + "sectionTitle": "Regulatory Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_64", + "nextId": "NarrativeContent_66", + "contentItemId": "NarrativeContentItem_65", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_66", + "extensionAttributes": [], + "name": "NC_66", + "sectionNumber": "6", + "sectionTitle": "References", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_65", + "nextId": "NarrativeContent_67", + "contentItemId": "NarrativeContentItem_66", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_67", + "extensionAttributes": [], + "name": "NC_67", + "sectionNumber": "Appendix 1", + "sectionTitle": "Protocol Attachment LZZT.1. Schedule of Events for Protocol H2Q-MC-LZZT(c)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_66", + "nextId": "NarrativeContent_68", + "contentItemId": "NarrativeContentItem_67", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_68", + "extensionAttributes": [], + "name": "NC_68", + "sectionNumber": "Appendix 2", + "sectionTitle": "Protocol Attachment LZZT.2. Alzheimer's Disease Assessment Scale-Cognitive Subscale (ADAS-Cog) with Attention and Concentration Tasks", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_67", + "nextId": "NarrativeContent_69", + "contentItemId": "NarrativeContentItem_68", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_69", + "extensionAttributes": [], + "name": "NC_69", + "sectionNumber": "Appendix 3", + "sectionTitle": "Protocol Attachment LZZT.3. Video-referenced Clinician's Interview-Based Impression of Change (CIBIC+)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_68", + "nextId": "NarrativeContent_70", + "contentItemId": "NarrativeContentItem_69", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_70", + "extensionAttributes": [], + "name": "NC_70", + "sectionNumber": "Appendix 4", + "sectionTitle": "Protocol Attachment LZZT.4. Revised Neuropsychiatric Inventory (NPI-X)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_69", + "nextId": "NarrativeContent_71", + "contentItemId": "NarrativeContentItem_70", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_71", + "extensionAttributes": [], + "name": "NC_71", + "sectionNumber": "Appendix 5", + "sectionTitle": "Protocol Attachment LZZT.5. Disability Assessment for Dementia (DAD)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_70", + "nextId": "NarrativeContent_72", + "contentItemId": "NarrativeContentItem_71", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_72", + "extensionAttributes": [], + "name": "NC_72", + "sectionNumber": "Appendix 6", + "sectionTitle": "Protocol Attachment LZZT.6. Mini-Mental State Examination (MMSE)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_71", + "nextId": "NarrativeContent_73", + "contentItemId": "NarrativeContentItem_72", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_73", + "extensionAttributes": [], + "name": "NC_73", + "sectionNumber": "Appendix 7", + "sectionTitle": "Protocol Attachment LZZT.7. NINCDS/ADRDA Guidelines", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_72", + "nextId": "NarrativeContent_74", + "contentItemId": "NarrativeContentItem_73", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_74", + "extensionAttributes": [], + "name": "NC_74", + "sectionNumber": "Appendix 8", + "sectionTitle": "Protocol Attachment LZZT.8. Hachinski Ischemic Scale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_73", + "nextId": "NarrativeContent_75", + "contentItemId": "NarrativeContentItem_74", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_75", + "extensionAttributes": [], + "name": "NC_75", + "sectionNumber": "Appendix 9", + "sectionTitle": "Protocol Attachment LZZT.9. TTS Acceptability Survey", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_74", + "nextId": "NarrativeContent_76", + "contentItemId": "NarrativeContentItem_75", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_76", + "extensionAttributes": [], + "name": "NC_76", + "sectionNumber": "Appendix 10", + "sectionTitle": "Protocol Attachment LZZT.10. Protocol Signatures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_75", + "nextId": null, + "contentItemId": "NarrativeContentItem_76", + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefinitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + }, + { + "id": "StudyDefinitionDocument_2", + "extensionAttributes": [], + "name": "Protocol_Document_CDISC PILOT - LZZT", + "label": null, + "description": null, + "language": { + "id": "Code_677", + "extensionAttributes": [], + "code": "en", + "codeSystem": "ISO", + "codeSystemVersion": "1", + "decode": "English", + "instanceType": "Code" + }, + "type": { + "id": "Code_678", + "extensionAttributes": [], + "code": "C12345", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Decode", + "instanceType": "Code" + }, + "templateName": "M11", + "versions": [ + { + "id": "StudyDefinitionDocumentVersion_2", + "extensionAttributes": [], + "version": "2", + "status": { + "id": "Code_676", + "extensionAttributes": [], + "code": "C25508", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Final", + "instanceType": "Code" + }, + "dateValues": [ + { + "id": "GovernanceDate_4", + "extensionAttributes": [], + "name": "P_APPROVE", + "label": "Protocol Approval", + "description": "Protocol document approval date", + "type": { + "id": "Code_673", + "extensionAttributes": [], + "code": "C71476", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Approval Date", + "instanceType": "Code" + }, + "dateValue": "2006-07-01", + "geographicScopes": [ + { + "id": "GeographicScope_6", + "extensionAttributes": [], + "type": { + "id": "Code_674", + "extensionAttributes": [], + "code": "C41129", + "codeSystem": "http://www.cdisc.org", + "codeSystemVersion": "2025-09-26", + "decode": "Region", + "instanceType": "Code" + }, + "code": { + "id": "AliasCode_253", + "extensionAttributes": [], + "standardCode": { + "id": "Code_675", + "extensionAttributes": [], + "code": "150", + "codeSystem": "ISO 3166 1 alpha3", + "codeSystemVersion": "2020-08", + "decode": "Europe", + "instanceType": "Code" + }, + "standardCodeAliases": [], + "instanceType": "AliasCode" + }, + "instanceType": "GeographicScope" + } + ], + "instanceType": "GovernanceDate" + } + ], + "contents": [ + { + "id": "NarrativeContent_77", + "extensionAttributes": [], + "name": "NC_100", + "sectionNumber": "0", + "sectionTitle": "Title Page", + "displaySectionNumber": false, + "displaySectionTitle": false, + "childIds": [], + "previousId": null, + "nextId": "NarrativeContent_78", + "contentItemId": "NarrativeContentItem_77", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_78", + "extensionAttributes": [], + "name": "NC_101", + "sectionNumber": "1", + "sectionTitle": "PROTOCOL SUMMARY", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_79", + "NarrativeContent_82", + "NarrativeContent_83" + ], + "previousId": "NarrativeContent_77", + "nextId": "NarrativeContent_79", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_79", + "extensionAttributes": [], + "name": "NC_102", + "sectionNumber": "1.1", + "sectionTitle": "Protocol Synopsis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_80", "NarrativeContent_81"], + "previousId": "NarrativeContent_78", + "nextId": "NarrativeContent_80", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_80", + "extensionAttributes": [], + "name": "NC_103", + "sectionNumber": "1.1.1", + "sectionTitle": "Primary and Secondary Objectives and Estimands", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_79", + "nextId": "NarrativeContent_81", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_81", + "extensionAttributes": [], + "name": "NC_104", + "sectionNumber": "1.1.2", + "sectionTitle": "Overall Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_80", + "nextId": "NarrativeContent_82", + "contentItemId": "NarrativeContentItem_78", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_82", + "extensionAttributes": [], + "name": "NC_105", + "sectionNumber": "1.2", + "sectionTitle": "Trial Schema", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_81", + "nextId": "NarrativeContent_83", + "contentItemId": "NarrativeContentItem_79", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_83", + "extensionAttributes": [], + "name": "NC_106", + "sectionNumber": "1.3", + "sectionTitle": "Schedule of Activities", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_82", + "nextId": "NarrativeContent_84", + "contentItemId": "NarrativeContentItem_80", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_84", + "extensionAttributes": [], + "name": "NC_107", + "sectionNumber": "2", + "sectionTitle": "INTRODUCTION", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_85", "NarrativeContent_86"], + "previousId": "NarrativeContent_83", + "nextId": "NarrativeContent_85", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_85", + "extensionAttributes": [], + "name": "NC_108", + "sectionNumber": "2.1", + "sectionTitle": "Purpose of Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_84", + "nextId": "NarrativeContent_86", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_86", + "extensionAttributes": [], + "name": "NC_109", + "sectionNumber": "2.2", + "sectionTitle": "Summary of Benefits and Risks", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_87", + "NarrativeContent_88", + "NarrativeContent_89" + ], + "previousId": "NarrativeContent_85", + "nextId": "NarrativeContent_87", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_87", + "extensionAttributes": [], + "name": "NC_110", + "sectionNumber": "2.2.1", + "sectionTitle": "Benefit Summary", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_86", + "nextId": "NarrativeContent_88", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_88", + "extensionAttributes": [], + "name": "NC_111", + "sectionNumber": "2.2.2", + "sectionTitle": "Risk Summary and Mitigation Strategy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_87", + "nextId": "NarrativeContent_89", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_89", + "extensionAttributes": [], + "name": "NC_112", + "sectionNumber": "2.2.3", + "sectionTitle": "Overall Benefit:Risk Conclusion", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_88", + "nextId": "NarrativeContent_90", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_90", + "extensionAttributes": [], + "name": "NC_113", + "sectionNumber": "3", + "sectionTitle": "TRIAL OBJECTIVES AND ESTIMANDS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_91", + "NarrativeContent_93", + "NarrativeContent_94" + ], + "previousId": "NarrativeContent_89", + "nextId": "NarrativeContent_91", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_91", + "extensionAttributes": [], + "name": "NC_114", + "sectionNumber": "3.1", + "sectionTitle": "Primary Objective(s) and Associated Estimand(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_92"], + "previousId": "NarrativeContent_90", + "nextId": "NarrativeContent_92", + "contentItemId": "NarrativeContentItem_81", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_92", + "extensionAttributes": [], + "name": "NC_115", + "sectionNumber": "3.1.1", + "sectionTitle": "{Primary Estimand}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_91", + "nextId": "NarrativeContent_93", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_93", + "extensionAttributes": [], + "name": "NC_116", + "sectionNumber": "3.2", + "sectionTitle": "Secondary Objective(s) and Associated Estimand(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_92", + "nextId": "NarrativeContent_94", + "contentItemId": "NarrativeContentItem_82", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_94", + "extensionAttributes": [], + "name": "NC_117", + "sectionNumber": "3.3", + "sectionTitle": "Exploratory Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_93", + "nextId": "NarrativeContent_95", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_95", + "extensionAttributes": [], + "name": "NC_118", + "sectionNumber": "4", + "sectionTitle": "TRIAL DESIGN", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_96", + "NarrativeContent_98", + "NarrativeContent_106", + "NarrativeContent_107", + "NarrativeContent_108" + ], + "previousId": "NarrativeContent_94", + "nextId": "NarrativeContent_96", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_96", + "extensionAttributes": [], + "name": "NC_119", + "sectionNumber": "4.1", + "sectionTitle": "Description of Trial Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_97"], + "previousId": "NarrativeContent_95", + "nextId": "NarrativeContent_97", + "contentItemId": "NarrativeContentItem_83", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_97", + "extensionAttributes": [], + "name": "NC_120", + "sectionNumber": "4.1.1", + "sectionTitle": "Stakeholder Input into Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_96", + "nextId": "NarrativeContent_98", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_98", + "extensionAttributes": [], + "name": "NC_121", + "sectionNumber": "4.2", + "sectionTitle": "Rationale for Trial Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_99", + "NarrativeContent_100", + "NarrativeContent_101", + "NarrativeContent_102", + "NarrativeContent_103", + "NarrativeContent_104", + "NarrativeContent_105" + ], + "previousId": "NarrativeContent_97", + "nextId": "NarrativeContent_99", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_99", + "extensionAttributes": [], + "name": "NC_122", + "sectionNumber": "4.2.1", + "sectionTitle": "Rationale for Intervention Model", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_98", + "nextId": "NarrativeContent_100", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_100", + "extensionAttributes": [], + "name": "NC_123", + "sectionNumber": "4.2.2", + "sectionTitle": "Rationale for Duration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_99", + "nextId": "NarrativeContent_101", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_101", + "extensionAttributes": [], + "name": "NC_124", + "sectionNumber": "4.2.3", + "sectionTitle": "Rationale for Estimands", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_100", + "nextId": "NarrativeContent_102", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_102", + "extensionAttributes": [], + "name": "NC_125", + "sectionNumber": "4.2.4", + "sectionTitle": "Rationale for Interim Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_101", + "nextId": "NarrativeContent_103", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_103", + "extensionAttributes": [], + "name": "NC_126", + "sectionNumber": "4.2.5", + "sectionTitle": "Rationale for Control Type", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_102", + "nextId": "NarrativeContent_104", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_104", + "extensionAttributes": [], + "name": "NC_127", + "sectionNumber": "4.2.6", + "sectionTitle": "Rationale for Adaptive or Novel Trial Design", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_103", + "nextId": "NarrativeContent_105", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_105", + "extensionAttributes": [], + "name": "NC_128", + "sectionNumber": "4.2.7", + "sectionTitle": "Rationale for Other Trial Design Aspects", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_104", + "nextId": "NarrativeContent_106", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_106", + "extensionAttributes": [], + "name": "NC_129", + "sectionNumber": "4.3", + "sectionTitle": "Trial Stopping Rules", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_105", + "nextId": "NarrativeContent_107", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_107", + "extensionAttributes": [], + "name": "NC_130", + "sectionNumber": "4.4", + "sectionTitle": "Start of Trial and End of Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_106", + "nextId": "NarrativeContent_108", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_108", + "extensionAttributes": [], + "name": "NC_131", + "sectionNumber": "4.5", + "sectionTitle": "Access to Trial Intervention After End of Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_107", + "nextId": "NarrativeContent_109", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_109", + "extensionAttributes": [], + "name": "NC_132", + "sectionNumber": "5", + "sectionTitle": "TRIAL POPULATION", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_110", + "NarrativeContent_111", + "NarrativeContent_112", + "NarrativeContent_113", + "NarrativeContent_116", + "NarrativeContent_121" + ], + "previousId": "NarrativeContent_108", + "nextId": "NarrativeContent_110", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_110", + "extensionAttributes": [], + "name": "NC_133", + "sectionNumber": "5.1", + "sectionTitle": "Description of Trial Population and Rationale", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_109", + "nextId": "NarrativeContent_111", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_111", + "extensionAttributes": [], + "name": "NC_134", + "sectionNumber": "5.2", + "sectionTitle": "Inclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_110", + "nextId": "NarrativeContent_112", + "contentItemId": "NarrativeContentItem_84", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_112", + "extensionAttributes": [], + "name": "NC_135", + "sectionNumber": "5.3", + "sectionTitle": "Exclusion Criteria", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_111", + "nextId": "NarrativeContent_113", + "contentItemId": "NarrativeContentItem_85", + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_113", + "extensionAttributes": [], + "name": "NC_136", + "sectionNumber": "5.4", + "sectionTitle": "Contraception", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_114", "NarrativeContent_115"], + "previousId": "NarrativeContent_112", + "nextId": "NarrativeContent_114", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_114", + "extensionAttributes": [], + "name": "NC_137", + "sectionNumber": "5.4.1", + "sectionTitle": "Definitions Related to Childbearing Potential", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_113", + "nextId": "NarrativeContent_115", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_115", + "extensionAttributes": [], + "name": "NC_138", + "sectionNumber": "5.4.2", + "sectionTitle": "Contraception Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_114", + "nextId": "NarrativeContent_116", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_116", + "extensionAttributes": [], + "name": "NC_139", + "sectionNumber": "5.5", + "sectionTitle": "Lifestyle Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_117", + "NarrativeContent_118", + "NarrativeContent_119", + "NarrativeContent_120" + ], + "previousId": "NarrativeContent_115", + "nextId": "NarrativeContent_117", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_117", + "extensionAttributes": [], + "name": "NC_140", + "sectionNumber": "5.5.1", + "sectionTitle": "Meals and Dietary Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_116", + "nextId": "NarrativeContent_118", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_118", + "extensionAttributes": [], + "name": "NC_141", + "sectionNumber": "5.5.2", + "sectionTitle": "Caffeine, Alcohol, Tobacco,and Other Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_117", + "nextId": "NarrativeContent_119", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_119", + "extensionAttributes": [], + "name": "NC_142", + "sectionNumber": "5.5.3", + "sectionTitle": "Physical Activity Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_118", + "nextId": "NarrativeContent_120", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_120", + "extensionAttributes": [], + "name": "NC_143", + "sectionNumber": "5.5.4", + "sectionTitle": "Other Activity Restrictions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_119", + "nextId": "NarrativeContent_121", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_121", + "extensionAttributes": [], + "name": "NC_144", + "sectionNumber": "5.6", + "sectionTitle": "Screen Failure and Rescreening", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_120", + "nextId": "NarrativeContent_122", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_122", + "extensionAttributes": [], + "name": "NC_145", + "sectionNumber": "6", + "sectionTitle": "TRIAL INTERVENTION AND CONCOMITANT THERAPY", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_123", + "NarrativeContent_124", + "NarrativeContent_125", + "NarrativeContent_126", + "NarrativeContent_127", + "NarrativeContent_128", + "NarrativeContent_129", + "NarrativeContent_133", + "NarrativeContent_138", + "NarrativeContent_139", + "NarrativeContent_143" + ], + "previousId": "NarrativeContent_121", + "nextId": "NarrativeContent_123", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_123", + "extensionAttributes": [], + "name": "NC_146", + "sectionNumber": "6.1", + "sectionTitle": "Overview of Trial Interventions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_122", + "nextId": "NarrativeContent_124", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_124", + "extensionAttributes": [], + "name": "NC_147", + "sectionNumber": "6.2", + "sectionTitle": "Description of Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_123", + "nextId": "NarrativeContent_125", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_125", + "extensionAttributes": [], + "name": "NC_148", + "sectionNumber": "6.3", + "sectionTitle": "Rationale for Investigational Trial Intervention Dose and Regimen", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_124", + "nextId": "NarrativeContent_126", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_126", + "extensionAttributes": [], + "name": "NC_149", + "sectionNumber": "6.4", + "sectionTitle": "Investigational Trial Intervention Administration", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_125", + "nextId": "NarrativeContent_127", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_127", + "extensionAttributes": [], + "name": "NC_150", + "sectionNumber": "6.5", + "sectionTitle": "Investigational Trial Intervention Dose Modification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_126", + "nextId": "NarrativeContent_128", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_128", + "extensionAttributes": [], + "name": "NC_151", + "sectionNumber": "6.6", + "sectionTitle": "Management of Investigational Trial Intervention Overdose", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_127", + "nextId": "NarrativeContent_129", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_129", + "extensionAttributes": [], + "name": "NC_152", + "sectionNumber": "6.7", + "sectionTitle": "Preparation,Storage,Handling and Accountability of Investigational Trial Intervention(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_130", + "NarrativeContent_131", + "NarrativeContent_132" + ], + "previousId": "NarrativeContent_128", + "nextId": "NarrativeContent_130", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_130", + "extensionAttributes": [], + "name": "NC_153", + "sectionNumber": "6.7.1", + "sectionTitle": "Preparation of Investigational Trial Intervention(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_129", + "nextId": "NarrativeContent_131", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_131", + "extensionAttributes": [], + "name": "NC_154", + "sectionNumber": "6.7.2", + "sectionTitle": "Storage and Handling of Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_130", + "nextId": "NarrativeContent_132", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_132", + "extensionAttributes": [], + "name": "NC_155", + "sectionNumber": "6.7.3", + "sectionTitle": "Accountability of Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_131", + "nextId": "NarrativeContent_133", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_133", + "extensionAttributes": [], + "name": "NC_156", + "sectionNumber": "6.8", + "sectionTitle": "Investigational Trial Intervention Assignment,Randomisation and Blinding", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_134", + "NarrativeContent_135", + "NarrativeContent_136", + "NarrativeContent_137" + ], + "previousId": "NarrativeContent_132", + "nextId": "NarrativeContent_134", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_134", + "extensionAttributes": [], + "name": "NC_157", + "sectionNumber": "6.8.1", + "sectionTitle": "Participant Assignment to Investigational Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_133", + "nextId": "NarrativeContent_135", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_135", + "extensionAttributes": [], + "name": "NC_158", + "sectionNumber": "6.8.2", + "sectionTitle": "Randomisation", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_134", + "nextId": "NarrativeContent_136", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_136", + "extensionAttributes": [], + "name": "NC_159", + "sectionNumber": "6.8.3", + "sectionTitle": "{Blinding}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_135", + "nextId": "NarrativeContent_137", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_137", + "extensionAttributes": [], + "name": "NC_160", + "sectionNumber": "6.8.4", + "sectionTitle": "{Emergency Unblinding at the Site}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_136", + "nextId": "NarrativeContent_138", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_138", + "extensionAttributes": [], + "name": "NC_161", + "sectionNumber": "6.9", + "sectionTitle": "Investigational Trial Intervention Compliance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_137", + "nextId": "NarrativeContent_139", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_139", + "extensionAttributes": [], + "name": "NC_162", + "sectionNumber": "6.10", + "sectionTitle": "Description of Non-Investigational Trial Intervention(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_140", + "NarrativeContent_141", + "NarrativeContent_142" + ], + "previousId": "NarrativeContent_138", + "nextId": "NarrativeContent_140", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_140", + "extensionAttributes": [], + "name": "NC_163", + "sectionNumber": "6.10.1", + "sectionTitle": "{Background Intervention}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_139", + "nextId": "NarrativeContent_141", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_141", + "extensionAttributes": [], + "name": "NC_164", + "sectionNumber": "6.10.2", + "sectionTitle": "{Rescue Therapy}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_140", + "nextId": "NarrativeContent_142", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_142", + "extensionAttributes": [], + "name": "NC_165", + "sectionNumber": "6.10.3", + "sectionTitle": "{Other Non-investigational Intervention}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_141", + "nextId": "NarrativeContent_143", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_143", + "extensionAttributes": [], + "name": "NC_166", + "sectionNumber": "6.11", + "sectionTitle": "Concomitant Therapy", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_144", "NarrativeContent_145"], + "previousId": "NarrativeContent_142", + "nextId": "NarrativeContent_144", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_144", + "extensionAttributes": [], + "name": "NC_167", + "sectionNumber": "6.11.1", + "sectionTitle": "{Prohibited Concomitant Therapy}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_143", + "nextId": "NarrativeContent_145", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_145", + "extensionAttributes": [], + "name": "NC_168", + "sectionNumber": "6.11.2", + "sectionTitle": "{Permitted Concomitant Therapy}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_144", + "nextId": "NarrativeContent_146", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_146", + "extensionAttributes": [], + "name": "NC_169", + "sectionNumber": "7", + "sectionTitle": "PARTICIPANT DISCONTINUATION OF TRIAL INTERVENTION AND DISCONTINUATION OR WITHDRAWAL FROM TRIAL", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_147", + "NarrativeContent_151", + "NarrativeContent_152" + ], + "previousId": "NarrativeContent_145", + "nextId": "NarrativeContent_147", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_147", + "extensionAttributes": [], + "name": "NC_170", + "sectionNumber": "7.1", + "sectionTitle": "Discontinuation of Trial Intervention for Individual Participants", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_148", + "NarrativeContent_149", + "NarrativeContent_150" + ], + "previousId": "NarrativeContent_146", + "nextId": "NarrativeContent_148", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_148", + "extensionAttributes": [], + "name": "NC_171", + "sectionNumber": "7.1.1", + "sectionTitle": "Permanent Discontinuation of Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_147", + "nextId": "NarrativeContent_149", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_149", + "extensionAttributes": [], + "name": "NC_172", + "sectionNumber": "7.1.2", + "sectionTitle": "Temporary Discontinuation of Trial Intervention", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_148", + "nextId": "NarrativeContent_150", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_150", + "extensionAttributes": [], + "name": "NC_173", + "sectionNumber": "7.1.3", + "sectionTitle": "Rechallenge", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_149", + "nextId": "NarrativeContent_151", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_151", + "extensionAttributes": [], + "name": "NC_174", + "sectionNumber": "7.2", + "sectionTitle": "Discontinuation or Withdrawal from the Trial", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_150", + "nextId": "NarrativeContent_152", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_152", + "extensionAttributes": [], + "name": "NC_175", + "sectionNumber": "7.3", + "sectionTitle": "Lost to Follow-Up", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_151", + "nextId": "NarrativeContent_153", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_153", + "extensionAttributes": [], + "name": "NC_176", + "sectionNumber": "8", + "sectionTitle": "TRIAL ASSESSMENTS AND PROCEDURES", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_154", + "NarrativeContent_155", + "NarrativeContent_156", + "NarrativeContent_157", + "NarrativeContent_164", + "NarrativeContent_165", + "NarrativeContent_169", + "NarrativeContent_170" + ], + "previousId": "NarrativeContent_152", + "nextId": "NarrativeContent_154", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_154", + "extensionAttributes": [], + "name": "NC_177", + "sectionNumber": "8.1", + "sectionTitle": "Trial Assessments and Procedures Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_153", + "nextId": "NarrativeContent_155", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_155", + "extensionAttributes": [], + "name": "NC_178", + "sectionNumber": "8.2", + "sectionTitle": "Screening/Baseline Assessments and Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_154", + "nextId": "NarrativeContent_156", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_156", + "extensionAttributes": [], + "name": "NC_179", + "sectionNumber": "8.3", + "sectionTitle": "Efficacy Assessments and Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_155", + "nextId": "NarrativeContent_157", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_157", + "extensionAttributes": [], + "name": "NC_180", + "sectionNumber": "8.4", + "sectionTitle": "Safety Assessments and Procedures", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_158", + "NarrativeContent_159", + "NarrativeContent_160", + "NarrativeContent_161", + "NarrativeContent_162", + "NarrativeContent_163" + ], + "previousId": "NarrativeContent_156", + "nextId": "NarrativeContent_158", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_158", + "extensionAttributes": [], + "name": "NC_181", + "sectionNumber": "8.4.1", + "sectionTitle": "{Physical Examination}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_157", + "nextId": "NarrativeContent_159", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_159", + "extensionAttributes": [], + "name": "NC_182", + "sectionNumber": "8.4.2", + "sectionTitle": "{Vital Signs}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_158", + "nextId": "NarrativeContent_160", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_160", + "extensionAttributes": [], + "name": "NC_183", + "sectionNumber": "8.4.3", + "sectionTitle": "{Electrocardiograms}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_159", + "nextId": "NarrativeContent_161", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_161", + "extensionAttributes": [], + "name": "NC_184", + "sectionNumber": "8.4.4", + "sectionTitle": "{Clinical Laboratory Assessments}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_160", + "nextId": "NarrativeContent_162", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_162", + "extensionAttributes": [], + "name": "NC_185", + "sectionNumber": "8.4.5", + "sectionTitle": "{Pregnancy Testing}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_161", + "nextId": "NarrativeContent_163", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_163", + "extensionAttributes": [], + "name": "NC_186", + "sectionNumber": "8.4.6", + "sectionTitle": "{Suicidal Ideation and Behaviour Risk Monitoring}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_162", + "nextId": "NarrativeContent_164", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_164", + "extensionAttributes": [], + "name": "NC_187", + "sectionNumber": "8.5", + "sectionTitle": "Pharmacokinetics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_163", + "nextId": "NarrativeContent_165", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_165", + "extensionAttributes": [], + "name": "NC_188", + "sectionNumber": "8.6", + "sectionTitle": "Biomarkers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_166", + "NarrativeContent_167", + "NarrativeContent_168" + ], + "previousId": "NarrativeContent_164", + "nextId": "NarrativeContent_166", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_166", + "extensionAttributes": [], + "name": "NC_189", + "sectionNumber": "8.6.1", + "sectionTitle": "Genetics and Pharmacogenomics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_165", + "nextId": "NarrativeContent_167", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_167", + "extensionAttributes": [], + "name": "NC_190", + "sectionNumber": "8.6.2", + "sectionTitle": "Pharmacodynamic Biomarkers", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_166", + "nextId": "NarrativeContent_168", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_168", + "extensionAttributes": [], + "name": "NC_191", + "sectionNumber": "8.6.3", + "sectionTitle": "{Other Biomarkers}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_167", + "nextId": "NarrativeContent_169", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_169", + "extensionAttributes": [], + "name": "NC_192", + "sectionNumber": "8.7", + "sectionTitle": "Immunogenicity Assessments", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_168", + "nextId": "NarrativeContent_170", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_170", + "extensionAttributes": [], + "name": "NC_193", + "sectionNumber": "8.8", + "sectionTitle": "Medical Resource Utilisation and Health Economics", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_169", + "nextId": "NarrativeContent_171", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_171", + "extensionAttributes": [], + "name": "NC_194", + "sectionNumber": "9", + "sectionTitle": "ADVERSE EVENTS,SERIOUS ADVERSE EVENTS,PRODUCT COMPLAINTS,PREGNANCY AND POSTPARTUM INFORMATION", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_172", + "NarrativeContent_176", + "NarrativeContent_177", + "NarrativeContent_182", + "NarrativeContent_186" + ], + "previousId": "NarrativeContent_170", + "nextId": "NarrativeContent_172", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_172", + "extensionAttributes": [], + "name": "NC_195", + "sectionNumber": "9.1", + "sectionTitle": "Definitions", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_173", + "NarrativeContent_174", + "NarrativeContent_175" + ], + "previousId": "NarrativeContent_171", + "nextId": "NarrativeContent_173", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_173", + "extensionAttributes": [], + "name": "NC_196", + "sectionNumber": "9.1.1", + "sectionTitle": "Definitions of Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_172", + "nextId": "NarrativeContent_174", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_174", + "extensionAttributes": [], + "name": "NC_197", + "sectionNumber": "9.1.2", + "sectionTitle": "Definitions of Serious Adverse Events", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_173", + "nextId": "NarrativeContent_175", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_175", + "extensionAttributes": [], + "name": "NC_198", + "sectionNumber": "9.1.3", + "sectionTitle": "{Definition of Medical Device Product Complaints}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_174", + "nextId": "NarrativeContent_176", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_176", + "extensionAttributes": [], + "name": "NC_199", + "sectionNumber": "9.2", + "sectionTitle": "Timing and Mechanism for Collection and Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_175", + "nextId": "NarrativeContent_177", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_177", + "extensionAttributes": [], + "name": "NC_200", + "sectionNumber": "9.3", + "sectionTitle": "Identification,Recording and Follow-Up", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_178", + "NarrativeContent_179", + "NarrativeContent_180", + "NarrativeContent_181" + ], + "previousId": "NarrativeContent_176", + "nextId": "NarrativeContent_178", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_178", + "extensionAttributes": [], + "name": "NC_201", + "sectionNumber": "9.3.1", + "sectionTitle": "Identification", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_177", + "nextId": "NarrativeContent_179", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_179", + "extensionAttributes": [], + "name": "NC_202", + "sectionNumber": "9.3.2", + "sectionTitle": "Severity", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_178", + "nextId": "NarrativeContent_180", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_180", + "extensionAttributes": [], + "name": "NC_203", + "sectionNumber": "9.3.3", + "sectionTitle": "Causality", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_179", + "nextId": "NarrativeContent_181", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_181", + "extensionAttributes": [], + "name": "NC_204", + "sectionNumber": "9.3.4", + "sectionTitle": "Follow-up", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_180", + "nextId": "NarrativeContent_182", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_182", + "extensionAttributes": [], + "name": "NC_205", + "sectionNumber": "9.4", + "sectionTitle": "Reporting", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_183", + "NarrativeContent_184", + "NarrativeContent_185" + ], + "previousId": "NarrativeContent_181", + "nextId": "NarrativeContent_183", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_183", + "extensionAttributes": [], + "name": "NC_206", + "sectionNumber": "9.4.1", + "sectionTitle": "Regulatory Reporting Requirements", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_182", + "nextId": "NarrativeContent_184", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_184", + "extensionAttributes": [], + "name": "NC_207", + "sectionNumber": "9.4.2", + "sectionTitle": "Adverse Events of Special Interest", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_183", + "nextId": "NarrativeContent_185", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_185", + "extensionAttributes": [], + "name": "NC_208", + "sectionNumber": "9.4.3", + "sectionTitle": "Disease-related Events or Outcomes Not Qualifying as AEs or SAEs", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_184", + "nextId": "NarrativeContent_186", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_186", + "extensionAttributes": [], + "name": "NC_209", + "sectionNumber": "9.5", + "sectionTitle": "Pregnancy and Postpartum Information", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_187", "NarrativeContent_188"], + "previousId": "NarrativeContent_185", + "nextId": "NarrativeContent_187", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_187", + "extensionAttributes": [], + "name": "NC_210", + "sectionNumber": "9.5.1", + "sectionTitle": "{Participants Who Become Pregnant During the Trial}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_186", + "nextId": "NarrativeContent_188", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_188", + "extensionAttributes": [], + "name": "NC_211", + "sectionNumber": "9.5.2", + "sectionTitle": "{Participants Whose Partners Become Pregnant}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_187", + "nextId": "NarrativeContent_189", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_189", + "extensionAttributes": [], + "name": "NC_212", + "sectionNumber": "10", + "sectionTitle": "STATISTICAL CONSIDERATIONS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_190", + "NarrativeContent_191", + "NarrativeContent_192", + "NarrativeContent_193", + "NarrativeContent_199", + "NarrativeContent_205", + "NarrativeContent_206", + "NarrativeContent_207", + "NarrativeContent_208", + "NarrativeContent_209", + "NarrativeContent_210" + ], + "previousId": "NarrativeContent_188", + "nextId": "NarrativeContent_190", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_190", + "extensionAttributes": [], + "name": "NC_213", + "sectionNumber": "10.1", + "sectionTitle": "General Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_189", + "nextId": "NarrativeContent_191", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_191", + "extensionAttributes": [], + "name": "NC_214", + "sectionNumber": "10.2", + "sectionTitle": "Analysis Sets", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_190", + "nextId": "NarrativeContent_192", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_192", + "extensionAttributes": [], + "name": "NC_215", + "sectionNumber": "10.3", + "sectionTitle": "Analyses of Demographics and Other Baseline Variables", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_191", + "nextId": "NarrativeContent_193", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_193", + "extensionAttributes": [], + "name": "NC_216", + "sectionNumber": "10.4", + "sectionTitle": "Analyses Associated with the Primary Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_194", + "NarrativeContent_195", + "NarrativeContent_196", + "NarrativeContent_197", + "NarrativeContent_198" + ], + "previousId": "NarrativeContent_192", + "nextId": "NarrativeContent_194", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_194", + "extensionAttributes": [], + "name": "NC_217", + "sectionNumber": "10.4.1", + "sectionTitle": "Statistical Method of Analysis", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_193", + "nextId": "NarrativeContent_195", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_195", + "extensionAttributes": [], + "name": "NC_218", + "sectionNumber": "10.4.2", + "sectionTitle": "Handling of Data in Relation to Primary Estimand(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_194", + "nextId": "NarrativeContent_196", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_196", + "extensionAttributes": [], + "name": "NC_219", + "sectionNumber": "10.4.3", + "sectionTitle": "Handling of Missing Data", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_195", + "nextId": "NarrativeContent_197", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_197", + "extensionAttributes": [], + "name": "NC_220", + "sectionNumber": "10.4.4", + "sectionTitle": "{Sensitivity Analysis}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_196", + "nextId": "NarrativeContent_198", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_198", + "extensionAttributes": [], + "name": "NC_221", + "sectionNumber": "10.4.5", + "sectionTitle": "{Supplementary Analysis}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_197", + "nextId": "NarrativeContent_199", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_199", + "extensionAttributes": [], + "name": "NC_222", + "sectionNumber": "10.5", + "sectionTitle": "Analysis Associated with the Secondary Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_200", + "NarrativeContent_201", + "NarrativeContent_202", + "NarrativeContent_203", + "NarrativeContent_204" + ], + "previousId": "NarrativeContent_198", + "nextId": "NarrativeContent_200", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_200", + "extensionAttributes": [], + "name": "NC_223", + "sectionNumber": "10.5.1", + "sectionTitle": "{Statistical Method of Analysis}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_199", + "nextId": "NarrativeContent_201", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_201", + "extensionAttributes": [], + "name": "NC_224", + "sectionNumber": "10.5.2", + "sectionTitle": "{Handling of Data in Relation to Secondary Estimand(s)}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_200", + "nextId": "NarrativeContent_202", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_202", + "extensionAttributes": [], + "name": "NC_225", + "sectionNumber": "10.5.3", + "sectionTitle": "{Handling of Missing Data}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_201", + "nextId": "NarrativeContent_203", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_203", + "extensionAttributes": [], + "name": "NC_226", + "sectionNumber": "10.5.4", + "sectionTitle": "{Sensitivity Analyses}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_202", + "nextId": "NarrativeContent_204", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_204", + "extensionAttributes": [], + "name": "NC_227", + "sectionNumber": "10.5.5", + "sectionTitle": "{Supplementary Analyses}", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_203", + "nextId": "NarrativeContent_205", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_205", + "extensionAttributes": [], + "name": "NC_228", + "sectionNumber": "10.6", + "sectionTitle": "Analysis Associated with the Exploratory Objective(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_204", + "nextId": "NarrativeContent_206", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_206", + "extensionAttributes": [], + "name": "NC_229", + "sectionNumber": "10.7", + "sectionTitle": "Safety Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_205", + "nextId": "NarrativeContent_207", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_207", + "extensionAttributes": [], + "name": "NC_230", + "sectionNumber": "10.8", + "sectionTitle": "Other Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_206", + "nextId": "NarrativeContent_208", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_208", + "extensionAttributes": [], + "name": "NC_231", + "sectionNumber": "10.9", + "sectionTitle": "Interim Analyses", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_207", + "nextId": "NarrativeContent_209", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_209", + "extensionAttributes": [], + "name": "NC_232", + "sectionNumber": "10.10", + "sectionTitle": "Multiplicity Adjustments", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_208", + "nextId": "NarrativeContent_210", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_210", + "extensionAttributes": [], + "name": "NC_233", + "sectionNumber": "10.11", + "sectionTitle": "Sample Size Determination", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_209", + "nextId": "NarrativeContent_211", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_211", + "extensionAttributes": [], + "name": "NC_234", + "sectionNumber": "11", + "sectionTitle": "TRIAL OVERSIGHT AND OTHER GENERAL CONSIDERATIONS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_212", + "NarrativeContent_213", + "NarrativeContent_216", + "NarrativeContent_219", + "NarrativeContent_220", + "NarrativeContent_221", + "NarrativeContent_222", + "NarrativeContent_223", + "NarrativeContent_224", + "NarrativeContent_225" + ], + "previousId": "NarrativeContent_210", + "nextId": "NarrativeContent_212", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_212", + "extensionAttributes": [], + "name": "NC_235", + "sectionNumber": "11.1", + "sectionTitle": "Regulatory and Ethical Considerations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_211", + "nextId": "NarrativeContent_213", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_213", + "extensionAttributes": [], + "name": "NC_236", + "sectionNumber": "11.2", + "sectionTitle": "Trial Oversight", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_214", "NarrativeContent_215"], + "previousId": "NarrativeContent_212", + "nextId": "NarrativeContent_214", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_214", + "extensionAttributes": [], + "name": "NC_237", + "sectionNumber": "11.2.1", + "sectionTitle": "Investigator Responsibilities", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_213", + "nextId": "NarrativeContent_215", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_215", + "extensionAttributes": [], + "name": "NC_238", + "sectionNumber": "11.2.2", + "sectionTitle": "Sponsor Responsibilities", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_214", + "nextId": "NarrativeContent_216", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_216", + "extensionAttributes": [], + "name": "NC_239", + "sectionNumber": "11.3", + "sectionTitle": "Informed Consent Process", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": ["NarrativeContent_217", "NarrativeContent_218"], + "previousId": "NarrativeContent_215", + "nextId": "NarrativeContent_217", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_217", + "extensionAttributes": [], + "name": "NC_240", + "sectionNumber": "11.3.1", + "sectionTitle": "Informed Consent for Rescreening", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_216", + "nextId": "NarrativeContent_218", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_218", + "extensionAttributes": [], + "name": "NC_241", + "sectionNumber": "11.3.2", + "sectionTitle": "Informed Consent for Use of Remaining Samples in Exploratory Research", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_217", + "nextId": "NarrativeContent_219", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_219", + "extensionAttributes": [], + "name": "NC_242", + "sectionNumber": "11.4", + "sectionTitle": "Committees", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_218", + "nextId": "NarrativeContent_220", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_220", + "extensionAttributes": [], + "name": "NC_243", + "sectionNumber": "11.5", + "sectionTitle": "Insurance and Indemnity", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_219", + "nextId": "NarrativeContent_221", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_221", + "extensionAttributes": [], + "name": "NC_244", + "sectionNumber": "11.6", + "sectionTitle": "Risk Management", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_220", + "nextId": "NarrativeContent_222", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_222", + "extensionAttributes": [], + "name": "NC_245", + "sectionNumber": "11.7", + "sectionTitle": "Data Governance", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_221", + "nextId": "NarrativeContent_223", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_223", + "extensionAttributes": [], + "name": "NC_246", + "sectionNumber": "11.8", + "sectionTitle": "Source Data", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_222", + "nextId": "NarrativeContent_224", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_224", + "extensionAttributes": [], + "name": "NC_247", + "sectionNumber": "11.9", + "sectionTitle": "Protocol Deviations", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_223", + "nextId": "NarrativeContent_225", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_225", + "extensionAttributes": [], + "name": "NC_248", + "sectionNumber": "11.10", + "sectionTitle": "Early Site Closure", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_224", + "nextId": "NarrativeContent_226", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_226", + "extensionAttributes": [], + "name": "NC_249", + "sectionNumber": "12", + "sectionTitle": "APPENDIX: SUPPORTING DETAILS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [ + "NarrativeContent_227", + "NarrativeContent_228", + "NarrativeContent_229" + ], + "previousId": "NarrativeContent_225", + "nextId": "NarrativeContent_227", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_227", + "extensionAttributes": [], + "name": "NC_250", + "sectionNumber": "12.1", + "sectionTitle": "Clinical Laboratory Tests", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_226", + "nextId": "NarrativeContent_228", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_228", + "extensionAttributes": [], + "name": "NC_251", + "sectionNumber": "12.2", + "sectionTitle": "Country/Region-Specific Differences", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_227", + "nextId": "NarrativeContent_229", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_229", + "extensionAttributes": [], + "name": "NC_252", + "sectionNumber": "12.3", + "sectionTitle": "Prior Protocol Amendment(s)", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_228", + "nextId": "NarrativeContent_230", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_230", + "extensionAttributes": [], + "name": "NC_253", + "sectionNumber": "13", + "sectionTitle": "APPENDIX: GLOSSARY OF TERMS AND ABBREVIATIONS", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_229", + "nextId": "NarrativeContent_231", + "contentItemId": null, + "instanceType": "NarrativeContent" + }, + { + "id": "NarrativeContent_231", + "extensionAttributes": [], + "name": "NC_254", + "sectionNumber": "14", + "sectionTitle": "APPENDIX: REFERENCES", + "displaySectionNumber": true, + "displaySectionTitle": true, + "childIds": [], + "previousId": "NarrativeContent_230", + "nextId": null, + "contentItemId": null, + "instanceType": "NarrativeContent" + } + ], + "notes": [], + "instanceType": "StudyDefinitionDocumentVersion" + } + ], + "childIds": [], + "notes": [], + "instanceType": "StudyDefinitionDocument" + } + ], + "instanceType": "Study" + }, + "usdmVersion": "4.0", + "systemName": "CDISC USDM E2J", + "systemVersion": "0.62.0" +} diff --git a/tests/resources/CoreIssue1442/rule.yml b/tests/resources/CoreIssue1442/rule.yml new file mode 100644 index 000000000..7b1328919 --- /dev/null +++ b/tests/resources/CoreIssue1442/rule.yml @@ -0,0 +1,51 @@ +Authorities: + - Organization: CDISC + Standards: + - Name: USDM + References: + - Citations: + - Cited Guidance: + "Class relationships must conform with the USDM schema based on + the API specification." + Document: "USDM_CORE_Rules.xlsx" + Origin: "USDM Conformance Rules" + Rule Identifier: + Id: "DDF00081" + Version: "1" + Version: "1.0" + Version: "3.0" + - Name: USDM + References: + - Citations: + - Cited Guidance: + "Class relationships must conform with the USDM schema based on + the API specification." + Document: "USDM_CORE_Rules.xlsx" + Origin: "USDM Conformance Rules" + Rule Identifier: + Id: "DDF00081" + Version: "1" + Version: "1.0" + Version: "4.0" +Check: + all: + - name: message + operator: non_empty +Core: + Id: "DDF00081" + Status: Draft + Version: "1" +Description: "Class relationships must conform with the USDM schema based on the API specification." +Executability: Fully Executable +Operations: +Outcome: + Message: "The class relationship does not conform with the USDM schema." + Output Variables: + - json_path + - message +Rule Type: JSON Schema Check +Scope: + Entities: + Include: + - "ALL" +Sensitivity: Record diff --git a/tests/resources/CoreIssue1442/test_adam_dataset.xpt b/tests/resources/CoreIssue1442/test_adam_dataset.xpt new file mode 100644 index 0000000000000000000000000000000000000000..7367de6d79361a3662cd2b197f1aedbd22fc593b GIT binary patch literal 2415520 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 Wxc|FY2+n!qV#>;j%wnuV&;J8ovMkpC literal 0 HcmV?d00001 diff --git a/tests/resources/CoreIssue1442/test_dataset.ndjson b/tests/resources/CoreIssue1442/test_dataset.ndjson new file mode 100644 index 000000000..1f3e8e7fb --- /dev/null +++ b/tests/resources/CoreIssue1442/test_dataset.ndjson @@ -0,0 +1,1584 @@ +{"datasetJSONCreationDateTime": "2024-11-11T15:09:16", "datasetJSONVersion": "1.1.0", "fileOID": "www.cdisc.org/StudyMSGv2/1/Define-XML_2.1.0/2024-11-11/ex", "dbLastModifiedDateTime": "2020-08-21T09:14:26", "originator": "CDISC SDTM MSG Team", "sourceSystem": {"name": "SAS on X64_10PRO", "version": "9.0401M7"}, "studyOID": "cdisc.com/CDISCPILOT01", "metaDataVersionOID": "MDV.MSGv2.0.SDTMIG.3.3.SDTM.1.7", "metaDataRef": "define.xml", "itemGroupOID": "IG.EX", "records": 1583, "name": "EX", "label": "Exposure", "columns": [{"itemOID": "IT.EX.STUDYID", "name": "STUDYID", "label": "Study Identifier", "dataType": "string", "length": 12, "keySequence": 1}, {"itemOID": "IT.EX.DOMAIN", "name": "DOMAIN", "label": "Domain Abbreviation", "dataType": "string", "length": 2}, {"itemOID": "IT.EX.USUBJID", "name": "USUBJID", "label": "Unique Subject Identifier", "dataType": "string", "length": 8, "keySequence": 2}, {"itemOID": "IT.EX.SPDEVID", "name": "SPDEVID", "label": "Sponsor Device Identifier", "dataType": "string", "length": 200}, {"itemOID": "IT.EX.EXSEQ", "name": "EXSEQ", "label": "Sequence Number", "dataType": "integer"}, {"itemOID": "IT.EX.EXTRT", "name": "EXTRT", "label": "Name of Treatment", "dataType": "string", "length": 10, "keySequence": 3}, {"itemOID": "IT.EX.EXDOSE", "name": "EXDOSE", "label": "Dose", "dataType": "integer"}, {"itemOID": "IT.EX.EXDOSU", "name": "EXDOSU", "label": "Dose Units", "dataType": "string", "length": 2}, {"itemOID": "IT.EX.EXDOSFRM", "name": "EXDOSFRM", "label": "Dose Form", "dataType": "string", "length": 9}, {"itemOID": "IT.EX.EXDOSFRQ", "name": "EXDOSFRQ", "label": "Dosing Frequency per Interval", "dataType": "string", "length": 2}, {"itemOID": "IT.EX.EXROUTE", "name": "EXROUTE", "label": "Route of Administration", "dataType": "string", "length": 12}, {"itemOID": "IT.EX.EXLOT", "name": "EXLOT", "label": "Lot Number", "dataType": "string", "length": 200}, {"itemOID": "IT.EX.EPOCH", "name": "EPOCH", "label": "Epoch", "dataType": "string", "length": 9}, {"itemOID": "IT.EX.EXSTDTC", "name": "EXSTDTC", "label": "Start Date/Time of Treatment", "dataType": "date", "keySequence": 4}, {"itemOID": "IT.EX.EXENDTC", "name": "EXENDTC", "label": "End Date/Time of Treatment", "dataType": "date"}, {"itemOID": "IT.EX.EXSTDY", "name": "EXSTDY", "label": "Study Day of Start of Treatment", "dataType": "integer"}, {"itemOID": "IT.EX.EXENDY", "name": "EXENDY", "label": "Study Day of End of Treatment", "dataType": "integer"}]} +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 1, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-30", "2012-11-30", 1, 1] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 2, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-01", "2012-12-01", 2, 2] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 3, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-02", "2012-12-02", 3, 3] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 4, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-03", "2012-12-03", 4, 4] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 5, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-04", "2012-12-04", 5, 5] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 6, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-05", "2012-12-05", 6, 6] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 7, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-06", "2012-12-06", 7, 7] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 8, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-07", "2012-12-07", 8, 8] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 9, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-08", "2012-12-08", 9, 9] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 10, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-09", "2012-12-09", 10, 10] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 11, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-10", "2012-12-10", 11, 11] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 12, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-11", "2012-12-11", 12, 12] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 13, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-12", "2012-12-12", 13, 13] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 14, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-13", "2012-12-13", 14, 14] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 15, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-14", "2012-12-14", 15, 15] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 16, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-15", "2012-12-15", 16, 16] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 17, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-16", "2012-12-16", 17, 17] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 18, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-17", "2012-12-17", 18, 18] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 19, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-18", "2012-12-18", 19, 19] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 20, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-19", "2012-12-19", 20, 20] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 21, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-20", "2012-12-20", 21, 21] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 22, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-21", "2012-12-21", 22, 22] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 23, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-22", "2012-12-22", 23, 23] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 24, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-23", "2012-12-23", 24, 24] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 25, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-24", "2012-12-24", 25, 25] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 26, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-25", "2012-12-25", 26, 26] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 27, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-26", "2012-12-26", 27, 27] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 28, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-27", "2012-12-27", 28, 28] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 29, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-28", "2012-12-28", 29, 29] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 30, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-29", "2012-12-29", 30, 30] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 31, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-30", "2012-12-30", 31, 31] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 32, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-31", "2012-12-31", 32, 32] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 33, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-01", "2013-01-01", 33, 33] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 34, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-02", "2013-01-02", 34, 34] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 35, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-03", "2013-01-03", 35, 35] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 36, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-04", "2013-01-04", 36, 36] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 37, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-05", "2013-01-05", 37, 37] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 38, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-06", "2013-01-06", 38, 38] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 39, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-07", "2013-01-07", 39, 39] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 40, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-08", "2013-01-08", 40, 40] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 41, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-09", "2013-01-09", 41, 41] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 42, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-10", "2013-01-10", 42, 42] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 43, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-11", "2013-01-11", 43, 43] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 44, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-12", "2013-01-12", 44, 44] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 45, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-13", "2013-01-13", 45, 45] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 46, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-14", "2013-01-14", 46, 46] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 47, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-15", "2013-01-15", 47, 47] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 48, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-16", "2013-01-16", 48, 48] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 49, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-17", "2013-01-17", 49, 49] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 50, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-18", "2013-01-18", 50, 50] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 51, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-19", "2013-01-19", 51, 51] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 52, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-20", "2013-01-20", 52, 52] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 53, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-21", "2013-01-21", 53, 53] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 54, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-22", "2013-01-22", 54, 54] +["CDISCPILOT01", "EX", "CDISC001", "DEV0001", 55, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-23", "2013-01-23", 55, 55] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 1, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-15", "2012-11-15", 1, 1] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 2, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-16", "2012-11-16", 2, 2] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 3, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-17", "2012-11-17", 3, 3] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 4, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-18", "2012-11-18", 4, 4] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 5, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-19", "2012-11-19", 5, 5] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 6, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-20", "2012-11-20", 6, 6] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 7, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-21", "2012-11-21", 7, 7] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 8, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-22", "2012-11-22", 8, 8] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 9, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-23", "2012-11-23", 9, 9] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 10, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-24", "2012-11-24", 10, 10] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 11, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-25", "2012-11-25", 11, 11] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 12, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-26", "2012-11-26", 12, 12] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 13, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-27", "2012-11-27", 13, 13] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 14, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-28", "2012-11-28", 14, 14] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 15, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-29", "2012-11-29", 15, 15] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 16, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-11-30", "2012-11-30", 16, 16] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 17, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-01", "2012-12-01", 17, 17] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 18, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-02", "2012-12-02", 18, 18] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 19, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-03", "2012-12-03", 19, 19] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 20, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-04", "2012-12-04", 20, 20] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 21, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-05", "2012-12-05", 21, 21] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 22, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-06", "2012-12-06", 22, 22] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 23, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-07", "2012-12-07", 23, 23] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 24, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-08", "2012-12-08", 24, 24] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 25, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-09", "2012-12-09", 25, 25] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 26, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-10", "2012-12-10", 26, 26] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 27, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-11", "2012-12-11", 27, 27] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 28, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-12", "2012-12-12", 28, 28] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 29, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-13", "2012-12-13", 29, 29] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 30, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-14", "2012-12-14", 30, 30] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 31, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-15", "2012-12-15", 31, 31] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 32, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-16", "2012-12-16", 32, 32] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 33, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-17", "2012-12-17", 33, 33] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 34, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-18", "2012-12-18", 34, 34] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 35, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-19", "2012-12-19", 35, 35] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 36, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-20", "2012-12-20", 36, 36] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 37, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-21", "2012-12-21", 37, 37] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 38, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-22", "2012-12-22", 38, 38] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 39, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-23", "2012-12-23", 39, 39] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 40, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-24", "2012-12-24", 40, 40] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 41, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-25", "2012-12-25", 41, 41] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 42, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-26", "2012-12-26", 42, 42] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 43, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-27", "2012-12-27", 43, 43] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 44, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-28", "2012-12-28", 44, 44] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 45, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-29", "2012-12-29", 45, 45] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 46, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-30", "2012-12-30", 46, 46] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 47, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2012-12-31", "2012-12-31", 47, 47] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 48, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-01", "2013-01-01", 48, 48] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 49, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-02", "2013-01-02", 49, 49] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 50, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-03", "2013-01-03", 50, 50] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 51, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-04", "2013-01-04", 51, 51] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 52, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-05", "2013-01-05", 52, 52] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 53, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-06", "2013-01-06", 53, 53] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 54, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-07", "2013-01-07", 54, 54] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 55, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-08", "2013-01-08", 55, 55] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 56, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-09", "2013-01-09", 56, 56] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 57, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-10", "2013-01-10", 57, 57] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 58, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-11", "2013-01-11", 58, 58] +["CDISCPILOT01", "EX", "CDISC002", "DEV0002", 59, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-12", "2013-01-12", 59, 59] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 1, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-08-29", "2013-08-29", 1, 1] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 2, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-08-30", "2013-08-30", 2, 2] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 3, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-08-31", "2013-08-31", 3, 3] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 4, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-01", "2013-09-01", 4, 4] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 5, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-02", "2013-09-02", 5, 5] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 6, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-03", "2013-09-03", 6, 6] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 7, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-04", "2013-09-04", 7, 7] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 8, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-05", "2013-09-05", 8, 8] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 9, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-06", "2013-09-06", 9, 9] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 10, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-07", "2013-09-07", 10, 10] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 11, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-08", "2013-09-08", 11, 11] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 12, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-09", "2013-09-09", 12, 12] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 13, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-10", "2013-09-10", 13, 13] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 14, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-11", "2013-09-11", 14, 14] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 15, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-12", "2013-09-12", 15, 15] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 16, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-13", "2013-09-13", 16, 16] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 17, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-14", "2013-09-14", 17, 17] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 18, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-15", "2013-09-15", 18, 18] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 19, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-16", "2013-09-16", 19, 19] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 20, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-17", "2013-09-17", 20, 20] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 21, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-18", "2013-09-18", 21, 21] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 22, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-19", "2013-09-19", 22, 22] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 23, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-20", "2013-09-20", 23, 23] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 24, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-21", "2013-09-21", 24, 24] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 25, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-22", "2013-09-22", 25, 25] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 26, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-23", "2013-09-23", 26, 26] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 27, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-24", "2013-09-24", 27, 27] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 28, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-25", "2013-09-25", 28, 28] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 29, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-26", "2013-09-26", 29, 29] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 30, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-27", "2013-09-27", 30, 30] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 31, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-28", "2013-09-28", 31, 31] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 32, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-29", "2013-09-29", 32, 32] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 33, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-09-30", "2013-09-30", 33, 33] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 34, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-01", "2013-10-01", 34, 34] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 35, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-02", "2013-10-02", 35, 35] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 36, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-03", "2013-10-03", 36, 36] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 37, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-04", "2013-10-04", 37, 37] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 38, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-05", "2013-10-05", 38, 38] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 39, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-06", "2013-10-06", 39, 39] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 40, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-07", "2013-10-07", 40, 40] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 41, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-08", "2013-10-08", 41, 41] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 42, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-09", "2013-10-09", 42, 42] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 43, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-10", "2013-10-10", 43, 43] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 44, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-11", "2013-10-11", 44, 44] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 45, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-12", "2013-10-12", 45, 45] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 46, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-13", "2013-10-13", 46, 46] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 47, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-14", "2013-10-14", 47, 47] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 48, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-15", "2013-10-15", 48, 48] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 49, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-16", "2013-10-16", 49, 49] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 50, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-17", "2013-10-17", 50, 50] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 51, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-18", "2013-10-18", 51, 51] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 52, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-19", "2013-10-19", 52, 52] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 53, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-20", "2013-10-20", 53, 53] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 54, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-21", "2013-10-21", 54, 54] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 55, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-22", "2013-10-22", 55, 55] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 56, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-23", "2013-10-23", 56, 56] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 57, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-24", "2013-10-24", 57, 57] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 58, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-25", "2013-10-25", 58, 58] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 59, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-26", "2013-10-26", 59, 59] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 60, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-27", "2013-10-27", 60, 60] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 61, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-28", "2013-10-28", 61, 61] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 62, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-29", "2013-10-29", 62, 62] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 63, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-30", "2013-10-30", 63, 63] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 64, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-10-31", "2013-10-31", 64, 64] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 65, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-11-01", "2013-11-01", 65, 65] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 66, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-11-02", "2013-11-02", 66, 66] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 67, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-11-03", "2013-11-03", 67, 67] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 68, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-11-04", "2013-11-04", 68, 68] +["CDISCPILOT01", "EX", "CDISC003", "DEV0003", 69, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-11-05", "2013-11-05", 69, 69] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 1, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-08", "2013-10-08", 1, 1] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 2, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-09", "2013-10-09", 2, 2] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 3, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-10", "2013-10-10", 3, 3] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 4, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-11", "2013-10-11", 4, 4] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 5, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-12", "2013-10-12", 5, 5] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 6, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-13", "2013-10-13", 6, 6] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 7, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-14", "2013-10-14", 7, 7] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 8, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-15", "2013-10-15", 8, 8] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 9, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-16", "2013-10-16", 9, 9] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 10, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-17", "2013-10-17", 10, 10] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 11, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-18", "2013-10-18", 11, 11] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 12, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-19", "2013-10-19", 12, 12] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 13, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-20", "2013-10-20", 13, 13] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 14, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-21", "2013-10-21", 14, 14] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 15, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-22", "2013-10-22", 15, 15] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 16, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-23", "2013-10-23", 16, 16] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 17, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-24", "2013-10-24", 17, 17] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 18, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-25", "2013-10-25", 18, 18] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 19, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-26", "2013-10-26", 19, 19] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 20, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-27", "2013-10-27", 20, 20] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 21, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-28", "2013-10-28", 21, 21] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 22, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-29", "2013-10-29", 22, 22] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 23, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-30", "2013-10-30", 23, 23] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 24, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-10-31", "2013-10-31", 24, 24] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 25, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-01", "2013-11-01", 25, 25] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 26, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-02", "2013-11-02", 26, 26] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 27, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-03", "2013-11-03", 27, 27] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 28, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-04", "2013-11-04", 28, 28] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 29, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-05", "2013-11-05", 29, 29] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 30, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-06", "2013-11-06", 30, 30] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 31, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-07", "2013-11-07", 31, 31] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 32, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-08", "2013-11-08", 32, 32] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 33, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-09", "2013-11-09", 33, 33] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 34, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-10", "2013-11-10", 34, 34] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 35, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-11", "2013-11-11", 35, 35] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 36, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-12", "2013-11-12", 36, 36] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 37, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-13", "2013-11-13", 37, 37] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 38, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-14", "2013-11-14", 38, 38] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 39, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-15", "2013-11-15", 39, 39] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 40, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-16", "2013-11-16", 40, 40] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 41, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-17", "2013-11-17", 41, 41] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 42, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-18", "2013-11-18", 42, 42] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 43, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-19", "2013-11-19", 43, 43] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 44, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-20", "2013-11-20", 44, 44] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 45, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-21", "2013-11-21", 45, 45] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 46, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-22", "2013-11-22", 46, 46] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 47, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-23", "2013-11-23", 47, 47] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 48, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-24", "2013-11-24", 48, 48] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 49, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-25", "2013-11-25", 49, 49] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 50, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-26", "2013-11-26", 50, 50] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 51, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-27", "2013-11-27", 51, 51] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 52, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-28", "2013-11-28", 52, 52] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 53, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-29", "2013-11-29", 53, 53] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 54, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-11-30", "2013-11-30", 54, 54] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 55, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-01", "2013-12-01", 55, 55] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 56, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-02", "2013-12-02", 56, 56] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 57, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-03", "2013-12-03", 57, 57] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 58, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-04", "2013-12-04", 58, 58] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 59, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-05", "2013-12-05", 59, 59] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 60, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-06", "2013-12-06", 60, 60] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 61, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-07", "2013-12-07", 61, 61] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 62, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-08", "2013-12-08", 62, 62] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 63, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-09", "2013-12-09", 63, 63] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 64, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-10", "2013-12-10", 64, 64] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 65, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-11", "2013-12-11", 65, 65] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 66, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-12", "2013-12-12", 66, 66] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 67, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-13", "2013-12-13", 67, 67] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 68, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-14", "2013-12-14", 68, 68] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 69, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-15", "2013-12-15", 69, 69] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 70, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-16", "2013-12-16", 70, 70] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 71, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-17", "2013-12-17", 71, 71] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 72, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-18", "2013-12-18", 72, 72] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 73, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-19", "2013-12-19", 73, 73] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 74, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-20", "2013-12-20", 74, 74] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 75, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-21", "2013-12-21", 75, 75] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 76, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-22", "2013-12-22", 76, 76] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 77, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-23", "2013-12-23", 77, 77] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 78, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-24", "2013-12-24", 78, 78] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 79, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-25", "2013-12-25", 79, 79] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 80, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-26", "2013-12-26", 80, 80] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 81, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-27", "2013-12-27", 81, 81] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 82, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-28", "2013-12-28", 82, 82] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 83, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-29", "2013-12-29", 83, 83] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 84, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-30", "2013-12-30", 84, 84] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 85, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-12-31", "2013-12-31", 85, 85] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 86, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-01", "2014-01-01", 86, 86] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 87, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-02", "2014-01-02", 87, 87] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 88, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-03", "2014-01-03", 88, 88] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 89, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-04", "2014-01-04", 89, 89] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 90, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-05", "2014-01-05", 90, 90] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 91, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-06", "2014-01-06", 91, 91] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 92, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-07", "2014-01-07", 92, 92] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 93, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-08", "2014-01-08", 93, 93] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 94, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-09", "2014-01-09", 94, 94] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 95, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-10", "2014-01-10", 95, 95] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 96, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-11", "2014-01-11", 96, 96] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 97, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-12", "2014-01-12", 97, 97] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 98, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-13", "2014-01-13", 98, 98] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 99, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-14", "2014-01-14", 99, 99] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 100, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-15", "2014-01-15", 100, 100] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 101, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-16", "2014-01-16", 101, 101] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 102, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-17", "2014-01-17", 102, 102] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 103, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-18", "2014-01-18", 103, 103] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 104, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-19", "2014-01-19", 104, 104] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 105, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-20", "2014-01-20", 105, 105] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 106, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-21", "2014-01-21", 106, 106] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 107, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-22", "2014-01-22", 107, 107] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 108, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-23", "2014-01-23", 108, 108] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 109, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-24", "2014-01-24", 109, 109] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 110, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-25", "2014-01-25", 110, 110] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 111, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-26", "2014-01-26", 111, 111] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 112, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-27", "2014-01-27", 112, 112] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 113, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-28", "2014-01-28", 113, 113] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 114, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-29", "2014-01-29", 114, 114] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 115, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-30", "2014-01-30", 115, 115] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 116, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-01-31", "2014-01-31", 116, 116] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 117, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-01", "2014-02-01", 117, 117] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 118, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-02", "2014-02-02", 118, 118] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 119, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-03", "2014-02-03", 119, 119] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 120, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-04", "2014-02-04", 120, 120] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 121, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-05", "2014-02-05", 121, 121] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 122, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-06", "2014-02-06", 122, 122] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 123, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-07", "2014-02-07", 123, 123] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 124, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-08", "2014-02-08", 124, 124] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 125, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-09", "2014-02-09", 125, 125] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 126, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-10", "2014-02-10", 126, 126] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 127, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-11", "2014-02-11", 127, 127] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 128, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-12", "2014-02-12", 128, 128] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 129, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-13", "2014-02-13", 129, 129] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 130, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-14", "2014-02-14", 130, 130] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 131, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-15", "2014-02-15", 131, 131] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 132, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-16", "2014-02-16", 132, 132] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 133, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-17", "2014-02-17", 133, 133] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 134, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-18", "2014-02-18", 134, 134] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 135, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-19", "2014-02-19", 135, 135] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 136, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-20", "2014-02-20", 136, 136] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 137, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-21", "2014-02-21", 137, 137] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 138, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-22", "2014-02-22", 138, 138] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 139, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-23", "2014-02-23", 139, 139] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 140, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-24", "2014-02-24", 140, 140] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 141, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-25", "2014-02-25", 141, 141] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 142, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-26", "2014-02-26", 142, 142] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 143, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-27", "2014-02-27", 143, 143] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 144, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-02-28", "2014-02-28", 144, 144] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 145, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-01", "2014-03-01", 145, 145] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 146, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-02", "2014-03-02", 146, 146] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 147, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-03", "2014-03-03", 147, 147] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 148, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-04", "2014-03-04", 148, 148] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 149, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-05", "2014-03-05", 149, 149] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 150, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-06", "2014-03-06", 150, 150] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 151, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-07", "2014-03-07", 151, 151] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 152, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-08", "2014-03-08", 152, 152] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 153, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-09", "2014-03-09", 153, 153] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 154, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-10", "2014-03-10", 154, 154] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 155, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-11", "2014-03-11", 155, 155] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 156, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-12", "2014-03-12", 156, 156] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 157, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-13", "2014-03-13", 157, 157] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 158, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-14", "2014-03-14", 158, 158] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 159, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-15", "2014-03-15", 159, 159] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 160, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-16", "2014-03-16", 160, 160] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 161, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-17", "2014-03-17", 161, 161] +["CDISCPILOT01", "EX", "CDISC004", "DEV0004", 162, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2014-03-18", "2014-03-18", 162, 162] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 1, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-04", "2013-02-04", 1, 1] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 2, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-05", "2013-02-05", 2, 2] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 3, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-06", "2013-02-06", 3, 3] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 4, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-07", "2013-02-07", 4, 4] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 5, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-08", "2013-02-08", 5, 5] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 6, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-09", "2013-02-09", 6, 6] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 7, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-10", "2013-02-10", 7, 7] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 8, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-11", "2013-02-11", 8, 8] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 9, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-12", "2013-02-12", 9, 9] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 10, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-13", "2013-02-13", 10, 10] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 11, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-14", "2013-02-14", 11, 11] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 12, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-15", "2013-02-15", 12, 12] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 13, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-16", "2013-02-16", 13, 13] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 14, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-17", "2013-02-17", 14, 14] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 15, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-18", "2013-02-18", 15, 15] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 16, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-19", "2013-02-19", 16, 16] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 17, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-20", "2013-02-20", 17, 17] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 18, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-21", "2013-02-21", 18, 18] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 19, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-22", "2013-02-22", 19, 19] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 20, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-23", "2013-02-23", 20, 20] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 21, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-24", "2013-02-24", 21, 21] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 22, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-25", "2013-02-25", 22, 22] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 23, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-26", "2013-02-26", 23, 23] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 24, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-27", "2013-02-27", 24, 24] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 25, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-28", "2013-02-28", 25, 25] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 26, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-01", "2013-03-01", 26, 26] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 27, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-02", "2013-03-02", 27, 27] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 28, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-03", "2013-03-03", 28, 28] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 29, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-04", "2013-03-04", 29, 29] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 30, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-05", "2013-03-05", 30, 30] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 31, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-06", "2013-03-06", 31, 31] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 32, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-07", "2013-03-07", 32, 32] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 33, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-08", "2013-03-08", 33, 33] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 34, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-09", "2013-03-09", 34, 34] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 35, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-10", "2013-03-10", 35, 35] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 36, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-11", "2013-03-11", 36, 36] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 37, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-12", "2013-03-12", 37, 37] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 38, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-13", "2013-03-13", 38, 38] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 39, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-14", "2013-03-14", 39, 39] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 40, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-15", "2013-03-15", 40, 40] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 41, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-16", "2013-03-16", 41, 41] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 42, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-17", "2013-03-17", 42, 42] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 43, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-18", "2013-03-18", 43, 43] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 44, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-19", "2013-03-19", 44, 44] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 45, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-20", "2013-03-20", 45, 45] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 46, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-21", "2013-03-21", 46, 46] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 47, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-22", "2013-03-22", 47, 47] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 48, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-23", "2013-03-23", 48, 48] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 49, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-24", "2013-03-24", 49, 49] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 50, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-25", "2013-03-25", 50, 50] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 51, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-26", "2013-03-26", 51, 51] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 52, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-27", "2013-03-27", 52, 52] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 53, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-28", "2013-03-28", 53, 53] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 54, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-29", "2013-03-29", 54, 54] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 55, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-30", "2013-03-30", 55, 55] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 56, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-31", "2013-03-31", 56, 56] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 57, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-01", "2013-04-01", 57, 57] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 58, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-02", "2013-04-02", 58, 58] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 59, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-03", "2013-04-03", 59, 59] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 60, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-04", "2013-04-04", 60, 60] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 61, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-05", "2013-04-05", 61, 61] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 62, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-06", "2013-04-06", 62, 62] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 63, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-07", "2013-04-07", 63, 63] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 64, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-08", "2013-04-08", 64, 64] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 65, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-09", "2013-04-09", 65, 65] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 66, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-10", "2013-04-10", 66, 66] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 67, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-11", "2013-04-11", 67, 67] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 68, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-12", "2013-04-12", 68, 68] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 69, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-13", "2013-04-13", 69, 69] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 70, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-14", "2013-04-14", 70, 70] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 71, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-15", "2013-04-15", 71, 71] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 72, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-16", "2013-04-16", 72, 72] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 73, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-17", "2013-04-17", 73, 73] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 74, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-18", "2013-04-18", 74, 74] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 75, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-19", "2013-04-19", 75, 75] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 76, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-20", "2013-04-20", 76, 76] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 77, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-21", "2013-04-21", 77, 77] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 78, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-22", "2013-04-22", 78, 78] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 79, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-23", "2013-04-23", 79, 79] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 80, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-24", "2013-04-24", 80, 80] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 81, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-25", "2013-04-25", 81, 81] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 82, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-26", "2013-04-26", 82, 82] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 83, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-27", "2013-04-27", 83, 83] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 84, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-28", "2013-04-28", 84, 84] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 85, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-29", "2013-04-29", 85, 85] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 86, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-30", "2013-04-30", 86, 86] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 87, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-01", "2013-05-01", 87, 87] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 88, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-02", "2013-05-02", 88, 88] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 89, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-03", "2013-05-03", 89, 89] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 90, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-04", "2013-05-04", 90, 90] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 91, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-05", "2013-05-05", 91, 91] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 92, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-06", "2013-05-06", 92, 92] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 93, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-07", "2013-05-07", 93, 93] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 94, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-08", "2013-05-08", 94, 94] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 95, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-09", "2013-05-09", 95, 95] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 96, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-10", "2013-05-10", 96, 96] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 97, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-11", "2013-05-11", 97, 97] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 98, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-12", "2013-05-12", 98, 98] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 99, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-13", "2013-05-13", 99, 99] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 100, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-14", "2013-05-14", 100, 100] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 101, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-15", "2013-05-15", 101, 101] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 102, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-16", "2013-05-16", 102, 102] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 103, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-17", "2013-05-17", 103, 103] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 104, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-18", "2013-05-18", 104, 104] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 105, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-19", "2013-05-19", 105, 105] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 106, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-20", "2013-05-20", 106, 106] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 107, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-21", "2013-05-21", 107, 107] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 108, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-22", "2013-05-22", 108, 108] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 109, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-23", "2013-05-23", 109, 109] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 110, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-24", "2013-05-24", 110, 110] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 111, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-25", "2013-05-25", 111, 111] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 112, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-26", "2013-05-26", 112, 112] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 113, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-27", "2013-05-27", 113, 113] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 114, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-28", "2013-05-28", 114, 114] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 115, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-29", "2013-05-29", 115, 115] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 116, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-30", "2013-05-30", 116, 116] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 117, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-31", "2013-05-31", 117, 117] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 118, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-01", "2013-06-01", 118, 118] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 119, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-02", "2013-06-02", 119, 119] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 120, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-03", "2013-06-03", 120, 120] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 121, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-04", "2013-06-04", 121, 121] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 122, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-05", "2013-06-05", 122, 122] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 123, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-06", "2013-06-06", 123, 123] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 124, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-07", "2013-06-07", 124, 124] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 125, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-08", "2013-06-08", 125, 125] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 126, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-09", "2013-06-09", 126, 126] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 127, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-10", "2013-06-10", 127, 127] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 128, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-11", "2013-06-11", 128, 128] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 129, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-12", "2013-06-12", 129, 129] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 130, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-13", "2013-06-13", 130, 130] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 131, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-14", "2013-06-14", 131, 131] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 132, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-15", "2013-06-15", 132, 132] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 133, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-16", "2013-06-16", 133, 133] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 134, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-17", "2013-06-17", 134, 134] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 135, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-18", "2013-06-18", 135, 135] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 136, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-19", "2013-06-19", 136, 136] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 137, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-20", "2013-06-20", 137, 137] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 138, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-21", "2013-06-21", 138, 138] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 139, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-22", "2013-06-22", 139, 139] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 140, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-23", "2013-06-23", 140, 140] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 141, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-24", "2013-06-24", 141, 141] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 142, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-25", "2013-06-25", 142, 142] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 143, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-26", "2013-06-26", 143, 143] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 144, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-27", "2013-06-27", 144, 144] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 145, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-28", "2013-06-28", 145, 145] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 146, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-29", "2013-06-29", 146, 146] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 147, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-06-30", "2013-06-30", 147, 147] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 148, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-01", "2013-07-01", 148, 148] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 149, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-02", "2013-07-02", 149, 149] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 150, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-03", "2013-07-03", 150, 150] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 151, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-04", "2013-07-04", 151, 151] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 152, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-05", "2013-07-05", 152, 152] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 153, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-06", "2013-07-06", 153, 153] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 154, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-07", "2013-07-07", 154, 154] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 155, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-08", "2013-07-08", 155, 155] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 156, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-09", "2013-07-09", 156, 156] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 157, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-10", "2013-07-10", 157, 157] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 158, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-11", "2013-07-11", 158, 158] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 159, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-12", "2013-07-12", 159, 159] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 160, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-13", "2013-07-13", 160, 160] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 161, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-14", "2013-07-14", 161, 161] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 162, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-15", "2013-07-15", 162, 162] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 163, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-16", "2013-07-16", 163, 163] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 164, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-17", "2013-07-17", 164, 164] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 165, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-18", "2013-07-18", 165, 165] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 166, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-19", "2013-07-19", 166, 166] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 167, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-20", "2013-07-20", 167, 167] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 168, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-21", "2013-07-21", 168, 168] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 169, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-22", "2013-07-22", 169, 169] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 170, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-23", "2013-07-23", 170, 170] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 171, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-24", "2013-07-24", 171, 171] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 172, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-25", "2013-07-25", 172, 172] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 173, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-26", "2013-07-26", 173, 173] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 174, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-27", "2013-07-27", 174, 174] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 175, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-28", "2013-07-28", 175, 175] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 176, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-29", "2013-07-29", 176, 176] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 177, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-07-30", "2013-07-30", 177, 177] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 178, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-07-31", "2013-07-31", 178, 178] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 179, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-08-01", "2013-08-01", 179, 179] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 180, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-08-02", "2013-08-02", 180, 180] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 181, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-08-03", "2013-08-03", 181, 181] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 182, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-08-04", "2013-08-04", 182, 182] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 183, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-08-05", "2013-08-05", 183, 183] +["CDISCPILOT01", "EX", "CDISC005", "DEV0005", 184, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-08-06", "2013-08-06", 184, 184] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 1, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-19", "2013-03-19", 1, 1] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 2, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-20", "2013-03-20", 2, 2] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 3, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-21", "2013-03-21", 3, 3] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 4, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-22", "2013-03-22", 4, 4] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 5, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-23", "2013-03-23", 5, 5] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 6, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-24", "2013-03-24", 6, 6] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 7, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-25", "2013-03-25", 7, 7] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 8, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-26", "2013-03-26", 8, 8] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 9, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-27", "2013-03-27", 9, 9] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 10, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-28", "2013-03-28", 10, 10] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 11, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-29", "2013-03-29", 11, 11] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 12, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-30", "2013-03-30", 12, 12] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 13, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-03-31", "2013-03-31", 13, 13] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 14, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-01", "2013-04-01", 14, 14] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 15, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-02", "2013-04-02", 15, 15] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 16, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-03", "2013-04-03", 16, 16] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 17, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-04", "2013-04-04", 17, 17] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 18, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-05", "2013-04-05", 18, 18] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 19, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-06", "2013-04-06", 19, 19] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 20, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-07", "2013-04-07", 20, 20] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 21, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-08", "2013-04-08", 21, 21] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 22, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-09", "2013-04-09", 22, 22] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 23, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-10", "2013-04-10", 23, 23] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 24, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-11", "2013-04-11", 24, 24] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 25, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-12", "2013-04-12", 25, 25] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 26, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-13", "2013-04-13", 26, 26] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 27, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-14", "2013-04-14", 27, 27] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 28, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-15", "2013-04-15", 28, 28] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 29, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-16", "2013-04-16", 29, 29] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 30, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-17", "2013-04-17", 30, 30] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 31, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-18", "2013-04-18", 31, 31] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 32, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-19", "2013-04-19", 32, 32] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 33, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-20", "2013-04-20", 33, 33] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 34, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-21", "2013-04-21", 34, 34] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 35, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-22", "2013-04-22", 35, 35] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 36, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-23", "2013-04-23", 36, 36] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 37, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-24", "2013-04-24", 37, 37] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 38, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-25", "2013-04-25", 38, 38] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 39, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-26", "2013-04-26", 39, 39] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 40, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-27", "2013-04-27", 40, 40] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 41, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-28", "2013-04-28", 41, 41] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 42, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-29", "2013-04-29", 42, 42] +["CDISCPILOT01", "EX", "CDISC006", "DEV0006", 43, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-04-30", "2013-04-30", 43, 43] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 1, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-05", "2013-01-05", 1, 1] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 2, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-06", "2013-01-06", 2, 2] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 3, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-07", "2013-01-07", 3, 3] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 4, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-08", "2013-01-08", 4, 4] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 5, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-09", "2013-01-09", 5, 5] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 6, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-10", "2013-01-10", 6, 6] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 7, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-11", "2013-01-11", 7, 7] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 8, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-12", "2013-01-12", 8, 8] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 9, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-13", "2013-01-13", 9, 9] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 10, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-14", "2013-01-14", 10, 10] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 11, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-15", "2013-01-15", 11, 11] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 12, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-16", "2013-01-16", 12, 12] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 13, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-17", "2013-01-17", 13, 13] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 14, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-18", "2013-01-18", 14, 14] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 15, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-19", "2013-01-19", 15, 15] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 16, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-20", "2013-01-20", 16, 16] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 17, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-21", "2013-01-21", 17, 17] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 18, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-22", "2013-01-22", 18, 18] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 19, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-23", "2013-01-23", 19, 19] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 20, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-24", "2013-01-24", 20, 20] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 21, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-25", "2013-01-25", 21, 21] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 22, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-26", "2013-01-26", 22, 22] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 23, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-27", "2013-01-27", 23, 23] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 24, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-28", "2013-01-28", 24, 24] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 25, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-29", "2013-01-29", 25, 25] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 26, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-30", "2013-01-30", 26, 26] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 27, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-01-31", "2013-01-31", 27, 27] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 28, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-01", "2013-02-01", 28, 28] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 29, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-02", "2013-02-02", 29, 29] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 30, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-03", "2013-02-03", 30, 30] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 31, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-04", "2013-02-04", 31, 31] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 32, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-05", "2013-02-05", 32, 32] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 33, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-06", "2013-02-06", 33, 33] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 34, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-07", "2013-02-07", 34, 34] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 35, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-08", "2013-02-08", 35, 35] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 36, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-09", "2013-02-09", 36, 36] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 37, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-10", "2013-02-10", 37, 37] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 38, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-11", "2013-02-11", 38, 38] +["CDISCPILOT01", "EX", "CDISC007", "DEV0007", 39, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-359", "TREATMENT", "2013-02-12", "2013-02-12", 39, 39] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 1, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-11", "2014-05-11", 1, 1] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 2, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-12", "2014-05-12", 2, 2] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 3, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-13", "2014-05-13", 3, 3] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 4, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-14", "2014-05-14", 4, 4] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 5, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-15", "2014-05-15", 5, 5] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 6, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-16", "2014-05-16", 6, 6] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 7, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-17", "2014-05-17", 7, 7] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 8, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-18", "2014-05-18", 8, 8] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 9, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-19", "2014-05-19", 9, 9] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 10, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-20", "2014-05-20", 10, 10] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 11, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-21", "2014-05-21", 11, 11] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 12, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-22", "2014-05-22", 12, 12] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 13, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-23", "2014-05-23", 13, 13] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 14, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-24", "2014-05-24", 14, 14] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 15, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-25", "2014-05-25", 15, 15] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 16, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-26", "2014-05-26", 16, 16] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 17, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-27", "2014-05-27", 17, 17] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 18, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-28", "2014-05-28", 18, 18] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 19, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-29", "2014-05-29", 19, 19] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 20, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-30", "2014-05-30", 20, 20] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 21, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-05-31", "2014-05-31", 21, 21] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 22, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-01", "2014-06-01", 22, 22] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 23, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-02", "2014-06-02", 23, 23] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 24, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-03", "2014-06-03", 24, 24] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 25, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-04", "2014-06-04", 25, 25] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 26, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-05", "2014-06-05", 26, 26] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 27, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-06", "2014-06-06", 27, 27] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 28, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-07", "2014-06-07", 28, 28] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 29, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-08", "2014-06-08", 29, 29] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 30, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-09", "2014-06-09", 30, 30] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 31, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-10", "2014-06-10", 31, 31] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 32, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-11", "2014-06-11", 32, 32] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 33, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-12", "2014-06-12", 33, 33] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 34, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-13", "2014-06-13", 34, 34] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 35, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-14", "2014-06-14", 35, 35] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 36, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-15", "2014-06-15", 36, 36] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 37, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-16", "2014-06-16", 37, 37] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 38, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-17", "2014-06-17", 38, 38] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 39, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-18", "2014-06-18", 39, 39] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 40, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-19", "2014-06-19", 40, 40] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 41, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-20", "2014-06-20", 41, 41] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 42, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-21", "2014-06-21", 42, 42] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 43, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-22", "2014-06-22", 43, 43] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 44, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-23", "2014-06-23", 44, 44] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 45, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-24", "2014-06-24", 45, 45] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 46, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-25", "2014-06-25", 46, 46] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 47, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-26", "2014-06-26", 47, 47] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 48, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-27", "2014-06-27", 48, 48] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 49, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-28", "2014-06-28", 49, 49] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 50, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-29", "2014-06-29", 50, 50] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 51, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-06-30", "2014-06-30", 51, 51] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 52, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-01", "2014-07-01", 52, 52] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 53, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-02", "2014-07-02", 53, 53] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 54, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-03", "2014-07-03", 54, 54] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 55, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-04", "2014-07-04", 55, 55] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 56, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-05", "2014-07-05", 56, 56] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 57, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-06", "2014-07-06", 57, 57] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 58, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-07", "2014-07-07", 58, 58] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 59, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-08", "2014-07-08", 59, 59] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 60, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-09", "2014-07-09", 60, 60] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 61, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-10", "2014-07-10", 61, 61] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 62, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-11", "2014-07-11", 62, 62] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 63, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-12", "2014-07-12", 63, 63] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 64, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-13", "2014-07-13", 64, 64] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 65, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-14", "2014-07-14", 65, 65] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 66, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-15", "2014-07-15", 66, 66] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 67, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-16", "2014-07-16", 67, 67] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 68, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-17", "2014-07-17", 68, 68] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 69, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-18", "2014-07-18", 69, 69] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 70, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-19", "2014-07-19", 70, 70] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 71, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-20", "2014-07-20", 71, 71] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 72, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-21", "2014-07-21", 72, 72] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 73, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-22", "2014-07-22", 73, 73] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 74, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-23", "2014-07-23", 74, 74] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 75, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-24", "2014-07-24", 75, 75] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 76, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-25", "2014-07-25", 76, 76] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 77, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-26", "2014-07-26", 77, 77] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 78, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-27", "2014-07-27", 78, 78] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 79, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-28", "2014-07-28", 79, 79] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 80, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-29", "2014-07-29", 80, 80] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 81, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-30", "2014-07-30", 81, 81] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 82, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-07-31", "2014-07-31", 82, 82] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 83, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-01", "2014-08-01", 83, 83] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 84, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-02", "2014-08-02", 84, 84] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 85, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-03", "2014-08-03", 85, 85] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 86, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-04", "2014-08-04", 86, 86] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 87, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-05", "2014-08-05", 87, 87] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 88, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-06", "2014-08-06", 88, 88] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 89, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-07", "2014-08-07", 89, 89] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 90, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-08", "2014-08-08", 90, 90] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 91, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-09", "2014-08-09", 91, 91] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 92, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-10", "2014-08-10", 92, 92] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 93, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-11", "2014-08-11", 93, 93] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 94, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-12", "2014-08-12", 94, 94] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 95, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-13", "2014-08-13", 95, 95] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 96, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-14", "2014-08-14", 96, 96] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 97, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-15", "2014-08-15", 97, 97] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 98, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-16", "2014-08-16", 98, 98] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 99, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-17", "2014-08-17", 99, 99] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 100, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-18", "2014-08-18", 100, 100] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 101, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-19", "2014-08-19", 101, 101] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 102, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-20", "2014-08-20", 102, 102] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 103, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-21", "2014-08-21", 103, 103] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 104, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-22", "2014-08-22", 104, 104] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 105, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-23", "2014-08-23", 105, 105] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 106, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-24", "2014-08-24", 106, 106] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 107, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-25", "2014-08-25", 107, 107] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 108, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-26", "2014-08-26", 108, 108] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 109, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-27", "2014-08-27", 109, 109] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 110, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-28", "2014-08-28", 110, 110] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 111, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-29", "2014-08-29", 111, 111] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 112, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-30", "2014-08-30", 112, 112] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 113, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-08-31", "2014-08-31", 113, 113] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 114, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-01", "2014-09-01", 114, 114] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 115, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-02", "2014-09-02", 115, 115] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 116, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-03", "2014-09-03", 116, 116] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 117, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-04", "2014-09-04", 117, 117] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 118, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-05", "2014-09-05", 118, 118] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 119, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-06", "2014-09-06", 119, 119] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 120, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-07", "2014-09-07", 120, 120] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 121, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-08", "2014-09-08", 121, 121] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 122, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-09", "2014-09-09", 122, 122] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 123, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-10", "2014-09-10", 123, 123] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 124, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-11", "2014-09-11", 124, 124] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 125, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-12", "2014-09-12", 125, 125] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 126, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-13", "2014-09-13", 126, 126] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 127, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-14", "2014-09-14", 127, 127] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 128, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-15", "2014-09-15", 128, 128] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 129, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-16", "2014-09-16", 129, 129] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 130, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-17", "2014-09-17", 130, 130] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 131, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-18", "2014-09-18", 131, 131] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 132, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-19", "2014-09-19", 132, 132] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 133, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-20", "2014-09-20", 133, 133] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 134, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-21", "2014-09-21", 134, 134] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 135, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-22", "2014-09-22", 135, 135] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 136, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-23", "2014-09-23", 136, 136] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 137, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-24", "2014-09-24", 137, 137] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 138, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-25", "2014-09-25", 138, 138] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 139, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-26", "2014-09-26", 139, 139] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 140, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-27", "2014-09-27", 140, 140] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 141, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-28", "2014-09-28", 141, 141] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 142, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-29", "2014-09-29", 142, 142] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 143, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-09-30", "2014-09-30", 143, 143] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 144, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-01", "2014-10-01", 144, 144] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 145, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-02", "2014-10-02", 145, 145] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 146, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-03", "2014-10-03", 146, 146] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 147, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-04", "2014-10-04", 147, 147] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 148, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-05", "2014-10-05", 148, 148] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 149, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-06", "2014-10-06", 149, 149] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 150, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-07", "2014-10-07", 150, 150] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 151, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-08", "2014-10-08", 151, 151] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 152, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-09", "2014-10-09", 152, 152] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 153, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-10", "2014-10-10", 153, 153] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 154, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-11", "2014-10-11", 154, 154] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 155, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-12", "2014-10-12", 155, 155] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 156, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-13", "2014-10-13", 156, 156] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 157, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-14", "2014-10-14", 157, 157] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 158, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-15", "2014-10-15", 158, 158] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 159, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-16", "2014-10-16", 159, 159] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 160, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-17", "2014-10-17", 160, 160] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 161, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-18", "2014-10-18", 161, 161] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 162, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-19", "2014-10-19", 162, 162] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 163, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-20", "2014-10-20", 163, 163] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 164, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-21", "2014-10-21", 164, 164] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 165, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-22", "2014-10-22", 165, 165] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 166, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-23", "2014-10-23", 166, 166] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 167, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-24", "2014-10-24", 167, 167] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 168, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-25", "2014-10-25", 168, 168] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 169, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-26", "2014-10-26", 169, 169] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 170, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-27", "2014-10-27", 170, 170] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 171, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-28", "2014-10-28", 171, 171] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 172, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-29", "2014-10-29", 172, 172] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 173, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-30", "2014-10-30", 173, 173] +["CDISCPILOT01", "EX", "CDISC008", "DEV0008", 174, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-10-31", "2014-10-31", 174, 174] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 1, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-10-22", "2012-10-22", 1, 1] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 2, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-10-23", "2012-10-23", 2, 2] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 3, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-10-24", "2012-10-24", 3, 3] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 4, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-10-25", "2012-10-25", 4, 4] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 5, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-10-26", "2012-10-26", 5, 5] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 6, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-10-27", "2012-10-27", 6, 6] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 7, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-10-28", "2012-10-28", 7, 7] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 8, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-10-29", "2012-10-29", 8, 8] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 9, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-10-30", "2012-10-30", 9, 9] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 10, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-10-31", "2012-10-31", 10, 10] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 11, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-01", "2012-11-01", 11, 11] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 12, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-02", "2012-11-02", 12, 12] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 13, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-03", "2012-11-03", 13, 13] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 14, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-04", "2012-11-04", 14, 14] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 15, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-05", "2012-11-05", 15, 15] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 16, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-06", "2012-11-06", 16, 16] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 17, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-07", "2012-11-07", 17, 17] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 18, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-08", "2012-11-08", 18, 18] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 19, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-09", "2012-11-09", 19, 19] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 20, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-10", "2012-11-10", 20, 20] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 21, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-11", "2012-11-11", 21, 21] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 22, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-12", "2012-11-12", 22, 22] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 23, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-13", "2012-11-13", 23, 23] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 24, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-14", "2012-11-14", 24, 24] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 25, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-15", "2012-11-15", 25, 25] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 26, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-16", "2012-11-16", 26, 26] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 27, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-17", "2012-11-17", 27, 27] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 28, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-18", "2012-11-18", 28, 28] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 29, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-19", "2012-11-19", 29, 29] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 30, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-20", "2012-11-20", 30, 30] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 31, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-21", "2012-11-21", 31, 31] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 32, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-22", "2012-11-22", 32, 32] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 33, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-23", "2012-11-23", 33, 33] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 34, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-24", "2012-11-24", 34, 34] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 35, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-25", "2012-11-25", 35, 35] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 36, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-26", "2012-11-26", 36, 36] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 37, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-27", "2012-11-27", 37, 37] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 38, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-28", "2012-11-28", 38, 38] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 39, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-29", "2012-11-29", 39, 39] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 40, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-11-30", "2012-11-30", 40, 40] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 41, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-01", "2012-12-01", 41, 41] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 42, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-02", "2012-12-02", 42, 42] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 43, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-03", "2012-12-03", 43, 43] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 44, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-04", "2012-12-04", 44, 44] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 45, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-05", "2012-12-05", 45, 45] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 46, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-06", "2012-12-06", 46, 46] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 47, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-07", "2012-12-07", 47, 47] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 48, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-08", "2012-12-08", 48, 48] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 49, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-09", "2012-12-09", 49, 49] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 50, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-10", "2012-12-10", 50, 50] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 51, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-11", "2012-12-11", 51, 51] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 52, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-12", "2012-12-12", 52, 52] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 53, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-13", "2012-12-13", 53, 53] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 54, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-14", "2012-12-14", 54, 54] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 55, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-15", "2012-12-15", 55, 55] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 56, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-16", "2012-12-16", 56, 56] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 57, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-17", "2012-12-17", 57, 57] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 58, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-18", "2012-12-18", 58, 58] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 59, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-19", "2012-12-19", 59, 59] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 60, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-20", "2012-12-20", 60, 60] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 61, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-21", "2012-12-21", 61, 61] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 62, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-22", "2012-12-22", 62, 62] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 63, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-23", "2012-12-23", 63, 63] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 64, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-24", "2012-12-24", 64, 64] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 65, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-25", "2012-12-25", 65, 65] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 66, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-26", "2012-12-26", 66, 66] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 67, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-27", "2012-12-27", 67, 67] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 68, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-28", "2012-12-28", 68, 68] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 69, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-29", "2012-12-29", 69, 69] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 70, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-30", "2012-12-30", 70, 70] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 71, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2012-12-31", "2012-12-31", 71, 71] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 72, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-01", "2013-01-01", 72, 72] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 73, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-02", "2013-01-02", 73, 73] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 74, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-03", "2013-01-03", 74, 74] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 75, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-04", "2013-01-04", 75, 75] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 76, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-05", "2013-01-05", 76, 76] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 77, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-06", "2013-01-06", 77, 77] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 78, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-07", "2013-01-07", 78, 78] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 79, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-08", "2013-01-08", 79, 79] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 80, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-09", "2013-01-09", 80, 80] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 81, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-10", "2013-01-10", 81, 81] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 82, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-11", "2013-01-11", 82, 82] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 83, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-12", "2013-01-12", 83, 83] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 84, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-13", "2013-01-13", 84, 84] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 85, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-14", "2013-01-14", 85, 85] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 86, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-15", "2013-01-15", 86, 86] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 87, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-16", "2013-01-16", 87, 87] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 88, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-17", "2013-01-17", 88, 88] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 89, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-18", "2013-01-18", 89, 89] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 90, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-19", "2013-01-19", 90, 90] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 91, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-20", "2013-01-20", 91, 91] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 92, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-21", "2013-01-21", 92, 92] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 93, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-22", "2013-01-22", 93, 93] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 94, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-23", "2013-01-23", 94, 94] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 95, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-24", "2013-01-24", 95, 95] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 96, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-25", "2013-01-25", 96, 96] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 97, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-26", "2013-01-26", 97, 97] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 98, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-27", "2013-01-27", 98, 98] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 99, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-28", "2013-01-28", 99, 99] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 100, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-29", "2013-01-29", 100, 100] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 101, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-30", "2013-01-30", 101, 101] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 102, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-01-31", "2013-01-31", 102, 102] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 103, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-01", "2013-02-01", 103, 103] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 104, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-02", "2013-02-02", 104, 104] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 105, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-03", "2013-02-03", 105, 105] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 106, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-04", "2013-02-04", 106, 106] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 107, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-05", "2013-02-05", 107, 107] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 108, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-06", "2013-02-06", 108, 108] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 109, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-07", "2013-02-07", 109, 109] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 110, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-08", "2013-02-08", 110, 110] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 111, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-09", "2013-02-09", 111, 111] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 112, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-10", "2013-02-10", 112, 112] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 113, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-11", "2013-02-11", 113, 113] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 114, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-12", "2013-02-12", 114, 114] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 115, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-13", "2013-02-13", 115, 115] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 116, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-14", "2013-02-14", 116, 116] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 117, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-15", "2013-02-15", 117, 117] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 118, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-16", "2013-02-16", 118, 118] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 119, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-17", "2013-02-17", 119, 119] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 120, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-18", "2013-02-18", 120, 120] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 121, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-19", "2013-02-19", 121, 121] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 129, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-27", "2013-02-27", 129, 129] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 130, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-02-28", "2013-02-28", 130, 130] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 131, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-01", "2013-03-01", 131, 131] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 132, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-02", "2013-03-02", 132, 132] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 133, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-03", "2013-03-03", 133, 133] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 134, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-04", "2013-03-04", 134, 134] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 135, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-05", "2013-03-05", 135, 135] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 136, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-06", "2013-03-06", 136, 136] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 137, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-07", "2013-03-07", 137, 137] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 138, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-08", "2013-03-08", 138, 138] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 139, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-09", "2013-03-09", 139, 139] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 140, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-10", "2013-03-10", 140, 140] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 141, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-11", "2013-03-11", 141, 141] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 142, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-12", "2013-03-12", 142, 142] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 143, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-13", "2013-03-13", 143, 143] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 144, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-14", "2013-03-14", 144, 144] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 145, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-15", "2013-03-15", 145, 145] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 146, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-16", "2013-03-16", 146, 146] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 147, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-17", "2013-03-17", 147, 147] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 148, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-18", "2013-03-18", 148, 148] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 149, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-19", "2013-03-19", 149, 149] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 150, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-20", "2013-03-20", 150, 150] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 151, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-21", "2013-03-21", 151, 151] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 152, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-22", "2013-03-22", 152, 152] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 153, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-23", "2013-03-23", 153, 153] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 154, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-24", "2013-03-24", 154, 154] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 155, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-25", "2013-03-25", 155, 155] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 156, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-26", "2013-03-26", 156, 156] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 157, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-27", "2013-03-27", 157, 157] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 158, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-28", "2013-03-28", 158, 158] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 159, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-29", "2013-03-29", 159, 159] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 160, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-30", "2013-03-30", 160, 160] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 161, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-03-31", "2013-03-31", 161, 161] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 162, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-01", "2013-04-01", 162, 162] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 163, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-02", "2013-04-02", 163, 163] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 164, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-03", "2013-04-03", 164, 164] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 165, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-04", "2013-04-04", 165, 165] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 166, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-05", "2013-04-05", 166, 166] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 167, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-06", "2013-04-06", 167, 167] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 168, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-07", "2013-04-07", 168, 168] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 169, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-08", "2013-04-08", 169, 169] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 170, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-09", "2013-04-09", 170, 170] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 171, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-10", "2013-04-10", 171, 171] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 172, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-11", "2013-04-11", 172, 172] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 173, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-12", "2013-04-12", 173, 173] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 174, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-13", "2013-04-13", 174, 174] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 175, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-14", "2013-04-14", 175, 175] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 176, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-15", "2013-04-15", 176, 176] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 177, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-16", "2013-04-16", 177, 177] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 178, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-17", "2013-04-17", 178, 178] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 179, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-18", "2013-04-18", 179, 179] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 180, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-19", "2013-04-19", 180, 180] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 181, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-20", "2013-04-20", 181, 181] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 182, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-21", "2013-04-21", 182, 182] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 183, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-22", "2013-04-22", 183, 183] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 184, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-23", "2013-04-23", 184, 184] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 185, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-24", "2013-04-24", 185, 185] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 186, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-25", "2013-04-25", 186, 186] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 187, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-26", "2013-04-26", 187, 187] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 188, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-27", "2013-04-27", 188, 188] +["CDISCPILOT01", "EX", "CDISC009", "DEV0009", 189, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-485", "TREATMENT", "2013-04-28", "2013-04-28", 189, 189] +["CDISCPILOT01", "EX", "CDISC010", "DEV0010", 1, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-09-21", "2013-09-21", 1, 1] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 1, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-07", "2012-12-07", 1, 1] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 2, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-08", "2012-12-08", 2, 2] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 3, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-09", "2012-12-09", 3, 3] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 4, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-10", "2012-12-10", 4, 4] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 5, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-11", "2012-12-11", 5, 5] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 6, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-12", "2012-12-12", 6, 6] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 7, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-13", "2012-12-13", 7, 7] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 8, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-14", "2012-12-14", 8, 8] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 9, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-15", "2012-12-15", 9, 9] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 10, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-16", "2012-12-16", 10, 10] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 11, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-17", "2012-12-17", 11, 11] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 12, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-18", "2012-12-18", 12, 12] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 13, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-19", "2012-12-19", 13, 13] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 14, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-20", "2012-12-20", 14, 14] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 15, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-21", "2012-12-21", 15, 15] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 16, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2012-12-22", "2012-12-22", 16, 16] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 17, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2012-12-23", "2012-12-23", 17, 17] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 18, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2012-12-24", "2012-12-24", 18, 18] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 19, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2012-12-25", "2012-12-25", 19, 19] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 20, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2012-12-26", "2012-12-26", 20, 20] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 21, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2012-12-27", "2012-12-27", 21, 21] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 22, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2012-12-28", "2012-12-28", 22, 22] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 23, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2012-12-29", "2012-12-29", 23, 23] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 24, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2012-12-30", "2012-12-30", 24, 24] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 25, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2012-12-31", "2012-12-31", 25, 25] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 26, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-01", "2013-01-01", 26, 26] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 27, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-02", "2013-01-02", 27, 27] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 28, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-03", "2013-01-03", 28, 28] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 29, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-04", "2013-01-04", 29, 29] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 30, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-05", "2013-01-05", 30, 30] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 31, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-06", "2013-01-06", 31, 31] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 32, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-07", "2013-01-07", 32, 32] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 33, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-08", "2013-01-08", 33, 33] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 34, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-09", "2013-01-09", 34, 34] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 35, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-10", "2013-01-10", 35, 35] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 36, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-11", "2013-01-11", 36, 36] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 37, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-12", "2013-01-12", 37, 37] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 38, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-13", "2013-01-13", 38, 38] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 39, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-14", "2013-01-14", 39, 39] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 40, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-15", "2013-01-15", 40, 40] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 41, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-16", "2013-01-16", 41, 41] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 42, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-17", "2013-01-17", 42, 42] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 43, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-18", "2013-01-18", 43, 43] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 44, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-19", "2013-01-19", 44, 44] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 45, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-20", "2013-01-20", 45, 45] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 46, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-21", "2013-01-21", 46, 46] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 47, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-22", "2013-01-22", 47, 47] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 48, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-23", "2013-01-23", 48, 48] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 49, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-24", "2013-01-24", 49, 49] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 50, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-25", "2013-01-25", 50, 50] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 51, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-26", "2013-01-26", 51, 51] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 52, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-27", "2013-01-27", 52, 52] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 53, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-28", "2013-01-28", 53, 53] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 54, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-29", "2013-01-29", 54, 54] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 55, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-30", "2013-01-30", 55, 55] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 56, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-31", "2013-01-31", 56, 56] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 57, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-01", "2013-02-01", 57, 57] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 58, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-02", "2013-02-02", 58, 58] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 59, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-03", "2013-02-03", 59, 59] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 60, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-04", "2013-02-04", 60, 60] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 61, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-05", "2013-02-05", 61, 61] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 62, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-06", "2013-02-06", 62, 62] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 63, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-07", "2013-02-07", 63, 63] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 64, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-08", "2013-02-08", 64, 64] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 65, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-09", "2013-02-09", 65, 65] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 66, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-10", "2013-02-10", 66, 66] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 67, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-11", "2013-02-11", 67, 67] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 68, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-12", "2013-02-12", 68, 68] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 69, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-13", "2013-02-13", 69, 69] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 70, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-14", "2013-02-14", 70, 70] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 71, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-15", "2013-02-15", 71, 71] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 72, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-16", "2013-02-16", 72, 72] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 73, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-17", "2013-02-17", 73, 73] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 74, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-18", "2013-02-18", 74, 74] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 75, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-19", "2013-02-19", 75, 75] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 76, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-20", "2013-02-20", 76, 76] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 77, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-21", "2013-02-21", 77, 77] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 78, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-22", "2013-02-22", 78, 78] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 79, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-23", "2013-02-23", 79, 79] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 80, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-24", "2013-02-24", 80, 80] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 81, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-25", "2013-02-25", 81, 81] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 82, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-26", "2013-02-26", 82, 82] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 83, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-27", "2013-02-27", 83, 83] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 84, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-28", "2013-02-28", 84, 84] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 85, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-01", "2013-03-01", 85, 85] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 86, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-02", "2013-03-02", 86, 86] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 87, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-03", "2013-03-03", 87, 87] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 88, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-04", "2013-03-04", 88, 88] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 89, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-05", "2013-03-05", 89, 89] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 90, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-06", "2013-03-06", 90, 90] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 91, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-07", "2013-03-07", 91, 91] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 92, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-08", "2013-03-08", 92, 92] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 93, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-09", "2013-03-09", 93, 93] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 94, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-10", "2013-03-10", 94, 94] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 95, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-11", "2013-03-11", 95, 95] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 96, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-12", "2013-03-12", 96, 96] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 97, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-13", "2013-03-13", 97, 97] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 98, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-14", "2013-03-14", 98, 98] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 99, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-15", "2013-03-15", 99, 99] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 100, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-16", "2013-03-16", 100, 100] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 101, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-17", "2013-03-17", 101, 101] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 102, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-18", "2013-03-18", 102, 102] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 103, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-19", "2013-03-19", 103, 103] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 104, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-20", "2013-03-20", 104, 104] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 105, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-21", "2013-03-21", 105, 105] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 106, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-22", "2013-03-22", 106, 106] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 107, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-23", "2013-03-23", 107, 107] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 108, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-24", "2013-03-24", 108, 108] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 109, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-25", "2013-03-25", 109, 109] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 110, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-26", "2013-03-26", 110, 110] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 111, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-27", "2013-03-27", 111, 111] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 112, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-28", "2013-03-28", 112, 112] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 113, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-29", "2013-03-29", 113, 113] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 114, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-30", "2013-03-30", 114, 114] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 115, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-03-31", "2013-03-31", 115, 115] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 116, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-01", "2013-04-01", 116, 116] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 117, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-02", "2013-04-02", 117, 117] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 118, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-03", "2013-04-03", 118, 118] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 119, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-04", "2013-04-04", 119, 119] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 120, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-05", "2013-04-05", 120, 120] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 121, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-06", "2013-04-06", 121, 121] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 122, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-07", "2013-04-07", 122, 122] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 123, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-08", "2013-04-08", 123, 123] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 124, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-09", "2013-04-09", 124, 124] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 125, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-10", "2013-04-10", 125, 125] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 126, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-11", "2013-04-11", 126, 126] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 127, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-12", "2013-04-12", 127, 127] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 128, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-13", "2013-04-13", 128, 128] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 129, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-14", "2013-04-14", 129, 129] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 130, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-15", "2013-04-15", 130, 130] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 131, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-16", "2013-04-16", 131, 131] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 132, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-17", "2013-04-17", 132, 132] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 133, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-18", "2013-04-18", 133, 133] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 134, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-19", "2013-04-19", 134, 134] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 135, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-20", "2013-04-20", 135, 135] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 136, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-21", "2013-04-21", 136, 136] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 137, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-22", "2013-04-22", 137, 137] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 138, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-23", "2013-04-23", 138, 138] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 139, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-24", "2013-04-24", 139, 139] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 140, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-25", "2013-04-25", 140, 140] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 141, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-26", "2013-04-26", 141, 141] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 142, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-27", "2013-04-27", 142, 142] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 143, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-28", "2013-04-28", 143, 143] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 144, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-29", "2013-04-29", 144, 144] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 145, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-30", "2013-04-30", 145, 145] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 146, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-01", "2013-05-01", 146, 146] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 147, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-02", "2013-05-02", 147, 147] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 148, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-03", "2013-05-03", 148, 148] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 149, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-04", "2013-05-04", 149, 149] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 150, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-05", "2013-05-05", 150, 150] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 151, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-06", "2013-05-06", 151, 151] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 152, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-07", "2013-05-07", 152, 152] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 153, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-08", "2013-05-08", 153, 153] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 154, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-09", "2013-05-09", 154, 154] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 155, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-10", "2013-05-10", 155, 155] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 156, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-11", "2013-05-11", 156, 156] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 157, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-12", "2013-05-12", 157, 157] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 158, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-13", "2013-05-13", 158, 158] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 159, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-14", "2013-05-14", 159, 159] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 160, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-15", "2013-05-15", 160, 160] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 161, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-16", "2013-05-16", 161, 161] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 162, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-17", "2013-05-17", 162, 162] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 163, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-18", "2013-05-18", 163, 163] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 164, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-19", "2013-05-19", 164, 164] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 165, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-20", "2013-05-20", 165, 165] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 166, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-21", "2013-05-21", 166, 166] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 167, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-05-22", "2013-05-22", 167, 167] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 168, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-23", "2013-05-23", 168, 168] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 169, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-24", "2013-05-24", 169, 169] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 170, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-25", "2013-05-25", 170, 170] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 171, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-26", "2013-05-26", 171, 171] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 172, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-27", "2013-05-27", 172, 172] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 173, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-28", "2013-05-28", 173, 173] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 174, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-29", "2013-05-29", 174, 174] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 175, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-30", "2013-05-30", 175, 175] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 176, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-31", "2013-05-31", 176, 176] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 177, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-06-01", "2013-06-01", 177, 177] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 178, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-06-02", "2013-06-02", 178, 178] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 179, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-06-03", "2013-06-03", 179, 179] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 180, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-06-04", "2013-06-04", 180, 180] +["CDISCPILOT01", "EX", "CDISC011", "DEV0011", 181, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-06-05", "2013-06-05", 181, 181] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 1, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-03", "2013-09-03", 1, 1] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 2, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-04", "2013-09-04", 2, 2] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 3, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-05", "2013-09-05", 3, 3] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 4, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-06", "2013-09-06", 4, 4] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 5, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-07", "2013-09-07", 5, 5] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 6, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-08", "2013-09-08", 6, 6] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 7, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-09", "2013-09-09", 7, 7] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 8, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-10", "2013-09-10", 8, 8] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 9, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-11", "2013-09-11", 9, 9] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 10, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-12", "2013-09-12", 10, 10] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 11, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-13", "2013-09-13", 11, 11] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 12, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-14", "2013-09-14", 12, 12] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 13, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-15", "2013-09-15", 13, 13] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 14, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-16", "2013-09-16", 14, 14] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 15, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-17", "2013-09-17", 15, 15] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 16, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-18", "2013-09-18", 16, 16] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 17, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-19", "2013-09-19", 17, 17] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 18, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-20", "2013-09-20", 18, 18] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 19, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-21", "2013-09-21", 19, 19] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 20, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-22", "2013-09-22", 20, 20] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 21, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-23", "2013-09-23", 21, 21] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 22, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-24", "2013-09-24", 22, 22] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 23, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-25", "2013-09-25", 23, 23] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 24, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-26", "2013-09-26", 24, 24] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 25, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-27", "2013-09-27", 25, 25] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 26, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-28", "2013-09-28", 26, 26] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 27, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-29", "2013-09-29", 27, 27] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 28, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-09-30", "2013-09-30", 28, 28] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 29, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-01", "2013-10-01", 29, 29] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 30, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-02", "2013-10-02", 30, 30] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 31, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-03", "2013-10-03", 31, 31] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 32, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-04", "2013-10-04", 32, 32] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 33, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-05", "2013-10-05", 33, 33] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 34, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-06", "2013-10-06", 34, 34] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 35, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-07", "2013-10-07", 35, 35] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 36, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-08", "2013-10-08", 36, 36] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 37, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-09", "2013-10-09", 37, 37] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 38, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-10", "2013-10-10", 38, 38] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 39, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-11", "2013-10-11", 39, 39] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 40, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-12", "2013-10-12", 40, 40] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 41, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-13", "2013-10-13", 41, 41] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 42, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-14", "2013-10-14", 42, 42] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 43, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-15", "2013-10-15", 43, 43] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 44, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-16", "2013-10-16", 44, 44] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 45, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-17", "2013-10-17", 45, 45] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 46, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-18", "2013-10-18", 46, 46] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 47, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-19", "2013-10-19", 47, 47] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 48, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-20", "2013-10-20", 48, 48] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 49, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-21", "2013-10-21", 49, 49] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 50, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-22", "2013-10-22", 50, 50] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 51, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-23", "2013-10-23", 51, 51] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 52, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-24", "2013-10-24", 52, 52] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 53, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-25", "2013-10-25", 53, 53] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 54, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-26", "2013-10-26", 54, 54] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 55, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-27", "2013-10-27", 55, 55] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 56, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-28", "2013-10-28", 56, 56] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 57, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-29", "2013-10-29", 57, 57] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 58, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-30", "2013-10-30", 58, 58] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 59, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-10-31", "2013-10-31", 59, 59] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 60, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-01", "2013-11-01", 60, 60] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 61, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-02", "2013-11-02", 61, 61] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 62, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-03", "2013-11-03", 62, 62] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 63, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-04", "2013-11-04", 63, 63] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 64, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-05", "2013-11-05", 64, 64] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 65, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-06", "2013-11-06", 65, 65] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 66, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-07", "2013-11-07", 66, 66] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 67, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-08", "2013-11-08", 67, 67] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 68, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-09", "2013-11-09", 68, 68] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 69, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-10", "2013-11-10", 69, 69] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 70, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-11", "2013-11-11", 70, 70] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 71, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-12", "2013-11-12", 71, 71] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 72, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-13", "2013-11-13", 72, 72] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 73, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-14", "2013-11-14", 73, 73] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 74, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-15", "2013-11-15", 74, 74] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 75, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-16", "2013-11-16", 75, 75] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 76, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-17", "2013-11-17", 76, 76] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 77, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-18", "2013-11-18", 77, 77] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 78, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-19", "2013-11-19", 78, 78] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 79, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-20", "2013-11-20", 79, 79] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 80, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-21", "2013-11-21", 80, 80] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 81, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-22", "2013-11-22", 81, 81] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 82, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-23", "2013-11-23", 82, 82] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 83, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-24", "2013-11-24", 83, 83] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 84, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-25", "2013-11-25", 84, 84] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 85, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-26", "2013-11-26", 85, 85] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 86, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-27", "2013-11-27", 86, 86] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 87, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-28", "2013-11-28", 87, 87] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 88, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-29", "2013-11-29", 88, 88] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 89, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-11-30", "2013-11-30", 89, 89] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 90, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-01", "2013-12-01", 90, 90] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 91, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-02", "2013-12-02", 91, 91] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 92, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-03", "2013-12-03", 92, 92] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 93, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-04", "2013-12-04", 93, 93] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 94, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-05", "2013-12-05", 94, 94] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 95, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-06", "2013-12-06", 95, 95] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 96, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-07", "2013-12-07", 96, 96] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 97, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-08", "2013-12-08", 97, 97] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 98, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-09", "2013-12-09", 98, 98] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 99, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-10", "2013-12-10", 99, 99] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 100, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-11", "2013-12-11", 100, 100] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 101, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-12", "2013-12-12", 101, 101] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 102, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-13", "2013-12-13", 102, 102] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 103, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-14", "2013-12-14", 103, 103] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 104, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-15", "2013-12-15", 104, 104] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 105, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-16", "2013-12-16", 105, 105] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 106, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-17", "2013-12-17", 106, 106] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 107, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-18", "2013-12-18", 107, 107] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 108, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-19", "2013-12-19", 108, 108] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 109, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-20", "2013-12-20", 109, 109] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 110, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-21", "2013-12-21", 110, 110] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 111, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-22", "2013-12-22", 111, 111] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 112, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-23", "2013-12-23", 112, 112] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 113, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-24", "2013-12-24", 113, 113] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 114, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-25", "2013-12-25", 114, 114] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 115, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-26", "2013-12-26", 115, 115] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 116, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-27", "2013-12-27", 116, 116] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 117, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-28", "2013-12-28", 117, 117] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 118, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-29", "2013-12-29", 118, 118] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 119, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-30", "2013-12-30", 119, 119] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 120, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-12-31", "2013-12-31", 120, 120] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 121, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-01", "2014-01-01", 121, 121] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 122, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-02", "2014-01-02", 122, 122] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 123, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-03", "2014-01-03", 123, 123] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 124, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-04", "2014-01-04", 124, 124] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 125, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-05", "2014-01-05", 125, 125] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 126, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-06", "2014-01-06", 126, 126] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 127, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-07", "2014-01-07", 127, 127] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 128, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-08", "2014-01-08", 128, 128] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 129, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-09", "2014-01-09", 129, 129] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 130, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-10", "2014-01-10", 130, 130] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 131, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-11", "2014-01-11", 131, 131] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 132, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-12", "2014-01-12", 132, 132] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 133, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-13", "2014-01-13", 133, 133] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 134, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-14", "2014-01-14", 134, 134] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 135, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-15", "2014-01-15", 135, 135] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 136, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-16", "2014-01-16", 136, 136] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 137, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-17", "2014-01-17", 137, 137] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 138, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-18", "2014-01-18", 138, 138] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 139, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-19", "2014-01-19", 139, 139] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 140, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-20", "2014-01-20", 140, 140] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 141, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-21", "2014-01-21", 141, 141] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 142, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-22", "2014-01-22", 142, 142] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 143, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-23", "2014-01-23", 143, 143] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 144, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-24", "2014-01-24", 144, 144] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 145, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-25", "2014-01-25", 145, 145] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 146, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-26", "2014-01-26", 146, 146] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 147, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-27", "2014-01-27", 147, 147] +["CDISCPILOT01", "EX", "CDISC012", "DEV0012", 148, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2014-01-28", "2014-01-28", 148, 148] +["CDISCPILOT01", "EX", "CDISC013", "DEV0013", 1, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-07-22", "2013-07-22", 1, 1] +["CDISCPILOT01", "EX", "CDISC013", "DEV0013", 2, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-07-23", "2013-07-23", 2, 2] +["CDISCPILOT01", "EX", "CDISC013", "DEV0013", 3, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-07-24", "2013-07-24", 3, 3] +["CDISCPILOT01", "EX", "CDISC013", "DEV0013", 4, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-07-25", "2013-07-25", 4, 4] +["CDISCPILOT01", "EX", "CDISC013", "DEV0013", 5, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-07-26", "2013-07-26", 5, 5] +["CDISCPILOT01", "EX", "CDISC013", "DEV0013", 6, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-07-27", "2013-07-27", 6, 6] +["CDISCPILOT01", "EX", "CDISC013", "DEV0013", 7, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-07-28", "2013-07-28", 7, 7] +["CDISCPILOT01", "EX", "CDISC013", "DEV0013", 8, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-07-29", "2013-07-29", 8, 8] +["CDISCPILOT01", "EX", "CDISC013", "DEV0013", 9, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-07-30", "2013-07-30", 9, 9] +["CDISCPILOT01", "EX", "CDISC013", "DEV0013", 10, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-07-31", "2013-07-31", 10, 10] +["CDISCPILOT01", "EX", "CDISC013", "DEV0013", 11, "PLACEBO", 0, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-926", "TREATMENT", "2013-08-01", "2013-08-01", 11, 11] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 1, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-03", "2013-04-03", 1, 1] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 2, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-04", "2013-04-04", 2, 2] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 3, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-05", "2013-04-05", 3, 3] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 4, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-06", "2013-04-06", 4, 4] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 5, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-07", "2013-04-07", 5, 5] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 6, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-08", "2013-04-08", 6, 6] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 7, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-09", "2013-04-09", 7, 7] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 8, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-10", "2013-04-10", 8, 8] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 9, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-11", "2013-04-11", 9, 9] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 10, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-12", "2013-04-12", 10, 10] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 11, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-13", "2013-04-13", 11, 11] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 12, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-14", "2013-04-14", 12, 12] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 13, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-15", "2013-04-15", 13, 13] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 14, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-16", "2013-04-16", 14, 14] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 15, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-17", "2013-04-17", 15, 15] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 16, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-18", "2013-04-18", 16, 16] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 17, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-19", "2013-04-19", 17, 17] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 18, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-20", "2013-04-20", 18, 18] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 19, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-21", "2013-04-21", 19, 19] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 20, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-22", "2013-04-22", 20, 20] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 21, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-23", "2013-04-23", 21, 21] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 22, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-24", "2013-04-24", 22, 22] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 23, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-25", "2013-04-25", 23, 23] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 24, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-26", "2013-04-26", 24, 24] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 25, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-27", "2013-04-27", 25, 25] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 26, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-28", "2013-04-28", 26, 26] +["CDISCPILOT01", "EX", "CDISC014", "DEV0014", 27, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-04-29", "2013-04-29", 27, 27] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 1, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-03", "2013-04-03", 1, 1] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 2, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-04", "2013-04-04", 2, 2] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 3, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-05", "2013-04-05", 3, 3] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 4, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-06", "2013-04-06", 4, 4] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 5, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-07", "2013-04-07", 5, 5] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 6, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-08", "2013-04-08", 6, 6] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 7, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-09", "2013-04-09", 7, 7] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 8, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-10", "2013-04-10", 8, 8] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 9, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-11", "2013-04-11", 9, 9] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 10, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-12", "2013-04-12", 10, 10] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 11, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-13", "2013-04-13", 11, 11] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 12, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-14", "2013-04-14", 12, 12] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 13, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-15", "2013-04-15", 13, 13] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 14, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-16", "2013-04-16", 14, 14] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 15, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-17", "2013-04-17", 15, 15] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 16, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-18", "2013-04-18", 16, 16] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 17, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-19", "2013-04-19", 17, 17] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 18, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-20", "2013-04-20", 18, 18] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 19, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-21", "2013-04-21", 19, 19] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 20, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-22", "2013-04-22", 20, 20] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 21, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-23", "2013-04-23", 21, 21] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 22, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-24", "2013-04-24", 22, 22] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 23, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-25", "2013-04-25", 23, 23] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 24, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-26", "2013-04-26", 24, 24] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 25, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-27", "2013-04-27", 25, 25] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 26, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-28", "2013-04-28", 26, 26] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 27, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-29", "2013-04-29", 27, 27] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 28, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-04-30", "2013-04-30", 28, 28] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 29, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-01", "2013-05-01", 29, 29] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 30, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-02", "2013-05-02", 30, 30] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 31, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-03", "2013-05-03", 31, 31] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 32, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-04", "2013-05-04", 32, 32] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 33, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-05", "2013-05-05", 33, 33] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 34, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-06", "2013-05-06", 34, 34] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 35, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-07", "2013-05-07", 35, 35] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 36, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-08", "2013-05-08", 36, 36] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 37, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-09", "2013-05-09", 37, 37] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 38, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-10", "2013-05-10", 38, 38] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 39, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-11", "2013-05-11", 39, 39] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 40, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-12", "2013-05-12", 40, 40] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 41, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-13", "2013-05-13", 41, 41] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 42, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-14", "2013-05-14", 42, 42] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 43, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-15", "2013-05-15", 43, 43] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 44, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-16", "2013-05-16", 44, 44] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 45, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-17", "2013-05-17", 45, 45] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 46, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-18", "2013-05-18", 46, 46] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 47, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-19", "2013-05-19", 47, 47] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 48, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-20", "2013-05-20", 48, 48] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 49, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-21", "2013-05-21", 49, 49] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 50, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-22", "2013-05-22", 50, 50] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 51, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-23", "2013-05-23", 51, 51] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 52, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-24", "2013-05-24", 52, 52] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 53, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-25", "2013-05-25", 53, 53] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 54, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-26", "2013-05-26", 54, 54] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 55, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-27", "2013-05-27", 55, 55] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 56, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-28", "2013-05-28", 56, 56] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 57, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-29", "2013-05-29", 57, 57] +["CDISCPILOT01", "EX", "CDISC016", "DEV0015", 58, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-05-30", "2013-05-30", 58, 58] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 1, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-09-21", "2013-09-21", 1, 1] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 2, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-09-22", "2013-09-22", 2, 2] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 3, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-09-23", "2013-09-23", 3, 3] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 4, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-09-24", "2013-09-24", 4, 4] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 5, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-09-25", "2013-09-25", 5, 5] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 6, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-09-26", "2013-09-26", 6, 6] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 7, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-09-27", "2013-09-27", 7, 7] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 8, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-09-28", "2013-09-28", 8, 8] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 9, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-09-29", "2013-09-29", 9, 9] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 10, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-09-30", "2013-09-30", 10, 10] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 11, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-01", "2013-10-01", 11, 11] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 12, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-02", "2013-10-02", 12, 12] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 13, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-03", "2013-10-03", 13, 13] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 14, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-04", "2013-10-04", 14, 14] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 15, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-05", "2013-10-05", 15, 15] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 16, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-06", "2013-10-06", 16, 16] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 17, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-07", "2013-10-07", 17, 17] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 18, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-08", "2013-10-08", 18, 18] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 19, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-09", "2013-10-09", 19, 19] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 20, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-10", "2013-10-10", 20, 20] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 21, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-11", "2013-10-11", 21, 21] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 22, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-12", "2013-10-12", 22, 22] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 23, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-13", "2013-10-13", 23, 23] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 24, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-14", "2013-10-14", 24, 24] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 25, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-15", "2013-10-15", 25, 25] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 26, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-16", "2013-10-16", 26, 26] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 27, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-17", "2013-10-17", 27, 27] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 28, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-18", "2013-10-18", 28, 28] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 29, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-19", "2013-10-19", 29, 29] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 30, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-20", "2013-10-20", 30, 30] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 31, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-21", "2013-10-21", 31, 31] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 32, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-22", "2013-10-22", 32, 32] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 33, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-23", "2013-10-23", 33, 33] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 34, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-24", "2013-10-24", 34, 34] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 35, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-25", "2013-10-25", 35, 35] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 36, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-26", "2013-10-26", 36, 36] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 37, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-27", "2013-10-27", 37, 37] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 38, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-28", "2013-10-28", 38, 38] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 39, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-29", "2013-10-29", 39, 39] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 40, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-30", "2013-10-30", 40, 40] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 41, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-10-31", "2013-10-31", 41, 41] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 42, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-01", "2013-11-01", 42, 42] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 43, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-02", "2013-11-02", 43, 43] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 44, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-03", "2013-11-03", 44, 44] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 45, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-04", "2013-11-04", 45, 45] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 46, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-05", "2013-11-05", 46, 46] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 47, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-06", "2013-11-06", 47, 47] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 48, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-07", "2013-11-07", 48, 48] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 49, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-08", "2013-11-08", 49, 49] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 50, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-09", "2013-11-09", 50, 50] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 51, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-10", "2013-11-10", 51, 51] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 52, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-11", "2013-11-11", 52, 52] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 53, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-12", "2013-11-12", 53, 53] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 54, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-13", "2013-11-13", 54, 54] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 55, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-14", "2013-11-14", 55, 55] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 56, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-15", "2013-11-15", 56, 56] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 57, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-16", "2013-11-16", 57, 57] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 58, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-17", "2013-11-17", 58, 58] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 59, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-18", "2013-11-18", 59, 59] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 60, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-19", "2013-11-19", 60, 60] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 61, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-20", "2013-11-20", 61, 61] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 62, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-21", "2013-11-21", 62, 62] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 63, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-22", "2013-11-22", 63, 63] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 64, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-23", "2013-11-23", 64, 64] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 65, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-24", "2013-11-24", 65, 65] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 66, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-25", "2013-11-25", 66, 66] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 67, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-26", "2013-11-26", 67, 67] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 68, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-27", "2013-11-27", 68, 68] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 69, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-28", "2013-11-28", 69, 69] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 70, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-29", "2013-11-29", 70, 70] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 71, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-11-30", "2013-11-30", 71, 71] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 72, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-01", "2013-12-01", 72, 72] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 73, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-02", "2013-12-02", 73, 73] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 74, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-03", "2013-12-03", 74, 74] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 75, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-04", "2013-12-04", 75, 75] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 76, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-05", "2013-12-05", 76, 76] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 77, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-06", "2013-12-06", 77, 77] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 78, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-07", "2013-12-07", 78, 78] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 79, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-08", "2013-12-08", 79, 79] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 80, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-09", "2013-12-09", 80, 80] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 81, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-10", "2013-12-10", 81, 81] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 82, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-11", "2013-12-11", 82, 82] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 83, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-12", "2013-12-12", 83, 83] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 84, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-13", "2013-12-13", 84, 84] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 85, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-14", "2013-12-14", 85, 85] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 86, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-15", "2013-12-15", 86, 86] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 87, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-16", "2013-12-16", 87, 87] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 88, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-17", "2013-12-17", 88, 88] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 89, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-18", "2013-12-18", 89, 89] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 90, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-19", "2013-12-19", 90, 90] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 91, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-20", "2013-12-20", 91, 91] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 92, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-21", "2013-12-21", 92, 92] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 93, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-22", "2013-12-22", 93, 93] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 94, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-23", "2013-12-23", 94, 94] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 95, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-24", "2013-12-24", 95, 95] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 96, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-25", "2013-12-25", 96, 96] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 97, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-26", "2013-12-26", 97, 97] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 98, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-27", "2013-12-27", 98, 98] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 99, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-28", "2013-12-28", 99, 99] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 100, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-29", "2013-12-29", 100, 100] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 101, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-30", "2013-12-30", 101, 101] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 102, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2013-12-31", "2013-12-31", 102, 102] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 103, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-01", "2014-01-01", 103, 103] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 104, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-02", "2014-01-02", 104, 104] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 105, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-03", "2014-01-03", 105, 105] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 106, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-04", "2014-01-04", 106, 106] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 107, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-05", "2014-01-05", 107, 107] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 108, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-06", "2014-01-06", 108, 108] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 109, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-07", "2014-01-07", 109, 109] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 110, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-08", "2014-01-08", 110, 110] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 111, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-09", "2014-01-09", 111, 111] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 112, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-10", "2014-01-10", 112, 112] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 113, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-11", "2014-01-11", 113, 113] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 114, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-12", "2014-01-12", 114, 114] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 115, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-13", "2014-01-13", 115, 115] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 116, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-14", "2014-01-14", 116, 116] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 117, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-15", "2014-01-15", 117, 117] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 118, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-16", "2014-01-16", 118, 118] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 119, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-17", "2014-01-17", 119, 119] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 120, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-18", "2014-01-18", 120, 120] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 121, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-19", "2014-01-19", 121, 121] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 122, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-20", "2014-01-20", 122, 122] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 123, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-21", "2014-01-21", 123, 123] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 124, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-22", "2014-01-22", 124, 124] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 125, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-23", "2014-01-23", 125, 125] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 126, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-24", "2014-01-24", 126, 126] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 127, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-25", "2014-01-25", 127, 127] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 128, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-26", "2014-01-26", 128, 128] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 129, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-27", "2014-01-27", 129, 129] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 130, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-28", "2014-01-28", 130, 130] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 131, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-29", "2014-01-29", 131, 131] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 132, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-30", "2014-01-30", 132, 132] +["CDISCPILOT01", "EX", "CDISC017", "DEV0016", 133, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2014-01-31", "2014-01-31", 133, 133] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 1, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-17", "2012-12-17", 1, 1] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 2, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-18", "2012-12-18", 2, 2] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 3, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-19", "2012-12-19", 3, 3] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 4, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-20", "2012-12-20", 4, 4] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 5, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-21", "2012-12-21", 5, 5] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 6, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-22", "2012-12-22", 6, 6] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 7, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-23", "2012-12-23", 7, 7] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 8, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-24", "2012-12-24", 8, 8] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 9, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-25", "2012-12-25", 9, 9] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 10, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-26", "2012-12-26", 10, 10] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 11, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-27", "2012-12-27", 11, 11] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 12, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-28", "2012-12-28", 12, 12] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 13, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-29", "2012-12-29", 13, 13] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 14, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-30", "2012-12-30", 14, 14] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 15, "ZANOMALINE", 54, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-848", "TREATMENT", "2012-12-31", "2012-12-31", 15, 15] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 16, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-01", "2013-01-01", 16, 16] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 17, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-02", "2013-01-02", 17, 17] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 18, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-03", "2013-01-03", 18, 18] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 19, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-04", "2013-01-04", 19, 19] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 20, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-05", "2013-01-05", 20, 20] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 21, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-06", "2013-01-06", 21, 21] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 22, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-07", "2013-01-07", 22, 22] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 23, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-08", "2013-01-08", 23, 23] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 24, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-09", "2013-01-09", 24, 24] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 25, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-10", "2013-01-10", 25, 25] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 26, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-11", "2013-01-11", 26, 26] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 27, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-12", "2013-01-12", 27, 27] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 28, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-13", "2013-01-13", 28, 28] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 29, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-14", "2013-01-14", 29, 29] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 30, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-15", "2013-01-15", 30, 30] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 31, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-16", "2013-01-16", 31, 31] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 32, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-17", "2013-01-17", 32, 32] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 33, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-18", "2013-01-18", 33, 33] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 34, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-19", "2013-01-19", 34, 34] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 35, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-20", "2013-01-20", 35, 35] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 36, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-21", "2013-01-21", 36, 36] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 37, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-22", "2013-01-22", 37, 37] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 38, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-23", "2013-01-23", 38, 38] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 39, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-24", "2013-01-24", 39, 39] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 40, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-25", "2013-01-25", 40, 40] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 41, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-26", "2013-01-26", 41, 41] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 42, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-27", "2013-01-27", 42, 42] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 43, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-28", "2013-01-28", 43, 43] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 44, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-29", "2013-01-29", 44, 44] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 45, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-30", "2013-01-30", 45, 45] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 46, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-01-31", "2013-01-31", 46, 46] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 47, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-01", "2013-02-01", 47, 47] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 48, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-02", "2013-02-02", 48, 48] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 49, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-03", "2013-02-03", 49, 49] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 50, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-04", "2013-02-04", 50, 50] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 51, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-05", "2013-02-05", 51, 51] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 52, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-06", "2013-02-06", 52, 52] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 53, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-07", "2013-02-07", 53, 53] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 54, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-08", "2013-02-08", 54, 54] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 55, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-09", "2013-02-09", 55, 55] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 56, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-10", "2013-02-10", 56, 56] +["CDISCPILOT01", "EX", "CDISC018", "DEV0017", 57, "ZANOMALINE", 81, "mg", "INJECTION", "QD", "SUBCUTANEOUS", "SDS580-983", "TREATMENT", "2013-02-11", "2013-02-11", 57, 57] diff --git a/tests/resources/CoreIssue1442/test_datasets.xlsx b/tests/resources/CoreIssue1442/test_datasets.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..35f8701b0207c2343fcaca40e6abf661bfdeb511 GIT binary patch literal 22256 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 literal 0 HcmV?d00001