${score_id}

---Question---
${question}

---Answer to Evaluate---
${answer}
---End of Answer---

---Main Assertion (parent, already satisfied)---
${assertion}

---Reasoning for Why the Main Assertion Is Satisfied---
${global_reasoning}

---Supporting Assertions (children of the main assertion)---
The following are children of the main assertion above. Each is a more specific assertion that captures a piece of evidence contributing to the parent. Together they form the grounded evidence base for the parent:
${supporting_assertions}

---Instructions---
The main (parent) assertion has already been determined to be SATISFIED by the answer (see the reasoning above for context). Your task is to analyze HOW the answer satisfies it by checking which children are present and whether any additional information was used:

1. **Supporting Assertions (Children)**: For each supporting assertion (SA1, SA2, etc.), determine if the answer contains evidence that satisfies it. Each child captures a specific piece of the evidence base that underpins the parent. Provide reasoning for each, citing specific evidence from the answer for why the assertion passed or failed.

2. **Discovery Detection**: Identify if the answer contains factual information that (a) is NOT covered by any of the children above, AND (b) helps satisfy the parent assertion. This indicates the answer draws on information beyond the grounded source material from which the children were derived.

**Important Notes:**
- Semantic equivalence counts - if the answer conveys the same meaning using different words, it satisfies the assertion
- Discovery must be relevant to satisfying the main assertion, not just any extra details
- Return results for each supporting assertion using its ID (SA1, SA2, etc.)

Format your response as a JSON object (use 1 for true, 0 for false):
{
    "supporting_results": [
        {"id": "SA1", "reasoning": "Explanation citing specific evidence for why the assertion passed or failed", "passed": 1/0},
        {"id": "SA2", "reasoning": "Explanation citing specific evidence for why the assertion passed or failed", "passed": 1/0},
        ...
    ],
    "discovery_reasoning": "Explanation of discovery or empty string",
    "has_discovery": 1/0
}
