Dispatcher1 Dispatcher1 --> FR1 Dispatcher1 --> D_CR1 "> Dispatcher1 Dispatcher1 --> FR1 Dispatcher1 --> D_CR1 "> Dispatcher1 Dispatcher1 --> FR1 Dispatcher1 --> D_CR1 ">
%% Mermaid Diagram: Comprehensive Murder Investigation Journey from Crime Report to Appeals

graph TB

    %% Define Classes for Different Node Types
    classDef process fill:#f0f8ff,stroke:#333,stroke-width:1px;
    classDef decision fill:#ffebcd,stroke:#333,stroke-width:1px;
    classDef data fill:#ffffe0,stroke:#333,stroke-width:1px;
    classDef subdeliverable fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5;
    classDef consideration fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5;
    classDef messaging fill:#ffe4e1,stroke:#333,stroke-width:1px;
    classDef audience fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5;

    %% Phase 1: Crime Reported Phase
    subgraph "Phase 1: Crime Reported Phase"
        CR1[Crime Reported]:::process
        Dispatcher1[Dispatcher Receives Call]:::process
        FR1[First Responders Dispatched]:::process
        D_CR1[Deliverable: Incident Report]:::data

        CR1 --> Dispatcher1
        Dispatcher1 --> FR1
        Dispatcher1 --> D_CR1

        %% Sub-deliverables for Incident Report
        subgraph "Incident Report Details"
            IR1A[Detailed Account of the Reported Crime]:::subdeliverable
            IR1B[Caller Information]:::subdeliverable
            IR1C[Dispatch Log]:::subdeliverable
            IR1D[Initial Threat Assessment]:::subdeliverable

            Dispatcher1 --> IR1A
            Dispatcher1 --> IR1B
            Dispatcher1 --> IR1C
            Dispatcher1 --> IR1D
        end
    end

    %% Phase 2: First Response Phase
    subgraph "Phase 2: First Response Phase"
        FR1A[First Responder Assessment Report]:::data
        EMS1[Assess Need for Emergency Medical Services]:::decision
        EMS_Y1{EMS Required?}:::decision
        EMS_Dispatch1[Dispatch EMS]:::process
        SecureScene1[Proceed to Secure Scene]:::process
        InitialAssessment1[Initial Assessment]:::process
        M_FR1[Messaging: Update Dispatch]:::messaging
        A_FR1[Audience: Internal Communication]:::audience

        FR1 --> EMS1
        EMS1 --> EMS_Y1
        EMS_Y1 -->|Yes| EMS_Dispatch1
        EMS_Y1 -->|No| SecureScene1
        FR1 --> InitialAssessment1
        FR1 --> M_FR1
        M_FR1 --> A_FR1

        %% Deliverables for First Responder Assessment Report
        subgraph "First Responder Assessment Report Details"
            FRR1A[Scene Safety Evaluation]:::subdeliverable
            FRR1B[Victim Status Reports]:::subdeliverable
            FRR1C[Resource Requests]:::subdeliverable
            FRR1D[Communication Records]:::subdeliverable
            FRR1E[Evidence Preservation Actions]:::subdeliverable

            InitialAssessment1 --> FRR1A
            InitialAssessment1 --> FRR1B
            InitialAssessment1 --> FRR1C
            InitialAssessment1 --> FRR1D
            InitialAssessment1 --> FRR1E
            FRR1A --> FR1A
            FRR1B --> FR1A
            FRR1C --> FR1A
            FRR1D --> FR1A
            FRR1E --> FR1A
        end
    end

    %% Phase 3: Crime Scene Management Phase
    subgraph "Phase 3: Crime Scene Management Phase"
        SecureScene1 --> CordonOff1[Cordon Off Area]:::process
        CordonOff1 --> D_Cordon1{Determine Perimeter Size}:::decision
        SecureScene1 --> CrimeSceneLog1[Establish Crime Scene Log]:::process
        SecureScene1 --> MediaManagement1[Media Management]:::process
        MediaManagement1 --> C_CM1[Consideration: Prevent Media Interference]:::consideration
        SecureScene1 --> D_CSM1[Deliverable: Secured Crime Scene]:::data
        MediaManagement1 --> C_CM1
        M_CSM1[Messaging: Brief Internal Teams]:::messaging
        A_CSM1[Audience: Law Enforcement Agencies]:::audience
        M_CSM1 --> A_CSM1

        %% Deliverables for Secured Crime Scene
        subgraph "Secured Crime Scene Details"
            SSC1A[Perimeter Establishment]:::subdeliverable
            SSC1B[Access Control Log]:::subdeliverable
            SSC1C[Scene Preservation Protocols]:::subdeliverable
            SSC1D[Media Handling Guidelines]:::subdeliverable
            SSC1E[Interagency Coordination Documentation]:::subdeliverable

            CordonOff1 --> SSC1A
            CordonOff1 --> SSC1B
            CordonOff1 --> SSC1C
            CordonOff1 --> SSC1D
            CordonOff1 --> SSC1E
            SSC1A --> D_CSM1
            SSC1B --> D_CSM1
            SSC1C --> D_CSM1
            SSC1D --> D_CSM1
            SSC1E --> D_CSM1
        end
    end

    %% Phase 4: Crime Scene Investigation Phase
    subgraph "Phase 4: Crime Scene Investigation Phase"
        Investigator4((Investigator)):::process
        CordonOff1 --> Investigator4
        Investigator4 --> D_Evidence4{Prioritize Evidence Collection}:::decision
        D_Evidence4 --> EvidenceCollection4[Evidence Collection]:::process
        Investigator4 --> WitnessID4[Witness Identification at Scene]:::process
        EvidenceCollection4 --> Photos4[Photographs]:::data
        EvidenceCollection4 --> Sketches4[Sketches]:::data
        EvidenceCollection4 --> PhysicalEvidence4[Collect Physical Evidence]:::process
        PhysicalEvidence4 --> DNA4[DNA Samples]:::data
        PhysicalEvidence4 --> Fingerprints4[Fingerprint Lifting]:::data
        PhysicalEvidence4 --> Ballistics4[Ballistics Evidence]:::data
        PhysicalEvidence4 --> TraceEvidence4[Trace Evidence Collection]:::data
        EvidenceCollection4 --> D_CSI4[Deliverable: Collected Evidence Package]:::data
        WitnessID4 --> D_Witnesses4[Deliverable: Witness List]:::data
        EvidenceCollection4 --> C_CSI4[Consideration: Evidence Preservation]:::consideration
        EvidenceCollection4 --> C_CSI4
        M_CSI4[Messaging: Coordinate with Forensics Lab]:::messaging
        A_CSI4[Audience: Forensics Lab]:::audience
        M_CSI4 --> A_CSI4

        %% Deliverables for Crime Scene Investigation
        subgraph "Collected Evidence Package Details"
            CEP4A[Physical Evidence Descriptions]:::subdeliverable
            CEP4B[Photographic Documentation]:::subdeliverable
            CEP4C[Sketches and Diagrams]:::subdeliverable
            CEP4D[Biological Samples]:::subdeliverable
            CEP4E[Fingerprint Records]:::subdeliverable
            CEP4F[Trace Evidence Logs]:::subdeliverable

            EvidenceCollection4 --> CEP4A
            EvidenceCollection4 --> CEP4B
            EvidenceCollection4 --> CEP4C
            EvidenceCollection4 --> CEP4D
            EvidenceCollection4 --> CEP4E
            EvidenceCollection4 --> CEP4F
            CEP4A --> D_CSI4
            CEP4B --> D_CSI4
            CEP4C --> D_CSI4
            CEP4D --> D_CSI4
            CEP4E --> D_CSI4
            CEP4F --> D_CSI4
        end

        subgraph "Witness List Details"
            WL4A[Contact Information]:::subdeliverable
            WL4B[Initial Statements]:::subdeliverable
            WL4C[Witness Observation Details]:::subdeliverable

            WitnessID4 --> WL4A
            WitnessID4 --> WL4B
            WitnessID4 --> WL4C
            WL4A --> D_Witnesses4
            WL4B --> D_Witnesses4
            WL4C --> D_Witnesses4
        end
    end

    %% Phase 5: Initial Investigation Phase
    subgraph "Phase 5: Initial Investigation Phase"
        Investigator4 --> CanvasArea5[Canvas Area]:::process
        Investigator4 --> WitnessStatements5[Collect Witness Statements]:::process
        Investigator4 --> CCTV5[Collect CCTV Footage]:::process
        Investigator4 --> PotentialSuspects5[Identify Potential Suspects]:::process
        WitnessStatements5 --> D_II5[Deliverable: Preliminary Investigation Report]:::data
        CCTV5 --> D_II5
        PotentialSuspects5 --> D_II5
        WitnessStatements5 --> C_II5[Consideration: Witness Reliability]:::consideration
        M_II5[Messaging: Update Command Center]:::messaging
        A_II5[Audience: Investigation Team]:::audience
        M_II5 --> A_II5
        Investigator4 --> M_II5

        %% Deliverables for Initial Investigation
        subgraph "Preliminary Investigation Report Details"
            PIR5A[Detailed Witness Statements]:::subdeliverable
            PIR5B[Surveillance Footage Summary]:::subdeliverable
            PIR5C[Potential Suspect Profiles]:::subdeliverable
            PIR5D[Initial Findings and Recommendations]:::subdeliverable

            WitnessStatements5 --> PIR5A
            CCTV5 --> PIR5B
            PotentialSuspects5 --> PIR5C
            PIR5A --> D_II5
            PIR5B --> D_II5
            PIR5C --> D_II5
            PIR5D --> D_II5
        end
    end

    %% Phase 6: Notification Phase
    subgraph "Phase 6: Notification Phase"
        Investigator4 --> NextOfKin6[Next of Kin Notification]:::process
        Investigator4 --> MediaNotification6[Media Notification]:::process
        NextOfKin6 --> C_NP6[Consideration: Sensitivity to Family]:::consideration
        NextOfKin6 --> D_NP6[Deliverable: Official Notifications Sent]:::data
        MediaNotification6 --> D_NP6
        M_NP6[Messaging: Prepare Public Statement]:::messaging
        A_NP6[Audience: Public, Media]:::audience
        M_NP6 --> A_NP6

        %% Deliverables for Notification
        subgraph "Official Notifications Sent Details"
            ONS6A[Next of Kin Notifications]:::subdeliverable
            ONS6B[Support Services Offered]:::subdeliverable
            ONS6C[Family Liaison Assignments]:::subdeliverable
            ONS6D[Media Notification Plan]:::subdeliverable
            ONS6E[Press Release Drafts]:::subdeliverable

            NextOfKin6 --> ONS6A
            NextOfKin6 --> ONS6B
            NextOfKin6 --> ONS6C
            MediaNotification6 --> ONS6D
            MediaNotification6 --> ONS6E
            ONS6A --> D_NP6
            ONS6B --> D_NP6
            ONS6C --> D_NP6
            ONS6D --> D_NP6
            ONS6E --> D_NP6
        end
    end

    %% Phase 7: Evidence Analysis Phase
    subgraph "Phase 7: Evidence Analysis Phase"
        D_CSI4 --> D_EvidenceSent7[Deliverable: Evidence Sent to Lab]:::data
        ForensicLab7[Forensic Laboratory]:::process
        D_EvidenceSent7 --> ForensicLab7
        ForensicLab7 --> DNAAnalysis7[DNA Analysis]:::process
        ForensicLab7 --> FingerprintAnalysis7[Fingerprint Analysis]:::process
        ForensicLab7 --> BallisticsMatching7[Ballistics Matching]:::process
        ForensicLab7 --> Toxicology7[Toxicology Reports]:::process
        ForensicLab7 --> DigitalEvidenceAnalysis7[Digital Evidence Analysis]:::process
        ForensicLab7 --> C_EA7[Consideration: Backlog at Lab]:::consideration
        ForensicLab7 --> M_EA7[Messaging: Expedite High-Priority Evidence]:::messaging
        A_EA7[Audience: Forensics Lab]:::audience
        M_EA7 --> A_EA7

        %% Deliverables for Evidence Sent to Lab
        subgraph "Evidence Sent to Lab Details"
            ESL7A[Chain of Custody Forms]:::subdeliverable
            ESL7B[Evidence Submission Forms]:::subdeliverable

            D_EvidenceSent7 --> ESL7A
            D_EvidenceSent7 --> ESL7B
        end

        %% Deliverables for Forensic Analysis Reports
        subgraph "Forensic Analysis Reports Details"
            FAR7A[DNA Analysis Results]:::subdeliverable
            FAR7B[Fingerprint Comparison Reports]:::subdeliverable
            FAR7C[Ballistics Examination Findings]:::subdeliverable
            FAR7D[Toxicology Reports]:::subdeliverable
            FAR7E[Digital Forensic Reports]:::subdeliverable
            FAR7F[Expert Witness Statements]:::subdeliverable

            DNAAnalysis7 --> FAR7A
            FingerprintAnalysis7 --> FAR7B
            BallisticsMatching7 --> FAR7C
            Toxicology7 --> FAR7D
            DigitalEvidenceAnalysis7 --> FAR7E
            ForensicLab7 --> FAR7F
            FAR7A --> D_EA7
            FAR7B --> D_EA7
            FAR7C --> D_EA7
            FAR7D --> D_EA7
            FAR7E --> D_EA7
            FAR7F --> D_EA7
        end
    end

    %% Phase 8: Investigative Strategy Development Phase
    subgraph "Phase 8: Investigative Strategy Development Phase"
        Investigator4 --> Hypotheses8[Formulate Hypotheses]:::process
        Hypotheses8 --> D_ISD8{Select Hypotheses to Pursue}:::decision
        D_ISD8 --> TaskAssignment8[Assign Tasks to Team Members]:::process
        D_ISD8 --> SearchWarrants8[Obtain Search Warrants]:::process
        D_ISD8 --> UndercoverOps8[Plan Undercover Operations]:::process
        D_ISD8 --> SurveillanceOps8[Plan Surveillance Operations]:::process
        D_ISD8 --> D_ISD_Deliverable8[Deliverable: Investigative Plan]:::data
        TaskAssignment8 --> D_ISD_Deliverable8
        SearchWarrants8 --> D_ISD_Deliverable8
        UndercoverOps8 --> D_ISD_Deliverable8
        SurveillanceOps8 --> D_ISD_Deliverable8
        Hypotheses8 --> C_ISD8[Consideration: Resource Allocation]:::consideration
        Investigator4 --> M_ISD8[Messaging: Brief Investigation Team]:::messaging
        M_ISD8 --> A_ISD8[Audience: Investigation Team]:::audience

        %% Deliverables for Investigative Plan
        subgraph "Investigative Plan Details"
            IP8A[Investigative Hypotheses Document]:::subdeliverable
            IP8B[Resource Allocation Plan]:::subdeliverable
            IP8C[Operational Action Plans]:::subdeliverable
            IP8D[Risk Management Assessments]:::subdeliverable

            TaskAssignment8 --> IP8A
            SearchWarrants8 --> IP8A
            UndercoverOps8 --> IP8A
            SurveillanceOps8 --> IP8A
            IP8A --> D_ISD_Deliverable8
            IP8B --> D_ISD_Deliverable8
            IP8C --> D_ISD_Deliverable8
            IP8D --> D_ISD_Deliverable8
        end
    end

    %% Phase 9: Suspect Identification and Apprehension Phase
    subgraph "Phase 9: Suspect Identification and Apprehension Phase"
        PotentialSuspects5 --> Surveillance9[Surveillance]:::process
        Surveillance9 --> D_SI9{Sufficient Evidence to Proceed?}:::decision
        D_SI9 -->|Yes| Interrogations9[Conduct Interrogations]:::process
        D_SI9 -->|No| ContinueSurveillance9[Continue Surveillance]:::process
        Interrogations9 --> Arrests9[Execute Arrests]:::process
        Arrests9 --> D_SIA9[Deliverable: Arrest Report]:::data
        Surveillance9 --> C_SIA9[Consideration: Risk Assessment]:::consideration
        Surveillance9 --> C_SIA9
        M_SIA9[Messaging: Notify Legal Team]:::messaging
        A_SIA9[Audience: Legal Team]:::audience
        M_SIA9 --> A_SIA9

        %% Deliverables for Arrest Report
        subgraph "Arrest Report Details"
            AR9A[Details of Apprehension]:::subdeliverable
            AR9B[Evidence Collected During Arrest]:::subdeliverable

            Arrests9 --> AR9A
            Arrests9 --> AR9B
            AR9A --> D_SIA9
            AR9B --> D_SIA9
        end
    end

    %% Phase 10: Case File Preparation Phase
    subgraph "Phase 10: Case File Preparation Phase"
        Investigator4 --> CaseFile10[Compile Case File]:::process
        CaseFile10 --> OrganizeEvidence10[Organize Evidence]:::process
        CaseFile10 --> CompileStatements10[Compile Witness Statements]:::process
        CaseFile10 --> PrepareReports10[Prepare Reports]:::process
        PrepareReports10 --> D_CFP10[Deliverable: Complete Case File]:::data
        OrganizeEvidence10 --> C_CFP10[Consideration: Admissibility of Evidence]:::consideration
        CompileStatements10 --> C_CFP10
        M_CFP10[Messaging: Submit Case File to Prosecutor]:::messaging
        A_CFP10[Audience: Prosecutor]:::audience
        M_CFP10 --> A_CFP10

        %% Deliverables for Complete Case File
        subgraph "Complete Case File Details"
            CCF10A[Evidence Index]:::subdeliverable
            CCF10B[Witness Statements Compilation]:::subdeliverable
            CCF10C[Investigation Reports]:::subdeliverable
            CCF10D[Forensic Analysis Reports]:::subdeliverable
            CCF10E[Legal Documentation]:::subdeliverable
            CCF10F[Chain of Custody Records]:::subdeliverable
            CCF10G[Case Summary and Theory]:::subdeliverable
            CCF10H[Exhibits for Court]:::subdeliverable
            CCF10I[Disclosure and Discovery Materials]:::subdeliverable

            OrganizeEvidence10 --> CCF10A
            CompileStatements10 --> CCF10B
            PrepareReports10 --> CCF10C
            PrepareReports10 --> CCF10D
            PrepareReports10 --> CCF10E
            PrepareReports10 --> CCF10F
            PrepareReports10 --> CCF10G
            PrepareReports10 --> CCF10H
            PrepareReports10 --> CCF10I
            CCF10A --> D_CFP10
            CCF10B --> D_CFP10
            CCF10C --> D_CFP10
            CCF10D --> D_CFP10
            CCF10E --> D_CFP10
            CCF10F --> D_CFP10
            CCF10G --> D_CFP10
            CCF10H --> D_CFP10
            CCF10I --> D_CFP10
        end
    end

    %% Phase 11: Legal Consultation Phase
    subgraph "Phase 11: Legal Consultation Phase"
        Investigator4 --> Prosecutor11[Meet with Prosecutor]:::process
        Prosecutor11 --> D_LC11{Charges to File}:::decision
        D_LC11 --> Charges11[Prepare Charges]:::process
        D_LC11 --> AdditionalEvidence11{Request Additional Evidence?}:::decision
        AdditionalEvidence11 -->|Yes| Investigator4
        AdditionalEvidence11 -->|No| Charges11
        Charges11 --> D_LC_Deliverable11[Deliverable: Legal Strategy]:::data
        Prosecutor11 --> C_LC11[Consideration: Legal Compliance]:::consideration
        Prosecutor11 --> M_LC11[Messaging: Coordinate with Investigation Team]:::messaging
        M_LC11 --> A_LC11[Audience: Investigation Team]:::audience
        M_LC11 --> A_LC11
        Charges11 --> D_LC_Deliverable11
        AdditionalEvidence11 --> D_LC_Deliverable11

        %% Deliverables for Legal Strategy
        subgraph "Legal Strategy Details"
            LS11A[Charge Recommendation Report]:::subdeliverable
            LS11B[Legal Strategy Outline]:::subdeliverable
            LS11C[Additional Evidence Requests]:::subdeliverable
            LS11D[Witness List and Profiles]:::subdeliverable

            Charges11 --> LS11A
            Charges11 --> LS11B
            Charges11 --> LS11C
            Charges11 --> LS11D
            LS11A --> D_LC_Deliverable11
            LS11B --> D_LC_Deliverable11
            LS11C --> D_LC_Deliverable11
            LS11D --> D_LC_Deliverable11
        end
    end

    %% Phase 12: Pre-Trial Procedures Phase
    subgraph "Phase 12: Pre-Trial Procedures Phase"
        Charges11 --> GrandJury12[Present to Grand Jury]:::process
        GrandJury12 --> D_PTP12{Indictment?}:::decision
        D_PTP12 -->|Yes| Indictment12[Indictment Filed]:::process
        D_PTP12 -->|No| CaseReview12[Review Case]:::process
        Indictment12 --> BailHearings12[Bail Hearings]:::process
        Indictment12 --> Discovery12[Discovery Phase]:::process
        Discovery12 --> Motions12[Motions -e.g., Suppress Evidence]:::process
        Indictment12 --> D_PTP_Deliverable12[Deliverable: Indictment Document]:::data
        GrandJury12 --> C_PTP12[Consideration: Pre-Trial Publicity]:::consideration
        GrandJury12 --> C_PTP12
        M_PTP12[Messaging: Prepare for Trial]:::messaging
        A_PTP12[Audience: Legal Team, Investigation Team]:::audience
        M_PTP12 --> A_PTP12

        %% Deliverables for Indictment Document
        subgraph "Indictment Document Details"
            ID12A[Formal Charges Filed]:::subdeliverable
            ID12B[Supporting Affidavits]:::subdeliverable

            Indictment12 --> ID12A
            Indictment12 --> ID12B
            ID12A --> D_PTP_Deliverable12
            ID12B --> D_PTP_Deliverable12
        end
    end

    %% Phase 13: Trial Preparation Phase
    subgraph "Phase 13: Trial Preparation Phase"
        Prosecutor11 --> WitnessPrep13[Prepare Witnesses]:::process
        Prosecutor11 --> MockTrials13[Conduct Mock Trials]:::process
        Prosecutor11 --> TrialStrategy13[Develop Trial Strategy]:::process
        Prosecutor11 --> JurySelection13[Jury Selection Process]:::process
        TrialStrategy13 --> D_TP13[Deliverable: Trial Plan]:::data
        JurySelection13 --> C_TP13[Consideration: Jury Bias]:::consideration
        M_TP13[Messaging: Coordinate with Witnesses]:::messaging
        A_TP13[Audience: Witnesses]:::audience
        M_TP13 --> A_TP13

        %% Deliverables for Trial Plan
        subgraph "Trial Plan Details"
            TP13A[Opening Statements Scripts]:::subdeliverable
            TP13B[Direct Examination Questions]:::subdeliverable
            TP13C[Cross-Examination Strategies]:::subdeliverable
            TP13D[Witness Preparation Files]:::subdeliverable
            TP13E[Jury Selection Materials]:::subdeliverable
            TP13F[Exhibit Lists and Evidence Binders]:::subdeliverable

            TrialStrategy13 --> TP13A
            TrialStrategy13 --> TP13B
            TrialStrategy13 --> TP13C
            WitnessPrep13 --> TP13D
            JurySelection13 --> TP13E
            TrialStrategy13 --> TP13F
            TP13A --> D_TP13
            TP13B --> D_TP13
            TP13C --> D_TP13
            TP13D --> D_TP13
            TP13E --> D_TP13
            TP13F --> D_TP13
        end
    end

    %% Phase 14: Trial Proceedings Phase
    subgraph "Phase 14: Trial Proceedings Phase"
        Court14((Trial Court)):::process
        Prosecutor11 --> OpeningStatements14[Prepare Opening Statements]:::process
        OpeningStatements14 --> Court14
        Court14 --> ProsecutionCase14[Prosecution Presents Case]:::process
        ProsecutionCase14 --> EvidencePresentation14[Present Evidence]:::process
        EvidencePresentation14 --> WitnessTestimonies14[Witness Testimonies]:::process
        WitnessTestimonies14 --> CrossExaminations14[Cross-Examinations]:::process
        Court14 --> DefenseCase14[Defense Presents Case]:::process
        DefenseCase14 --> DefenseEvidence14[Present Defense Evidence]:::process
        DefenseEvidence14 --> DefenseWitnesses14[Defense Witnesses]:::process
        DefenseWitnesses14 --> DefenseCrossExams14[Cross-Examinations]:::process
        Court14 --> ClosingArguments14[Closing Arguments]:::process
        ClosingArguments14 --> JuryDeliberation14[Jury Deliberation]:::process
        JuryDeliberation14 --> VerdictAnnouncement14[Verdict Announcement]:::process
        VerdictAnnouncement14 --> D_TPP14[Deliverable: Trial Transcript]:::data
        Court14 --> C_TPP14[Consideration: Jury Instructions]:::consideration
        Court14 --> C_TPP14
        M_TPP14[Messaging: Communicate Verdict]:::messaging
        A_TPP14[Audience: Public, Media, Victim's Family]:::audience
        M_TPP14 --> A_TPP14

        %% Deliverables for Trial Transcript
        subgraph "Trial Transcript Details"
            TT14A[Daily Proceedings Record]:::subdeliverable
            TT14B[Exhibit Records]:::subdeliverable

            ProsecutionCase14 --> TT14A
            EvidencePresentation14 --> TT14A
            WitnessTestimonies14 --> TT14A
            CrossExaminations14 --> TT14A
            DefenseCase14 --> TT14A
            DefenseEvidence14 --> TT14A
            DefenseWitnesses14 --> TT14A
            DefenseCrossExams14 --> TT14A
            ClosingArguments14 --> TT14A
            JuryDeliberation14 --> TT14A
            TT14A --> D_TPP14

            ProsecutionCase14 --> TT14B
            EvidencePresentation14 --> TT14B
            WitnessTestimonies14 --> TT14B
            CrossExaminations14 --> TT14B
            DefenseCase14 --> TT14B
            DefenseEvidence14 --> TT14B
            DefenseWitnesses14 --> TT14B
            DefenseCrossExams14 --> TT14B
            ClosingArguments14 --> TT14B
            JuryDeliberation14 --> TT14B
            TT14B --> D_TPP14
        end
    end

    %% Phase 15: Post-Trial Proceedings Phase
    subgraph "Phase 15: Post-Trial Proceedings Phase"
        VerdictAnnouncement14 --> Sentencing15[Sentencing Hearing]:::process
        Sentencing15 --> VictimImpact15[Victim Impact Statements]:::process
        VerdictAnnouncement14 --> AppealsProcess15[Initiate Appeals Process]:::process
        Sentencing15 --> D_PTPP15[Deliverable: Sentencing Report]:::data
        AppealsProcess15 --> C_PTPP15[Consideration: Potential for Appeal]:::consideration
        AppealsProcess15 --> C_PTPP15
        M_PTPP15[Messaging: Inform Stakeholders]:::messaging
        A_PTPP15[Audience: Victim's Family, Media]:::audience
        M_PTPP15 --> A_PTPP15

        %% Deliverables for Sentencing Report
        subgraph "Sentencing Report Details"
            SR15A[Pre-Sentencing Investigation Report]:::subdeliverable
            SR15B[Victim Impact Statements Compilation]:::subdeliverable
            SR15C[Sentencing Order]:::subdeliverable
            SR15D[Notice of Appeal]:::subdeliverable

            Sentencing15 --> SR15A
            Sentencing15 --> SR15B
            Sentencing15 --> SR15C
            AppealsProcess15 --> SR15D
            SR15A --> D_PTPP15
            SR15B --> D_PTPP15
            SR15C --> D_PTPP15
            SR15D --> D_PTPP15
        end
    end

    %% Phase 16: Appeals Phase
    subgraph "Phase 16: Appeals Phase"
        AppealsProcess15 --> AppellateCourt16[Appellate Court Reviews Case]:::process
        AppellateCourt16 --> AppealDecision16{Appeal Decision}:::decision
        AppealDecision16 -->|Uphold| UpholdVerdict16[Verdict Upheld]:::process
        AppealDecision16 -->|Overturn| OverturnVerdict16[Verdict Overturned]:::process
        OverturnVerdict16 --> Retrial16[Possible Retrial]:::process
        AppealDecision16 --> D_AP16[Deliverable: Appeal Outcome]:::data
        AppellateCourt16 --> C_AP16[Consideration: Legal Precedents]:::consideration
        AppellateCourt16 --> C_AP16
        M_AP16[Messaging: Update All Parties]:::messaging
        A_AP16[Audience: Legal Teams, Victim's Family, Media]:::audience
        M_AP16 --> A_AP16

        %% Deliverables for Appeal Outcome
        subgraph "Appeal Outcome Details"
            AO16A[Appellate Briefs]:::subdeliverable
            AO16B[Oral Argument Preparations]:::subdeliverable
            AO16C[Appellate Court Decision]:::subdeliverable

            AppellateCourt16 --> AO16A
            AppellateCourt16 --> AO16B
            AppellateCourt16 --> AO16C
            AO16A --> D_AP16
            AO16B --> D_AP16
            AO16C --> D_AP16
        end
    end

    %% Phase 17: Mistrial and Retrial Phase
    subgraph "Phase 17: Mistrial and Retrial Phase"
        Mistrial17[Mistrial Declared]:::process
        Mistrial17 --> RetrialProcess17[Initiate Retrial Process]:::process
        Mistrial17 --> D_MRP17[Deliverable: Mistrial Documentation]:::data
        Mistrial17 --> C_MRP17[Consideration: Reasons for Mistrial]:::consideration
        Mistrial17 --> M_MRP17[Messaging: Public Explanation]:::messaging
        M_MRP17 --> A_MRP17[Audience: Public, Media]:::audience

        %% Deliverables for Mistrial Documentation
        subgraph "Mistrial Documentation Details"
            MD17A[Mistrial Declaration Record]:::subdeliverable
            MD17B[Reasons for Mistrial]:::subdeliverable

            Mistrial17 --> MD17A
            Mistrial17 --> MD17B
            MD17A --> D_MRP17
            MD17B --> D_MRP17
        end
    end

    %% Phase 18: Media and Public Relations Phase
    subgraph "Phase 18: Media and Public Relations Phase"
        MediaManagement1 --> MediaReleases18[Issue Media Releases]:::process
        MediaManagement1 --> PublicStatements18[Provide Public Statements]:::process
        MediaReleases18 --> C_MPR18[Consideration: Ongoing Investigation Confidentiality]:::consideration
        PublicStatements18 --> C_MPR18
        MediaReleases18 --> C_MPR18
        PublicStatements18 --> C_MPR18
        M_MPR18[Messaging: Control Information Flow]:::messaging
        A_MPR18[Audience: Media, Public]:::audience
        M_MPR18 --> A_MPR18
        MediaReleases18 --> M_MPR18
        PublicStatements18 --> M_MPR18
    end

    %% Phase 19: Internal Reviews Phase
    subgraph "Phase 19: Internal Reviews Phase"
        Investigator4 --> AfterActionReview19[Conduct After-Action Review]:::process
        AfterActionReview19 --> LessonsLearned19[Document Lessons Learned]:::process
        LessonsLearned19 --> D_IRP19[Deliverable: Internal Review Report]:::data
        LessonsLearned19 --> C_IRP19[Consideration: Improve Future Operations]:::consideration
        AfterActionReview19 --> C_IRP19
        M_IRP19[Messaging: Share Findings Internally]:::messaging
        A_IRP19[Audience: Law Enforcement Agencies]:::audience
        M_IRP19 --> A_IRP19

        %% Deliverables for Internal Review Report
        subgraph "Internal Review Report Details"
            IRR19A[Comprehensive Analysis]:::subdeliverable
            IRR19B[Recommendations]:::subdeliverable

            LessonsLearned19 --> IRR19A
            LessonsLearned19 --> IRR19B
            IRR19A --> D_IRP19
            IRR19B --> D_IRP19
        end
    end

    %% Phase 20: External Factors
    subgraph "Phase 20: External Factors"
        EF1A((Other Law Enforcement Agencies)):::audience -. "Collaboration" .-> Investigator4
        EF2A((Community Support Groups)):::audience -. "Community Tips" .-> Investigator4
        EF3A((Regulatory Bodies)):::audience -. "Compliance Oversight" .-> Prosecutor11

        %% Deliverables for External Factors
        subgraph "External Factors Deliverables"
            CFA20A[Interagency Agreements]:::subdeliverable
            CFA20B[Community Engagement Reports]:::subdeliverable
            CFA20C[Compliance Audit Reports]:::subdeliverable

            EF1A --> CFA20A
            EF2A --> CFA20B
            EF3A --> CFA20C
        end
    end

    %% Styles Definitions for Node Shapes and Colors
    style CR1 fill:#f9f,stroke:#333,stroke-width:2px
    style Dispatcher1 fill:#bbf,stroke:#333,stroke-width:2px
    style FR1 fill:#bfb,stroke:#333,stroke-width:2px
    style D_CR1 fill:#ff9,stroke:#333,stroke-width:2px
    style FR1A fill:#ffffe0,stroke:#333,stroke-width:1px
    style EMS1 fill:#ffebcd,stroke:#333,stroke-width:1px
    style EMS_Y1 fill:#ffebcd,stroke:#333,stroke-width:1px
    style EMS_Dispatch1 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style SecureScene1 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style CordonOff1 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_Cordon1 fill:#ffebcd,stroke:#333,stroke-width:1px
    style CrimeSceneLog1 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style MediaManagement1 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style C_CM1 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style D_CSM1 fill:#ff9,stroke:#333,stroke-width:1px
    style M_CSM1 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_CSM1 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style Investigator4 fill:#f0f8ff,stroke:#333,stroke-width:2px
    style D_Evidence4 fill:#ffebcd,stroke:#333,stroke-width:1px
    style EvidenceCollection4 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style WitnessID4 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style Photos4 fill:#ffffe0,stroke:#333,stroke-width:1px
    style Sketches4 fill:#ffffe0,stroke:#333,stroke-width:1px
    style PhysicalEvidence4 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style DNA4 fill:#ffffe0,stroke:#333,stroke-width:1px
    style Fingerprints4 fill:#ffffe0,stroke:#333,stroke-width:1px
    style Ballistics4 fill:#ffffe0,stroke:#333,stroke-width:1px
    style TraceEvidence4 fill:#ffffe0,stroke:#333,stroke-width:1px
    style D_CSI4 fill:#ff9,stroke:#333,stroke-width:1px
    style D_Witnesses4 fill:#ff9,stroke:#333,stroke-width:1px
    style C_CSI4 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_CSI4 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_CSI4 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style CanvasArea5 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style WitnessStatements5 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style CCTV5 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style PotentialSuspects5 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_II5 fill:#ff9,stroke:#333,stroke-width:1px
    style C_II5 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_II5 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_II5 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style NextOfKin6 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style MediaNotification6 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style C_NP6 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style D_NP6 fill:#ff9,stroke:#333,stroke-width:1px
    style M_NP6 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_NP6 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style D_EvidenceSent7 fill:#ffffe0,stroke:#333,stroke-width:1px
    style ForensicLab7 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style DNAAnalysis7 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style FingerprintAnalysis7 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style BallisticsMatching7 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style Toxicology7 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style DigitalEvidenceAnalysis7 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_EA7 fill:#ff9,stroke:#333,stroke-width:1px
    style C_EA7 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_EA7 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_EA7 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style Hypotheses8 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_ISD8 fill:#ffebcd,stroke:#333,stroke-width:1px
    style TaskAssignment8 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style SearchWarrants8 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style UndercoverOps8 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style SurveillanceOps8 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_ISD_Deliverable8 fill:#ffffe0,stroke:#333,stroke-width:1px
    style C_ISD8 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_ISD8 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_ISD8 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style Surveillance9 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_SI9 fill:#ffebcd,stroke:#333,stroke-width:1px
    style Interrogations9 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style ContinueSurveillance9 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style Arrests9 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_SIA9 fill:#ff9,stroke:#333,stroke-width:1px
    style C_SIA9 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_SIA9 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_SIA9 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style CaseFile10 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style OrganizeEvidence10 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style CompileStatements10 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style PrepareReports10 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_CFP10 fill:#ff9,stroke:#333,stroke-width:1px
    style C_CFP10 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_CFP10 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_CFP10 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style Charges11 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style AdditionalEvidence11 fill:#ffebcd,stroke:#333,stroke-width:1px
    style D_LC11 fill:#ffebcd,stroke:#333,stroke-width:1px
    style LegalStrategy11 fill:#ffffe0,stroke:#333,stroke-width:1px
    style GrandJury12 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_PTP12 fill:#ffebcd,stroke:#333,stroke-width:1px
    style Indictment12 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style CaseReview12 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style BailHearings12 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style Discovery12 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style Motions12 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_PTP_Deliverable12 fill:#ffffe0,stroke:#333,stroke-width:1px
    style C_PTP12 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_PTP12 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_PTP12 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style WitnessPrep13 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style MockTrials13 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style TrialStrategy13 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style JurySelection13 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_TP13 fill:#ffffe0,stroke:#333,stroke-width:1px
    style C_TP13 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_TP13 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_TP13 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style Court14 fill:#f66,stroke:#333,stroke-width:2px
    style OpeningStatements14 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style ProsecutionCase14 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style EvidencePresentation14 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style WitnessTestimonies14 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style CrossExaminations14 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style DefenseCase14 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style DefenseEvidence14 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style DefenseWitnesses14 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style DefenseCrossExams14 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style ClosingArguments14 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style JuryDeliberation14 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style VerdictAnnouncement14 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_TPP14 fill:#ffffe0,stroke:#333,stroke-width:1px
    style C_TPP14 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_TPP14 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_TPP14 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style Sentencing15 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style VictimImpact15 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style AppealsProcess15 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_PTPP15 fill:#ffffe0,stroke:#333,stroke-width:1px
    style C_PTPP15 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_PTPP15 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_PTPP15 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style AppellateCourt16 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style AppealDecision16 fill:#ffebcd,stroke:#333,stroke-width:1px
    style UpholdVerdict16 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style OverturnVerdict16 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style Retrial16 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_AP16 fill:#ffffe0,stroke:#333,stroke-width:1px
    style C_AP16 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_AP16 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_AP16 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style Mistrial17 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style RetrialProcess17 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_MRP17 fill:#ffffe0,stroke:#333,stroke-width:1px
    style C_MRP17 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_MRP17 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_MRP17 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style MediaReleases18 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style PublicStatements18 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style C_MPR18 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_MPR18 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_MPR18 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style AfterActionReview19 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style LessonsLearned19 fill:#f0f8ff,stroke:#333,stroke-width:1px
    style D_IRP19 fill:#ffffe0,stroke:#333,stroke-width:1px
    style C_IRP19 fill:#e6e6fa,stroke:#333,stroke-dasharray: 5 5
    style M_IRP19 fill:#ffe4e1,stroke:#333,stroke-width:1px
    style A_IRP19 fill:#f5f5f5,stroke:#333,stroke-dasharray: 5 5
    style EF1A fill:#eee,stroke:#333,stroke-dasharray: 5 5
    style EF2A fill:#eee,stroke:#333,stroke-dasharray: 5 5
    style EF3A fill:#eee,stroke:#333,stroke-dasharray: 5 5
    style CFA20A fill:#ffffe0,stroke:#333,stroke-width:1px
    style CFA20B fill:#ffffe0,stroke:#333,stroke-width:1px
    style CFA20C fill:#ffffe0,stroke:#333,stroke-width:1px

    %% Legend (Optional)
    classDef legend fill:#fff,stroke:#333,stroke-width:1px;
    Legend[Legend]:::legend
    Legend --> |Process| process
    Legend --> |Decision| decision
    Legend --> |Deliverable| data
    Legend --> |Sub-Deliverable| subdeliverable
    Legend --> |Consideration| consideration
    Legend --> |Messaging| messaging
    Legend --> |Audience| audience

screencapture-mermaid-ink-svg-pako-eNqlPQ1v2ziyf0Xw4fC6QLOo2nz6gHewZLvNvaTxi7O7OGgfCsWmHaG25ZPkbLPt-vc3Q1ISSZEUzXSBjSzOjKjhfHE4pL4PFvmSDIaDv-89uCXFNs2WwThL10W6HQZxvt0X5InsyuyZBLeHYkmK4Hr3TMoqW6dVlu-Cf-WHYkdeglWRb.png