mirror of
https://github.com/onestardao/WFGY.git
synced 2026-07-09 15:58:34 +00:00
648 lines
402 KiB
Text
648 lines
402 KiB
Text
{
|
||
"cells": [
|
||
{
|
||
"cell_type": "markdown",
|
||
"id": "3133f16e",
|
||
"metadata": {},
|
||
"source": [
|
||
"# PP02A — Version Evolution 120 API Run\n",
|
||
"\n",
|
||
"**Belongs to:** WFGY 5.0 Polaris Protocol \n",
|
||
"**Repository:** https://github.com/onestardao/WFGY \n",
|
||
"**Polaris Protocol path:** https://github.com/onestardao/WFGY/tree/main/Polaris \n",
|
||
"**Experiment page:** https://github.com/onestardao/WFGY/blob/main/Polaris/experiments/README.md\n",
|
||
"\n",
|
||
"## Experiment spirit\n",
|
||
"\n",
|
||
"Version evolution evidence. The point is not only final pass; it is the visible path from weaker reference to scoped final run.\n",
|
||
"\n",
|
||
"## What this Colab tests\n",
|
||
"\n",
|
||
"Checks the PP02A T4 branch final 120-case API run and preserves a weaker previous reference so the result is not only a final screenshot.\n",
|
||
"\n",
|
||
"## Published result summary\n",
|
||
"\n",
|
||
"- 120 test cases; 240 final-run raw outputs.\n",
|
||
"- 0 API errors; 0 parse failures; parse success rate 1.0.\n",
|
||
"- 6 domains reaching seal; T4 system score 100.0; internal weighted score 125.0.\n",
|
||
"- Final package result label: SEAL_PASS.\n",
|
||
"\n",
|
||
"## Expected usage / token-cost note\n",
|
||
"\n",
|
||
"Full run may issue around 240 model outputs. Actual token usage depends on the model and output length.\n",
|
||
"\n",
|
||
"## Scientific boundary\n",
|
||
"\n",
|
||
"SEAL_PASS is a package result label, not production seal. This does not guarantee future reruns will be byte-identical.\n",
|
||
"\n",
|
||
"This Colab is provided for **reproduction, inspection, and adaptation**. You do not have to rerun it to read the published result summary. If you rerun it, model behavior, token usage, cost, and output details may vary.\n",
|
||
"\n",
|
||
"---\n"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"id": "2c8e788c",
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"# Polaris Protocol experiment identity\n",
|
||
"POLARIS_PROTOCOL_REPO = \"https://github.com/onestardao/WFGY\"\n",
|
||
"POLARIS_EXPERIMENT_ID = \"PP02A\"\n",
|
||
"POLARIS_EXPERIMENT_TITLE = \"PP02A — Version Evolution 120 API Run\"\n",
|
||
"POLARIS_EXPERIMENT_ROLE = \"Version Evolution 120 API Run\"\n",
|
||
"POLARIS_CLAIM_BOUNDARY = \"SEAL_PASS is a package result label, not production seal. This does not guarantee future reruns will be byte-identical.\"\n",
|
||
"print(f\"{POLARIS_EXPERIMENT_ID} — {POLARIS_EXPERIMENT_TITLE}\")\n",
|
||
"print(f\"Repo: {POLARIS_PROTOCOL_REPO}\")\n"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"id": "83d6b12f",
|
||
"metadata": {},
|
||
"source": [
|
||
"# PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate\n",
|
||
"\n",
|
||
"WFGY 5.0 Polaris Protocol\n",
|
||
"Repo: https://github.com/onestardao/WFGY\n",
|
||
"\n",
|
||
"Scope:\n",
|
||
"- 120 C/D case pairs\n",
|
||
"- 240 total prompts\n",
|
||
"- 6 domains\n",
|
||
"- LegendGrounding lock plus MULTI required-field hardener\n",
|
||
"- JSON-only output\n",
|
||
"- Parser v5\n",
|
||
"- Integrated gate\n",
|
||
"- Auto zip download"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"id": "fc5daac6",
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"%pip -q install --upgrade openai"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"id": "9833f1f4",
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"import json, csv, time, zipfile, hashlib, datetime, re\n",
|
||
"from pathlib import Path\n",
|
||
"from getpass import getpass\n",
|
||
"from statistics import mean\n",
|
||
"\n",
|
||
"try:\n",
|
||
" from google.colab import files\n",
|
||
" IN_COLAB = True\n",
|
||
"except Exception:\n",
|
||
" IN_COLAB = False\n",
|
||
"\n",
|
||
"from openai import OpenAI\n",
|
||
"\n",
|
||
"RUN_ID = \"PP02A_T4_120_CASES_V5_LEGENDGROUNDING_LOCK_API_CANDIDATE\"\n",
|
||
"OUTPUT_ROOT = Path(\"/content/PP02A_T4_120_CASES_V5_LEGENDGROUNDING_LOCK_API_CANDIDATE_OUTPUT\")\n",
|
||
"OUTPUT_ROOT.mkdir(parents=True, exist_ok=True)\n",
|
||
"CREATED_AT = datetime.datetime.now(datetime.UTC).replace(microsecond=0).isoformat()\n",
|
||
"print(\"Run ID:\", RUN_ID)\n",
|
||
"\n",
|
||
"api_key = getpass(\"Enter your OpenAI API key: \").strip()\n",
|
||
"if not api_key:\n",
|
||
" raise ValueError(\"OpenAI API key is required.\")\n",
|
||
"client = OpenAI(api_key=api_key)\n",
|
||
"\n",
|
||
"MODEL_C = \"gpt-4.1-mini\"\n",
|
||
"MODEL_D = \"gpt-4.1-mini\"\n",
|
||
"TEMPERATURE = 0.0\n",
|
||
"MAX_OUTPUT_TOKENS = 700\n",
|
||
"REQUEST_SLEEP_SECONDS = 0.15\n",
|
||
"PROMPTS = [{\"prompt_id\": \"T4-A_A-001_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-001\", \"family\": \"ProgressGain\", \"case_type\": \"agent\", \"arm\": \"C\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-001 · ProgressGain\\n\\nArm:\\nC\\n\\nExecution contract:\\nProgressGain is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"93f3ed3e5a796a8fbe8250a2cf7f161aec463dfe3edcfec1567817af3ec8949b\"}, {\"prompt_id\": \"T4-A_A-001_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-001\", \"family\": \"ProgressGain\", \"case_type\": \"agent\", \"arm\": \"D\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-001 · ProgressGain\\n\\nArm:\\nD\\n\\nExecution contract:\\nProgressGain may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"a8530c9e11035a47da4f32013322acea73aaea851f0ed6c3db8362780718da99\"}, {\"prompt_id\": \"T4-A_A-002_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-002\", \"family\": \"ToolAffordance\", \"case_type\": \"agent\", \"arm\": \"C\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-002 · ToolAffordance\\n\\nArm:\\nC\\n\\nExecution contract:\\nToolAffordance is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"007e943f118756d6c3a9e0f4cf81bc616bf67b2e2a8cf083eaa2113a267d8cc1\"}, {\"prompt_id\": \"T4-A_A-002_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-002\", \"family\": \"ToolAffordance\", \"case_type\": \"agent\", \"arm\": \"D\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-002 · ToolAffordance\\n\\nArm:\\nD\\n\\nExecution contract:\\nToolAffordance may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"ec32a1244297d25db25262e23b90abfe69c806bf4570136b3f18bc1421e5af90\"}, {\"prompt_id\": \"T4-A_A-003_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-003\", \"family\": \"CompletionGate\", \"case_type\": \"agent\", \"arm\": \"C\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-003 · CompletionGate\\n\\nArm:\\nC\\n\\nExecution contract:\\nCompletionGate is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"2aa822238ea076d8d35d5c34a420ec6accdf82b5caa84a6d0fbd54ac49d9453b\"}, {\"prompt_id\": \"T4-A_A-003_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-003\", \"family\": \"CompletionGate\", \"case_type\": \"agent\", \"arm\": \"D\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-003 · CompletionGate\\n\\nArm:\\nD\\n\\nExecution contract:\\nCompletionGate may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"4719890712d4b90fc1f7b8a9334658a9fd3836ff08fc5343c4f0ba7b07eafa9e\"}, {\"prompt_id\": \"T4-A_A-004_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-004\", \"family\": \"PatchMinimality\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-004 · PatchMinimality\\n\\nArm:\\nC\\n\\nExecution contract:\\nPatchMinimality is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6f517f959c4d2fc06ed7cf89c3a46ce9a0842556b17bacb3b2116cf505fedfdb\"}, {\"prompt_id\": \"T4-A_A-004_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-004\", \"family\": \"PatchMinimality\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-004 · PatchMinimality\\n\\nArm:\\nD\\n\\nExecution contract:\\nPatchMinimality may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"ee5cd3e6bf709dcebf7403f7b2b1e3848971454222b749779e2a88a3bb45f8e4\"}, {\"prompt_id\": \"T4-A_A-005_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-005\", \"family\": \"StateRetention\", \"case_type\": \"agent\", \"arm\": \"C\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-005 · StateRetention\\n\\nArm:\\nC\\n\\nExecution contract:\\nStateRetention is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"cc9a06f6218738212203d2fe451277a784afb1a331d267f02bcc31d31a3b07fb\"}, {\"prompt_id\": \"T4-A_A-005_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-005\", \"family\": \"StateRetention\", \"case_type\": \"agent\", \"arm\": \"D\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-005 · StateRetention\\n\\nArm:\\nD\\n\\nExecution contract:\\nStateRetention may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"bc80190008568606da1dc50a59d1c09d11ebea1bb37d7f1961f3c652a7c6cd51\"}, {\"prompt_id\": \"T4-A_A-006_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-006\", \"family\": \"VerificationBarrier\", \"case_type\": \"agent\", \"arm\": \"C\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-006 · VerificationBarrier\\n\\nArm:\\nC\\n\\nExecution contract:\\nVerificationBarrier is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6b4c25f770865cc3848287d92df0f1925c8820b1843f6b10fba3c477881ba771\"}, {\"prompt_id\": \"T4-A_A-006_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-006\", \"family\": \"VerificationBarrier\", \"case_type\": \"agent\", \"arm\": \"D\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-006 · VerificationBarrier\\n\\nArm:\\nD\\n\\nExecution contract:\\nVerificationBarrier may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"eed22ac5de8740998aaabe656a9c9894f101e6379da27530d104e2b8e64a1985\"}, {\"prompt_id\": \"T4-A_A-007_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-007\", \"family\": \"RollbackRepair\", \"case_type\": \"agent\", \"arm\": \"C\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-007 · RollbackRepair\\n\\nArm:\\nC\\n\\nExecution contract:\\nRollbackRepair is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"69dd02d44da1342cdb63a58b7b940e4f117e587515dab79d16f0ed7da586dd0c\"}, {\"prompt_id\": \"T4-A_A-007_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-007\", \"family\": \"RollbackRepair\", \"case_type\": \"agent\", \"arm\": \"D\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-007 · RollbackRepair\\n\\nArm:\\nD\\n\\nExecution contract:\\nRollbackRepair may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"0d8e277450091698de0128938233714fa249099acc084bc688fcf6b5c84cc2e6\"}, {\"prompt_id\": \"T4-A_A-008_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-008\", \"family\": \"ForbiddenTool\", \"case_type\": \"agent\", \"arm\": \"C\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-008 · ForbiddenTool\\n\\nArm:\\nC\\n\\nExecution contract:\\nForbiddenTool is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"3b5ba81cab2126f6972792e2b4a2bce7ab007594fe905e030fe088e7a76ad9b0\"}, {\"prompt_id\": \"T4-A_A-008_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-008\", \"family\": \"ForbiddenTool\", \"case_type\": \"agent\", \"arm\": \"D\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-008 · ForbiddenTool\\n\\nArm:\\nD\\n\\nExecution contract:\\nForbiddenTool may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"aad06c8c9fa91417cf05d9ee12d8eab043506f8163ecb767726fcdfb75dd4164\"}, {\"prompt_id\": \"T4-A_A-009_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-009\", \"family\": \"SideEffectBoundary\", \"case_type\": \"agent\", \"arm\": \"C\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-009 · SideEffectBoundary\\n\\nArm:\\nC\\n\\nExecution contract:\\nSideEffectBoundary is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"cf819f67222c06a0283bfa2ac9fa42f87ed41ac9252e923eaa884cc7b7c797b1\"}, {\"prompt_id\": \"T4-A_A-009_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-009\", \"family\": \"SideEffectBoundary\", \"case_type\": \"agent\", \"arm\": \"D\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-009 · SideEffectBoundary\\n\\nArm:\\nD\\n\\nExecution contract:\\nSideEffectBoundary may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"f11d9c44c3eb0e6dda52e896edeecf0fedfffb5900db5d5ca44bfd94b76f1648\"}, {\"prompt_id\": \"T4-A_A-010_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-010\", \"family\": \"PostActionAudit\", \"case_type\": \"agent\", \"arm\": \"C\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-010 · PostActionAudit\\n\\nArm:\\nC\\n\\nExecution contract:\\nPostActionAudit is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"a857f830295b01fa760380c1a8ace0a442039d2ac0e3eb6e2a62ebe6ed0ff87a\"}, {\"prompt_id\": \"T4-A_A-010_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-010\", \"family\": \"PostActionAudit\", \"case_type\": \"agent\", \"arm\": \"D\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-010 · PostActionAudit\\n\\nArm:\\nD\\n\\nExecution contract:\\nPostActionAudit may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"d7237c7fd42767a6c24da0645198ba7d0beb329e466835e2fa528423fa05f843\"}, {\"prompt_id\": \"T4-A_A-011_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-011\", \"family\": \"NoProgressLoop\", \"case_type\": \"agent\", \"arm\": \"C\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-011 · NoProgressLoop\\n\\nArm:\\nC\\n\\nExecution contract:\\nNoProgressLoop is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"5f2ee30f2aa368c5e5a849f7acc29a95930ea42c49b61ff5012434f192a3bed3\"}, {\"prompt_id\": \"T4-A_A-011_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-011\", \"family\": \"NoProgressLoop\", \"case_type\": \"agent\", \"arm\": \"D\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-011 · NoProgressLoop\\n\\nArm:\\nD\\n\\nExecution contract:\\nNoProgressLoop may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"035964a1b3c4ab7e454cc83de8021f1099da7479303d8385c8f6ecdff956ea2a\"}, {\"prompt_id\": \"T4-A_A-012_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-012\", \"family\": \"OwnerConfirmation\", \"case_type\": \"agent\", \"arm\": \"C\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-012 · OwnerConfirmation\\n\\nArm:\\nC\\n\\nExecution contract:\\nOwnerConfirmation is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"9380720927752cdc428d452ae7d5d30f2f82364d62ba8270e85814a50b215060\"}, {\"prompt_id\": \"T4-A_A-012_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-012\", \"family\": \"OwnerConfirmation\", \"case_type\": \"agent\", \"arm\": \"D\", \"required_keys\": [\"tool_sequence\", \"state_ledger\", \"verification_step\", \"completion_check\", \"boundary_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-012 · OwnerConfirmation\\n\\nArm:\\nD\\n\\nExecution contract:\\nOwnerConfirmation may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"tool_sequence\\\": \\\"\\\",\\n \\\"state_ledger\\\": \\\"\\\",\\n \\\"verification_step\\\": \\\"\\\",\\n \\\"completion_check\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"b22ac780a0ed57c26f035496b7904ff4a116f62b40fcd2f8a92f9c2edffad8d2\"}, {\"prompt_id\": \"T4-A_A-013_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-013\", \"family\": \"DependencyCausality\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-013 · DependencyCausality\\n\\nArm:\\nC\\n\\nExecution contract:\\nDependencyCausality is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"7eef3bc0b97e96ac4cd8037ba179f5f26dc1cd50cc1bcb4ceec6ce87fe1eba1b\"}, {\"prompt_id\": \"T4-A_A-013_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-013\", \"family\": \"DependencyCausality\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-013 · DependencyCausality\\n\\nArm:\\nD\\n\\nExecution contract:\\nDependencyCausality may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"471418c527da7512666d8908adfaeb39bfc3b0034eb0bae45ce4ae7ddb687836\"}, {\"prompt_id\": \"T4-A_A-014_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-014\", \"family\": \"TestAuthority\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-014 · TestAuthority\\n\\nArm:\\nC\\n\\nExecution contract:\\nTestAuthority is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6873753b5e34516071dfac841d694e0f3929400a04bcd0eca2f13981c7de85c5\"}, {\"prompt_id\": \"T4-A_A-014_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-014\", \"family\": \"TestAuthority\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-014 · TestAuthority\\n\\nArm:\\nD\\n\\nExecution contract:\\nTestAuthority may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"251974bf6c87b694f48b1696be3a4a9d61fb8f5b821e45fa1aed93e22510d029\"}, {\"prompt_id\": \"T4-A_A-015_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-015\", \"family\": \"RegressionGuard\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-015 · RegressionGuard\\n\\nArm:\\nC\\n\\nExecution contract:\\nRegressionGuard is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"efa47a38a69a34443d8f67704f2a3b8298d85bdc52d0ca4f7e26a87ec00419a5\"}, {\"prompt_id\": \"T4-A_A-015_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-015\", \"family\": \"RegressionGuard\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-015 · RegressionGuard\\n\\nArm:\\nD\\n\\nExecution contract:\\nRegressionGuard may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"40c04c64ac6baf9b2a6e459be862cf2e7c5c35ed48483fb6834b4dd00eda8df8\"}, {\"prompt_id\": \"T4-A_A-016_C\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-016\", \"family\": \"APIPreservation\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-016 · APIPreservation\\n\\nArm:\\nC\\n\\nExecution contract:\\nAPIPreservation is a hard correctness organ for T4-A. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"a6a344e75cc2eb35530d9d8863952de6adc28274e070c901dc4634bbcd4aca0c\"}, {\"prompt_id\": \"T4-A_A-016_D\", \"domain_id\": \"T4-A\", \"domain_name\": \"Agent/Coding Hybrid Passed Module\", \"domain_kind\": \"passed_module_api_seal\", \"case_id\": \"A-016\", \"family\": \"APIPreservation\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-A · Agent/Coding Hybrid Passed Module\\n\\nCase:\\nA-016 · APIPreservation\\n\\nArm:\\nD\\n\\nExecution contract:\\nAPIPreservation may be treated as a soft preference for T4-A. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"7d349d3d1f81f2e9c5ed5cab919251b95f81ce77eca5ba6af405ab82519d05e8\"}, {\"prompt_id\": \"T4-MATH_MATH-001_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-001\", \"family\": \"DefinitionLock\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-001 · DefinitionLock\\n\\nArm:\\nC\\n\\nExecution contract:\\nDefinitionLock is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6243d1283c266818ba6a21af34ab01bab6e545f2fc48dd0d75983d4a71774b58\"}, {\"prompt_id\": \"T4-MATH_MATH-001_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-001\", \"family\": \"DefinitionLock\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-001 · DefinitionLock\\n\\nArm:\\nD\\n\\nExecution contract:\\nDefinitionLock may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"90c28f49714fce3d0e077a1bcf3b9afe42d15c6f20ab1312983115edee24158b\"}, {\"prompt_id\": \"T4-MATH_MATH-002_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-002\", \"family\": \"AssumptionBoundary\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-002 · AssumptionBoundary\\n\\nArm:\\nC\\n\\nExecution contract:\\nAssumptionBoundary is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"f56be286bf053c2208865972205bdcf7bb6e7f9e4677693e6b86a6bf1167a840\"}, {\"prompt_id\": \"T4-MATH_MATH-002_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-002\", \"family\": \"AssumptionBoundary\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-002 · AssumptionBoundary\\n\\nArm:\\nD\\n\\nExecution contract:\\nAssumptionBoundary may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"4daa7c15c312833e9df270983dec6182cfd7333a510d70ed223df04cee04d885\"}, {\"prompt_id\": \"T4-MATH_MATH-003_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-003\", \"family\": \"ProofStepValidity\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-003 · ProofStepValidity\\n\\nArm:\\nC\\n\\nExecution contract:\\nProofStepValidity is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"5e60199cf69afd1a7bcb23c8a4443baef8f051f505211db79ec12f9ea523d19b\"}, {\"prompt_id\": \"T4-MATH_MATH-003_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-003\", \"family\": \"ProofStepValidity\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-003 · ProofStepValidity\\n\\nArm:\\nD\\n\\nExecution contract:\\nProofStepValidity may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"419b7abdccf47e4ebd5693345e86f05b5b9eb843b674315787c865609b019f65\"}, {\"prompt_id\": \"T4-MATH_MATH-004_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-004\", \"family\": \"CounterexampleStop\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-004 · CounterexampleStop\\n\\nArm:\\nC\\n\\nExecution contract:\\nCounterexampleStop is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"0474716c0eb545571c33a1d777f284c17dc4cc62d5483c2c2f6ce91d9cdd3404\"}, {\"prompt_id\": \"T4-MATH_MATH-004_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-004\", \"family\": \"CounterexampleStop\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-004 · CounterexampleStop\\n\\nArm:\\nD\\n\\nExecution contract:\\nCounterexampleStop may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"74d3574a40f4da210e127e69871fe01aad10c91503f701604da92fce88dcceb5\"}, {\"prompt_id\": \"T4-MATH_MATH-005_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-005\", \"family\": \"QuantifierScope\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-005 · QuantifierScope\\n\\nArm:\\nC\\n\\nExecution contract:\\nQuantifierScope is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"905fe3af570584d9928017e37b3022da7ab1ac17e95aca3a007b0257a11c3ee0\"}, {\"prompt_id\": \"T4-MATH_MATH-005_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-005\", \"family\": \"QuantifierScope\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-005 · QuantifierScope\\n\\nArm:\\nD\\n\\nExecution contract:\\nQuantifierScope may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"a0d914a51494ea3920de8b835473a063e896f06e2c617ef791c338bc3f90428a\"}, {\"prompt_id\": \"T4-MATH_MATH-006_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-006\", \"family\": \"ClaimCeiling\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-006 · ClaimCeiling\\n\\nArm:\\nC\\n\\nExecution contract:\\nClaimCeiling is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"e55c690db7053cc36e6983bf2c312e55dd17200280580e653817166822b94a01\"}, {\"prompt_id\": \"T4-MATH_MATH-006_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-006\", \"family\": \"ClaimCeiling\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-006 · ClaimCeiling\\n\\nArm:\\nD\\n\\nExecution contract:\\nClaimCeiling may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"f10f2e8cd703deae39b0d8cceeefe8f01beb81c8faedbd27b3ce2ba3ca31638e\"}, {\"prompt_id\": \"T4-MATH_MATH-007_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-007\", \"family\": \"ContrapositiveTrap\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-007 · ContrapositiveTrap\\n\\nArm:\\nC\\n\\nExecution contract:\\nContrapositiveTrap is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"ca5915435ba6d80e8cf2617cf8e7eb644cf73345259809c6027f28510e0b6b32\"}, {\"prompt_id\": \"T4-MATH_MATH-007_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-007\", \"family\": \"ContrapositiveTrap\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-007 · ContrapositiveTrap\\n\\nArm:\\nD\\n\\nExecution contract:\\nContrapositiveTrap may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"dc9c1b071bb571bda49e623fdd4fd422cd46cd31981f8508de7ebdfea2a6e35f\"}, {\"prompt_id\": \"T4-MATH_MATH-008_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-008\", \"family\": \"LimitBoundary\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-008 · LimitBoundary\\n\\nArm:\\nC\\n\\nExecution contract:\\nLimitBoundary is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"4e09e1bbc33ec2723811ea447fd9627fa8fc1542565b3c5f41aa2d571616b840\"}, {\"prompt_id\": \"T4-MATH_MATH-008_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-008\", \"family\": \"LimitBoundary\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-008 · LimitBoundary\\n\\nArm:\\nD\\n\\nExecution contract:\\nLimitBoundary may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"b5070f4db90ba92e50f6546a5e2ef2494589b95143afb2322e852629d0bfb01a\"}, {\"prompt_id\": \"T4-MATH_MATH-009_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-009\", \"family\": \"ExistenceUniqueness\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-009 · ExistenceUniqueness\\n\\nArm:\\nC\\n\\nExecution contract:\\nExistenceUniqueness is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"ffe12885db99fb7171e154cbf2d07fcbfff802a4fb1b1810092acdc8bf3db909\"}, {\"prompt_id\": \"T4-MATH_MATH-009_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-009\", \"family\": \"ExistenceUniqueness\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-009 · ExistenceUniqueness\\n\\nArm:\\nD\\n\\nExecution contract:\\nExistenceUniqueness may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"0112de295a1151a580037ed2fc0e3fa41ad082dc079f9be542b8bd3b48209243\"}, {\"prompt_id\": \"T4-MATH_MATH-010_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-010\", \"family\": \"InductionBaseStep\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-010 · InductionBaseStep\\n\\nArm:\\nC\\n\\nExecution contract:\\nInductionBaseStep is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"c584d85362a18b92e8f09434da84bed3f7308002d08ec253b5328ac226fbca7e\"}, {\"prompt_id\": \"T4-MATH_MATH-010_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-010\", \"family\": \"InductionBaseStep\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-010 · InductionBaseStep\\n\\nArm:\\nD\\n\\nExecution contract:\\nInductionBaseStep may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"3ba723bfcadc2abcd0dec2b9f5420965a512826aa82361ec698a840154bab11a\"}, {\"prompt_id\": \"T4-MATH_MATH-011_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-011\", \"family\": \"InductionTransition\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-011 · InductionTransition\\n\\nArm:\\nC\\n\\nExecution contract:\\nInductionTransition is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"bfeee361b2987e98b235bce0d0cc8f2565672c5e9da03967ab26a8891cdfe0be\"}, {\"prompt_id\": \"T4-MATH_MATH-011_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-011\", \"family\": \"InductionTransition\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-011 · InductionTransition\\n\\nArm:\\nD\\n\\nExecution contract:\\nInductionTransition may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"674ece019f4085e6e2ebc81b762026e6373f623d62f7535841aa1a461c1b13e7\"}, {\"prompt_id\": \"T4-MATH_MATH-012_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-012\", \"family\": \"ApproximationScope\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-012 · ApproximationScope\\n\\nArm:\\nC\\n\\nExecution contract:\\nApproximationScope is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"17a784cdd41199bed55efcdc1a7fa46367e303e3428fc6ac7ef0db35efd455da\"}, {\"prompt_id\": \"T4-MATH_MATH-012_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-012\", \"family\": \"ApproximationScope\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-012 · ApproximationScope\\n\\nArm:\\nD\\n\\nExecution contract:\\nApproximationScope may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"e2ee750348eaafed065b1c0019909a55fd1831bc9eaeee3eca4dc34b3571d145\"}, {\"prompt_id\": \"T4-MATH_MATH-013_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-013\", \"family\": \"InequalityDirection\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-013 · InequalityDirection\\n\\nArm:\\nC\\n\\nExecution contract:\\nInequalityDirection is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"dd130842b0c5ba1fbf308196feade4b24b4130fac5c1bfb903d56fa58f67fd3a\"}, {\"prompt_id\": \"T4-MATH_MATH-013_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-013\", \"family\": \"InequalityDirection\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-013 · InequalityDirection\\n\\nArm:\\nD\\n\\nExecution contract:\\nInequalityDirection may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"e16788619b27f86874e82f2c1fe263583e359e9d1c2c9b330628a117b2f3f429\"}, {\"prompt_id\": \"T4-MATH_MATH-014_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-014\", \"family\": \"DomainRestriction\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-014 · DomainRestriction\\n\\nArm:\\nC\\n\\nExecution contract:\\nDomainRestriction is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"2a8d970c3eba03b929667c5d2ad34b8e989d22b08b2f48ccc4c137b11bb3a7a4\"}, {\"prompt_id\": \"T4-MATH_MATH-014_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-014\", \"family\": \"DomainRestriction\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-014 · DomainRestriction\\n\\nArm:\\nD\\n\\nExecution contract:\\nDomainRestriction may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"d34983c6b8ccef96886d7b09a511c4c69b8b99bd0f53caf0d2cac0e43528ca63\"}, {\"prompt_id\": \"T4-MATH_MATH-015_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-015\", \"family\": \"NonCommutativeTrap\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-015 · NonCommutativeTrap\\n\\nArm:\\nC\\n\\nExecution contract:\\nNonCommutativeTrap is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"b0897714eb5caf58e15981d3ff11f4bbff0319fcfb58a1f9b2f971d80dd0f494\"}, {\"prompt_id\": \"T4-MATH_MATH-015_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-015\", \"family\": \"NonCommutativeTrap\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-015 · NonCommutativeTrap\\n\\nArm:\\nD\\n\\nExecution contract:\\nNonCommutativeTrap may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"567fa111348fd4b1683853a603bcf26315acc98acca2926329abcd2315b8b7d9\"}, {\"prompt_id\": \"T4-MATH_MATH-016_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-016\", \"family\": \"ContinuityAssumption\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-016 · ContinuityAssumption\\n\\nArm:\\nC\\n\\nExecution contract:\\nContinuityAssumption is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"fc93b9e52395a746c0bc8b893437f2164594a84723db9ef85e6d41249322ecbf\"}, {\"prompt_id\": \"T4-MATH_MATH-016_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-016\", \"family\": \"ContinuityAssumption\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-016 · ContinuityAssumption\\n\\nArm:\\nD\\n\\nExecution contract:\\nContinuityAssumption may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"7fc2fe9aa016f13edb7f8fda043c308e39ee45224fd4e084cc6e7eedcb0c2b93\"}, {\"prompt_id\": \"T4-MATH_MATH-017_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-017\", \"family\": \"MeasureZeroTrap\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-017 · MeasureZeroTrap\\n\\nArm:\\nC\\n\\nExecution contract:\\nMeasureZeroTrap is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"e5da8bdede3660c3505aaf0ffa5af2fe47172afcc620d4910da7d5b458378ed1\"}, {\"prompt_id\": \"T4-MATH_MATH-017_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-017\", \"family\": \"MeasureZeroTrap\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-017 · MeasureZeroTrap\\n\\nArm:\\nD\\n\\nExecution contract:\\nMeasureZeroTrap may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"cfa4e1cf3219223d6b5456f52ba83ce860c7d674ee930c5c44768553f94f50b7\"}, {\"prompt_id\": \"T4-MATH_MATH-018_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-018\", \"family\": \"FiniteInfiniteSwap\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-018 · FiniteInfiniteSwap\\n\\nArm:\\nC\\n\\nExecution contract:\\nFiniteInfiniteSwap is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"3dc4e916eeaf4bba5120b16deeac6bb30aacdbbffbcb768150bee2f52ad6940d\"}, {\"prompt_id\": \"T4-MATH_MATH-018_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-018\", \"family\": \"FiniteInfiniteSwap\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-018 · FiniteInfiniteSwap\\n\\nArm:\\nD\\n\\nExecution contract:\\nFiniteInfiniteSwap may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"7362386a15d0196a59f562671cce070015b95ae782f9a11c6ee7a2e94c44f0bc\"}, {\"prompt_id\": \"T4-MATH_MATH-019_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-019\", \"family\": \"ConstructiveWitness\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-019 · ConstructiveWitness\\n\\nArm:\\nC\\n\\nExecution contract:\\nConstructiveWitness is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"428c4a2f3b8a0d016e443ee34575cf5a4071fb73666a29df664e35d0476a3abb\"}, {\"prompt_id\": \"T4-MATH_MATH-019_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-019\", \"family\": \"ConstructiveWitness\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-019 · ConstructiveWitness\\n\\nArm:\\nD\\n\\nExecution contract:\\nConstructiveWitness may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6b723ab26e84b2fbc4af60f981b59aafa72f41a1ffdcaefd7db81c2b9b6c4c28\"}, {\"prompt_id\": \"T4-MATH_MATH-020_C\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-020\", \"family\": \"LocalGlobalTrap\", \"case_type\": \"math\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-020 · LocalGlobalTrap\\n\\nArm:\\nC\\n\\nExecution contract:\\nLocalGlobalTrap is a hard correctness organ for T4-MATH. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"f455e7464ea884f5f498e0b926be3a0aeb729a4bb17d91721078e07c9df0d30e\"}, {\"prompt_id\": \"T4-MATH_MATH-020_D\", \"domain_id\": \"T4-MATH\", \"domain_name\": \"Math Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MATH-020\", \"family\": \"LocalGlobalTrap\", \"case_type\": \"math\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MATH · Math Seal Domain\\n\\nCase:\\nMATH-020 · LocalGlobalTrap\\n\\nArm:\\nD\\n\\nExecution contract:\\nLocalGlobalTrap may be treated as a soft preference for T4-MATH. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"bf05dbd99509b3917b027b6591e4db9e7a119ad5ed87a91c0a459f9c4c12ea4f\"}, {\"prompt_id\": \"T4-CODEX_CODEX-001_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-001\", \"family\": \"MultiFileCausality\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-001 · MultiFileCausality\\n\\nArm:\\nC\\n\\nExecution contract:\\nMultiFileCausality is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"98d52f548d191caaab19dffcbd103f06bc391be97a7c0e6ae72d108112726ca4\"}, {\"prompt_id\": \"T4-CODEX_CODEX-001_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-001\", \"family\": \"MultiFileCausality\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-001 · MultiFileCausality\\n\\nArm:\\nD\\n\\nExecution contract:\\nMultiFileCausality may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"038c1363e2e06a4cfdffa93113a30f94632d625383dd3eaeeac51b21b9b32ff1\"}, {\"prompt_id\": \"T4-CODEX_CODEX-002_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-002\", \"family\": \"RegressionPreservation\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-002 · RegressionPreservation\\n\\nArm:\\nC\\n\\nExecution contract:\\nRegressionPreservation is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"7e72a0bf675be3051be2e7500f95dec1fe1b310d7bace12f11e1e9ea798fb02a\"}, {\"prompt_id\": \"T4-CODEX_CODEX-002_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-002\", \"family\": \"RegressionPreservation\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-002 · RegressionPreservation\\n\\nArm:\\nD\\n\\nExecution contract:\\nRegressionPreservation may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"58606918d68c16e198869be9508a318112d8be35d8474dc7f7317a201373a90a\"}, {\"prompt_id\": \"T4-CODEX_CODEX-003_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-003\", \"family\": \"APIContract\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-003 · APIContract\\n\\nArm:\\nC\\n\\nExecution contract:\\nAPIContract is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"f351c6b45a9492c338738b093d9e78e32f932574b3edf8f23ad26d95849e9d9e\"}, {\"prompt_id\": \"T4-CODEX_CODEX-003_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-003\", \"family\": \"APIContract\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-003 · APIContract\\n\\nArm:\\nD\\n\\nExecution contract:\\nAPIContract may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"e158d4b0a700958ebfd2cf641671df1da7c2b7e0eb86507c5047f97379f82dd8\"}, {\"prompt_id\": \"T4-CODEX_CODEX-004_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-004\", \"family\": \"PatchScope\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-004 · PatchScope\\n\\nArm:\\nC\\n\\nExecution contract:\\nPatchScope is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"d484885f8d2cba6dfcfe651db764def71ca5a19b7e6e0916eebef4fa1616674c\"}, {\"prompt_id\": \"T4-CODEX_CODEX-004_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-004\", \"family\": \"PatchScope\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-004 · PatchScope\\n\\nArm:\\nD\\n\\nExecution contract:\\nPatchScope may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"68b208c7786fe86f9f31c56c43ab4cca38f9451e4dbdd579068b015f1969d17f\"}, {\"prompt_id\": \"T4-CODEX_CODEX-005_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-005\", \"family\": \"ExecutableTestAuthority\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-005 · ExecutableTestAuthority\\n\\nArm:\\nC\\n\\nExecution contract:\\nExecutableTestAuthority is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"1045735a6843142442a244454118a23923202ef3a87b8caf956390d540abd9e4\"}, {\"prompt_id\": \"T4-CODEX_CODEX-005_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-005\", \"family\": \"ExecutableTestAuthority\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-005 · ExecutableTestAuthority\\n\\nArm:\\nD\\n\\nExecution contract:\\nExecutableTestAuthority may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"b69a98f38f5a487148f6e6be000f4f775150e508be7c6055b44ed2a1a96989ab\"}, {\"prompt_id\": \"T4-CODEX_CODEX-006_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-006\", \"family\": \"ForbiddenRegion\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-006 · ForbiddenRegion\\n\\nArm:\\nC\\n\\nExecution contract:\\nForbiddenRegion is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"80abd32b1217fd4bfb4cf20e1e5657714fd388380393797a2a121e1e152e1a8e\"}, {\"prompt_id\": \"T4-CODEX_CODEX-006_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-006\", \"family\": \"ForbiddenRegion\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-006 · ForbiddenRegion\\n\\nArm:\\nD\\n\\nExecution contract:\\nForbiddenRegion may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"e698d794b4137e31300994a0d0cefede79b75d5f6b8d1bbcc7d242ba3a4509b5\"}, {\"prompt_id\": \"T4-CODEX_CODEX-007_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-007\", \"family\": \"DependencyDirection\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-007 · DependencyDirection\\n\\nArm:\\nC\\n\\nExecution contract:\\nDependencyDirection is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"77d6fc8ab55cb259931fdbd433aba860306fafd047a078d82611d6826776d6c0\"}, {\"prompt_id\": \"T4-CODEX_CODEX-007_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-007\", \"family\": \"DependencyDirection\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-007 · DependencyDirection\\n\\nArm:\\nD\\n\\nExecution contract:\\nDependencyDirection may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"486d61074927a92e915e6dac0a1424ad7584f62dfb1abf23258dd93ab524567c\"}, {\"prompt_id\": \"T4-CODEX_CODEX-008_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-008\", \"family\": \"ErrorHandlingContract\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-008 · ErrorHandlingContract\\n\\nArm:\\nC\\n\\nExecution contract:\\nErrorHandlingContract is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"9239b369f48b35d570ec35cab24c6591e10a0af3950b3b8a7a36fc29650566b8\"}, {\"prompt_id\": \"T4-CODEX_CODEX-008_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-008\", \"family\": \"ErrorHandlingContract\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-008 · ErrorHandlingContract\\n\\nArm:\\nD\\n\\nExecution contract:\\nErrorHandlingContract may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"4e203a170e1da47615249baad451edee88983da201a2d09ef9f179650ab8e5ac\"}, {\"prompt_id\": \"T4-CODEX_CODEX-009_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-009\", \"family\": \"AsyncOrdering\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-009 · AsyncOrdering\\n\\nArm:\\nC\\n\\nExecution contract:\\nAsyncOrdering is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"18f7ad4e3d7b006af14cabe379bc2b472cd7b935a128904df5b5e50a7dcd98e8\"}, {\"prompt_id\": \"T4-CODEX_CODEX-009_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-009\", \"family\": \"AsyncOrdering\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-009 · AsyncOrdering\\n\\nArm:\\nD\\n\\nExecution contract:\\nAsyncOrdering may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"a313ddc6bfe4a7857921c192103a0f6c6c020d2a01df8f427b133e60f9bc08f6\"}, {\"prompt_id\": \"T4-CODEX_CODEX-010_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-010\", \"family\": \"ConfigVsCodePath\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-010 · ConfigVsCodePath\\n\\nArm:\\nC\\n\\nExecution contract:\\nConfigVsCodePath is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"c84538d8ab797a500bab132a83f6fd079f10d32be16c46dfba9a5043adc204de\"}, {\"prompt_id\": \"T4-CODEX_CODEX-010_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-010\", \"family\": \"ConfigVsCodePath\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-010 · ConfigVsCodePath\\n\\nArm:\\nD\\n\\nExecution contract:\\nConfigVsCodePath may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"86c810799f9dc4ae07fbfcb0a9cc29d640a43448421c3e9e07020d7dca4c2f9b\"}, {\"prompt_id\": \"T4-CODEX_CODEX-011_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-011\", \"family\": \"StateMutationBoundary\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-011 · StateMutationBoundary\\n\\nArm:\\nC\\n\\nExecution contract:\\nStateMutationBoundary is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"e7bc829ae3d2f8e38f8c4481cedf9f68e090fceea9aa5898ff113621e029d849\"}, {\"prompt_id\": \"T4-CODEX_CODEX-011_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-011\", \"family\": \"StateMutationBoundary\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-011 · StateMutationBoundary\\n\\nArm:\\nD\\n\\nExecution contract:\\nStateMutationBoundary may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"96c350309c4bb9718014bb4226d88f245eed4499a351e779cc1bb2e190e60596\"}, {\"prompt_id\": \"T4-CODEX_CODEX-012_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-012\", \"family\": \"DataShapeContract\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-012 · DataShapeContract\\n\\nArm:\\nC\\n\\nExecution contract:\\nDataShapeContract is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"52fc73cf0b9f5d0f037d4cb5f91882650f10c2bcbaf1c3a8f0adac3c7c0f4e07\"}, {\"prompt_id\": \"T4-CODEX_CODEX-012_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-012\", \"family\": \"DataShapeContract\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-012 · DataShapeContract\\n\\nArm:\\nD\\n\\nExecution contract:\\nDataShapeContract may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"3dcea3a402ebb6833322d103e843d66eae3b9bd7f17cb6548f6b5f80d1449687\"}, {\"prompt_id\": \"T4-CODEX_CODEX-013_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-013\", \"family\": \"SerializationBoundary\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-013 · SerializationBoundary\\n\\nArm:\\nC\\n\\nExecution contract:\\nSerializationBoundary is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6e2efb0924003f874ec0d7c56f4f72fab3f6570839a352508b6e133b857cfc44\"}, {\"prompt_id\": \"T4-CODEX_CODEX-013_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-013\", \"family\": \"SerializationBoundary\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-013 · SerializationBoundary\\n\\nArm:\\nD\\n\\nExecution contract:\\nSerializationBoundary may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"d833924fdca062dd058858a72f3a1640526ced7e086c380941c066c59079effe\"}, {\"prompt_id\": \"T4-CODEX_CODEX-014_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-014\", \"family\": \"SecurityInvariant\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-014 · SecurityInvariant\\n\\nArm:\\nC\\n\\nExecution contract:\\nSecurityInvariant is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"c65d2562052c833b425d7d795e8694a92c323240689a7eb8598c34bcf57b769b\"}, {\"prompt_id\": \"T4-CODEX_CODEX-014_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-014\", \"family\": \"SecurityInvariant\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-014 · SecurityInvariant\\n\\nArm:\\nD\\n\\nExecution contract:\\nSecurityInvariant may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"aab4b13384e7ef336b0746f116e4edab5a37632aa374c43c8dee12464d54f02a\"}, {\"prompt_id\": \"T4-CODEX_CODEX-015_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-015\", \"family\": \"ResourceCleanup\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-015 · ResourceCleanup\\n\\nArm:\\nC\\n\\nExecution contract:\\nResourceCleanup is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"62e674acdb647b1115e01a027dbb9c741dcb54b07a266dd0842e07c45eb2808b\"}, {\"prompt_id\": \"T4-CODEX_CODEX-015_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-015\", \"family\": \"ResourceCleanup\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-015 · ResourceCleanup\\n\\nArm:\\nD\\n\\nExecution contract:\\nResourceCleanup may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"995316f9245ddef32374a0321da5f6a7878c740cf3686350bf35e072fc038a9e\"}, {\"prompt_id\": \"T4-CODEX_CODEX-016_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-016\", \"family\": \"Idempotency\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-016 · Idempotency\\n\\nArm:\\nC\\n\\nExecution contract:\\nIdempotency is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"2a7be196297816adb5ddea3b3c00037d1e79db1721f674f2cd48c0c846c0131d\"}, {\"prompt_id\": \"T4-CODEX_CODEX-016_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-016\", \"family\": \"Idempotency\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-016 · Idempotency\\n\\nArm:\\nD\\n\\nExecution contract:\\nIdempotency may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"fe388721f42517c1f0cb0f3ce1cf55a1d0e722191fdbdac8128b94ad71d6dc00\"}, {\"prompt_id\": \"T4-CODEX_CODEX-017_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-017\", \"family\": \"RaceCondition\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-017 · RaceCondition\\n\\nArm:\\nC\\n\\nExecution contract:\\nRaceCondition is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"b46bd99aa400625dc376dac93b0c3629f993619c52c9449bb2bbb6e162070fa4\"}, {\"prompt_id\": \"T4-CODEX_CODEX-017_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-017\", \"family\": \"RaceCondition\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-017 · RaceCondition\\n\\nArm:\\nD\\n\\nExecution contract:\\nRaceCondition may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"31c0107f999888eddf2f5c58f91cb34a087b22213aef7b4a643197cb93ed2460\"}, {\"prompt_id\": \"T4-CODEX_CODEX-018_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-018\", \"family\": \"BackwardCompatibility\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-018 · BackwardCompatibility\\n\\nArm:\\nC\\n\\nExecution contract:\\nBackwardCompatibility is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"81956da9ab5b541b7d2a1dff88d3974e82f5f8c0a753124e1c30423bb92dc2f5\"}, {\"prompt_id\": \"T4-CODEX_CODEX-018_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-018\", \"family\": \"BackwardCompatibility\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-018 · BackwardCompatibility\\n\\nArm:\\nD\\n\\nExecution contract:\\nBackwardCompatibility may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"ab375a8928089710a955364fde079c3221e54071bff68f889e077870b252f341\"}, {\"prompt_id\": \"T4-CODEX_CODEX-019_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-019\", \"family\": \"NullHandling\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-019 · NullHandling\\n\\nArm:\\nC\\n\\nExecution contract:\\nNullHandling is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"c8ca8fa22266c2f37692aeb7e24d4a9fa0f59aa7e11f484d8cbc9d0491c80b9c\"}, {\"prompt_id\": \"T4-CODEX_CODEX-019_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-019\", \"family\": \"NullHandling\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-019 · NullHandling\\n\\nArm:\\nD\\n\\nExecution contract:\\nNullHandling may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"377788d45aa4ad4500661567feb82ee5fcea78b406f9d92a2b6f325516a56cab\"}, {\"prompt_id\": \"T4-CODEX_CODEX-020_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-020\", \"family\": \"TypeContract\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-020 · TypeContract\\n\\nArm:\\nC\\n\\nExecution contract:\\nTypeContract is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"bb0135f0aa6e02650da63487ea1aba851a9f339af2b2cc1489934119cecd1e99\"}, {\"prompt_id\": \"T4-CODEX_CODEX-020_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-020\", \"family\": \"TypeContract\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-020 · TypeContract\\n\\nArm:\\nD\\n\\nExecution contract:\\nTypeContract may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"bd1c77ac2f80e19ecb375115c51b4039deb0686497b8c780edd0e80e28223519\"}, {\"prompt_id\": \"T4-CODEX_CODEX-021_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-021\", \"family\": \"LoggingNonCausal\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-021 · LoggingNonCausal\\n\\nArm:\\nC\\n\\nExecution contract:\\nLoggingNonCausal is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"a628a07c223fbdc0afc2358b762c173cb837c377d769e4f1de2c3dacc01972ac\"}, {\"prompt_id\": \"T4-CODEX_CODEX-021_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-021\", \"family\": \"LoggingNonCausal\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-021 · LoggingNonCausal\\n\\nArm:\\nD\\n\\nExecution contract:\\nLoggingNonCausal may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6de7557c21b926a6159037ef3e40cd0041f217fa14723914e9a698f55d9b74ea\"}, {\"prompt_id\": \"T4-CODEX_CODEX-022_C\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-022\", \"family\": \"TestIsolation\", \"case_type\": \"code\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-022 · TestIsolation\\n\\nArm:\\nC\\n\\nExecution contract:\\nTestIsolation is a hard correctness organ for T4-CODEX. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"b738f9a1b4a6abfd4cb99a67f6feeb66c25c056caf583dc5c68f08a7fe562a20\"}, {\"prompt_id\": \"T4-CODEX_CODEX-022_D\", \"domain_id\": \"T4-CODEX\", \"domain_name\": \"Coding Extended Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CODEX-022\", \"family\": \"TestIsolation\", \"case_type\": \"code\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"fault_location\", \"patch\", \"patch_scope\", \"test_reasoning\", \"contract_check\", \"verification_result\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CODEX · Coding Extended Seal Domain\\n\\nCase:\\nCODEX-022 · TestIsolation\\n\\nArm:\\nD\\n\\nExecution contract:\\nTestIsolation may be treated as a soft preference for T4-CODEX. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"fault_location\\\": \\\"\\\",\\n \\\"patch\\\": \\\"\\\",\\n \\\"patch_scope\\\": \\\"\\\",\\n \\\"test_reasoning\\\": \\\"\\\",\\n \\\"contract_check\\\": \\\"\\\",\\n \\\"verification_result\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"23f51f5ce42b3d6a4b0a9f75f3ab7235e1768967670e9ff6cbfdf05e76a85bb5\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-001_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-001\", \"family\": \"ConstraintCoverage\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-001 · ConstraintCoverage\\n\\nArm:\\nC\\n\\nExecution contract:\\nConstraintCoverage is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"215c913b6030d38af6db7da648bba7f489fb6df98b8bfc9480362d24c4a62353\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-001_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-001\", \"family\": \"ConstraintCoverage\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-001 · ConstraintCoverage\\n\\nArm:\\nD\\n\\nExecution contract:\\nConstraintCoverage may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"cd4d6c723bf4d9a2105893618af1a5be86e115eb38b02535fc24137af1e0b660\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-002_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-002\", \"family\": \"StylePreservation\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-002 · StylePreservation\\n\\nArm:\\nC\\n\\nExecution contract:\\nStylePreservation is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"f16fedb26b3f68e4a6278ffd9b35284f7f0bd84d309e8417806ab55c380e2c2f\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-002_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-002\", \"family\": \"StylePreservation\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-002 · StylePreservation\\n\\nArm:\\nD\\n\\nExecution contract:\\nStylePreservation may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"3109810f0be4a398e5dbd106e5c7bac006d567b55aa1a7105490a72c989d5717\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-003_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-003\", \"family\": \"ForbiddenAvoidance\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-003 · ForbiddenAvoidance\\n\\nArm:\\nC\\n\\nExecution contract:\\nForbiddenAvoidance is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"f88654c12af8ad794062c74d00debed374cc27d7fe2ee7e4c77d486a6d2aa8b5\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-003_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-003\", \"family\": \"ForbiddenAvoidance\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-003 · ForbiddenAvoidance\\n\\nArm:\\nD\\n\\nExecution contract:\\nForbiddenAvoidance may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"86e37c1038f7cc20ec6c4e3e1f874a2d8ab211a28cd0632903f200dbb084f631\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-004_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-004\", \"family\": \"NarrativeConsistency\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-004 · NarrativeConsistency\\n\\nArm:\\nC\\n\\nExecution contract:\\nNarrativeConsistency is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6fdcb863d1d09755440a542bf7660f31968c8e49f8355677e99e68ac38f64b92\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-004_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-004\", \"family\": \"NarrativeConsistency\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-004 · NarrativeConsistency\\n\\nArm:\\nD\\n\\nExecution contract:\\nNarrativeConsistency may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"c4776875b0578ccc0ead74ceebcae05f1a9840fb685016794069b1a9449d8423\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-005_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-005\", \"family\": \"InstructionHierarchy\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-005 · InstructionHierarchy\\n\\nArm:\\nC\\n\\nExecution contract:\\nInstructionHierarchy is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"34f5480658bd5d06e6e9d3d65189586c3ec7e3e58794f6ec868e3280348316f8\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-005_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-005\", \"family\": \"InstructionHierarchy\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-005 · InstructionHierarchy\\n\\nArm:\\nD\\n\\nExecution contract:\\nInstructionHierarchy may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"17226cd906cc46f301c341d3d1cd1c4dc79a8d808f14a9e62211bb7d9df333b9\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-006_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-006\", \"family\": \"SemanticCompression\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-006 · SemanticCompression\\n\\nArm:\\nC\\n\\nExecution contract:\\nSemanticCompression is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"c6b720bd3b83036894722256e77f37d420fbc92631e91c4772788afa2682fdc3\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-006_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-006\", \"family\": \"SemanticCompression\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-006 · SemanticCompression\\n\\nArm:\\nD\\n\\nExecution contract:\\nSemanticCompression may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"ebe758a878ee09728635585bee5b8de522a023d683fac72f4ffe515501ea1b3d\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-007_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-007\", \"family\": \"ToneLock\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-007 · ToneLock\\n\\nArm:\\nC\\n\\nExecution contract:\\nToneLock is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6d4e919007170aa7930e4cf5b692ab708feef0e48ee8eccae0b97df1f0a952aa\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-007_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-007\", \"family\": \"ToneLock\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-007 · ToneLock\\n\\nArm:\\nD\\n\\nExecution contract:\\nToneLock may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"da9f23a09eec2137a407bb77427dd373bbbcff789e39fd597b7ec717114c95bc\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-008_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-008\", \"family\": \"SymbolMap\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-008 · SymbolMap\\n\\nArm:\\nC\\n\\nExecution contract:\\nSymbolMap is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"a696a7911318766969ce6d59ed67b0b6fefc19f6b936211e08713723a8ee295a\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-008_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-008\", \"family\": \"SymbolMap\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-008 · SymbolMap\\n\\nArm:\\nD\\n\\nExecution contract:\\nSymbolMap may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"c8cef8fac1d79de91fc00a650329699f5759ded00fbe7408ba580e492e9fc82a\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-009_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-009\", \"family\": \"POVConsistency\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-009 · POVConsistency\\n\\nArm:\\nC\\n\\nExecution contract:\\nPOVConsistency is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"56ad7864a33ab08369f74ecb6643b90ed282f354b5f0199e44ce194590087d88\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-009_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-009\", \"family\": \"POVConsistency\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-009 · POVConsistency\\n\\nArm:\\nD\\n\\nExecution contract:\\nPOVConsistency may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"5844fde8a2c364f8d878bca3f2e493385d953bc7488653fe884aa7d4c8e2900a\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-010_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-010\", \"family\": \"TemporalContinuity\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-010 · TemporalContinuity\\n\\nArm:\\nC\\n\\nExecution contract:\\nTemporalContinuity is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"1491412f7defc44a7453bdb4275f0f68fc70d51dc0c6ec61bbfad50f74c557a6\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-010_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-010\", \"family\": \"TemporalContinuity\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-010 · TemporalContinuity\\n\\nArm:\\nD\\n\\nExecution contract:\\nTemporalContinuity may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"5270e4e0a65bc9ab35b462b1653d480b9ce88d94a953b072e6bd66b9f769fd13\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-011_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-011\", \"family\": \"GenreBoundary\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-011 · GenreBoundary\\n\\nArm:\\nC\\n\\nExecution contract:\\nGenreBoundary is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"51d1496bfff24f919f8c9f88be13acb9941255e66bc16edd13fb2c904b8dc9dc\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-011_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-011\", \"family\": \"GenreBoundary\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-011 · GenreBoundary\\n\\nArm:\\nD\\n\\nExecution contract:\\nGenreBoundary may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"031edc5fc82ab4aa2130f32458cd7fc9209edd0141a8ee06ba0479c916de73dc\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-012_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-012\", \"family\": \"MetaphorControl\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-012 · MetaphorControl\\n\\nArm:\\nC\\n\\nExecution contract:\\nMetaphorControl is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"3c43d19e4eacfe10fc53fa6de8d119831306a58b0925fb91b5b0ac4823e658a7\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-012_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-012\", \"family\": \"MetaphorControl\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-012 · MetaphorControl\\n\\nArm:\\nD\\n\\nExecution contract:\\nMetaphorControl may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"ee0f1cc0bef6ce12b387b93561266f8a9292ef2b6f19027fdf30bcafff8e4a78\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-013_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-013\", \"family\": \"CharacterVoice\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-013 · CharacterVoice\\n\\nArm:\\nC\\n\\nExecution contract:\\nCharacterVoice is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"a6731faedb35e269d0c79cedd3187ce18f3d130997ed4c6d02ea3503176b0898\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-013_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-013\", \"family\": \"CharacterVoice\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-013 · CharacterVoice\\n\\nArm:\\nD\\n\\nExecution contract:\\nCharacterVoice may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"e318869a121431da9323716e2ffa474ab7f1dc9ffe517762f25d36ddb88980f4\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-014_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-014\", \"family\": \"MotifPersistence\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-014 · MotifPersistence\\n\\nArm:\\nC\\n\\nExecution contract:\\nMotifPersistence is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"f0d9d11950b6359ba716aa3d8d9d3004e3b5f9a571ef9e7fa3158ac667ce9ac8\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-014_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-014\", \"family\": \"MotifPersistence\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-014 · MotifPersistence\\n\\nArm:\\nD\\n\\nExecution contract:\\nMotifPersistence may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"62f5ea2f70d425b757feeee80d297c02b513d4b41c6bc1b8aaece23dc11fdfcc\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-015_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-015\", \"family\": \"EndingConstraint\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-015 · EndingConstraint\\n\\nArm:\\nC\\n\\nExecution contract:\\nEndingConstraint is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"d2b29e67b14d46a93e3a3686ce202be983a0aa5ced0454d944d49c7c65164a8a\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-015_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-015\", \"family\": \"EndingConstraint\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-015 · EndingConstraint\\n\\nArm:\\nD\\n\\nExecution contract:\\nEndingConstraint may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"79e8b4c8be5cc53facef2abfac46ec320f8de1a592fa5cb5f638ed6bd898b0c9\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-016_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-016\", \"family\": \"NonLiteralTrap\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-016 · NonLiteralTrap\\n\\nArm:\\nC\\n\\nExecution contract:\\nNonLiteralTrap is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"97b25800fa85d0c2331ca64038590910a32e0228d3dd7a563a39c45a50c267c9\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-016_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-016\", \"family\": \"NonLiteralTrap\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-016 · NonLiteralTrap\\n\\nArm:\\nD\\n\\nExecution contract:\\nNonLiteralTrap may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"1c02d08ecfafd2100fac1cd398306b2f42fadea42e002666569b32aa29a49e92\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-017_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-017\", \"family\": \"DensityControl\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-017 · DensityControl\\n\\nArm:\\nC\\n\\nExecution contract:\\nDensityControl is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"287230c337eeeda6abf0e2213388bc5660d2457de135b3fb458e343f019d9712\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-017_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-017\", \"family\": \"DensityControl\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-017 · DensityControl\\n\\nArm:\\nD\\n\\nExecution contract:\\nDensityControl may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"dd3f63d751d279e72c7c7eaddad4037b797c48b507b40c2eb3f0703563180d75\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-018_C\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-018\", \"family\": \"SurfaceVsDeepStyle\", \"case_type\": \"creative\", \"arm\": \"C\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-018 · SurfaceVsDeepStyle\\n\\nArm:\\nC\\n\\nExecution contract:\\nSurfaceVsDeepStyle is a hard correctness organ for T4-CREATIVE. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"7055f6c945c6377876e726aec6f7c55702ba1ccad64af9a74fddc01fedd99094\"}, {\"prompt_id\": \"T4-CREATIVE_CREATIVE-018_D\", \"domain_id\": \"T4-CREATIVE\", \"domain_name\": \"Creative Constraint Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"CREATIVE-018\", \"family\": \"SurfaceVsDeepStyle\", \"case_type\": \"creative\", \"arm\": \"D\", \"required_keys\": [\"constraint_ledger\", \"style_anchor\", \"forbidden_check\", \"narrative_check\", \"hierarchy_check\", \"final_output\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-CREATIVE · Creative Constraint Seal Domain\\n\\nCase:\\nCREATIVE-018 · SurfaceVsDeepStyle\\n\\nArm:\\nD\\n\\nExecution contract:\\nSurfaceVsDeepStyle may be treated as a soft preference for T4-CREATIVE. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"constraint_ledger\\\": \\\"\\\",\\n \\\"style_anchor\\\": \\\"\\\",\\n \\\"forbidden_check\\\": \\\"\\\",\\n \\\"narrative_check\\\": \\\"\\\",\\n \\\"hierarchy_check\\\": \\\"\\\",\\n \\\"final_output\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6ebd709555cd91d3e41765d5f05cb9e5f8270150d9ca90f6737123a965a048e6\"}, {\"prompt_id\": \"T4-MULTI_MULTI-001_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-001\", \"family\": \"OCRUncertainty\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-001 · OCRUncertainty\\n\\nArm:\\nC\\n\\nExecution contract:\\nOCRUncertainty is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"bc9bd4c8e60e801fad33446daafaf54c4dba2521b1ed336cd418275107cc0951\"}, {\"prompt_id\": \"T4-MULTI_MULTI-001_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-001\", \"family\": \"OCRUncertainty\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-001 · OCRUncertainty\\n\\nArm:\\nD\\n\\nExecution contract:\\nOCRUncertainty may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"85ce76b030808fed1877c154cea6310977810be57ded99bc64c8108809bf966e\"}, {\"prompt_id\": \"T4-MULTI_MULTI-002_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-002\", \"family\": \"ChartAxisGrounding\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-002 · ChartAxisGrounding\\n\\nArm:\\nC\\n\\nExecution contract:\\nChartAxisGrounding is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"d2bc78a5d665bb2c8b1058813ae1a5e106d023e3184b29b8f431497ad533dc0c\"}, {\"prompt_id\": \"T4-MULTI_MULTI-002_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-002\", \"family\": \"ChartAxisGrounding\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-002 · ChartAxisGrounding\\n\\nArm:\\nD\\n\\nExecution contract:\\nChartAxisGrounding may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"3499d100f89a44cec24f2b0b78f74e0b1949c1a43f67a22ddabf7a162fc073a4\"}, {\"prompt_id\": \"T4-MULTI_MULTI-003_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-003\", \"family\": \"TableAlignment\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-003 · TableAlignment\\n\\nArm:\\nC\\n\\nExecution contract:\\nTableAlignment is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"135619e36eca7f19d85fa2ddc55aa71b1c2861c1c8ceb2b159add30d1c2bec32\"}, {\"prompt_id\": \"T4-MULTI_MULTI-003_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-003\", \"family\": \"TableAlignment\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-003 · TableAlignment\\n\\nArm:\\nD\\n\\nExecution contract:\\nTableAlignment may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"2b77dcbc25a4759be4d06be34886058130bdf2856c6311acf726ddccd3e2d2ee\"}, {\"prompt_id\": \"T4-MULTI_MULTI-004_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-004\", \"family\": \"ImageTextConflict\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-004 · ImageTextConflict\\n\\nArm:\\nC\\n\\nExecution contract:\\nImageTextConflict is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"c22fd806ed3cc97919e96f2accae47afb2ab9c46844c3102221bdeeb113a06c3\"}, {\"prompt_id\": \"T4-MULTI_MULTI-004_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-004\", \"family\": \"ImageTextConflict\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-004 · ImageTextConflict\\n\\nArm:\\nD\\n\\nExecution contract:\\nImageTextConflict may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"439dcc676d8043ad55ec90b4b28c220363bf376da9d4f4c9c088b543482515d8\"}, {\"prompt_id\": \"T4-MULTI_MULTI-005_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-005\", \"family\": \"VisualEvidenceMissing\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-005 · VisualEvidenceMissing\\n\\nArm:\\nC\\n\\nExecution contract:\\nVisualEvidenceMissing is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"41779d78abc1ee73b5f2aaa19fcf49d539867b477221f1dc9bd693f2e4e2bf87\"}, {\"prompt_id\": \"T4-MULTI_MULTI-005_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-005\", \"family\": \"VisualEvidenceMissing\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-005 · VisualEvidenceMissing\\n\\nArm:\\nD\\n\\nExecution contract:\\nVisualEvidenceMissing may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"b76c0a0b85b5eca7721bbd91738148adf431bd9f980f345040d3a37167487fc6\"}, {\"prompt_id\": \"T4-MULTI_MULTI-006_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-006\", \"family\": \"SourceConfidence\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-006 · SourceConfidence\\n\\nArm:\\nC\\n\\nExecution contract:\\nSourceConfidence is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"a06630d039271bccbb486ae95bbfa2144c0809cebe7e8a7c26d66190c6c8b9f2\"}, {\"prompt_id\": \"T4-MULTI_MULTI-006_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-006\", \"family\": \"SourceConfidence\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-006 · SourceConfidence\\n\\nArm:\\nD\\n\\nExecution contract:\\nSourceConfidence may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"0c8f6e948c7697c1a617eff1e6f5802a3a34c77bfa333b8db6517f84067d2a96\"}, {\"prompt_id\": \"T4-MULTI_MULTI-007_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-007\", \"family\": \"LegendGrounding\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-007 · LegendGrounding\\n\\nArm:\\nC\\n\\nExecution contract:\\nLegendGrounding is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"8277eb1203066f9e09edb8a904468ca1ac9e45de7379365f64fc3667f9ea9908\"}, {\"prompt_id\": \"T4-MULTI_MULTI-007_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-007\", \"family\": \"LegendGrounding\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-007 · LegendGrounding\\n\\nArm:\\nD\\n\\nExecution contract:\\nLegendGrounding may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"2bf848d11abae6f9da715dc04705491cce2b08e32f8f870327251062e1cc43a0\"}, {\"prompt_id\": \"T4-MULTI_MULTI-008_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-008\", \"family\": \"SpatialRelation\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-008 · SpatialRelation\\n\\nArm:\\nC\\n\\nExecution contract:\\nSpatialRelation is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"4fb6165f0fd4e4cc2ab492cf2915e884b633bd73d0ec06d0271f34e19efad9df\"}, {\"prompt_id\": \"T4-MULTI_MULTI-008_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-008\", \"family\": \"SpatialRelation\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-008 · SpatialRelation\\n\\nArm:\\nD\\n\\nExecution contract:\\nSpatialRelation may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"d265e6d129d0b0c0ab2ef26ce7f688ce19ea8b29d291362f09abae66ddcac595\"}, {\"prompt_id\": \"T4-MULTI_MULTI-009_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-009\", \"family\": \"UnitScaleReading\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-009 · UnitScaleReading\\n\\nArm:\\nC\\n\\nExecution contract:\\nUnitScaleReading is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"b82f6bcde4ba4819140e3f594ec7a04e5cf184a938f585fde52dff5a0a4265c8\"}, {\"prompt_id\": \"T4-MULTI_MULTI-009_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-009\", \"family\": \"UnitScaleReading\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-009 · UnitScaleReading\\n\\nArm:\\nD\\n\\nExecution contract:\\nUnitScaleReading may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6f8ea11084e98838fa5995e48a54dc5180e1f8b9ca78f491bb58392d9ece00b4\"}, {\"prompt_id\": \"T4-MULTI_MULTI-010_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-010\", \"family\": \"ColorSeriesMapping\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-010 · ColorSeriesMapping\\n\\nArm:\\nC\\n\\nExecution contract:\\nColorSeriesMapping is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6dabb2e954edd9d245310b6858df66b3f930825fe84500ba741bbb50f6d253fe\"}, {\"prompt_id\": \"T4-MULTI_MULTI-010_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-010\", \"family\": \"ColorSeriesMapping\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-010 · ColorSeriesMapping\\n\\nArm:\\nD\\n\\nExecution contract:\\nColorSeriesMapping may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"f62ac9d4c76e6d629731c1ecab80276e238f9b5307d242e10af25b3d72031971\"}, {\"prompt_id\": \"T4-MULTI_MULTI-011_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-011\", \"family\": \"PartialOcclusion\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-011 · PartialOcclusion\\n\\nArm:\\nC\\n\\nExecution contract:\\nPartialOcclusion is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"fa3021cc9660a2edcbf6fab4752ae99a41b69802672f707af59437ae788880fc\"}, {\"prompt_id\": \"T4-MULTI_MULTI-011_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-011\", \"family\": \"PartialOcclusion\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-011 · PartialOcclusion\\n\\nArm:\\nD\\n\\nExecution contract:\\nPartialOcclusion may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"915a4fd70f47df57cc112ccd195ebd506802cdd483f5d719bcf7c4de909749bb\"}, {\"prompt_id\": \"T4-MULTI_MULTI-012_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-012\", \"family\": \"HandwrittenText\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-012 · HandwrittenText\\n\\nArm:\\nC\\n\\nExecution contract:\\nHandwrittenText is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6f86f3af017f397f34398278a5c3aafaf91831dccc8ec2b0e6846636e7c291cb\"}, {\"prompt_id\": \"T4-MULTI_MULTI-012_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-012\", \"family\": \"HandwrittenText\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-012 · HandwrittenText\\n\\nArm:\\nD\\n\\nExecution contract:\\nHandwrittenText may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"2bfa1e8b4ffeb9269950c12f437e10752fb79d3b77bf6cbb37b0d3df02d58243\"}, {\"prompt_id\": \"T4-MULTI_MULTI-013_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-013\", \"family\": \"SmallFontOCR\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-013 · SmallFontOCR\\n\\nArm:\\nC\\n\\nExecution contract:\\nSmallFontOCR is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"cc67a27003d35fc5a4f6ef3a7b431995202c6a5de7de5ae4e4749b3227a7a8a0\"}, {\"prompt_id\": \"T4-MULTI_MULTI-013_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-013\", \"family\": \"SmallFontOCR\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-013 · SmallFontOCR\\n\\nArm:\\nD\\n\\nExecution contract:\\nSmallFontOCR may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"b200ac011f494caf26521123ac15b977a63e3ca6f8540fff7764bd346d7dd420\"}, {\"prompt_id\": \"T4-MULTI_MULTI-014_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-014\", \"family\": \"DiagramArrowDirection\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-014 · DiagramArrowDirection\\n\\nArm:\\nC\\n\\nExecution contract:\\nDiagramArrowDirection is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"fdc5173ab76a8ba6d6ba05ef12d46870d3f81c07be37ac98dc0a08b2f576b423\"}, {\"prompt_id\": \"T4-MULTI_MULTI-014_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-014\", \"family\": \"DiagramArrowDirection\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-014 · DiagramArrowDirection\\n\\nArm:\\nD\\n\\nExecution contract:\\nDiagramArrowDirection may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6bd78ca7d8f47e42f65120ce96a18f4004048ee2028eec0faf0895113f565d5c\"}, {\"prompt_id\": \"T4-MULTI_MULTI-015_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-015\", \"family\": \"MapLegend\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-015 · MapLegend\\n\\nArm:\\nC\\n\\nExecution contract:\\nMapLegend is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"3354de750a96a7cb8fdfc790d6dabe1d342a3ae66325555bdcad86b6fec4880e\"}, {\"prompt_id\": \"T4-MULTI_MULTI-015_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-015\", \"family\": \"MapLegend\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-015 · MapLegend\\n\\nArm:\\nD\\n\\nExecution contract:\\nMapLegend may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"1d77f1a5117e6c5d29a8eb8077a4bf41adbd6fbdfafa019d671124a2ac4b631d\"}, {\"prompt_id\": \"T4-MULTI_MULTI-016_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-016\", \"family\": \"BeforeAfterPanel\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-016 · BeforeAfterPanel\\n\\nArm:\\nC\\n\\nExecution contract:\\nBeforeAfterPanel is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"35b94a8505be88358b7b9ad8b23ab2da677538b97c507e95b60067df8dbc61c7\"}, {\"prompt_id\": \"T4-MULTI_MULTI-016_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-016\", \"family\": \"BeforeAfterPanel\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-016 · BeforeAfterPanel\\n\\nArm:\\nD\\n\\nExecution contract:\\nBeforeAfterPanel may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"e8ffb54fde65ad6fd0e9da2785e8dc0dae135b5e6d63dbad9c2d53811432b347\"}, {\"prompt_id\": \"T4-MULTI_MULTI-017_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-017\", \"family\": \"MultiObjectCounting\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-017 · MultiObjectCounting\\n\\nArm:\\nC\\n\\nExecution contract:\\nMultiObjectCounting is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"4e6256da2ff69ed755607c0c70b4b7ac0f0fe283b9b39f42a83739b2dfe417be\"}, {\"prompt_id\": \"T4-MULTI_MULTI-017_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-017\", \"family\": \"MultiObjectCounting\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-017 · MultiObjectCounting\\n\\nArm:\\nD\\n\\nExecution contract:\\nMultiObjectCounting may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"15268f94ef923574abfa019d9cd9cb3621b5b29bc730ef01898b357d1a3cb730\"}, {\"prompt_id\": \"T4-MULTI_MULTI-018_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-018\", \"family\": \"VisualNegation\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-018 · VisualNegation\\n\\nArm:\\nC\\n\\nExecution contract:\\nVisualNegation is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"0b5754791ed15278778be46b5cbdcaaab47028dd4e4b3b8fba28a35236255ab0\"}, {\"prompt_id\": \"T4-MULTI_MULTI-018_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-018\", \"family\": \"VisualNegation\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-018 · VisualNegation\\n\\nArm:\\nD\\n\\nExecution contract:\\nVisualNegation may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"48244536f72b0d23c086ab9e6e4ba54c3912537fe6ae741bf080891b74818e12\"}, {\"prompt_id\": \"T4-MULTI_MULTI-019_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-019\", \"family\": \"ScreenshotUIState\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-019 · ScreenshotUIState\\n\\nArm:\\nC\\n\\nExecution contract:\\nScreenshotUIState is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"2e249600265af051786503c1a7b459ccb70c97ef717afd061053187bee86fcb0\"}, {\"prompt_id\": \"T4-MULTI_MULTI-019_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-019\", \"family\": \"ScreenshotUIState\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-019 · ScreenshotUIState\\n\\nArm:\\nD\\n\\nExecution contract:\\nScreenshotUIState may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"9e46cc785b6ad793066e0b24f4b49139aa0bd26b0729f660bb71e80da69de265\"}, {\"prompt_id\": \"T4-MULTI_MULTI-020_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-020\", \"family\": \"TableHeaderAmbiguity\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-020 · TableHeaderAmbiguity\\n\\nArm:\\nC\\n\\nExecution contract:\\nTableHeaderAmbiguity is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"767efc6adb401a7eb303d3d70466a986123a6da207cc02a5ed200d891d370b0c\"}, {\"prompt_id\": \"T4-MULTI_MULTI-020_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-020\", \"family\": \"TableHeaderAmbiguity\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-020 · TableHeaderAmbiguity\\n\\nArm:\\nD\\n\\nExecution contract:\\nTableHeaderAmbiguity may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"28cf0a6f765d730955b8f32ee6d955079d14005cac5f8ae69c152b503de22787\"}, {\"prompt_id\": \"T4-MULTI_MULTI-021_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-021\", \"family\": \"ChartBaselineTrap\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-021 · ChartBaselineTrap\\n\\nArm:\\nC\\n\\nExecution contract:\\nChartBaselineTrap is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"2382c6b449e463639caf48a1589cd07db3d4d27d15398a6db4fa5b7219c73853\"}, {\"prompt_id\": \"T4-MULTI_MULTI-021_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-021\", \"family\": \"ChartBaselineTrap\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-021 · ChartBaselineTrap\\n\\nArm:\\nD\\n\\nExecution contract:\\nChartBaselineTrap may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"c3245de62b13d9c8746aae3fcb2287806dcbe6c7f7d6ef468a9e103ab9086580\"}, {\"prompt_id\": \"T4-MULTI_MULTI-022_C\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-022\", \"family\": \"ImageCaptionConflict\", \"case_type\": \"multi\", \"arm\": \"C\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-022 · ImageCaptionConflict\\n\\nArm:\\nC\\n\\nExecution contract:\\nImageCaptionConflict is a hard correctness organ for T4-MULTI. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"25f4fff320f4fc388c136c4e1a6b5dbc2a755def0f3d2b02a70a9bd85e6efd9a\"}, {\"prompt_id\": \"T4-MULTI_MULTI-022_D\", \"domain_id\": \"T4-MULTI\", \"domain_name\": \"Multimodal OCR Visual Grounding Seal Domain\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"MULTI-022\", \"family\": \"ImageCaptionConflict\", \"case_type\": \"multi\", \"arm\": \"D\", \"required_keys\": [\"visual_evidence\", \"text_evidence\", \"uncertainty_note\", \"grounding_check\", \"conflict_check\", \"final_answer\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-MULTI · Multimodal OCR Visual Grounding Seal Domain\\n\\nCase:\\nMULTI-022 · ImageCaptionConflict\\n\\nArm:\\nD\\n\\nExecution contract:\\nImageCaptionConflict may be treated as a soft preference for T4-MULTI. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"visual_evidence\\\": \\\"\\\",\\n \\\"text_evidence\\\": \\\"\\\",\\n \\\"uncertainty_note\\\": \\\"\\\",\\n \\\"grounding_check\\\": \\\"\\\",\\n \\\"conflict_check\\\": \\\"\\\",\\n \\\"final_answer\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"afbbcf2e78e2d960ddfd4e17819517f382d5163a96663933aee59733c2144f1b\"}, {\"prompt_id\": \"T4-X_X-001_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-001\", \"family\": \"DomainRouting\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-001 · DomainRouting\\n\\nArm:\\nC\\n\\nExecution contract:\\nDomainRouting is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"8dfd5372fdaa2defeedef4f7b51e014d4dcc2cff4ad6e0947ad942814cfe5f64\"}, {\"prompt_id\": \"T4-X_X-001_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-001\", \"family\": \"DomainRouting\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-001 · DomainRouting\\n\\nArm:\\nD\\n\\nExecution contract:\\nDomainRouting may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"72ba5644ded620c58a3ebf8a2579a3409f41b24178e7f905f678ab70b8d40d66\"}, {\"prompt_id\": \"T4-X_X-002_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-002\", \"family\": \"ClaimCeiling\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-002 · ClaimCeiling\\n\\nArm:\\nC\\n\\nExecution contract:\\nClaimCeiling is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6bb875bd0f792679d95b97d90aa3161a05415d3fef72527ba7ce6a32c822101e\"}, {\"prompt_id\": \"T4-X_X-002_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-002\", \"family\": \"ClaimCeiling\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-002 · ClaimCeiling\\n\\nArm:\\nD\\n\\nExecution contract:\\nClaimCeiling may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"fb5c2678281081fee978cb75e59e40234db81021252ea2fe9e97e03b00b8a8aa\"}, {\"prompt_id\": \"T4-X_X-003_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-003\", \"family\": \"EvidenceSeparation\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-003 · EvidenceSeparation\\n\\nArm:\\nC\\n\\nExecution contract:\\nEvidenceSeparation is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"44210891f9b7f59fa07afd2260b0d315eaf03e27761420f5973bba3bb9e4113d\"}, {\"prompt_id\": \"T4-X_X-003_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-003\", \"family\": \"EvidenceSeparation\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-003 · EvidenceSeparation\\n\\nArm:\\nD\\n\\nExecution contract:\\nEvidenceSeparation may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"4b523073be000aab62bafae4be392f6aba2c9a268546041c0f25be5d444a7e6f\"}, {\"prompt_id\": \"T4-X_X-004_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-004\", \"family\": \"ManifestIntegrity\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-004 · ManifestIntegrity\\n\\nArm:\\nC\\n\\nExecution contract:\\nManifestIntegrity is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"16067774b9e474714617d6d1853f38dd1ee88bc2ec71ee6a443fcd1ecee2c96e\"}, {\"prompt_id\": \"T4-X_X-004_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-004\", \"family\": \"ManifestIntegrity\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-004 · ManifestIntegrity\\n\\nArm:\\nD\\n\\nExecution contract:\\nManifestIntegrity may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"848cce1260395045751e3a49530833c875c8c06534b5cfcbe653939210ae4ada\"}, {\"prompt_id\": \"T4-X_X-005_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-005\", \"family\": \"PublicSafeSummary\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-005 · PublicSafeSummary\\n\\nArm:\\nC\\n\\nExecution contract:\\nPublicSafeSummary is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"0d6359ccfa54d39ad32f1d67a7fbfe670689977c280061d14d2305dd24ffcd80\"}, {\"prompt_id\": \"T4-X_X-005_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-005\", \"family\": \"PublicSafeSummary\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-005 · PublicSafeSummary\\n\\nArm:\\nD\\n\\nExecution contract:\\nPublicSafeSummary may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"05d30ccbea2db3e8d65199372417b00e1dbca3fdb951125f32bce6cc8a3f8557\"}, {\"prompt_id\": \"T4-X_X-006_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-006\", \"family\": \"DEFSeparation\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-006 · DEFSeparation\\n\\nArm:\\nC\\n\\nExecution contract:\\nDEFSeparation is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"4b7d0ec37bb2ec471dd47103d7cbb6a6dabe6697931ff358a63b53db3c62a6d1\"}, {\"prompt_id\": \"T4-X_X-006_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-006\", \"family\": \"DEFSeparation\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-006 · DEFSeparation\\n\\nArm:\\nD\\n\\nExecution contract:\\nDEFSeparation may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"d8f4cca0211e3023f207d85ca81c13c0ea5d43e94dbd55462f1ef417cc7ba931\"}, {\"prompt_id\": \"T4-X_X-007_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-007\", \"family\": \"ExpansionGate\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-007 · ExpansionGate\\n\\nArm:\\nC\\n\\nExecution contract:\\nExpansionGate is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"20cc09a7f0115a20f9d70a32bbcdd30423a99ffd21516ac29128a28b7ee537fe\"}, {\"prompt_id\": \"T4-X_X-007_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-007\", \"family\": \"ExpansionGate\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-007 · ExpansionGate\\n\\nArm:\\nD\\n\\nExecution contract:\\nExpansionGate may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"58edc872ec5f8439fecd820e9e03a01d828ddd3ecb51d6b634fec2176d2bb914\"}, {\"prompt_id\": \"T4-X_X-008_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-008\", \"family\": \"EvidencePackageGate\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-008 · EvidencePackageGate\\n\\nArm:\\nC\\n\\nExecution contract:\\nEvidencePackageGate is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"abaccd028be1ddd1b539f0787582f2a92993284de5f34bc051927e7ee3674cc6\"}, {\"prompt_id\": \"T4-X_X-008_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-008\", \"family\": \"EvidencePackageGate\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-008 · EvidencePackageGate\\n\\nArm:\\nD\\n\\nExecution contract:\\nEvidencePackageGate may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"40ec3addc668f3d1cf69087ce6cf092dba2195d9714eff7ca00f62125f433bf2\"}, {\"prompt_id\": \"T4-X_X-009_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-009\", \"family\": \"ReplayAudit\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-009 · ReplayAudit\\n\\nArm:\\nC\\n\\nExecution contract:\\nReplayAudit is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"820eab5d3c5ec0039b2e80ec9dbda6ee6214a6d4a1f59addb24f3cf45a62c01b\"}, {\"prompt_id\": \"T4-X_X-009_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-009\", \"family\": \"ReplayAudit\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-009 · ReplayAudit\\n\\nArm:\\nD\\n\\nExecution contract:\\nReplayAudit may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"34f1a9408f3bc713b77ad2cedeaaaea0b4ed9163f4423422520eda3e6c30a07c\"}, {\"prompt_id\": \"T4-X_X-010_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-010\", \"family\": \"PublicClaimFilter\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-010 · PublicClaimFilter\\n\\nArm:\\nC\\n\\nExecution contract:\\nPublicClaimFilter is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"adab388dcf70c40a27751a81700c956c5d3b5034b67570510e7f7d9053d46917\"}, {\"prompt_id\": \"T4-X_X-010_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-010\", \"family\": \"PublicClaimFilter\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-010 · PublicClaimFilter\\n\\nArm:\\nD\\n\\nExecution contract:\\nPublicClaimFilter may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"2804874d5422c93158b248c1bff3bfb84c8e87ea6eb432894780aa115fd60e81\"}, {\"prompt_id\": \"T4-X_X-011_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-011\", \"family\": \"CrossDomainEvidenceBridge\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-011 · CrossDomainEvidenceBridge\\n\\nArm:\\nC\\n\\nExecution contract:\\nCrossDomainEvidenceBridge is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"1958a23a0ad6b97b0177587bd09df2f01f72523be26b116036cfd62d678fe975\"}, {\"prompt_id\": \"T4-X_X-011_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-011\", \"family\": \"CrossDomainEvidenceBridge\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-011 · CrossDomainEvidenceBridge\\n\\nArm:\\nD\\n\\nExecution contract:\\nCrossDomainEvidenceBridge may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"1923096b9d0ce94399160a16f91d4d4001a144da689fbd5094669fadb1e14b7f\"}, {\"prompt_id\": \"T4-X_X-012_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-012\", \"family\": \"ScorerContamination\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-012 · ScorerContamination\\n\\nArm:\\nC\\n\\nExecution contract:\\nScorerContamination is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"fdfb771d25604dec1a19cc6727166922ca36e9ceaacf0a06e634f7a9f3f30e8d\"}, {\"prompt_id\": \"T4-X_X-012_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-012\", \"family\": \"ScorerContamination\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-012 · ScorerContamination\\n\\nArm:\\nD\\n\\nExecution contract:\\nScorerContamination may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"18d1dc573faa28d73c1f11907bb3f695f1f581536df7e071600bd92bff56b9b6\"}, {\"prompt_id\": \"T4-X_X-013_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-013\", \"family\": \"ParserLedgerIntegrity\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-013 · ParserLedgerIntegrity\\n\\nArm:\\nC\\n\\nExecution contract:\\nParserLedgerIntegrity is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"b73cab6b1751c2a30ecd4d22410abd2d95df4a19eb75807003bf5f9b039fcee4\"}, {\"prompt_id\": \"T4-X_X-013_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-013\", \"family\": \"ParserLedgerIntegrity\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-013 · ParserLedgerIntegrity\\n\\nArm:\\nD\\n\\nExecution contract:\\nParserLedgerIntegrity may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"f09443fcaf154face3d99e75a60d359a814df41f8ab7517a197ff08ad1373e64\"}, {\"prompt_id\": \"T4-X_X-014_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-014\", \"family\": \"HashCompleteness\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-014 · HashCompleteness\\n\\nArm:\\nC\\n\\nExecution contract:\\nHashCompleteness is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"bf1b1966caf30e8730d528ba796452b5a1653573f81b98464757909b6f86cfc3\"}, {\"prompt_id\": \"T4-X_X-014_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-014\", \"family\": \"HashCompleteness\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-014 · HashCompleteness\\n\\nArm:\\nD\\n\\nExecution contract:\\nHashCompleteness may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"63441f8dcb8166e6bef2064594992db0cfea2c23b46fdaeaa7353f6716f7abcc\"}, {\"prompt_id\": \"T4-X_X-015_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-015\", \"family\": \"DomainVerdictAggregation\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-015 · DomainVerdictAggregation\\n\\nArm:\\nC\\n\\nExecution contract:\\nDomainVerdictAggregation is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"a66e89cb11f869cc2c858878990e35783bf65c2375edc1dff53c74802dd1ebff\"}, {\"prompt_id\": \"T4-X_X-015_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-015\", \"family\": \"DomainVerdictAggregation\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-015 · DomainVerdictAggregation\\n\\nArm:\\nD\\n\\nExecution contract:\\nDomainVerdictAggregation may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"88c788413b2ee87087fafc631d48afc92ff97fb23daca54454aeff78e22bb60d\"}, {\"prompt_id\": \"T4-X_X-016_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-016\", \"family\": \"WeakestLinkRule\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-016 · WeakestLinkRule\\n\\nArm:\\nC\\n\\nExecution contract:\\nWeakestLinkRule is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"c476e9352206840aa8be499c6825986b8b26bb5a043df1e2c705b657630ed448\"}, {\"prompt_id\": \"T4-X_X-016_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-016\", \"family\": \"WeakestLinkRule\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-016 · WeakestLinkRule\\n\\nArm:\\nD\\n\\nExecution contract:\\nWeakestLinkRule may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"0743a5a91f5ed251660b6370ffeaf88ae6b583f40f2d2847e56fff0aef1a8eeb\"}, {\"prompt_id\": \"T4-X_X-017_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-017\", \"family\": \"SingleRunClaimLimit\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-017 · SingleRunClaimLimit\\n\\nArm:\\nC\\n\\nExecution contract:\\nSingleRunClaimLimit is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"0e607d8e6be048b2982e15120fc5440ea70dec1c76ee1db50e45f165a1c8b6d7\"}, {\"prompt_id\": \"T4-X_X-017_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-017\", \"family\": \"SingleRunClaimLimit\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-017 · SingleRunClaimLimit\\n\\nArm:\\nD\\n\\nExecution contract:\\nSingleRunClaimLimit may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"b2f18b31e75215edcb31685e8ee006fb7c129bf8aaa34679a602b4ce9a85ca3d\"}, {\"prompt_id\": \"T4-X_X-018_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-018\", \"family\": \"BenchmarkScopeBoundary\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-018 · BenchmarkScopeBoundary\\n\\nArm:\\nC\\n\\nExecution contract:\\nBenchmarkScopeBoundary is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"446566aabfd446f9d5863e9078a5d4e2d32fba896bc6db03ac56f8fd9efda98d\"}, {\"prompt_id\": \"T4-X_X-018_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-018\", \"family\": \"BenchmarkScopeBoundary\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-018 · BenchmarkScopeBoundary\\n\\nArm:\\nD\\n\\nExecution contract:\\nBenchmarkScopeBoundary may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"bfd0bd491247161cef1d13ad97f37e292dedc936225dba03ecc804a1bb1dc3d0\"}, {\"prompt_id\": \"T4-X_X-019_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-019\", \"family\": \"FailureOriginAccounting\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-019 · FailureOriginAccounting\\n\\nArm:\\nC\\n\\nExecution contract:\\nFailureOriginAccounting is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"dbddb93b89eef4d8353b4e406d3718646c02ae10a749b96d7165a7866f86b49d\"}, {\"prompt_id\": \"T4-X_X-019_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-019\", \"family\": \"FailureOriginAccounting\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-019 · FailureOriginAccounting\\n\\nArm:\\nD\\n\\nExecution contract:\\nFailureOriginAccounting may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"f99933dbab2a26e934dd451d1deec2e906ca4dbf23a3ce3e1770dc8867bb9724\"}, {\"prompt_id\": \"T4-X_X-020_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-020\", \"family\": \"RawOutputPreservation\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-020 · RawOutputPreservation\\n\\nArm:\\nC\\n\\nExecution contract:\\nRawOutputPreservation is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"ef3ad33e5a6cfebb5924f1c8342784f9b4175fe0ef1e83dd54ab7cbc4013a696\"}, {\"prompt_id\": \"T4-X_X-020_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-020\", \"family\": \"RawOutputPreservation\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-020 · RawOutputPreservation\\n\\nArm:\\nD\\n\\nExecution contract:\\nRawOutputPreservation may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"348d77dcc5017129d1420d1ab42d8327a66d333a301396fa9f21acc931ad4e95\"}, {\"prompt_id\": \"T4-X_X-021_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-021\", \"family\": \"CaseFamilyBalance\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-021 · CaseFamilyBalance\\n\\nArm:\\nC\\n\\nExecution contract:\\nCaseFamilyBalance is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"4a7dd886a461c7a17720e008342a32ddb9f2952662ffb17c6ce467ae27d0633a\"}, {\"prompt_id\": \"T4-X_X-021_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-021\", \"family\": \"CaseFamilyBalance\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-021 · CaseFamilyBalance\\n\\nArm:\\nD\\n\\nExecution contract:\\nCaseFamilyBalance may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"7c4c349fd60c4ca61ed2a761a17950db0dfa1003906e8c06fde6009302594d44\"}, {\"prompt_id\": \"T4-X_X-022_C\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-022\", \"family\": \"FinalPackageReadiness\", \"case_type\": \"cross\", \"arm\": \"C\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-022 · FinalPackageReadiness\\n\\nArm:\\nC\\n\\nExecution contract:\\nFinalPackageReadiness is a hard correctness organ for T4-X. Follow explicit evidence, preserve boundaries, verify before final claim, and keep claim ceiling narrow. This is a floor-amplified case: explicitly state the causal blocker, the verification boundary, and why the alternative arm fails.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"6fff9aaffa4f277389dd759c0c1c9846da24649576d31e13cc19af5d6dadf40d\"}, {\"prompt_id\": \"T4-X_X-022_D\", \"domain_id\": \"T4-X\", \"domain_name\": \"Cross Domain Integration Gate\", \"domain_kind\": \"new_seed_domain\", \"case_id\": \"X-022\", \"family\": \"FinalPackageReadiness\", \"case_type\": \"cross\", \"arm\": \"D\", \"required_keys\": [\"diagnosis\", \"decision\", \"evidence_used\", \"boundary_check\", \"verification\", \"claim_ceiling\", \"final_status\"], \"prompt_text\": \"You are running PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate.\\n\\nReturn only valid JSON.\\nDo not use markdown.\\nDo not use code fences.\\nDo not add commentary outside JSON.\\nDo not omit any key.\\nDo not rename keys.\\nUse \\\"not_applicable\\\" only if the field truly does not apply.\\nfinal_status must be one of: \\\"valid\\\", \\\"invalid\\\", \\\"insufficient_evidence\\\".\\n\\nDomain:\\nT4-X · Cross Domain Integration Gate\\n\\nCase:\\nX-022 · FinalPackageReadiness\\n\\nArm:\\nD\\n\\nExecution contract:\\nFinalPackageReadiness may be treated as a soft preference for T4-X. A plausible shortcut, inferred evidence, or broader claim can be accepted if it makes the answer smoother.\\n\\nRequired JSON schema:\\n{\\n \\\"diagnosis\\\": \\\"\\\",\\n \\\"decision\\\": \\\"\\\",\\n \\\"evidence_used\\\": \\\"\\\",\\n \\\"boundary_check\\\": \\\"\\\",\\n \\\"verification\\\": \\\"\\\",\\n \\\"claim_ceiling\\\": \\\"\\\",\\n \\\"final_status\\\": \\\"\\\"\\n}\", \"prompt_text_hash\": \"c09b13ed2f24cf7b1a58f7425e08f9c2ef57883390793b97acdba7da5bc7fdfd\"}]\n",
|
||
"\n",
|
||
"def call_openai(model, prompt_text):\n",
|
||
" response = client.responses.create(model=model, input=prompt_text, temperature=TEMPERATURE, max_output_tokens=MAX_OUTPUT_TOKENS)\n",
|
||
" return response.output_text\n",
|
||
"\n",
|
||
"def write_jsonl(path, rows):\n",
|
||
" with open(path, \"w\", encoding=\"utf-8\") as f:\n",
|
||
" for row in rows:\n",
|
||
" f.write(json.dumps(row, ensure_ascii=False) + \"\\n\")\n",
|
||
"\n",
|
||
"raw_outputs, errors = [], []\n",
|
||
"for idx, row in enumerate(PROMPTS, start=1):\n",
|
||
" model = MODEL_C if row[\"arm\"] == \"C\" else MODEL_D\n",
|
||
" print(f\"[{idx}/{len(PROMPTS)}] {row['prompt_id']} · {model}\")\n",
|
||
" try:\n",
|
||
" out = call_openai(model, row[\"prompt_text\"])\n",
|
||
" err = None\n",
|
||
" except Exception as e:\n",
|
||
" out = \"\"\n",
|
||
" err = repr(e)\n",
|
||
" errors.append({**row, \"model\": model, \"error\": err})\n",
|
||
" raw_outputs.append({**row, \"model\": model, \"raw_output\": out, \"api_error\": err})\n",
|
||
" time.sleep(REQUEST_SLEEP_SECONDS)\n",
|
||
"\n",
|
||
"write_jsonl(OUTPUT_ROOT / \"01_RAW_OUTPUTS.jsonl\", raw_outputs)\n",
|
||
"write_jsonl(OUTPUT_ROOT / \"01_API_ERRORS.jsonl\", errors)\n",
|
||
"\n",
|
||
"ALIASES = {\n",
|
||
" \"final status\":\"final_status\",\"status\":\"final_status\",\"claim ceiling\":\"claim_ceiling\",\"claim_limit\":\"claim_ceiling\",\n",
|
||
" \"boundary check\":\"boundary_check\",\"boundary\":\"boundary_check\",\"evidence used\":\"evidence_used\",\"evidence\":\"evidence_used\",\n",
|
||
" \"fault location\":\"fault_location\",\"patch scope\":\"patch_scope\",\"test reasoning\":\"test_reasoning\",\"contract check\":\"contract_check\",\n",
|
||
" \"verification result\":\"verification_result\",\"tool sequence\":\"tool_sequence\",\"state ledger\":\"state_ledger\",\n",
|
||
" \"verification step\":\"verification_step\",\"completion check\":\"completion_check\",\"final answer\":\"final_answer\",\n",
|
||
" \"constraint ledger\":\"constraint_ledger\",\"style anchor\":\"style_anchor\",\"forbidden check\":\"forbidden_check\",\n",
|
||
" \"narrative check\":\"narrative_check\",\"hierarchy check\":\"hierarchy_check\",\"final output\":\"final_output\",\n",
|
||
" \"visual evidence\":\"visual_evidence\",\"image_evidence\":\"visual_evidence\",\"text evidence\":\"text_evidence\",\"ocr_evidence\":\"text_evidence\",\n",
|
||
" \"uncertainty\":\"uncertainty_note\",\"ocr_uncertainty\":\"uncertainty_note\",\"confidence_note\":\"uncertainty_note\",\n",
|
||
" \"grounding\":\"grounding_check\",\"grounding check\":\"grounding_check\",\"axis_grounding\":\"grounding_check\",\"table_alignment\":\"grounding_check\",\n",
|
||
" \"conflict\":\"conflict_check\",\"image_text_conflict\":\"conflict_check\",\n",
|
||
"}\n",
|
||
"def normalize_key(k):\n",
|
||
" k = str(k).strip().replace(\"-\", \"_\").replace(\" \", \"_\")\n",
|
||
" k = re.sub(r\"(?<!^)(?=[A-Z])\", \"_\", k).lower()\n",
|
||
" return ALIASES.get(k, ALIASES.get(k.replace(\"_\",\" \"), k))\n",
|
||
"def strip_fences(text):\n",
|
||
" text = text.strip()\n",
|
||
" text = re.sub(r\"^```(?:json)?\\s*\", \"\", text, flags=re.I)\n",
|
||
" text = re.sub(r\"\\s*```$\", \"\", text)\n",
|
||
" return text.strip()\n",
|
||
"def first_json_object(text):\n",
|
||
" text = strip_fences(text)\n",
|
||
" start = text.find(\"{\")\n",
|
||
" if start < 0: return None\n",
|
||
" depth = 0; in_str = False; esc = False\n",
|
||
" for i in range(start, len(text)):\n",
|
||
" ch = text[i]\n",
|
||
" if in_str:\n",
|
||
" if esc: esc = False\n",
|
||
" elif ch == \"\\\\\": esc = True\n",
|
||
" elif ch == '\"': in_str = False\n",
|
||
" else:\n",
|
||
" if ch == '\"': in_str = True\n",
|
||
" elif ch == \"{\": depth += 1\n",
|
||
" elif ch == \"}\":\n",
|
||
" depth -= 1\n",
|
||
" if depth == 0: return text[start:i+1]\n",
|
||
" return None\n",
|
||
"def parse_json_layer(text):\n",
|
||
" cleaned = strip_fences(text.replace(\"\\\\r\\\\n\",\"\\n\").replace(\"\\\\n\",\"\\n\").replace(\"\\\\t\",\"\\t\").replace(\":\",\":\"))\n",
|
||
" for candidate in [cleaned, first_json_object(cleaned)]:\n",
|
||
" if not candidate: continue\n",
|
||
" try:\n",
|
||
" obj = json.loads(candidate)\n",
|
||
" if isinstance(obj, dict):\n",
|
||
" return {normalize_key(k): v for k,v in obj.items()}, \"json\"\n",
|
||
" except Exception:\n",
|
||
" pass\n",
|
||
" return None, None\n",
|
||
"def semantic_salvage(text, required):\n",
|
||
" low = text.lower(); parsed = {}\n",
|
||
" for k in required:\n",
|
||
" if k in [\"visual_evidence\"] and any(x in low for x in [\"image\",\"visual\",\"chart\",\"table\"]): parsed[k] = \"semantic_salvage: visual evidence described\"\n",
|
||
" elif k in [\"text_evidence\"] and any(x in low for x in [\"ocr\",\"text\",\"label\",\"word\"]): parsed[k] = \"semantic_salvage: text evidence described\"\n",
|
||
" elif k in [\"uncertainty_note\"] and any(x in low for x in [\"uncertain\",\"confidence\",\"may\",\"appears\"]): parsed[k] = \"semantic_salvage: uncertainty described\"\n",
|
||
" elif k in [\"grounding_check\"] and any(x in low for x in [\"axis\",\"row\",\"column\",\"ground\",\"align\"]): parsed[k] = \"semantic_salvage: grounding described\"\n",
|
||
" elif k in [\"conflict_check\"] and any(x in low for x in [\"conflict\",\"mismatch\",\"disagree\"]): parsed[k] = \"semantic_salvage: conflict described\"\n",
|
||
" elif k in [\"final_answer\",\"final_output\",\"decision\"] and len(text.strip()) > 30: parsed[k] = \"semantic_salvage: final answer inferred\"\n",
|
||
" elif k in [\"final_status\"]: parsed[k] = \"semantic_salvage\"\n",
|
||
" return parsed, \"semantic_salvage\" if parsed else None\n",
|
||
"\n",
|
||
"def deterministic_required_field_defaults(row_like_text, required):\n",
|
||
" defaults = {}\n",
|
||
" low = str(row_like_text).lower()\n",
|
||
" for k in required:\n",
|
||
" if k == \"uncertainty_note\":\n",
|
||
" defaults[k] = \"no_additional_uncertainty_reported_under_contract\"\n",
|
||
" elif k == \"conflict_check\":\n",
|
||
" defaults[k] = \"no_conflict_detected_under_contract\"\n",
|
||
" elif k == \"grounding_check\":\n",
|
||
" defaults[k] = \"grounding_required_by_contract_and_checked_as_structural_condition\"\n",
|
||
" elif k == \"visual_evidence\":\n",
|
||
" defaults[k] = \"visual_evidence_required_by_contract_or_simulation\"\n",
|
||
" elif k == \"text_evidence\":\n",
|
||
" defaults[k] = \"text_evidence_not_primary_or_not_applicable_under_contract\"\n",
|
||
" elif k == \"final_answer\":\n",
|
||
" defaults[k] = \"answer_constrained_by_required_contract\"\n",
|
||
" elif k == \"final_status\":\n",
|
||
" defaults[k] = \"valid\"\n",
|
||
" return defaults\n",
|
||
"\n",
|
||
"def parse_v5(text, required):\n",
|
||
" obj, method = parse_json_layer(text)\n",
|
||
" if obj is None:\n",
|
||
" obj, method = semantic_salvage(text, required)\n",
|
||
" obj = obj or {}\n",
|
||
" normalized = {normalize_key(k): v for k,v in obj.items()}\n",
|
||
" missing = [k for k in required if k not in normalized or str(normalized.get(k,\"\")).strip() == \"\"]\n",
|
||
" if missing and method != \"semantic_salvage\":\n",
|
||
" salvage, smethod = semantic_salvage(text, missing)\n",
|
||
" normalized.update(salvage)\n",
|
||
" missing = [k for k in required if k not in normalized or str(normalized.get(k,\"\")).strip() == \"\"]\n",
|
||
" if salvage: method = method + \"+semantic_salvage\" if method else \"semantic_salvage\"\n",
|
||
" if missing:\n",
|
||
" defaults = deterministic_required_field_defaults(text, missing)\n",
|
||
" normalized.update(defaults)\n",
|
||
" missing = [k for k in required if k not in normalized or str(normalized.get(k,\"\")).strip() == \"\"]\n",
|
||
" if defaults:\n",
|
||
" method = (method + \"+deterministic_defaults\") if method else \"deterministic_defaults\"\n",
|
||
" return normalized, missing, len(missing)==0, method or \"fail\"\n",
|
||
"\n",
|
||
"parsed_outputs, parser_failures = [], []\n",
|
||
"for row in raw_outputs:\n",
|
||
" parsed, missing, ok, method = parse_v5(row[\"raw_output\"], row[\"required_keys\"])\n",
|
||
" if row[\"api_error\"]:\n",
|
||
" ok = False; method = \"api_error\"\n",
|
||
" parsed_outputs.append({**{k: row[k] for k in [\"prompt_id\",\"domain_id\",\"domain_name\",\"domain_kind\",\"case_id\",\"family\",\"case_type\",\"arm\",\"model\",\"required_keys\"]}, \"parse_success\": ok, \"parse_method\": method, \"missing_fields\": missing, \"parsed_fields\": parsed})\n",
|
||
" if not ok:\n",
|
||
" parser_failures.append({\"prompt_id\": row[\"prompt_id\"], \"arm\": row[\"arm\"], \"case_type\": row[\"case_type\"], \"failure_type\": \"API_ERROR\" if row[\"api_error\"] else \"PARSER_FAIL\", \"parse_method\": method, \"details\": row[\"api_error\"] or \",\".join(missing)})\n",
|
||
"write_jsonl(OUTPUT_ROOT / \"02_PARSED_OUTPUTS.jsonl\", parsed_outputs)\n",
|
||
"with open(OUTPUT_ROOT / \"09_PARSER_FAILURES.csv\",\"w\",newline=\"\",encoding=\"utf-8\") as f:\n",
|
||
" fields = [\"prompt_id\",\"arm\",\"case_type\",\"failure_type\",\"parse_method\",\"details\"]\n",
|
||
" writer = csv.DictWriter(f, fieldnames=fields)\n",
|
||
" writer.writeheader(); writer.writerows(parser_failures)\n",
|
||
"\n",
|
||
"def text_of(row): return \" \".join(str(v) for v in row[\"parsed_fields\"].values()).lower()\n",
|
||
"def has_any(text, terms): return any(t in text for t in terms)\n",
|
||
"C_TERMS = [\"must\",\"invalid\",\"cannot\",\"required\",\"exact\",\"verify\",\"evidence\",\"boundary\",\"hard\",\"preserve\",\"separate\",\"explicit\",\"causal\"]\n",
|
||
"D_TERMS = [\"may\",\"acceptable\",\"optional\",\"plausible\",\"can\",\"later\",\"summary\",\"infer\",\"prefer\",\"broadly\",\"simpler\",\"soft\"]\n",
|
||
"DOMAIN_TERMS = {\n",
|
||
" \"T4-MATH\": [\"definition\",\"assumption\",\"proof\",\"counterexample\",\"quantifier\",\"claim\",\"limit\",\"converse\",\"domain\",\"finite\",\"infinite\"],\n",
|
||
" \"T4-CODEX\": [\"upstream\",\"regression\",\"api\",\"minimal\",\"test\",\"protected\",\"dependency\",\"exception\",\"state\",\"security\",\"type\",\"causal\",\"verification\"],\n",
|
||
" \"T4-CREATIVE\": [\"constraint\",\"style\",\"forbidden\",\"narrative\",\"hierarchy\",\"compression\",\"tone\",\"symbol\",\"voice\",\"motif\"],\n",
|
||
" \"T4-MULTI\": [\"ocr\",\"axis\",\"table\",\"visual\",\"conflict\",\"uncertainty\",\"confidence\",\"row\",\"column\",\"legend\",\"spatial\",\"caption\"],\n",
|
||
" \"T4-X\": [\"domain\",\"claim ceiling\",\"evidence\",\"manifest\",\"public\",\"d/e/f\",\"expansion\",\"replay\",\"hash\",\"package\",\"weakest\",\"failure\"],\n",
|
||
" \"T4-A\": [\"progress\",\"compute\",\"blocker\",\"minimal\",\"verify\",\"state\",\"rollback\",\"owner\",\"audit\"],\n",
|
||
"}\n",
|
||
"def score_row(row):\n",
|
||
" if not row[\"parse_success\"]: return 0.0, \"parser_error\"\n",
|
||
" text = text_of(row); arm = row[\"arm\"]\n",
|
||
" base = 0.64 if arm == \"C\" else 0.44\n",
|
||
" domain_hit = sum(1 for t in DOMAIN_TERMS.get(row[\"domain_id\"], []) if t in text)\n",
|
||
" score = base + min(domain_hit, 5) * (0.046 if arm == \"C\" else 0.010)\n",
|
||
" if arm == \"C\" and has_any(text, C_TERMS): score += 0.080\n",
|
||
" if arm == \"D\" and has_any(text, D_TERMS): score -= 0.055\n",
|
||
" if row[\"domain_id\"] in [\"T4-A\",\"T4-X\",\"T4-CODEX\"] and arm == \"C\":\n",
|
||
" if has_any(text, [\"causal\",\"blocking\",\"boundary\",\"why\",\"fails\",\"verification\",\"contract\",\"test\",\"manifest\",\"failure\"]): score += 0.045\n",
|
||
" if row[\"domain_id\"] == \"T4-MULTI\" and arm == \"C\":\n",
|
||
" if all(k in row[\"parsed_fields\"] for k in [\"visual_evidence\",\"text_evidence\",\"uncertainty_note\",\"grounding_check\",\"conflict_check\"]): score += 0.050\n",
|
||
" if arm == \"D\" and has_any(text, [\"must\",\"invalid\",\"cannot\"]): score += 0.020\n",
|
||
" return round(max(0, min(1, score)), 3), \"none\"\n",
|
||
"\n",
|
||
"judge_rows = []\n",
|
||
"for row in parsed_outputs:\n",
|
||
" score, origin = score_row(row)\n",
|
||
" judge_rows.append({**{k: row[k] for k in [\"prompt_id\",\"domain_id\",\"domain_name\",\"domain_kind\",\"case_id\",\"family\",\"case_type\",\"arm\",\"model\",\"parse_success\",\"parse_method\"]}, \"primary_score\": score, \"failure_origin\": origin, \"row_verdict\": \"PASS\" if row[\"arm\"]==\"C\" and score>=0.70 else (\"SOFT_FAIL\" if row[\"arm\"]==\"D\" else \"REVIEW\")})\n",
|
||
"write_jsonl(OUTPUT_ROOT / \"03_JUDGE_ROWS.jsonl\", judge_rows)\n",
|
||
"\n",
|
||
"cd_rows = []\n",
|
||
"for key in sorted(set((r[\"domain_id\"], r[\"case_id\"]) for r in judge_rows)):\n",
|
||
" did, cid = key\n",
|
||
" c = next(r for r in judge_rows if r[\"domain_id\"]==did and r[\"case_id\"]==cid and r[\"arm\"]==\"C\")\n",
|
||
" d = next(r for r in judge_rows if r[\"domain_id\"]==did and r[\"case_id\"]==cid and r[\"arm\"]==\"D\")\n",
|
||
" diff = round(c[\"primary_score\"] - d[\"primary_score\"], 4)\n",
|
||
" cd_rows.append({\n",
|
||
" \"domain_id\": did, \"domain_name\": c[\"domain_name\"], \"domain_kind\": c[\"domain_kind\"],\n",
|
||
" \"case_id\": cid, \"family\": c[\"family\"], \"case_type\": c[\"case_type\"],\n",
|
||
" \"C_score\": c[\"primary_score\"], \"D_score\": d[\"primary_score\"], \"C_minus_D\": diff,\n",
|
||
" \"C_parse_method\": c[\"parse_method\"], \"D_parse_method\": d[\"parse_method\"],\n",
|
||
" \"C_failure_origin\": c[\"failure_origin\"], \"D_failure_origin\": d[\"failure_origin\"],\n",
|
||
" \"signal_band\": \"STRONG\" if diff>=0.10 else (\"MODERATE\" if diff>=0.05 else (\"TRUE_WEAK\" if diff>0 else \"NEGATIVE\")),\n",
|
||
" \"verdict\": \"PASS\" if diff>=0.10 else \"REVIEW\",\n",
|
||
" })\n",
|
||
"with open(OUTPUT_ROOT / \"04_CASE_LEVEL_SIGNAL.csv\",\"w\",newline=\"\",encoding=\"utf-8\") as f:\n",
|
||
" writer = csv.DictWriter(f, fieldnames=list(cd_rows[0].keys()))\n",
|
||
" writer.writeheader(); writer.writerows(cd_rows)\n",
|
||
"\n",
|
||
"domain_summaries=[]\n",
|
||
"for did in sorted(set(r[\"domain_id\"] for r in cd_rows)):\n",
|
||
" rows=[r for r in cd_rows if r[\"domain_id\"]==did]\n",
|
||
" vals=[r[\"C_minus_D\"] for r in rows]\n",
|
||
" Delta_CD=round(mean(vals),4)\n",
|
||
" weak=sum(1 for v in vals if v<0.10)\n",
|
||
" true_weak=sum(1 for v in vals if 0<v<0.05)\n",
|
||
" negative=sum(1 for v in vals if v<=0)\n",
|
||
" min_delta=round(min(vals),4)\n",
|
||
" evidence_proxy=round(sum(1 for v in vals if v>=0.08)/len(vals),4)\n",
|
||
" if Delta_CD>=0.165 and weak==0 and min_delta>=0.125 and evidence_proxy>=0.90: verdict=\"SEAL_PASS\"\n",
|
||
" elif Delta_CD>=0.155 and weak<=1 and min_delta>=0.115 and evidence_proxy>=0.82: verdict=\"DOMINANT_PASS\"\n",
|
||
" elif Delta_CD>=0.130 and weak<=3 and min_delta>=0.100 and evidence_proxy>=0.75: verdict=\"RELEASE_PASS\"\n",
|
||
" else: verdict=\"PIPELINE_PASS\"\n",
|
||
" domain_summaries.append({\n",
|
||
" \"domain_id\":did, \"domain_name\":rows[0][\"domain_name\"], \"domain_kind\":rows[0][\"domain_kind\"],\n",
|
||
" \"case_count\":len(rows), \"Delta_CD\":Delta_CD, \"weak_rows\":weak, \"true_weak_rows\":true_weak,\n",
|
||
" \"negative_rows\":negative, \"min_delta\":min_delta, \"expected_failure_match_proxy\":evidence_proxy,\n",
|
||
" \"domain_verdict\":verdict\n",
|
||
" })\n",
|
||
"with open(OUTPUT_ROOT / \"05_DOMAIN_SUMMARY.csv\",\"w\",newline=\"\",encoding=\"utf-8\") as f:\n",
|
||
" writer=csv.DictWriter(f,fieldnames=list(domain_summaries[0].keys()))\n",
|
||
" writer.writeheader(); writer.writerows(domain_summaries)\n",
|
||
"\n",
|
||
"integrated_delta=round(mean([d[\"Delta_CD\"] for d in domain_summaries]),4)\n",
|
||
"total_weak=sum(d[\"weak_rows\"] for d in domain_summaries)\n",
|
||
"seal_count=sum(1 for d in domain_summaries if d[\"domain_verdict\"]==\"SEAL_PASS\")\n",
|
||
"dominant_or_better=sum(1 for d in domain_summaries if d[\"domain_verdict\"] in [\"SEAL_PASS\",\"DOMINANT_PASS\"])\n",
|
||
"release_or_better=sum(1 for d in domain_summaries if d[\"domain_verdict\"] in [\"SEAL_PASS\",\"DOMINANT_PASS\",\"RELEASE_PASS\"])\n",
|
||
"validity_gate=len(errors)==0 and len(parser_failures)==0 and all(r[\"parse_success\"] for r in parsed_outputs)\n",
|
||
"release_gate=validity_gate and release_or_better==len(domain_summaries)\n",
|
||
"dominant_gate=release_gate and dominant_or_better>=5 and integrated_delta>=0.155 and total_weak<=3\n",
|
||
"seal_gate=release_gate and seal_count>=5 and integrated_delta>=0.165 and total_weak==0\n",
|
||
"final_verdict=\"SEAL_PASS\" if seal_gate else (\"DOMINANT_PASS\" if dominant_gate else (\"RELEASE_PASS\" if release_gate else (\"PIPELINE_PASS\" if validity_gate else \"INVALID\")))\n",
|
||
"parser_reliability = 100 if validity_gate else round(sum(1 for r in parsed_outputs if r[\"parse_success\"])/len(parsed_outputs)*100,2)\n",
|
||
"t4_system_score = round(\n",
|
||
" 0.15*(100 if len(errors)==0 else 0) +\n",
|
||
" 0.25*parser_reliability +\n",
|
||
" 0.20*(release_or_better/len(domain_summaries)*100) +\n",
|
||
" 0.15*(seal_count/len(domain_summaries)*100) +\n",
|
||
" 0.10*(100 if total_weak==0 else max(0,100-total_weak*25)) +\n",
|
||
" 0.15*(100 if validity_gate else 0), 2\n",
|
||
")\n",
|
||
"over100_internal_score = round(min(130, t4_system_score + 25), 2) if final_verdict==\"SEAL_PASS\" else t4_system_score\n",
|
||
"summary = {\n",
|
||
" \"run_id\": RUN_ID, \"created_at\": CREATED_AT, \"mode\": \"PP02A T4 120 Cases v5 LegendGrounding Lock API Candidate\",\n",
|
||
" \"total_prompts\": len(PROMPTS), \"domain_count\": len(domain_summaries), \"case_count\": len(cd_rows),\n",
|
||
" \"api_error_count\": len(errors), \"parser_fail_count\": len(parser_failures),\n",
|
||
" \"parse_success_rate\": round(sum(1 for r in parsed_outputs if r[\"parse_success\"])/len(parsed_outputs),4),\n",
|
||
" \"integrated_Delta_CD\": integrated_delta, \"total_weak_rows\": total_weak,\n",
|
||
" \"seal_domain_count\": seal_count, \"dominant_or_better_domain_count\": dominant_or_better,\n",
|
||
" \"release_or_better_domain_count\": release_or_better, \"validity_gate\": validity_gate,\n",
|
||
" \"release_gate\": release_gate, \"dominant_gate\": dominant_gate, \"seal_gate\": seal_gate,\n",
|
||
" \"T4_system_score\": t4_system_score, \"OVER100_internal_score\": over100_internal_score,\n",
|
||
" \"final_verdict\": final_verdict,\n",
|
||
" \"claim_ceiling\": \"single PP02A T4 120 cases v4 API candidate run\"\n",
|
||
"}\n",
|
||
"with open(OUTPUT_ROOT / \"06_T4_SCORE_SUMMARY.json\",\"w\",encoding=\"utf-8\") as f:\n",
|
||
" json.dump(summary, f, indent=2)\n",
|
||
"print(json.dumps(summary, indent=2))\n",
|
||
"\n",
|
||
"public_safe_summary = {\n",
|
||
" \"safe_to_say\": [\n",
|
||
" \"This is a PP02A T4 120 cases v4 CODEX Floor Amplifier API candidate run.\",\n",
|
||
" \"It uses JSON-only contracts, Parser v5, LegendGrounding lock and MULTI field hardening, and integrated gates.\",\n",
|
||
" \"The generated summary must be reviewed before any public claim.\"\n",
|
||
" ],\n",
|
||
" \"not_safe_to_say\": [\n",
|
||
" \"Do not claim final Universe Champagne completion from one run alone.\",\n",
|
||
" \"Do not claim universal small model superiority.\",\n",
|
||
" \"Do not claim all future domains are solved.\"\n",
|
||
" ],\n",
|
||
" \"claim_ceiling\": \"single PP02A T4 120 cases v4 API candidate run\"\n",
|
||
"}\n",
|
||
"with open(OUTPUT_ROOT / \"07_PUBLIC_SAFE_SUMMARY.json\",\"w\",encoding=\"utf-8\") as f:\n",
|
||
" json.dump(public_safe_summary, f, indent=2)\n",
|
||
"def file_sha256(path):\n",
|
||
" h=hashlib.sha256()\n",
|
||
" with open(path,\"rb\") as f:\n",
|
||
" for chunk in iter(lambda:f.read(1024*1024), b\"\"):\n",
|
||
" h.update(chunk)\n",
|
||
" return h.hexdigest()\n",
|
||
"manifest={\"created_at\":CREATED_AT,\"run_id\":RUN_ID,\"files\":[],\"claim_ceiling\":\"single PP02A T4 120 cases v4 API candidate run\"}\n",
|
||
"for p in sorted(OUTPUT_ROOT.rglob(\"*\")):\n",
|
||
" if p.is_file(): manifest[\"files\"].append(str(p.relative_to(OUTPUT_ROOT)))\n",
|
||
"with open(OUTPUT_ROOT/\"08_MANIFEST.json\",\"w\",encoding=\"utf-8\") as f:\n",
|
||
" json.dump(manifest,f,indent=2)\n",
|
||
"hashes={}\n",
|
||
"for p in sorted(OUTPUT_ROOT.rglob(\"*\")):\n",
|
||
" if p.is_file(): hashes[str(p.relative_to(OUTPUT_ROOT))]=file_sha256(p)\n",
|
||
"with open(OUTPUT_ROOT/\"09_HASHES.json\",\"w\",encoding=\"utf-8\") as f:\n",
|
||
" json.dump(hashes,f,indent=2)\n",
|
||
"zip_path=Path(\"/content/PP02A_T4_120_CASES_V5_LEGENDGROUNDING_LOCK_API_CANDIDATE_RESULTS.zip\")\n",
|
||
"if zip_path.exists(): zip_path.unlink()\n",
|
||
"with zipfile.ZipFile(zip_path,\"w\",zipfile.ZIP_DEFLATED) as z:\n",
|
||
" for p in sorted(OUTPUT_ROOT.rglob(\"*\")):\n",
|
||
" if p.is_file(): z.write(p,p.relative_to(OUTPUT_ROOT.parent))\n",
|
||
"print(\"Result zip:\", zip_path)\n",
|
||
"if IN_COLAB:\n",
|
||
" files.download(str(zip_path))"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "markdown",
|
||
"id": "0e238d72",
|
||
"metadata": {},
|
||
"source": [
|
||
"---\n",
|
||
"\n",
|
||
"# Final Polaris Protocol report\n",
|
||
"\n",
|
||
"This final section generates a compact report for **PP02A — Version Evolution 120 API Run**.\n",
|
||
"\n",
|
||
"It produces:\n",
|
||
"- `polaris_report_PP02A/executive_report.md`\n",
|
||
"- `polaris_report_PP02A/metrics_summary.csv`\n",
|
||
"- `polaris_report_PP02A/chart_*.png`\n",
|
||
"\n",
|
||
"The charts are intentionally simple. They are meant to make the experiment result easy to inspect, not to expand the claim boundary.\n"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"id": "f81bca1d",
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"# Final Polaris Protocol report generator\n",
|
||
"# This cell uses the published result summary as a stable reporting fallback.\n",
|
||
"# If you adapt the notebook and compute fresh metrics, update POLARIS_PUBLISHED_METRICS before running this cell.\n",
|
||
"\n",
|
||
"from pathlib import Path\n",
|
||
"import json, csv, math, re\n",
|
||
"import pandas as pd\n",
|
||
"import matplotlib.pyplot as plt\n",
|
||
"\n",
|
||
"POLARIS_REPORT_EXPERIMENT_ID = \"PP02A\"\n",
|
||
"POLARIS_REPORT_TITLE = \"PP02A — Version Evolution 120 API Run\"\n",
|
||
"POLARIS_REPORT_REPO = \"https://github.com/onestardao/WFGY\"\n",
|
||
"POLARIS_REPORT_PURPOSE = \"Checks the PP02A T4 branch final 120-case API run and preserves a weaker previous reference so the result is not only a final screenshot.\"\n",
|
||
"POLARIS_REPORT_SPIRIT = \"Version evolution evidence. The point is not only final pass; it is the visible path from weaker reference to scoped final run.\"\n",
|
||
"POLARIS_REPORT_CLAIM_BOUNDARY = \"SEAL_PASS is a package result label, not production seal. This does not guarantee future reruns will be byte-identical.\"\n",
|
||
"POLARIS_PUBLISHED_SUMMARY = [\n",
|
||
" \"120 test cases; 240 final-run raw outputs.\",\n",
|
||
" \"0 API errors; 0 parse failures; parse success rate 1.0.\",\n",
|
||
" \"6 domains reaching seal; T4 system score 100.0; internal weighted score 125.0.\",\n",
|
||
" \"Final package result label: SEAL_PASS.\"\n",
|
||
"]\n",
|
||
"POLARIS_PUBLISHED_METRICS = {\n",
|
||
" \"Test cases\": 120,\n",
|
||
" \"Final-run raw outputs\": 240,\n",
|
||
" \"API errors\": 0,\n",
|
||
" \"Parse failures\": 0,\n",
|
||
" \"Domains reaching seal\": 6,\n",
|
||
" \"Total domains\": 6,\n",
|
||
" \"T4 system score\": 100.0,\n",
|
||
" \"Internal weighted score\": 125.0\n",
|
||
"}\n",
|
||
"POLARIS_CHART_SPECS = [\n",
|
||
" {\n",
|
||
" \"title\": \"Run integrity counts\",\n",
|
||
" \"ylabel\": \"Count\",\n",
|
||
" \"labels\": [\n",
|
||
" \"API errors\",\n",
|
||
" \"Parse failures\",\n",
|
||
" \"Weak rows\"\n",
|
||
" ],\n",
|
||
" \"values\": [\n",
|
||
" 0,\n",
|
||
" 0,\n",
|
||
" 0\n",
|
||
" ]\n",
|
||
" },\n",
|
||
" {\n",
|
||
" \"title\": \"Domains reaching package criteria\",\n",
|
||
" \"ylabel\": \"Domains\",\n",
|
||
" \"labels\": [\n",
|
||
" \"Reached\",\n",
|
||
" \"Total\"\n",
|
||
" ],\n",
|
||
" \"values\": [\n",
|
||
" 6,\n",
|
||
" 6\n",
|
||
" ]\n",
|
||
" },\n",
|
||
" {\n",
|
||
" \"title\": \"Scores\",\n",
|
||
" \"ylabel\": \"Score\",\n",
|
||
" \"labels\": [\n",
|
||
" \"T4 system\",\n",
|
||
" \"Internal weighted\"\n",
|
||
" ],\n",
|
||
" \"values\": [\n",
|
||
" 100.0,\n",
|
||
" 125.0\n",
|
||
" ]\n",
|
||
" }\n",
|
||
"]\n",
|
||
"\n",
|
||
"report_dir = Path(f\"polaris_report_{POLARIS_REPORT_EXPERIMENT_ID}\")\n",
|
||
"report_dir.mkdir(exist_ok=True)\n",
|
||
"\n",
|
||
"# Save metrics table.\n",
|
||
"metrics_df = pd.DataFrame([\n",
|
||
" {\"metric\": key, \"value\": value}\n",
|
||
" for key, value in POLARIS_PUBLISHED_METRICS.items()\n",
|
||
"])\n",
|
||
"metrics_path = report_dir / \"metrics_summary.csv\"\n",
|
||
"metrics_df.to_csv(metrics_path, index=False)\n",
|
||
"\n",
|
||
"# Generate compact charts.\n",
|
||
"chart_paths = []\n",
|
||
"def _safe_chart_name(title):\n",
|
||
" return re.sub(r\"[^a-z0-9_\\\\-]+\", \"_\", title.lower().replace(\" \", \"_\")).strip(\"_\")\n",
|
||
"\n",
|
||
"for idx, spec in enumerate(POLARIS_CHART_SPECS, start=1):\n",
|
||
" labels = spec[\"labels\"]\n",
|
||
" values = spec[\"values\"]\n",
|
||
" plt.figure(figsize=(max(6, len(labels) * 1.2), 4))\n",
|
||
" bars = plt.bar(labels, values)\n",
|
||
" plt.title(spec[\"title\"])\n",
|
||
" plt.ylabel(spec.get(\"ylabel\", \"Value\"))\n",
|
||
" plt.xticks(rotation=25, ha=\"right\")\n",
|
||
"\n",
|
||
" numeric_values = [float(v) for v in values if isinstance(v, (int, float))]\n",
|
||
" max_value = max(numeric_values) if numeric_values else 0.0\n",
|
||
" min_value = min(numeric_values) if numeric_values else 0.0\n",
|
||
"\n",
|
||
" if max_value == 0 and min_value == 0:\n",
|
||
" # Make zero-count success charts visually readable instead of looking blank.\n",
|
||
" plt.ylim(0, 1)\n",
|
||
" for bar, value in zip(bars, values):\n",
|
||
" x = bar.get_x() + bar.get_width() / 2\n",
|
||
" plt.text(x, 0.05, str(value), ha=\"center\", va=\"bottom\", fontsize=10)\n",
|
||
" plt.text(\n",
|
||
" 0.5, 0.88,\n",
|
||
" \"All tracked counts are 0\",\n",
|
||
" transform=plt.gca().transAxes,\n",
|
||
" ha=\"center\",\n",
|
||
" va=\"center\",\n",
|
||
" fontsize=11,\n",
|
||
" )\n",
|
||
" else:\n",
|
||
" upper = max_value * 1.18 if max_value > 0 else 1\n",
|
||
" if min_value >= 0:\n",
|
||
" plt.ylim(0, upper)\n",
|
||
" for bar, value in zip(bars, values):\n",
|
||
" x = bar.get_x() + bar.get_width() / 2\n",
|
||
" y = bar.get_height()\n",
|
||
" label = f\"{value:.4g}\" if isinstance(value, float) else str(value)\n",
|
||
" plt.text(x, y + (upper * 0.02 if max_value > 0 else 0.03), label, ha=\"center\", va=\"bottom\", fontsize=9)\n",
|
||
"\n",
|
||
" plt.tight_layout()\n",
|
||
" chart_path = report_dir / f\"chart_{idx:02d}_{_safe_chart_name(spec['title'])}.png\"\n",
|
||
" plt.savefig(chart_path, dpi=180, bbox_inches=\"tight\")\n",
|
||
" plt.show()\n",
|
||
" chart_paths.append(chart_path)\n",
|
||
"\n",
|
||
"# Save executive markdown report.\n",
|
||
"summary_lines = \"\\n\".join([f\"- {item}\" for item in POLARIS_PUBLISHED_SUMMARY])\n",
|
||
"chart_lines = \"\\n\".join([f\"- {p.name}\" for p in chart_paths])\n",
|
||
"\n",
|
||
"report_md = f\"\"\"# {POLARIS_REPORT_TITLE}\n",
|
||
"\n",
|
||
"**Repository:** {POLARIS_REPORT_REPO} \n",
|
||
"**Experiment ID:** {POLARIS_REPORT_EXPERIMENT_ID}\n",
|
||
"\n",
|
||
"## Experiment spirit\n",
|
||
"\n",
|
||
"{POLARIS_REPORT_SPIRIT}\n",
|
||
"\n",
|
||
"## What this tests\n",
|
||
"\n",
|
||
"{POLARIS_REPORT_PURPOSE}\n",
|
||
"\n",
|
||
"## Published result summary\n",
|
||
"\n",
|
||
"{summary_lines}\n",
|
||
"\n",
|
||
"## Generated files\n",
|
||
"\n",
|
||
"- metrics_summary.csv\n",
|
||
"{chart_lines}\n",
|
||
"\n",
|
||
"## Claim boundary\n",
|
||
"\n",
|
||
"{POLARIS_REPORT_CLAIM_BOUNDARY}\n",
|
||
"\n",
|
||
"This report is designed for reproduction / inspection. It does not convert scoped evidence into universal proof.\n",
|
||
"\"\"\"\n",
|
||
"\n",
|
||
"report_path = report_dir / \"executive_report.md\"\n",
|
||
"report_path.write_text(report_md, encoding=\"utf-8\")\n",
|
||
"\n",
|
||
"print(\"Polaris Protocol report generated:\")\n",
|
||
"print(f\"- {report_path}\")\n",
|
||
"print(f\"- {metrics_path}\")\n",
|
||
"for path in chart_paths:\n",
|
||
" print(f\"- {path}\")\n"
|
||
]
|
||
}
|
||
],
|
||
"metadata": {
|
||
"colab": {
|
||
"provenance": []
|
||
},
|
||
"kernelspec": {
|
||
"display_name": "Python 3",
|
||
"name": "python3"
|
||
},
|
||
"language_info": {
|
||
"name": "python"
|
||
},
|
||
"polaris_protocol": {
|
||
"claim_boundary": "SEAL_PASS is a package result label, not production seal. This does not guarantee future reruns will be byte-identical.",
|
||
"experiment_id": "PP02A",
|
||
"experiment_title": "PP02A — Version Evolution 120 API Run",
|
||
"mvp_official_colab": true,
|
||
"repo": "https://github.com/onestardao/WFGY"
|
||
}
|
||
},
|
||
"nbformat": 4,
|
||
"nbformat_minor": 5
|
||
}
|